/* ========== TOKENS ========== */
:root {
  --cream: #FAF7F2;
  --cream-2: #F5F0E6;
  --sand:  #F1E8D7;
  --sand-2: #E8DCC4;
  --sage:  #9CAF88;
  --sage-deep: #6B8268;
  --sage-tint: #E7EEE0;
  --ocean: #5C8A8A;
  --ocean-deep: #406A6A;
  --ocean-tint: #E1ECEC;
  --charcoal: #20201D;
  --charcoal-2: #14130F;
  --clay:  #C8956D;
  --clay-deep: #A36F4A;
  --stone: #8A8580;
  --ink-soft: #3A3833;
  --ink-mute: #54514B;
  --hairline: rgba(32, 32, 29, 0.14);
  --hairline-2: rgba(32, 32, 29, 0.08);
  --hairline-3: rgba(32, 32, 29, 0.04);
  --shadow-sm: 0 1px 2px rgba(32,32,29,0.04), 0 6px 22px rgba(32,32,29,0.05);
  --shadow-md: 0 2px 4px rgba(32,32,29,0.05), 0 18px 44px rgba(32,32,29,0.08);
  --shadow-lg: 0 4px 12px rgba(32,32,29,0.06), 0 32px 72px rgba(32,32,29,0.12);
  --r-card: 14px;
  --r-btn: 8px;
  --r-pill: 999px;
  --maxw: 1240px;
  --gutter: clamp(20px, 4vw, 44px);
  --serif: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease: cubic-bezier(.2, .65, .25, 1);
}

/* ========== BASE ========== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "ss02", "cv11";
  position: relative;
  overflow-x: hidden;
}

/* Fine grain — editorial print depth, not noise */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.55;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.18 0 0 0 0 0.16 0 0 0 0 0.13 0 0 0 0.18 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-size: 220px 220px;
}

em { font-style: italic; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  position: relative;
  z-index: 2;
}

::selection { background: var(--ocean); color: #fff; }

/* Focus rings */
:focus-visible {
  outline: 2px solid var(--ocean);
  outline-offset: 3px;
  border-radius: 4px;
}
.btn:focus-visible { outline-offset: 3px; }

/* ========== TYPE ========== */
.h1, .h2, .h3 {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--charcoal);
  margin: 0;
  text-wrap: balance;
}
.h1 {
  font-size: clamp(42px, 6.4vw, 86px);
  line-height: 1.02;
  letter-spacing: -0.032em;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-weight: 360;
}
.h1-display { font-weight: 360; }
.h1 em, .h2 em, .h3 em {
  font-style: italic;
  font-weight: 380;
  color: var(--ocean-deep);
  font-variation-settings: "opsz" 144, "SOFT" 80;
  letter-spacing: -0.022em;
}
.h3 em {
  color: var(--clay-deep);
  font-variation-settings: "opsz" 36, "SOFT" 60;
}
.h2 {
  font-size: clamp(34px, 4.4vw, 54px);
  line-height: 1.06;
  letter-spacing: -0.024em;
  font-variation-settings: "opsz" 96;
}
.h2 em {
  font-variation-settings: "opsz" 96, "SOFT" 80;
}
.h3 {
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.2;
  letter-spacing: -0.012em;
  font-variation-settings: "opsz" 36;
}
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  color: var(--stone);
  margin: 0 0 22px;
}
.eyebrow-dot::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ocean);
  margin-right: 12px;
  vertical-align: 2px;
}
.lede {
  font-size: clamp(17px, 1.55vw, 20px);
  line-height: 1.65;
  color: var(--ink-mute);
  max-width: 60ch;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  padding: 16px 22px;
  border-radius: var(--r-btn);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s var(--ease), background-color .2s ease, box-shadow .25s ease, border-color .2s ease;
  white-space: nowrap;
  letter-spacing: -0.005em;
}
.btn-sm { padding: 11px 16px; font-size: 14px; }
.btn-ocean {
  background: var(--ocean);
  color: #fff;
  box-shadow: 0 1px 0 rgba(255,255,255,0.18) inset, 0 8px 24px rgba(64,106,106,0.30);
}
.btn-ocean:hover { background: var(--ocean-deep); transform: translateY(-1px); box-shadow: 0 1px 0 rgba(255,255,255,0.18) inset, 0 12px 30px rgba(64,106,106,0.36); }
.btn-ghost {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--hairline);
}
.btn-ghost:hover { background: var(--cream-2); border-color: var(--charcoal); }
.btn-link {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  color: var(--charcoal);
  border-bottom: 1px solid var(--hairline);
  padding: 4px 0;
  transition: border-color .2s, color .2s;
}
.btn-link:hover { border-color: var(--ocean-deep); color: var(--ocean-deep); }
.arr { transition: transform .2s var(--ease); display: inline-block; }
.btn:hover .arr { transform: translateX(3px); }
.btn-link:hover .arr { transform: translateX(2px); }

