*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --cream: #FDFAF4;
  --cream2: #F7F1E3;
  --cream3: #EDE3CC;
  --gold: #B8872A;
  --gold-bright: #D4A840;
  --gold-pale: #F5EDCE;
  --gold-glow: rgba(184, 135, 42, 0.15);
  --ink: #12100A;
  --ink2: #2C2618;
  --muted: #7A7060;
  --border: rgba(184, 135, 42, 0.14);
  --border2: rgba(184, 135, 42, 0.32);
}

html {
  font-size: 106%;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: .028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

.global-grid {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 5;
  background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.5;
}


nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 6rem;
  transition: all .5s cubic-bezier(.16, 1, .3, 1);
}

nav.scrolled {
  padding: 1.1rem 6rem;
  background: rgba(253, 250, 244, .88);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: .04em;
}

.nav-logo span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 3rem;
  list-style: none;
}

.nav-links a {
  font-size: .72rem;
  font-weight: 400;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  position: relative;
  transition: color .3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .35s cubic-bezier(.16, 1, .3, 1);
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #fff;
  background: var(--gold);
  padding: .7rem 2rem;
  text-decoration: none;
  border: none;
  transition: opacity .25s;
  border-radius: 6px;
}

.nav-btn:hover {
  opacity: .85;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 6rem;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-blob1 {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 50%, rgba(212, 168, 64, .12) 0%, transparent 65%);
  top: -100px;
  right: -150px;
  animation: blobDrift 12s ease-in-out infinite;
}

.hero-blob2 {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 135, 42, .07) 0%, transparent 65%);
  bottom: -50px;
  left: 40%;
  animation: blobDrift 9s ease-in-out infinite 3s;
}

@keyframes blobDrift {

  0%,
  100% {
    transform: translate(0, 0) scale(1)
  }

  33% {
    transform: translate(-20px, 15px) scale(1.04)
  }

  66% {
    transform: translate(15px, -10px) scale(.97)
  }
}


.hero-corner,
.deco-corner {
  position: absolute;
  width: 280px;
  height: 280px;
  border: 1px solid var(--border2);
  border-radius: 50%;
  animation: spinSlow 25s linear infinite;
  pointer-events: none;
  z-index: 1;
}

.hero-corner {
  top: 4rem;
  right: 4rem;
}

.hero-corner::before,
.deco-corner::before {
  content: '';
  position: absolute;
  inset: 30px;
  border: 1px solid var(--border);
  border-radius: 50%;
}

.hero-corner::after,
.deco-corner::after {
  content: '';
  position: absolute;
  inset: 60px;
  border: 1px dashed var(--border);
  border-radius: 50%;
}

.services-corner {
  top: 10rem;
  left: -140px;
  opacity: 0.4;
}

.contact-corner {
  bottom: 5rem;
  right: -100px;
  width: 350px;
  height: 350px;
  opacity: 0.6;
}

.contact-corner-2 {
  top: -120px;
  left: 10%;
  width: 280px;
  height: 280px;
  opacity: 0.5;
  animation-duration: 35s;
}

.contact-corner-3 {
  top: 40%;
  right: -140px;
  width: 420px;
  height: 420px;
  opacity: 0.4;
  animation-direction: reverse;
  animation-duration: 45s;
}

.contact-corner-4 {
  bottom: -150px;
  left: -80px;
  width: 500px;
  height: 500px;
  opacity: 0.3;
  animation-duration: 60s;
}

.hero-corner-2 {
  top: 55%;
  right: -100px;
  width: 320px;
  height: 320px;
  opacity: 0.3;
  animation-duration: 32s;
}

.hero-corner-3 {
  bottom: -150px;
  right: 15%;
  width: 450px;
  height: 450px;
  opacity: 0.2;
  animation-direction: reverse;
  animation-duration: 48s;
}

.hero-corner-4 {
  bottom: 5%;
  left: 5%;
  width: 380px;
  height: 380px;
  opacity: 0.25;
  animation-duration: 38s;
}

