@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&family=Manrope:wght@300;400;500;600&display=swap");
:root {
  --ink: #11100f;
  --cream: #f5f0e8;
  --paper: #fbf8f2;
  --wine: #541c22;
  --gold: #b69762;
  --muted: #8c857b;
  --line: rgba(17, 16, 15, 0.16);
  --white: #fff;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  --ease: cubic-bezier(0.2, 0.75, 0.2, 1);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open {
  overflow: hidden;
}
body.is-loading {
  overflow: hidden;
}
.site-loader {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #171210;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.8s var(--ease),
    visibility 0.8s;
}
body.is-loading .site-loader {
  opacity: 1;
  visibility: visible;
}
.site-loader::before {
  content: "";
  position: absolute;
  width: min(72vw, 900px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(182, 151, 98, 0.2), transparent 68%);
  filter: blur(12px);
  animation: loaderGlow 2.4s ease-in-out infinite alternate;
}
.site-loader__inner {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 24px;
  width: min(300px, 68vw);
}
.site-loader__logo {
  width: 100%;
  filter: invert(1);
  clip-path: inset(0 100% 0 0);
  animation: logoReveal 1.25s 0.12s var(--ease) forwards;
}
.site-loader__line {
  width: 0;
  height: 1px;
  background: var(--gold);
  animation: loaderLine 0.85s 0.55s var(--ease) forwards;
}
.site-loader__caption {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  animation: captionReveal 0.7s 0.72s var(--ease) forwards;
}
.site-loader.is-leaving {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
@keyframes logoReveal {
  0% {
    clip-path: inset(0 100% 0 0);
    transform: translateY(10px) scale(0.96);
  }
  100% {
    clip-path: inset(0 0 0 0);
    transform: translateY(0) scale(1);
  }
}
@keyframes loaderLine {
  to {
    width: 72px;
  }
}
@keyframes captionReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes loaderGlow {
  to {
    transform: scale(1.12);
    opacity: 0.6;
  }
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  width: 100%;
  display: block;
}
button,
input,
textarea,
select {
  font: inherit;
}
.container {
  width: min(1320px, calc(100% - 64px));
  margin: auto;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 11px;
  font-weight: 600;
}
.serif {
  font-family: var(--serif);
}
.display {
  font: 500 clamp(54px, 7.2vw, 118px) / 0.82 var(--serif);
  letter-spacing: -0.045em;
}
.title {
  font: 500 clamp(46px, 5.4vw, 80px) / 0.92 var(--serif);
  letter-spacing: -0.03em;
}
.subtitle {
  font: 500 clamp(31px, 3.4vw, 52px) / 1 var(--serif);
}
.lead {
  font: 400 clamp(18px, 1.7vw, 24px) / 1.5 var(--serif);
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 16px 26px;
  border: 1px solid currentColor;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
  font-weight: 600;
  transition: 0.35s var(--ease);
  background: transparent;
}
.btn:hover {
  background: var(--ink);
  color: var(--white);
}
.btn.light:hover {
  background: var(--white);
  color: var(--ink);
}
.btn.filled {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}
.btn.filled:hover {
  background: transparent;
  color: var(--paper);
}
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: 92px;
  color: #fff;
  transition: 0.35s;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent);
}
.site-header.scrolled {
  height: 76px;
  background: rgba(12, 11, 10, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}
.brand {
  margin-right: auto;
  line-height: 1;
}
.brand-logo {
  width: clamp(106px, 9vw, 138px);
  height: auto;
  filter: invert(1);
}
.brand strong {
  display: block;
  font: 500 33px/1 var(--serif);
  letter-spacing: 0.15em;
}
.brand span {
  font-size: 8px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}
.nav {
  display: flex;
  gap: 40px;
  align-items: center;
}
.nav a {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  position: relative;
}
.nav a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 1px;
  background: #fff;
  transition: 0.3s;
}
.nav a:hover:after,
.nav a.active:after {
  right: 0;
}
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  color: #fff;
  width: 42px;
  height: 42px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: currentColor;
  margin: 6px auto;
}
.mobile-menu {
  position: fixed;
  inset: 0;
  background: #0f0e0d;
  color: #fff;
  z-index: 100;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: 0.4s var(--ease);
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu nav {
  display: grid;
  gap: 20px;
  text-align: center;
}
.mobile-menu a {
  font: 500 42px/1 var(--serif);
}
.mobile-menu .close {
  position: absolute;
  right: 24px;
  top: 24px;
  border: 0;
  background: none;
  color: #fff;
  font-size: 32px;
}
.hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: end;
  color: #fff;
  background: #111;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-media img {
  height: 100%;
  object-fit: cover;
}
.hero-media:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(4, 3, 3, 0.88) 0%,
    rgba(4, 3, 3, 0.52) 38%,
    rgba(4, 3, 3, 0.1) 68%,
    rgba(4, 3, 3, 0.12) 100%
  );
}
.hero-copy {
  position: relative;
  z-index: 2;
  padding: 190px 0 78px;
  max-width: 720px;
}
.hero .tagline {
  margin-bottom: 26px;
}
.hero .display {
  margin: 0 0 26px;
}
.hero .lead {
  max-width: 530px;
  margin: 0 0 34px;
  color: rgba(255, 255, 255, 0.9);
}
.hero-meta {
  position: absolute;
  right: 6vw;
  bottom: 66px;
  z-index: 2;
  text-align: right;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 10px;
  line-height: 2.1;
}
.hero-scroll {
  position: absolute;
  left: 6vw;
  bottom: 58px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 9px;
}
.hero-scroll i {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  font-style: normal;
}
.section {
  padding: 120px 0;
}
.section.dark {
  background: #11100f;
  color: #fff;
}
.section.wine {
  background: var(--wine);
  color: #fff;
}
.intro-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.9fr 0.7fr;
  gap: 40px;
  align-items: center;
}
.intro-copy {
  padding-right: 40px;
}
.portrait {
  aspect-ratio: 4/5;
  object-fit: cover;
}
.quote-card {
  padding: 48px;
  border-left: 1px solid var(--line);
  text-align: center;
}
.quote-card blockquote {
  font: italic 400 36px/1.15 var(--serif);
  margin: 0 0 20px;
}
.service-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #0f0e0d;
  color: #fff;
  border-top: 1px solid #2b2926;
  border-bottom: 1px solid #2b2926;
}
.service-strip a {
  padding: 34px;
  border-right: 1px solid #2b2926;
  text-align: center;
}
.service-strip a:last-child {
  border-right: 0;
}
.service-strip strong {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  display: block;
}
.image-banner {
  position: relative;
  min-height: 520px;
  color: #fff;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
}
.image-banner img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}
.image-banner:after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(12, 11, 10, 0.34);
}
.image-banner .content {
  position: relative;
  z-index: 2;
}
.image-banner .subtitle {
  font-size: 64px;
}
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.card-media {
  overflow: hidden;
  background: #ddd;
}
.card-media img {
  aspect-ratio: 4/5;
  object-fit: cover;
  transition: 0.65s var(--ease);
}
.card:hover img {
  transform: scale(1.035);
}
.card h3 {
  font: 500 31px/1 var(--serif);
  margin: 14px 0 4px;
}
.card p {
  margin: 0;
  color: #6f685f;
  font-size: 13px;
}
.page-hero {
  padding: 190px 0 90px;
  background: #111;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.page-hero.has-image {
  min-height: 70svh;
  display: flex;
  align-items: end;
}
.page-hero .bg {
  position: absolute;
  inset: 0;
}
.page-hero .bg img {
  height: 100%;
  object-fit: cover;
}
.page-hero .bg:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9, 8, 7, 0.86), rgba(9, 8, 7, 0.22));
}
.page-hero .content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat {
  padding: 34px;
  text-align: center;
  border-right: 1px solid var(--line);
}
.stat:last-child {
  border-right: 0;
}
.stat b {
  font: 500 42px/1 var(--serif);
  display: block;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.event-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.event-card {
  position: relative;
}
.event-card img {
  aspect-ratio: 16/10;
  object-fit: cover;
}
.event-card h3 {
  font: 500 38px/1 var(--serif);
  margin: 14px 0 4px;
}
.services-list {
  counter-reset: svc;
}
.service-row {
  display: grid;
  grid-template-columns: 70px 1fr 160px;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.service-row:before {
  counter-increment: svc;
  content: "0" counter(svc);
  font-family: var(--serif);
  font-size: 24px;
  color: var(--gold);
}
.service-row h3 {
  font: 500 31px/1 var(--serif);
  margin: 0 0 4px;
}
.service-row p {
  margin: 0;
  color: #70695f;
}
.service-row img {
  width: 160px;
  height: 88px;
  object-fit: cover;
}
.filters {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin: 0 0 34px;
}
.filter {
  border: 0;
  background: transparent;
  padding: 8px 0;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 10px;
  cursor: pointer;
  border-bottom: 1px solid transparent;
}
.filter.active {
  border-color: var(--gold);
}
.portfolio-grid {
  columns: 3 280px;
  column-gap: 18px;
}
.portfolio-item {
  break-inside: avoid;
  margin: 0 0 18px;
  position: relative;
  overflow: hidden;
}
.portfolio-item img {
  transition: 0.6s var(--ease);
}
.portfolio-item:hover img {
  transform: scale(1.025);
}
.portfolio-item figcaption {
  padding: 10px 2px 0;
}
.portfolio-item strong {
  font: 500 25px/1 var(--serif);
}
.portfolio-item span {
  display: block;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #81786e;
  margin-top: 6px;
}
.process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.step {
  position: relative;
  padding-top: 60px;
}
.step:before {
  content: attr(data-step);
  position: absolute;
  top: 0;
  left: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 20px;
}
.step:after {
  content: "";
  position: absolute;
  left: 52px;
  right: -16px;
  top: 21px;
  height: 1px;
  background: var(--line);
}
.step:last-child:after {
  display: none;
}
.step h3 {
  font: 500 27px/1 var(--serif);
  margin: 0 0 10px;
}
.story {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 600px;
}
.story-copy {
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.story-copy blockquote {
  font: italic 400 clamp(34px, 4vw, 58px) / 1.05 var(--serif);
  margin: 0 0 24px;
}
.story-image img {
  height: 100%;
  object-fit: cover;
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr 0.65fr;
  gap: 45px;
}
.contact-info .item {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form .full {
  grid-column: 1/-1;
}
.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 16px;
  border: 1px solid var(--line);
  background: transparent;
}
.form textarea {
  min-height: 140px;
}
.contact-image img {
  height: 100%;
  min-height: 480px;
  object-fit: cover;
}
.footer {
  background: #0e0d0c;
  color: #fff;
  padding: 56px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 30px;
  align-items: end;
}
.footer nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
.footer nav a {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.footer .tag {
  text-align: right;
  font: italic 400 18px var(--serif);
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 980px) {
  .container {
    width: min(100% - 36px, 900px);
  }
  .nav {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .header-inner > .btn {
    display: none;
  }
  .hero-copy {
    padding-top: 150px;
  }
  .hero-meta {
    display: none;
  }
  .intro-grid,
  .split,
  .story,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .quote-card {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .cards {
    grid-template-columns: 1fr 1fr;
  }
  .service-strip {
    grid-template-columns: 1fr 1fr;
  }
  .process {
    grid-template-columns: 1fr 1fr;
  }
  .step:after {
    display: none;
  }
  .stats {
    grid-template-columns: 1fr 1fr;
  }
  .portfolio-grid {
    columns: 2 250px;
  }
  .contact-image {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer .tag {
    text-align: center;
  }
  .footer nav {
    order: 2;
  }
}
@media (max-width: 620px) {
  body {
    font-size: 14px;
  }
  .container {
    width: calc(100% - 28px);
  }
  .site-header {
    height: 74px;
  }
  .brand strong {
    font-size: 25px;
  }
  .brand-logo {
    width: 104px;
  }
  .brand span {
    font-size: 6px;
  }
  .hero {
    min-height: 900px;
  }
  .hero-copy {
    padding: 130px 0 160px;
    max-width: 92%;
  }
  .hero .display {
    font-size: 76px;
  }
  .hero .lead {
    font-size: 19px;
  }
  .hero-scroll {
    bottom: 35px;
    left: 20px;
  }
  .section {
    padding: 78px 0;
  }
  .intro-grid,
  .event-grid,
  .cards,
  .process {
    grid-template-columns: 1fr;
  }
  .service-strip {
    grid-template-columns: 1fr 1fr;
  }
  .service-strip a {
    padding: 24px 10px;
  }
  .service-strip strong {
    font-size: 20px;
  }
  .image-banner {
    min-height: 360px;
  }
  .image-banner .subtitle {
    font-size: 46px;
  }
  .page-hero {
    padding: 140px 0 70px;
  }
  .page-hero.has-image {
    min-height: 640px;
  }
  .stats {
    grid-template-columns: 1fr 1fr;
  }
  .stat {
    padding: 24px 12px;
  }
  .stat b {
    font-size: 34px;
  }
  .service-row {
    grid-template-columns: 46px 1fr;
  }
  .service-row img {
    display: none;
  }
  .portfolio-grid {
    columns: 1;
  }
  .story-copy {
    padding: 48px 24px;
  }
  .story-image {
    min-height: 460px;
  }
  .form {
    grid-template-columns: 1fr;
  }
  .footer nav {
    gap: 18px;
  }
  .footer .tag {
    font-size: 16px;
  }
}

/* Soft editorial luxury layer */
:root {
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 34px;
}
.btn {
  min-height: 50px;
  padding: 14px 25px;
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(17, 16, 15, 0.07);
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 32px rgba(17, 16, 15, 0.16);
}
.menu-toggle,
.mobile-menu .close {
  border-radius: 50%;
}
.menu-toggle {
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}
.mobile-menu .close {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
}
.site-header.scrolled {
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
}
.site-header.scrolled .header-inner {
  height: 64px;
  margin-top: 10px;
  padding: 0 16px 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(18, 15, 14, 0.78);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px) saturate(120%);
}
.site-header.scrolled .brand {
  margin-right: auto;
}
.portrait,
.split > img,
.event-card,
.event-card img,
.portfolio-item,
.card-media,
.contact-image img,
.story-image,
.story-image img {
  border-radius: var(--radius-md);
}
.event-card,
.portfolio-item,
.story,
.quote-card,
.cards > article {
  transition:
    transform 0.45s var(--ease),
    box-shadow 0.45s var(--ease),
    border-color 0.45s var(--ease);
}
.event-card:hover,
.portfolio-item:hover,
.cards > article:hover {
  transform: translateY(-6px);
}
.event-card,
.cards > article {
  padding: 12px;
  border: 1px solid rgba(17, 16, 15, 0.08);
  background: rgba(255, 255, 255, 0.46);
  box-shadow: 0 12px 30px rgba(45, 35, 25, 0.06);
}
.event-card h3,
.event-card p {
  padding-right: 10px;
  padding-left: 10px;
}
.event-card h3 {
  margin-top: 20px;
}
.event-card p {
  padding-bottom: 10px;
}
.portfolio-item {
  border-radius: var(--radius-md);
  background: #f2ece3;
  box-shadow: 0 12px 30px rgba(45, 35, 25, 0.06);
}
.portfolio-item figcaption {
  padding: 15px 16px 18px;
}
.quote-card {
  border: 1px solid rgba(17, 16, 15, 0.1);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.45);
  box-shadow: 0 14px 32px rgba(45, 35, 25, 0.05);
}
.service-strip {
  margin: 0 28px;
  overflow: hidden;
  border: 1px solid #2b2926;
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 48px rgba(17, 16, 15, 0.12);
}
.service-strip a {
  transition:
    background 0.35s var(--ease),
    color 0.35s var(--ease);
}
.service-strip a:hover {
  background: var(--wine);
}
.filters {
  gap: 10px;
}
.filter {
  padding: 10px 16px;
  border: 1px solid rgba(17, 16, 15, 0.12);
  border-radius: 999px;
  transition: 0.3s var(--ease);
}
.filter:hover,
.filter.active {
  border-color: var(--wine);
  background: var(--wine);
  color: #fff;
}
.filter.active {
  box-shadow: 0 8px 18px rgba(84, 28, 34, 0.2);
}
.form input,
.form select,
.form textarea {
  border-radius: var(--radius-sm);
  border-color: rgba(17, 16, 15, 0.13);
  background: rgba(255, 255, 255, 0.56);
  transition:
    border-color 0.25s var(--ease),
    box-shadow 0.25s var(--ease),
    background 0.25s var(--ease);
}
.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: 0;
  border-color: var(--gold);
  background: #fffdf9;
  box-shadow: 0 0 0 4px rgba(182, 151, 98, 0.14);
}
.footer {
  margin: 28px 28px 0;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.site-loader__inner {
  isolation: isolate;
}
.site-loader__logo {
  clip-path: inset(0 100% 0 0);
  filter: invert(1) drop-shadow(0 0 16px rgba(255, 255, 255, 0.14));
  animation: handwrittenLogo 1.45s 0.1s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}
.site-loader__pen {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 48px;
  left: 0;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(
    to bottom,
    transparent,
    #f4d7a8 35%,
    #fff3d9 55%,
    transparent
  );
  box-shadow: 0 0 13px rgba(244, 215, 168, 0.95);
  opacity: 0;
  animation: inkPen 1.45s 0.1s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}
@keyframes handwrittenLogo {
  0% {
    clip-path: inset(0 100% 0 0);
    transform: translateY(5px) scale(0.99);
  }
  24% {
    transform: translateY(-2px) scale(1.01);
  }
  100% {
    clip-path: inset(0 0 0 0);
    transform: translateY(0) scale(1);
  }
}
@keyframes inkPen {
  0% {
    opacity: 0;
    transform: translateX(-8px) rotate(-10deg);
  }
  8% {
    opacity: 1;
  }
  92% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(calc(min(300px, 68vw) + 8px)) rotate(8deg);
  }
}
@media (max-width: 620px) {
  .service-strip,
  .footer {
    margin-right: 14px;
    margin-left: 14px;
  }
  .service-strip {
    border-radius: 24px;
  }
  .footer {
    border-radius: 24px 24px 0 0;
  }
  .site-header.scrolled .header-inner {
    height: 58px;
    padding: 0 11px 0 17px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