/* ========== NAV ========== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(180deg, rgba(10, 16, 24, 0.55) 0%, rgba(10, 16, 24, 0.18) 70%, rgba(10, 16, 24, 0) 100%);
  transition: background .35s ease, box-shadow .35s ease, border-color .35s ease, color .35s ease;
  border-bottom: 1px solid transparent;
  color: #fff;
}
.nav .logo,
.nav .nav-links a:not(.btn) {
  color: inherit;
  transition: color .35s ease;
  text-shadow: 0 1px 14px rgba(15, 22, 30, 0.5);
}
.nav .logo-mark { color: rgba(255,255,255,0.92); }
.nav .logo-word em { color: rgba(255,255,255,0.78); }
.nav.is-scrolled .logo,
.nav.is-scrolled .nav-links a:not(.btn) { text-shadow: none; }
.nav.is-scrolled {
  background: rgba(250, 247, 242, 0.86);
  backdrop-filter: saturate(160%) blur(16px);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  border-bottom-color: var(--hairline-2);
  color: var(--charcoal);
}
.nav.is-scrolled .logo-mark { color: var(--ocean-deep); }
.nav.is-scrolled .logo-word em { color: var(--stone); }
.nav.is-scrolled .nav-links a:not(.btn) { color: var(--ink-soft); }
.nav.is-scrolled .nav-links a:not(.btn):hover { color: var(--ocean-deep); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.014em;
  font-variation-settings: "opsz" 48;
  color: var(--charcoal);
}
.logo-mark {
  display: inline-flex;
  width: 24px; height: 24px;
  align-items: center; justify-content: center;
  color: var(--ocean-deep);
}
.logo-mark svg { width: 100%; height: 100%; }
.logo-word { display: inline-flex; align-items: baseline; gap: 0; }
.logo-word em {
  font-style: italic;
  font-weight: 400;
  color: var(--stone);
  margin-left: 4px;
  font-variation-settings: "opsz" 48, "SOFT" 60;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a:not(.btn) {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: -0.005em;
  position: relative;
  transition: color .2s;
}
.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .3s var(--ease);
}
.nav-links a:not(.btn):hover { color: var(--ocean-deep); }
.nav-links a:not(.btn):hover::after { transform: scaleX(1); }
/* Mobile menu toggle */
.nav-toggle {
  display: none;
  width: 36px;
  height: 36px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  padding: 0;
  cursor: pointer;
  position: relative;
  transition: border-color .25s ease, background .25s ease;
}
.nav-toggle:hover { background: rgba(255,255,255,0.08); }
.nav-toggle-bar {
  position: absolute;
  left: 9px;
  right: 9px;
  height: 1.5px;
  background: #fff;
  border-radius: 1px;
  transition: transform .3s var(--ease), top .3s var(--ease), opacity .25s ease;
}
.nav-toggle-bar:nth-child(1) { top: 13px; }
.nav-toggle-bar:nth-child(2) { top: 20px; }
.nav.is-scrolled .nav-toggle { border-color: var(--hairline); }
.nav.is-scrolled .nav-toggle:hover { background: rgba(32,32,29,0.06); }
.nav.is-scrolled .nav-toggle-bar { background: var(--charcoal); }
.nav.is-menu-open .nav-toggle-bar:nth-child(1) { top: 16.5px; transform: rotate(45deg); }
.nav.is-menu-open .nav-toggle-bar:nth-child(2) { top: 16.5px; transform: rotate(-45deg); }