.hero-corner-5 {
  top: -80px;
  left: 10%;
  width: 300px;
  height: 300px;
  opacity: 0.15;
  animation-direction: reverse;
  animation-duration: 55s;
}

.hero-left {
  position: relative;
  z-index: 2;
  padding: 9rem 0 5rem;
  width: 100%;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp .8s ease forwards .1s;
}

.hero-tag-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .4;
    transform: scale(.6);
  }
}

.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(4rem, 6.5vw, 7.5rem);
  font-weight: 900;
  line-height: 0.99;
  color: var(--ink);
  margin-bottom: 1.8rem;
}

.hero-h1 .line {
  display: block;
  overflow: hidden;
  padding-bottom: .1em;
  margin-bottom: -.1em;
}

.hero-h1 .line-inner {
  display: block;
  transform: translateY(110%);
  opacity: 0;
  animation: lineSlide .9s cubic-bezier(.16, 1, .3, 1) forwards;
}

.hero-h1 .line-inner em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.hero-h1 .l1 {
  animation-delay: .05s;
}

.hero-h1 .l2 {
  animation-delay: .15s;
}

.hero-h1 .l3 {
  animation-delay: .25s;
}

.hero-sub {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--muted);
  max-width: 420px;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp .8s ease forwards .4s;
}

.hero-actions {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  opacity: 0;
  animation: fadeUp .8s ease forwards .5s;
}

.hero-btn-group {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .9rem;
  padding: 1.1rem 2.8rem;
  background: var(--gold);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: opacity .25s, transform .25s;
  border-radius: 6px;
}

.btn-primary:hover {
  opacity: .88;
}

.btn-primary svg {
  transition: transform .25s;
}

.btn-primary:hover svg {
  transform: translateX(3px);
}

.btn-ghost {
  font-size: .72rem;
  font-weight: 400;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink2);
  text-decoration: none;
  border-bottom: 1px solid var(--border2);
  padding-bottom: .2rem;
  transition: color .25s, border-color .25s;
}

.btn-ghost:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.hero-stats {
  display: flex;
  gap: 3rem;
  opacity: 0;
  animation: fadeUp .8s ease forwards .6s;
}

.hs-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
}

.hs-label {
  font-size: .65rem;
  font-weight: 400;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: .3rem;
  display: block;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes lineSlide {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes spinSlow {
  to {
    transform: rotate(360deg);
  }
}

.marquee-wrap {
  width: 100%;
  margin: 0;
  overflow: hidden;
  padding: 1.4rem 0;
  background: var(--ink);
  position: relative;
  z-index: 10;
  perspective: 1000px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.marquee-wrap::before,
.marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.marquee-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--ink), transparent);
}

.marquee-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--ink), transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeSroll 22s linear infinite;
  white-space: nowrap;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.marquee-wrap:hover .marquee-track {
  animation-play-state: paused;
}

.m-item {
  font-family: 'Cormorant', serif;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: white;
  padding: 0 2rem;
}

.m-sep {
  color: var(--gold-bright);
  padding: 0 1rem;
  font-size: .7rem;
}

@keyframes marqueeSroll {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

#services {
  padding: 10rem 6rem;
  background: var(--cream);
  position: relative;
  z-index: 10;
  overflow: hidden;
}

#services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border2), transparent);
}

.srv-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 7rem;
}

.s-label {
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  display: block;
}

.srv-header-left .s-label {
  margin-bottom: 1.2rem;
}

.srv-h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 4.5vw, 4.2rem);
  font-weight: 900;
  line-height: .95;
  color: var(--ink);
}

.srv-h2 em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  display: block;
}

.srv-header-right {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
  max-width: 600px;
}

.svc-grid {
  display: grid;
  gap: 0;
}