.mobile-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: rgba(20, 22, 24, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 24px clamp(20px, 4vw, 44px) 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease, transform .3s var(--ease);
}
.mobile-menu[hidden] { display: none; }
.nav.is-menu-open .mobile-menu {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu a {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  color: #fff;
  padding: 14px 0;
  letter-spacing: -0.014em;
  font-variation-settings: "opsz" 48;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color .2s ease, padding-left .25s var(--ease);
}
.mobile-menu a:hover, .mobile-menu a:focus-visible { color: #9EC6C6; padding-left: 8px; }
.mobile-menu .mobile-menu-cta {
  margin-top: 18px;
  font-family: var(--sans);
  font-size: 16px;
  border-bottom: none;
  padding: 16px 22px;
}
.mobile-menu .mobile-menu-cta:hover { padding-left: 22px; }

@media (max-width: 640px) {
  .nav-links { gap: 14px; }
  .nav-links a:not(.btn) { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: clamp(620px, 86vh, 800px);
  padding: clamp(110px, 13vw, 150px) 0 clamp(56px, 7vw, 96px);
  background: var(--cream);
  overflow: hidden;
  border-bottom: 1px solid var(--hairline-2);
  display: flex;
  align-items: center;
}
.hero-inner {
  position: relative;
  z-index: 3;
  width: 100%;
}
.hero-text {
  max-width: 560px;
  margin-left: auto;
}
.hero .h1 { font-size: clamp(36px, 4.8vw, 60px); letter-spacing: -0.028em; }
.hero .lede { margin-top: 24px; max-width: 46ch; font-size: clamp(16px, 1.35vw, 18px); }
.hero .cta-row { margin-top: 30px; gap: 20px; }
.hero .trust-row { margin-top: 44px; padding-top: 22px; gap: 0; }
.hero .trust-num { font-size: 24px; }
.hero .trust-lbl { font-size: 10.5px; letter-spacing: 0.16em; }
.hero .h1 br { display: block; }
.cta-row {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.lede { margin-top: 32px; max-width: 56ch; }

/* Full-bleed coastal background */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  display: block;
}
.hero-bg-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform-origin: 30% 50%;
  animation: heroKenBurns 38s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes heroKenBurns {
  0%   { transform: scale(1.08) translate(0, 0); }
  100% { transform: scale(1.16) translate(-2%, -1.5%); }
}

/* Sand-to-cream right-edge fade */
.hero-bg-fade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(250, 247, 242, 0) 0%,
      rgba(250, 247, 242, 0) 28%,
      rgba(250, 247, 242, 0.55) 44%,
      rgba(250, 247, 242, 0.92) 58%,
      var(--cream) 68%);
  z-index: 4;
}
.hero-bg-top-fade {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 160px;
  background: linear-gradient(180deg, rgba(10, 16, 24, 0.45) 0%, rgba(10, 16, 24, 0.18) 50%, rgba(10, 16, 24, 0) 100%);
  z-index: 6;
  pointer-events: none;
}

/* Subtle water shimmer overlay (looks like wind on the surface) */
.hero-bg-shimmer {
  position: absolute;
  left: 0;
  top: 0;
  width: 65%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='400' height='400'><filter id='s'><feTurbulence type='fractalNoise' baseFrequency='0.014 0.026' numOctaves='2' seed='4'/><feColorMatrix values='0 0 0 0 1   0 0 0 0 1   0 0 0 0 1   0 0 0 0.16 0'/></filter><rect width='100%' height='100%' filter='url(%23s)'/></svg>");
  background-size: 520px 520px;
  mix-blend-mode: soft-light;
  opacity: 0.8;
  animation: heroShimmer 28s linear infinite;
  will-change: background-position;
}
@keyframes heroShimmer {
  0%   { background-position: 0 0; }
  100% { background-position: -520px 260px; }
}

/* Trust row sits on the lighter sand area — adjust border tint */
.hero .trust-row {
  border-top-color: rgba(32, 32, 29, 0.18);
}

/* Make text legible regardless of slight image variation */
.hero-text .h1,
.hero-text .lede,
.hero-text .eyebrow,
.hero-text .trust-num,
.hero-text .trust-lbl {
  text-shadow: 0 1px 16px rgba(250, 247, 242, 0.65);
}

/* Hero scroll indicator — refined editorial detail */
.hero-scroll {
  position: absolute;
  bottom: clamp(28px, 4vw, 44px);
  left: clamp(20px, 4vw, 44px);
  z-index: 7;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  color: #fff;
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  text-shadow: 0 1px 14px rgba(15, 22, 30, 0.45);
  text-decoration: none;
  cursor: pointer;
  transition: transform .3s var(--ease), opacity .3s ease;
}
.hero-scroll:hover { transform: translateY(2px); opacity: 0.85; }
.hero-scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0.85) 35%, rgba(255,255,255,0) 100%);
  position: relative;
  overflow: hidden;
}
.hero-scroll-line::after {
  content: "";
  position: absolute;
  left: -1px;
  top: -100%;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, #fff 60%, rgba(255,255,255,0) 100%);
  animation: scrollPulse 2.4s cubic-bezier(.65,.05,.35,1) infinite;
}
@keyframes scrollPulse {
  0%   { top: -100%; }
  100% { top: 100%; }
}
@media (max-width: 700px) {
  .hero-scroll { display: none; }
}

@media (max-width: 1100px) {
  .hero-bg-fade {
    background: linear-gradient(180deg,
      rgba(250, 247, 242, 0) 0%,
      rgba(250, 247, 242, 0) 32%,
      rgba(250, 247, 242, 0.6) 46%,
      rgba(250, 247, 242, 0.95) 60%,
      var(--cream) 70%);
  }
  .hero-text { margin-left: 0; max-width: 100%; }
  .hero { min-height: clamp(720px, 96vh, 920px); padding-top: clamp(140px, 22vw, 240px); align-items: flex-end; }
  .hero-bg-img img { object-position: 30% 30%; }
  .hero-bg-shimmer { width: 100%; height: 60%; }
}
@media (max-width: 700px) {
  .hero {
    min-height: 760px;
    padding-top: 360px;
    padding-bottom: 56px;
  }
  .hero-bg-img img {
    transform: scale(1.04);
    animation: none;
    object-position: 35% 28%;
    filter: none;
  }
  .hero-bg-fade {
    background: linear-gradient(180deg,
      rgba(250, 247, 242, 0) 0%,
      rgba(250, 247, 242, 0) 36%,
      rgba(250, 247, 242, 0.85) 50%,
      var(--cream) 60%);
  }
  .hero-bg-shimmer { display: none; }
  .hero .h1 { font-size: clamp(34px, 9vw, 46px); }
}

/* Trust row */
.trust-row {
  list-style: none;
  padding: 0;
  margin: 64px 0 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--hairline-2);
  padding-top: 28px;
}
.trust-row li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding-right: 18px;
  position: relative;
}
.trust-row li + li::before {
  content: "";
  position: absolute;
  left: -1px;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: var(--hairline-2);
}
.trust-num {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 380;
  color: var(--ocean-deep);
  letter-spacing: -0.022em;
  font-variation-settings: "opsz" 60;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.trust-num-italic {
  font-style: italic;
  font-variation-settings: "opsz" 60, "SOFT" 80;
}
.trust-lbl {
  font-size: 11.5px;
  color: var(--stone);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 500;
}
@media (max-width: 760px) {
  .trust-row { grid-template-columns: repeat(2, 1fr); gap: 18px 0; }
  .trust-row li:nth-child(3)::before { display: none; }
  .trust-num { font-size: 24px; }
}

@media (max-width: 720px) {
  .h1 br { display: none; }
}

/* ========== SECTIONS ========== */
.section { padding: clamp(80px, 10vw, 128px) 0; position: relative; }
.section-sand {
  background: var(--sand);
  border-top: 1px solid var(--hairline-2);
  border-bottom: 1px solid var(--hairline-2);
}
.section-cream {
  background: var(--cream-2);
  border-top: 1px solid var(--hairline-2);
  border-bottom: 1px solid var(--hairline-2);
}
.section-head { margin-bottom: clamp(44px, 5vw, 68px); max-width: 760px; }
.section-head .eyebrow {
  display: inline-block;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--sage);
  margin-bottom: 22px;
}
.section-head-center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head-center .eyebrow { display: inline-block; }
.section-head-center .lede { margin-left: auto; margin-right: auto; }
.lede-center { margin-left: auto; margin-right: auto; text-align: center; }

/* ========== PAIN ========== */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pain-card {
  background: var(--cream);
  border: 1px solid var(--hairline-2);
  border-radius: var(--r-card);
  padding: 40px 34px 34px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform .35s var(--ease), box-shadow .35s ease;
}
.pain-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.pain-card::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 34px;
  width: 32px; height: 1px;
  background: var(--clay-deep);
}
.pain-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 56px;
  color: var(--clay-deep);
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 60, "SOFT" 80;
  margin-top: 14px;
  font-weight: 380;
  line-height: 0.9;
  font-variant-numeric: tabular-nums;
}
.pain-card .h3 { margin-bottom: 4px; margin-top: 6px; }
.pain-card p { margin: 0; color: var(--ink-mute); line-height: 1.65; }