.svc-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0;
  border-top: 1px solid var(--border);
  padding: 0;
  cursor: default;
  transition: none;
  position: relative;
  overflow: hidden;
}

.svc-card:last-child {
  border-bottom: 1px solid var(--border);
}

.svc-card-inner {
  display: contents;
}

.svc-num-block {
  padding: 3.5rem 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  border-right: 1px solid var(--border);
  min-width: 120px;
  transition: background .4s;
}

.svc-card:hover .svc-num-block {
  background: var(--gold);
}

.svc-n {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--border2);
  line-height: 1;
  transition: color .4s;
}

.svc-card:hover .svc-n {
  color: rgba(255, 255, 255, .4);
}

.svc-line {
  width: 1px;
  height: 30px;
  background: var(--border2);
  transition: background .4s;
}

.svc-card:hover .svc-line {
  background: rgba(255, 255, 255, .3);
}

.svc-body {
  padding: 3.5rem 4rem;
}

.svc-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 2.5vw, 2.8rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1rem;
  transition: color .3s;
}

.svc-card:hover .svc-title {
  color: var(--gold);
}

.svc-text {
  font-size: .88rem;
  font-weight: 300;
  line-height: 2;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 1.4rem;
}

.svc-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.pill {
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border: 1px solid var(--border2);
  color: var(--muted);
  transition: all .25s;
}

.pill:hover,
.svc-card:hover .pill {
  background: var(--gold-pale);
  border-color: var(--gold);
  color: black;
}

.svc-visual {
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid var(--border);
  min-width: 220px;
  background: var(--cream2);
  transition: background .4s;
}

.svc-card:hover .svc-visual {
  background: var(--gold-pale);
}

.svc-visual svg {
  transition: transform .5s cubic-bezier(.16, 1, .3, 1);
  filter: drop-shadow(0 8px 20px rgba(184, 135, 42, .1));
}

.svc-card:hover .svc-visual svg {
  transform: scale(1.04);
}

.svc-highlight {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--gold);
  transition: height .5s cubic-bezier(.16, 1, .3, 1);
}

.svc-card:hover .svc-highlight {
  height: 100%;
}

.about-strip {
  background: var(--cream2);
  padding: 9rem 6rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
  position: relative;
  z-index: 10;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-big {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 900;
  line-height: .92;
  color: var(--ink);
}

.about-big em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

.about-label {
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.about-text {
  font-size: .95rem;
  font-weight: 300;
  line-height: 2.05;
  color: var(--muted);
  margin-bottom: 2.5rem;
}

.about-stat-row {
  display: flex;
  gap: 3rem;
  padding-top: 2.5rem;
}

.ab-stat-n {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
}

.ab-stat-l {
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: .3rem;
  display: block;
}

.about-deco {
  position: absolute;
  right: 5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 200px;
  height: 200px;
  opacity: .06;
  pointer-events: none;
}

#process {
  padding: 10rem 6rem;
  background: var(--cream);
  position: relative;
  z-index: 10;
}

.proc-header {
  text-align: center;
  margin-bottom: 7rem;
}

.proc-h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 900;
  line-height: 1;
  color: var(--ink);
}

.proc-h2 em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

.proc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
}

.proc-step {
  background: var(--cream);
  padding: 3.5rem 2.5rem;
  text-align: center;
  transition: background .3s;
}

.proc-step:hover {
  background: var(--gold-pale);
}

.proc-icon {
  width: 64px;
  height: 64px;
  border: 1px solid var(--border2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  position: relative;
  transition: all .35s;
}

.proc-step:hover .proc-icon {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  box-shadow: 0 12px 40px rgba(184, 135, 42, .3);
}


.proc-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: .8rem;
}

.proc-desc {
  font-size: 1rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
}

.quote-section {
  background: var(--ink);
  padding: 0;
  position: relative;
  z-index: 10;
  overflow: hidden;
}

.quote-inner {
  padding: 8rem 6rem;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6rem;
  align-items: center;
}