@media (max-width: 880px) {
  .pain-grid { grid-template-columns: 1fr; }
}

/* ========== SOLUTION ========== */
.solution-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(40px, 6vw, 72px);
  align-items: stretch;
}
.solution-body p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 20px;
  max-width: 56ch;
}
.solution-body p:last-child { margin-bottom: 0; }
.pull {
  position: relative;
  background: #fff;
  border: 1px solid var(--hairline-2);
  border-radius: var(--r-card);
  padding: 52px 46px;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.pull::before {
  content: "";
  position: absolute;
  left: 46px; top: 0;
  width: 36px; height: 2px;
  background: var(--ocean);
}
.pull-wave {
  position: absolute;
  right: 32px;
  top: 32px;
  width: 100px;
  height: 14px;
  color: var(--ocean);
  opacity: 0.32;
}
.quote-mark {
  width: 30px; height: 24px;
  color: var(--ocean-deep);
  margin-bottom: 22px;
  opacity: 0.85;
}
.pull-text {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 380;
  font-size: clamp(28px, 2.8vw, 40px);
  line-height: 1.16;
  color: var(--charcoal);
  margin: 0 0 26px;
  letter-spacing: -0.022em;
  font-variation-settings: "opsz" 96, "SOFT" 100;
  text-wrap: balance;
}
.pull-text em {
  color: var(--ocean-deep);
  font-variation-settings: "opsz" 96, "SOFT" 100;
}
.pull-attr {
  font-size: 11px;
  color: var(--stone);
  margin: 0;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
}

@media (max-width: 880px) {
  .solution-grid { grid-template-columns: 1fr; }
}

/* ========== COMPARISON TABLE ========== */
.cmp-shell {
  position: relative;
}
.cmp-wrap {
  border-radius: var(--r-card);
  overflow: hidden;
  border: 1px solid var(--hairline);
  background: #fff;
  box-shadow: var(--shadow-md);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.cmp-edge {
  position: absolute;
  top: 1px;
  bottom: 1px;
  width: 56px;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  transition: opacity .25s ease;
}
.cmp-edge-left {
  left: 1px;
  border-top-left-radius: var(--r-card);
  border-bottom-left-radius: var(--r-card);
  background: linear-gradient(90deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0) 100%);
}
.cmp-edge-right {
  right: 1px;
  border-top-right-radius: var(--r-card);
  border-bottom-right-radius: var(--r-card);
  background: linear-gradient(270deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0) 100%);
}
.cmp-shell.is-scroll-start .cmp-edge-right { opacity: 1; }
.cmp-shell.is-scroll-mid .cmp-edge-left,
.cmp-shell.is-scroll-mid .cmp-edge-right { opacity: 1; }
.cmp-shell.is-scroll-end .cmp-edge-left { opacity: 1; }
.cmp-hint {
  display: none;
  text-align: center;
  margin: 14px 0 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone);
}
@media (max-width: 880px) {
  .cmp-hint { display: block; }
}
.cmp {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  min-width: 800px;
  font-variant-numeric: tabular-nums;
}
.cmp th, .cmp td {
  padding: 20px 20px;
  text-align: left;
  border-bottom: 1px solid var(--hairline-2);
  vertical-align: middle;
  transition: background-color .2s ease;
}
.cmp thead th {
  background: var(--sand);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 12.5px;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--hairline);
  white-space: nowrap;
}
.cmp tbody tr:last-child td { border-bottom: none; }
.cmp tbody tr:hover td { background-color: rgba(250, 247, 242, 0.7); }
.cmp tbody tr:hover td.cmp-hl { background-color: var(--ocean-tint); }
.cmp .cmp-row-label {
  font-weight: 600;
  color: var(--charcoal);
  width: 220px;
  background: #fbfaf7;
  border-right: 1px solid var(--hairline-2);
  text-transform: none;
  letter-spacing: 0;
  font-size: 14px;
}
.cmp tbody td {
  color: var(--ink-mute);
}
.cmp .cmp-col-hl {
  background: #fff;
  color: var(--charcoal);
  font-weight: 600;
  font-size: 14px;
  border-left: 1px solid var(--hairline);
  border-right: 1px solid var(--hairline);
  border-top: 2px solid var(--ocean);
  text-transform: none;
  letter-spacing: 0;
}
.cmp-hl-label {
  display: inline-block;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 18px;
  color: var(--charcoal);
  letter-spacing: -0.012em;
  font-variation-settings: "opsz" 36;
}
.cmp-hl-label em {
  color: var(--ocean-deep);
  font-variation-settings: "opsz" 36, "SOFT" 80;
}
.cmp tbody td.cmp-hl {
  background: #fff;
  color: var(--charcoal);
  font-weight: 600;
  border-left: 1px solid var(--hairline);
  border-right: 1px solid var(--hairline);
}
.cmp tbody tr:last-child td.cmp-hl {
  border-bottom: 2px solid var(--ocean);
}

/* ========== PRICING ========== */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.price-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--r-card);
  padding: 40px 34px 34px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s ease, border-color .3s ease;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--hairline); }
.price-card-feat {
  background: #fff;
  border: 1px solid var(--hairline);
  border-top: 2px solid var(--ocean);
  padding: 48px 36px 36px;
  box-shadow: var(--shadow-md);
  transform: translateY(-12px);
}
.price-card-feat:hover { transform: translateY(-16px); box-shadow: var(--shadow-lg); }
.price-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ocean);
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 2px;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(64,106,106,0.32);
}
.price-head {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--hairline-2);
  position: relative;
}
.price-card-feat .price-head::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 40px;
  height: 1px;
  background: var(--ocean);
}
.price-name {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  margin: 0 0 18px;
  letter-spacing: -0.014em;
  font-variation-settings: "opsz" 48;
}
.price-tag {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 0 0 6px;
  flex-wrap: wrap;
}
.price-from {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--stone);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  margin-right: -4px;
}
.price-num {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 380;
  color: var(--charcoal);
  letter-spacing: -0.028em;
  line-height: 1;
  font-variation-settings: "opsz" 144;
  font-variant-numeric: tabular-nums;
}
.price-num .strike {
  text-decoration: line-through;
  text-decoration-color: var(--stone);
  text-decoration-thickness: 2px;
  color: var(--stone);
  font-size: 26px;
  margin-right: 8px;
  font-weight: 400;
}
.price-unit { font-size: 14px; color: var(--stone); font-family: var(--sans); }
.price-mo { font-size: 15px; color: var(--ink-mute); margin: 0; font-variant-numeric: tabular-nums; }
.price-mo strong { color: var(--charcoal); font-weight: 700; font-size: 17px; }
.price-incl {
  font-size: 13px;
  color: var(--stone);
  margin: 0 0 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.price-feats {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  flex-grow: 1;
}
.price-feats li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-soft);
}
.price-feats li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 7px;
  width: 14px;
  height: 8px;
  border-left: 1.5px solid var(--charcoal);
  border-bottom: 1.5px solid var(--charcoal);
  transform: rotate(-45deg);
}
.price-card-feat .price-feats li::before {
  border-color: var(--sage-deep);
}
.price-feats li strong { font-weight: 600; color: var(--charcoal); }
.feat-note {
  display: inline-block;
  margin-left: 4px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ocean-deep);
  background: var(--ocean-tint);
  padding: 2px 8px;
  border-radius: var(--r-pill);
  vertical-align: 1px;
  white-space: nowrap;
}
.btn-block {
  width: 100%;
  justify-content: center;
}

@media (max-width: 980px) {
  .price-grid { grid-template-columns: 1fr; gap: 32px; }
  .price-card-feat { transform: none; }
  .price-card-feat:hover { transform: translateY(-3px); }
}

/* ========== PROCESS ========== */
.proc-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  counter-reset: step;
}
.proc-step {
  background: var(--cream);
  border: 1px solid var(--hairline-2);
  border-radius: var(--r-card);
  padding: 40px 34px 34px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s ease;
}
.proc-step:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.proc-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: transparent;
  color: var(--ocean-deep);
  border: 1px solid var(--ocean);
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  font-variation-settings: "opsz" 36, "SOFT" 80;
}
.proc-step .h3 { margin-bottom: 2px; }
.proc-step p { margin: 0; color: var(--ink-mute); }