.quote-deco {
  font-family: 'Playfair Display', serif;
  font-size: 14rem;
  font-weight: 900;
  color: var(--gold);
  opacity: 0.1;
  line-height: .8;
  -webkit-user-select: none;
  user-select: none;
  flex-shrink: 0;
}

.quote-line {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 2.5rem;
}

.q-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(253, 250, 244, .9);
  line-height: 1.45;
  margin-bottom: 2rem;
}

.q-text em {
  color: var(--gold-bright);
  font-style: normal;
}

.q-author {
  font-size: .7rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgb(255, 45, 178);
}

#contact {
  padding: 10rem 6rem 4rem;
  background: var(--cream);
  position: relative;
  z-index: 10;
  overflow: hidden;
}

#contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border2), transparent);
}

.contact-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 8rem;
  align-items: start;
  position: relative;
  z-index: 5;
}

.cta-left .cta-label {
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.cta-big {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 900;
  line-height: .92;
  color: var(--ink);
  margin-bottom: 2.5rem;
}

.cta-big em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  display: block;
}

.cta-sub {
  font-size: .9rem;
  font-weight: 300;
  line-height: 2;
  color: var(--muted);
  max-width: 360px;
  margin-bottom: 3rem;
}

.cta-links {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: flex-start;
}

.cta-link-row {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  text-decoration: none;
}

.cta-link-icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color .25s;
}

.cta-link-row:hover .cta-link-icon {
  border-color: var(--gold);
}

.cta-link-icon svg {
  stroke: var(--gold);
  fill: none;
}

.cta-link-label {
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
}

.cta-link-val {
  font-size: .9rem;
  font-weight: 400;
  color: var(--ink);
  display: block;
}

.form-wrap {
  background: #fff;
  border: 1px solid var(--border2);
  padding: 3.5rem;
  position: relative;
  box-shadow: 0 32px 80px rgba(0, 0, 0, .05);
  border-radius: 6px;
}

.form-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 2rem;
  right: 2rem;
  height: 3px;
  background: linear-gradient(to right, var(--gold), var(--gold-bright));
}

.form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2rem;
}

.f-group {
  margin-bottom: 1.2rem;
}

.f-group label {
  display: block;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .8rem;
}

.f-group input,
.f-group textarea,
.f-group select {
  width: 100%;
  padding: .85rem 1.1rem;
  background: var(--cream);
  border: 1px solid var(--border2);
  font-family: 'DM Sans', sans-serif;
  font-size: .92rem;
  font-weight: 300;
  color: var(--ink);
  outline: none;
  transition: all .35s;
  border-radius: 4px;
  appearance: none;
}

.f-group input:focus,
.f-group textarea:focus,
.f-group select:focus {
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(184, 135, 42, .06);
}

.f-group textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.7;
}

.f-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.f-group select {
  background: var(--cream) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23B8872A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") no-repeat right 1.1rem center;
  background-size: 1rem;
  cursor: pointer;
}

.f-group select:focus {
  background-color: #fff;
}

.f-btn {
  width: 100%;
  padding: 1rem;
  background: var(--gold);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: opacity .25s;
  margin-top: .5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  border-radius: 6px;
}

.f-btn:hover {
  opacity: .88;
}

.f-note {
  font-size: .72rem;
  color: var(--muted);
  text-align: center;
  margin-top: .9rem;
}

.f-note a {
  color: var(--gold);
  text-decoration: none;
}

.f-success {
  display: none;
  padding: 4rem 3rem;
  text-align: center;
}

.f-success-icon {
  width: 70px;
  height: 70px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.f-success-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: .8rem;
}

.f-success-sub {
  font-size: .88rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
}

footer {
  background: var(--ink);
  padding: 4rem 6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.f-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: rgba(253, 250, 244, .8);
  text-decoration: none;
}

.f-logo span {
  color: var(--gold);
}

.f-links {
  display: flex;
  gap: 2rem;
}