@media (max-width: 880px) {
  .proc-grid { grid-template-columns: 1fr; }
}

/* ========== ABOUT ========== */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.about-photo { margin: 0; }
.photo-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--sand);
}
.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92);
}
.photo-tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(92,138,138,0) 55%, rgba(64,106,106,0.18));
  pointer-events: none;
}
.photo-cap {
  display: block;
  margin-top: 14px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
  font-weight: 500;
}
.about-body p { font-size: 17px; line-height: 1.7; color: var(--ink-soft); margin: 18px 0 0; max-width: 56ch; }
.about-body p.eyebrow { margin: 0; }
.about-body .h2 { margin-top: 18px; }
.about-kicker {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 1.8vw, 24px) !important;
  color: var(--charcoal) !important;
  margin-top: 28px !important;
  letter-spacing: -0.014em;
  font-variation-settings: "opsz" 60, "SOFT" 80;
  font-weight: 380;
}
.about-stats {
  list-style: none;
  padding: 28px 0 0;
  margin: 32px 0 0;
  border-top: 1px solid var(--hairline-2);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 32px;
  font-size: 14px;
  color: var(--ink-mute);
}
.about-contact {
  margin: 24px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 22px;
}
.about-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(17px, 1.4vw, 19px);
  letter-spacing: -0.012em;
  color: var(--charcoal);
  font-variation-settings: "opsz" 36, "SOFT" 60;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--hairline);
  transition: color .25s ease, border-color .25s ease;
}
.about-link:hover, .about-link:focus-visible {
  color: var(--ocean-deep);
  border-color: var(--ocean);
}
.about-link-icon {
  width: 16px;
  height: 16px;
  color: var(--ocean-deep);
  flex: 0 0 auto;
  transition: transform .3s var(--ease);
}
.about-link:hover .about-link-icon { transform: translateX(2px); }
.about-sep {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--stone);
  opacity: 0.5;
  flex: 0 0 auto;
}
@media (max-width: 480px) {
  .about-sep { display: none; }
  .about-contact { flex-direction: column; align-items: flex-start; gap: 14px; }
}
.about-stats li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.stat-mark {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1px solid var(--sage);
  position: relative;
}
.stat-mark::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--sage);
}

@media (max-width: 880px) {
  .about-grid { grid-template-columns: 1fr; }
  .photo-frame { max-width: 420px; }
}

/* ========== WORK ========== */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.work-card {
  background: #fff;
  border: 1px solid var(--hairline-2);
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s ease;
}
.work-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.work-img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--sand);
}
.work-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.work-card:hover .work-img img { transform: scale(1.05); }
.work-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.22));
  pointer-events: none;
}
.pill {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 12px 7px 12px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--charcoal);
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
}
.pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ocean);
}
.work-meta { padding: 22px 24px 24px; }
.work-title {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 500;
  margin: 0 0 4px;
  letter-spacing: -0.012em;
  font-variation-settings: "opsz" 36;
}
.work-loc { margin: 0; font-size: 14px; color: var(--stone); }

@media (max-width: 880px) {
  .work-grid { grid-template-columns: 1fr; }
}

/* ========== FAQ ========== */
.faq-inner { max-width: 880px; }
.faq-list { display: flex; flex-direction: column; }
.faq-item {
  border-bottom: 1px solid var(--hairline);
}
.faq-item:first-child { border-top: 1px solid var(--hairline); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 26px 8px 26px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: color .25s ease;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-q {
  font-family: var(--serif);
  font-size: clamp(18px, 1.8vw, 23px);
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: -0.012em;
  font-variation-settings: "opsz" 48;
  text-wrap: balance;
  position: relative;
  display: inline-block;
}
.faq-q::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background: var(--ocean);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .35s var(--ease);
}
.faq-item[open] .faq-q::after { transform: scaleX(1); }
.faq-toggle {
  position: relative;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border: 1px solid var(--hairline);
  border-radius: 50%;
  transition: background .25s, border-color .25s, transform .3s var(--ease);
}
.faq-toggle::before, .faq-toggle::after {
  content: "";
  position: absolute;
  background: var(--charcoal);
  border-radius: 1px;
  transition: transform .3s var(--ease), opacity .25s ease, background .25s ease;
}
.faq-toggle::before {
  left: 7px; right: 7px;
  top: 50%; height: 1.5px;
  transform: translateY(-50%);
}
.faq-toggle::after {
  top: 7px; bottom: 7px;
  left: 50%; width: 1.5px;
  transform: translateX(-50%);
}
.faq-item[open] .faq-toggle {
  border-color: var(--ocean);
  background: var(--ocean-tint);
}
.faq-item[open] .faq-toggle::before { background: var(--ocean-deep); }
.faq-item[open] .faq-toggle::after { opacity: 0; transform: translateX(-50%) rotate(90deg); }
.faq-item[open] summary { color: var(--ocean-deep); }
.faq-item:hover summary { color: var(--ocean-deep); }
.faq-a {
  padding: 0 8px 30px 0;
  max-width: 70ch;
  animation: faqIn .35s var(--ease);
}
.faq-a p { margin: 0; color: var(--ink-mute); line-height: 1.7; font-size: 16px; }
@keyframes faqIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: none; }
}

/* ========== FINAL CTA ========== */
.section-cta {
  padding: clamp(60px, 8vw, 96px) 0 clamp(72px, 10vw, 120px);
}
.cta-card {
  background: var(--cream-2);
  border: 1px solid var(--hairline-2);
  border-radius: var(--r-card);
  padding: clamp(60px, 8vw, 100px) clamp(28px, 6vw, 72px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, rgba(92,138,138,0.06), transparent 60%);
  pointer-events: none;
}
.cta-card .h2 { max-width: 18ch; margin: 0 auto; position: relative; }
.cta-card .lede { margin: 0 auto; max-width: 56ch; position: relative; }
.btn-lg {
  padding: 20px 32px;
  font-size: 17px;
  margin-top: 14px;
  position: relative;
}
.cta-card .wave {
  display: block;
  width: 60%;
  max-width: 320px;
  height: 22px;
  color: var(--ocean);
  margin: 0 auto 12px;
  opacity: 0.85;
  position: relative;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--charcoal);
  color: #c9c4bb;
  padding: 64px 0 40px;
  border-top: 1px solid var(--ocean);
  position: relative;
  z-index: 2;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.foot-col { display: flex; flex-direction: column; gap: 12px; }
.foot-logo {
  font-family: var(--serif);
  font-size: 24px;
  color: #fff;
  margin: 0;
  letter-spacing: -0.014em;
  font-variation-settings: "opsz" 48;
  font-weight: 500;
}
.foot-logo em {
  font-style: italic;
  font-weight: 400;
  color: #a8a39a;
  font-variation-settings: "opsz" 48, "SOFT" 60;
  margin-left: 4px;
}
.foot-tag { margin: 0; font-size: 14px; color: #a8a39a; font-style: italic; font-family: var(--serif); font-variation-settings: "opsz" 36; }
.foot-copy { margin: 16px 0 0; font-size: 13px; color: #807b73; }
.foot-nav { gap: 12px; padding-top: 6px; }
.foot-nav a, .foot-contact a {
  font-size: 14px;
  color: #c9c4bb;
  transition: color .25s ease;
  display: inline-block;
  width: fit-content;
}
.foot-nav a:hover, .foot-contact a:hover { color: #fff; }
.foot-contact { padding-top: 6px; gap: 10px; }

.foot-bottom {
  margin-top: 56px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}
.foot-made {
  margin: 0;
  font-size: 13px;
  color: #807b73;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.foot-heart {
  width: 13px;
  height: 13px;
  color: var(--clay);
  display: inline-block;
  vertical-align: middle;
  transition: transform .35s var(--ease);
}
.foot-made:hover .foot-heart { transform: scale(1.18); }
.foot-made a {
  color: #c9c4bb;
  border-bottom: 1px solid rgba(201, 196, 187, 0.28);
  padding-bottom: 1px;
  transition: color .25s ease, border-color .25s ease;
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  font-variation-settings: "opsz" 24;
}
.foot-made a:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 720px) {
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .foot-bottom { margin-top: 40px; padding-top: 22px; }
}

/* ========== SCROLL REVEAL ========== */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  transition-delay: calc(var(--idx, 0) * 70ms);
  will-change: opacity, transform;
}
.reveal.is-revealed {
  opacity: 1;
  transform: none;
}

/* ========== REDUCED MOTION ========== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  body::before { display: none; }
  .hero-bg-img img,
  .hero-bg-foam,
  .hero-bg-shimmer { animation: none; }
}