.f-links a {
  font-size: .68rem;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(253, 250, 244, .3);
  text-decoration: none;
  transition: color .3s;
}

.f-links a:hover {
  color: var(--gold);
}

.f-copy {
  font-size: .7rem;
  font-weight: 300;
  color: rgba(253, 250, 244, .2);
  letter-spacing: .06em;
}

.nav-links a.active {
  color: var(--gold);
}

.nav-links a.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  width: 48px;
  height: 48px;
  background: none;
  border: none;
  z-index: 600;
  padding: 0;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--ink);
  transition: all .35s cubic-bezier(.16, 1, .3, 1);
  transform-origin: center;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 400;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  transform: translate3d(100%, 0, 0);
  transition: transform .5s cubic-bezier(.16, 1, .3, 1);
  pointer-events: none;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.mobile-menu.open {
  transform: translate3d(0, 0, 0);
  pointer-events: all;
}

.mobile-menu a {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  transition: color .25s;
  position: relative;
}

.mobile-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width .35s cubic-bezier(.16, 1, .3, 1);
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--gold);
}

.mobile-menu a:hover::after,
.mobile-menu a.active::after {
  width: 100%;
}

.mobile-cta {
  margin-top: 1rem;
  padding: 1rem 3rem;
  background: var(--gold);
  color: #fff !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: .75rem !important;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.mobile-cta::after {
  display: none !important;
}

.mobile-menu-footer {
  font-size: .65rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2rem;
}

.mobile-menu-footer span {
  color: var(--gold);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s ease, transform .9s ease;
}

.reveal.vis {
  opacity: 1;
  transform: none;
}

.rl {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity .9s ease, transform .9s ease;
}

.rl.vis {
  opacity: 1;
  transform: none;
}

.rr {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity .9s ease, transform .9s ease;
}

.rr.vis {
  opacity: 1;
  transform: none;
}

.d1 {
  transition-delay: .1s;
}

.d2 {
  transition-delay: .2s;
}

.d3 {
  transition-delay: .3s;
}

.d4 {
  transition-delay: .4s;
}

.d5 {
  transition-delay: .5s;
}

@media(max-width:960px) {
  nav {
    padding: 1.2rem 2rem;
  }

  .nav-links,
  .nav-btn {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  nav.scrolled {
    padding: 1.1rem 2rem;
  }

  .hero {
    padding: 7rem 2rem 4rem;
    min-height: 0;
  }

  .hero-h1 {
    font-size: clamp(2.5rem, 8vw, 3.8rem);
  }

  .hero-sub {
    max-width: 100%;
  }

  .hero-stats {
    gap: 2rem;
  }

  section,
  #services,
  #process,
  #contact {
    padding: 5rem 2rem 2rem;
  }

  .srv-header {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 4rem;
  }

  .srv-header-right {
    padding-bottom: 0;
  }

  .svc-card {
    grid-template-columns: auto 1fr;
  }

  .svc-visual {
    display: none;
  }

  .svc-num-block {
    padding: 2.5rem 2rem;
    min-width: 90px;
  }

  .svc-body {
    padding: 2.5rem 2rem;
  }

  .svc-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
  }

  .about-strip {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 5rem 2rem;
  }

  .about-big {
    font-size: clamp(2.5rem, 7vw, 4rem);
  }

  .about-stat-row {
    gap: 2rem;
  }

  .proc-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2px;
  }

  .quote-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 5rem 2rem;
  }

  .quote-deco {
    font-size: 5rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .cta-big {
    font-size: clamp(2.5rem, 7vw, 4rem);
  }

  .cta-sub {
    max-width: 100%;
  }

  footer {
    flex-direction: column;
    text-align: center;
    padding: 2.5rem 2rem;
    gap: 1rem;
  }

  .f-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }

  .about-deco,
  .hero-corner-2,
  .hero-corner-3,
  .hero-corner-4,
  .hero-corner-5,
  .contact-corner-2,
  .contact-corner-3,
  .contact-corner-4 {
    display: none !important;
  }
}

@media(max-width:600px) {
  nav {
    padding: 1rem 1.25rem;
  }

  nav.scrolled {
    padding: .8rem 1.25rem;
  }

  .hero {
    padding: 4.5rem 1.25rem 3.5rem;
  }

  .hero-h1 {
    font-size: clamp(2.2rem, 11vw, 3.5rem);
    line-height: .98;
    margin-bottom: 1.5rem;
  }

  .hero-sub {
    font-size: .88rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 2.5rem;
    width: 100%;
  }

  .btn-primary {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 1.5rem 2.5rem;
    padding-top: 2rem;
    margin-top: 2.5rem;
  }

  .hs-num {
    font-size: 1.8rem;
  }

  section,
  #services,
  #process,
  #contact {
    padding: 4rem 1.25rem 1.5rem;
  }

  .srv-header {
    margin-bottom: 3rem;
  }

  .srv-h2 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .svc-card {
    grid-template-columns: 1fr;
  }

  .svc-num-block {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 1.25rem;
    min-width: unset;
    flex-direction: row;
    justify-content: flex-start;
    gap: 1rem;
  }

  .svc-n {
    font-size: 1.8rem;
  }

  .svc-body {
    padding: 1.5rem 1.25rem;
  }

  .svc-title {
    font-size: 1.5rem;
  }

  .svc-text {
    font-size: .84rem;
  }

  .svc-pills {
    gap: .4rem;
  }

  .pill {
    font-size: .58rem;
    padding: .25rem .7rem;
  }

  .about-big {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .about-text {
    font-size: .88rem;
  }

  .about-stat-row {
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .ab-stat-n {
    font-size: 2rem;
  }

  .proc-grid {
    grid-template-columns: 1fr;
    gap: 2px
  }

  .proc-step {
    padding: 2.5rem 1.5rem;
  }

  .quote-inner {
    padding: 4rem 1.25rem;
  }

  .quote-deco {
    display: none;
  }

  .q-text {
    font-size: clamp(1.3rem, 5vw, 2rem);
  }

  .contact-grid {
    gap: 3rem;
  }

  .cta-big {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .form-wrap {
    padding: 2rem 1.25rem;
  }

  .f-row {
    grid-template-columns: 1fr;
  }

  .f-btn {
    font-size: .68rem;
    padding: 1rem;
  }

  footer {
    padding: 2rem 1.25rem
  }

  .f-links {
    gap: 1rem;
  }
}

@media(max-width:380px) {
  .hero-h1 {
    font-size: 2.2rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .srv-h2 {
    font-size: 1.8rem;
  }

  .cta-big {
    font-size: 1.9rem;
  }

  .mobile-menu a {
    font-size: 1.5rem;
  }

  .hs-item {
    padding-bottom: .8rem;
    border-bottom: 1px solid var(--border);
    width: 100%;
  }
}

.f-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: .8rem;
}

.f-label-row label {
  margin-bottom: 0 !important;
}

.template-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-glow);
  border: 1px solid var(--border2);
  padding: .3rem .6rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all .25s;
}

.template-btn:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

.prism-toast {
  position: fixed;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s cubic-bezier(.16,1,.3,1), transform 0.4s cubic-bezier(.16,1,.3,1);
}

.prism-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.prism-toast-inner {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  background: var(--ink);
  border: 1px solid var(--border2);
  padding: 1rem 1.6rem;
  border-radius: 4px;
  box-shadow: 0 8px 40px rgba(18,16,10,0.32);
  min-width: 260px;
  max-width: 420px;
  position: relative;
  overflow: hidden;
}

.prism-toast-inner::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gold);
}

.prism-toast-icon {
  color: var(--gold-bright);
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.prism-toast-msg {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(253, 250, 244, 0.88);
  line-height: 1.5;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}