/* ==========================================================================
   DESIGN TOKENS — single source of truth for the visual system.
   Layer 1 (primitive) → Layer 2 (semantic). Component values live in main.css.
   Palette is built around the two brand primaries: #FFFFFF and #1CBBAB.
   ========================================================================== */
:root {
  /* --- Primitive: brand & neutrals ------------------------------------- */
  --c-white:        #ffffff;
  --c-porcelain:    #fcfdfd;
  --c-mist:         #f3f7f6;
  --c-mist-2:       #eaf1f0;
  --c-line:         #dfeae8;
  --c-teal:         #1cbbab;   /* PRIMARY */
  --c-teal-600:     #159c8f;
  --c-teal-700:     #0f7d73;
  --c-aqua:         #e6f7f5;
  --c-aqua-2:       #d3efeb;
  --c-turquoise:    #c9ede8;
  --c-sea:          #2f8fb0;   /* mediterranean blue, accents only */
  --c-sand:         #ece3d3;   /* warm sand */
  --c-sand-2:       #e3d6bf;
  --c-coral:        #ef9c86;   /* soft coral — accent ONLY, used sparingly */
  --c-ink:          #10312e;   /* deep teal-ink, primary text */
  --c-ink-2:        #24504b;   /* secondary text */
  --c-ink-3:        #5c7d78;   /* muted text */
  --c-deep:         #0b3b39;   /* deep teal for contrast blocks (never black) */

  /* --- Semantic --------------------------------------------------------- */
  --bg:             var(--c-porcelain);
  --bg-raise:       var(--c-white);
  --bg-soft:        var(--c-mist);
  --bg-aqua:        var(--c-aqua);
  --bg-deep:        var(--c-deep);
  --text:           var(--c-ink);
  --text-soft:      var(--c-ink-2);
  --text-muted:     var(--c-ink-3);
  --text-on-deep:   #eaf7f5;
  --brand:          var(--c-teal);
  --brand-strong:   var(--c-teal-700);
  --accent:         var(--c-coral);
  --border:         var(--c-line);
  --border-strong:  var(--c-aqua-2);

  /* --- Typography ------------------------------------------------------- */
  --font-display: 'Spectral', 'Times New Roman', Georgia, serif;      /* editorial serif */
  --font-sans:    'Manrope', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif; /* geometric UI */
  --font-body:    'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;   /* readable body */

  /* fluid type scale — clamp(min, preferred, max) */
  --fs-100: clamp(0.75rem, 0.72rem + 0.15vw, 0.82rem);
  --fs-200: clamp(0.86rem, 0.82rem + 0.2vw, 0.94rem);
  --fs-300: clamp(0.95rem, 0.90rem + 0.28vw, 1.06rem);
  --fs-400: clamp(1.06rem, 0.98rem + 0.42vw, 1.22rem);
  --fs-500: clamp(1.3rem, 1.12rem + 0.9vw, 1.7rem);
  --fs-600: clamp(1.7rem, 1.35rem + 1.7vw, 2.6rem);
  --fs-700: clamp(2.3rem, 1.7rem + 2.9vw, 3.9rem);
  --fs-800: clamp(3rem, 2rem + 4.8vw, 5.6rem);
  --fs-900: clamp(2.55rem, 1.5rem + 5.2vw, 7rem);

  --lh-tight: 1.05;
  --lh-snug:  1.18;
  --lh-body:  1.62;
  --tracking-kicker: 0.28em;

  /* --- Spacing scale ---------------------------------------------------- */
  --sp-1: 0.25rem;  --sp-2: 0.5rem;   --sp-3: 0.75rem;  --sp-4: 1rem;
  --sp-5: 1.5rem;   --sp-6: 2rem;     --sp-7: 3rem;     --sp-8: 4rem;
  --sp-9: 6rem;     --sp-10: 8rem;    --sp-11: 11rem;

  /* section rhythm */
  --section-y: clamp(4rem, 3rem + 6vw, 9rem);

  /* --- Layout ----------------------------------------------------------- */
  --container: 1280px;
  --container-wide: 1600px;
  --container-narrow: 760px;
  --gutter: clamp(1.15rem, 0.6rem + 2.6vw, 3rem);
  --rail: clamp(0px, -3rem + 6vw, 5.5rem);  /* editorial left kicker rail width */

  /* --- Radius (soft-3D / claymorphism — generous, pillowy) -------------- */
  --r-xs: 10px;  --r-sm: 16px;  --r-md: 22px;  --r-lg: 30px;  --r-xl: 42px;
  --r-2xl: 56px; --r-pill: 999px;

  /* --- Shadows: layered soft-3D "clay" (dual soft + inner light) -------- */
  --sh-1: 0 2px 6px rgba(16,49,46,0.05), 0 6px 14px -6px rgba(16,49,46,0.08);
  --sh-2: 0 6px 16px -6px rgba(16,49,46,0.10), 0 20px 40px -18px rgba(16,49,46,0.16);
  --sh-3: 0 10px 28px -10px rgba(16,49,46,0.14), 0 34px 70px -24px rgba(16,49,46,0.22);
  --sh-clay: 0 18px 40px -16px rgba(15,125,115,0.28), 0 4px 10px -4px rgba(16,49,46,0.12), inset 0 2px 3px rgba(255,255,255,0.75);
  --sh-inset: inset 0 2px 4px rgba(255,255,255,0.8), inset 0 -6px 14px -8px rgba(15,125,115,0.20);
  --sh-teal: 0 16px 36px -12px rgba(28,187,171,0.42);
  --sh-coral: 0 16px 36px -12px rgba(239,140,120,0.40);
  --sh-float: 0 30px 60px -22px rgba(16,49,46,0.28);

  /* --- Soft-3D playful accent pops -------------------------------------- */
  --pop-aqua:  #34d1c2;
  --pop-coral: #ff9d82;
  --pop-sun:   #ffca67;
  --pop-lilac: #c8c3ff;
  --pop-sky:   #7fc8e8;
  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");

  /* --- Motion ----------------------------------------------------------- */
  --e-out: cubic-bezier(0.22, 0.61, 0.36, 1);
  --e-inout: cubic-bezier(0.65, 0, 0.35, 1);
  --e-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --d-1: 160ms;  --d-2: 280ms;  --d-3: 480ms;  --d-4: 720ms;

  /* --- Z-index ---------------------------------------------------------- */
  --z-base: 1;  --z-sticky: 40;  --z-header: 60;  --z-cta: 70;
  --z-menu: 80;  --z-modal: 90;  --z-cookie: 95;  --z-top: 100;
}



/* ==========================================================================
   RESET & BASE
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scrollbar-color: var(--brand) var(--c-mist);
  scrollbar-width: thin;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  font-family: var(--font-body);
  font-size: var(--fs-300);
  line-height: var(--lh-body);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video, canvas { display: block; max-width: 100%; height: auto; }
img { border-style: none; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }
ul, ol { list-style: none; padding: 0; }
:focus-visible { outline: 3px solid var(--brand); outline-offset: 3px; border-radius: 4px; }

/* --- Custom branded scrollbar (WebKit) ---------------------------------- */
::-webkit-scrollbar { width: 12px; height: 12px; }
::-webkit-scrollbar-track { background: var(--c-mist); }
::-webkit-scrollbar-thumb {
  background: var(--brand); border-radius: var(--r-pill);
  border: 3px solid var(--c-mist);
}
::-webkit-scrollbar-thumb:hover { background: var(--brand-strong); }
::selection { background: var(--c-aqua-2); color: var(--c-deep); }

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; line-height: var(--lh-snug); color: var(--text); letter-spacing: -0.01em; }
h1 { font-size: var(--fs-800); line-height: var(--lh-tight); font-weight: 400; }
h2 { font-size: var(--fs-700); }
h3 { font-size: var(--fs-500); }
h4 { font-size: var(--fs-400); font-family: var(--font-sans); font-weight: 600; }
p { max-width: 68ch; }
strong { font-weight: 600; color: var(--text); }
.serif { font-family: var(--font-display); }
.sans { font-family: var(--font-sans); }

.kicker {
  font-family: var(--font-sans);
  font-size: var(--fs-100);
  font-weight: 600;
  letter-spacing: var(--tracking-kicker);
  text-transform: uppercase;
  color: var(--brand-strong);
  display: inline-flex; align-items: center; gap: 0.6em;
}
.kicker::before {
  content: ''; width: 1.8em; height: 1px; background: var(--brand); opacity: 0.7;
}
.eyebrow-num {
  font-family: var(--font-sans); font-weight: 700; font-size: var(--fs-100);
  color: var(--brand); letter-spacing: 0.1em;
}
.lead { font-size: var(--fs-400); color: var(--text-soft); line-height: 1.55; max-width: 58ch; }
.muted { color: var(--text-muted); }
.balance { text-wrap: balance; }

/* ==========================================================================
   LAYOUT PRIMITIVES
   ========================================================================== */
/* prevent grid/flex text children from forcing horizontal overflow */
.hero__grid > *, .split > *, .split--60 > *, .split--40 > *, .section-head__body,
.card__body, .bento__body, .grid-2 > *, .grid-3 > *, .grid-4 > *, .finder__opt > span,
.treatment-layout > *, .scrolly > * { min-width: 0; }
p { overflow-wrap: break-word; }
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container-wide { width: 100%; max-width: var(--container-wide); margin-inline: auto; padding-inline: var(--gutter); }
.container-narrow { width: 100%; max-width: var(--container-narrow); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); position: relative; }
.section-tight { padding-block: clamp(2.5rem, 2rem + 3vw, 5rem); }
.bg-soft { background: var(--bg-soft); }
.bg-aqua { background: linear-gradient(180deg, var(--c-aqua) 0%, var(--c-porcelain) 100%); }
.bg-deep { background: var(--bg-deep); color: var(--text-on-deep); }
.bg-deep h1, .bg-deep h2, .bg-deep h3 { color: #fff; }
.bg-deep .lead, .bg-deep p { color: #cfe9e5; }

/* editorial section head: numbered kicker rail + heading */
.section-head { display: grid; grid-template-columns: var(--rail) 1fr; gap: clamp(0.5rem, 2vw, 2rem); align-items: start; margin-bottom: clamp(2rem, 1.5rem + 2vw, 3.5rem); }
.section-head__rail { padding-top: 0.4rem; }
.section-head__rail .eyebrow-num { writing-mode: horizontal-tb; }
.section-head__body { max-width: 62ch; }
.section-head h2 { margin-top: 0.5rem; }
.section-head .lead { margin-top: 1rem; }
@media (max-width: 720px) { .section-head { grid-template-columns: 1fr; } .section-head__rail { padding-top: 0; } }

/* asymmetric editorial split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 5rem); align-items: center; }
.split--60 { grid-template-columns: 1.4fr 1fr; }
.split--40 { grid-template-columns: 1fr 1.4fr; }
@media (max-width: 900px) { .split, .split--60, .split--40 { grid-template-columns: 1fr; } }

/* horizon-arc divider (signature motif) */
.horizon { display: block; width: 100%; height: clamp(40px, 6vw, 90px); color: var(--c-aqua-2); }
.horizon svg { width: 100%; height: 100%; }

/* reveal-on-scroll — only hides when JS is active (.js on <html>); no-JS shows all */
.js [data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity var(--d-4) var(--e-out), transform var(--d-4) var(--e-out); will-change: opacity, transform; }
.js [data-reveal].is-in { opacity: 1; transform: none; }
[data-reveal][data-reveal-delay="1"] { transition-delay: 80ms; }
[data-reveal][data-reveal-delay="2"] { transition-delay: 160ms; }
[data-reveal][data-reveal-delay="3"] { transition-delay: 240ms; }
[data-reveal][data-reveal-delay="4"] { transition-delay: 320ms; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.6em;
  font-family: var(--font-sans); font-weight: 600; font-size: var(--fs-200);
  padding: 0.9em 1.5em; border-radius: var(--r-pill); border: 1.5px solid transparent;
  transition: transform var(--d-1) var(--e-out), background var(--d-2), box-shadow var(--d-2), color var(--d-2);
  line-height: 1; text-align: center; white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--brand); color: #fff; box-shadow: var(--sh-teal); }
.btn--primary:hover { background: var(--brand-strong); }
.btn--dark { background: var(--c-deep); color: #fff; }
.btn--dark:hover { background: #0a2e2c; }
.btn--ghost { border-color: var(--border-strong); color: var(--text); background: rgba(255,255,255,0.5); }
.btn--ghost:hover { border-color: var(--brand); color: var(--brand-strong); background: var(--c-white); }
.btn--light { background: #fff; color: var(--c-deep); }
.btn--wa { background: #25d366; color: #fff; }
.btn--wa:hover { background: #1eb958; }
.btn--sm { padding: 0.65em 1.1em; font-size: var(--fs-100); }
.btn--lg { padding: 1.05em 1.9em; font-size: var(--fs-300); }
.btn .ic { width: 1.15em; height: 1.15em; }
.arrowlink { font-family: var(--font-sans); font-weight: 600; color: var(--brand-strong); display: inline-flex; align-items: center; gap: 0.45em; }
.arrowlink .ic { width: 1em; height: 1em; transition: transform var(--d-2) var(--e-out); }
.arrowlink:hover .ic { transform: translateX(4px); }

/* magnetic-ish hover for primary CTAs handled in JS; base transition above */

/* ==========================================================================
   HEADER
   ========================================================================== */
.header { position: fixed; inset: 0 0 auto 0; z-index: var(--z-header); transition: background var(--d-3), box-shadow var(--d-3), backdrop-filter var(--d-3); }
.header__inner { display: flex; align-items: center; gap: 1.5rem; height: 80px; }
.header.is-scrolled { background: rgba(252,253,253,0.82); backdrop-filter: saturate(1.4) blur(14px); box-shadow: 0 1px 0 var(--border); }
.header.is-scrolled .header__inner { height: 66px; }
.header__logo { display: inline-flex; align-items: center; flex-shrink: 0; }
.header__logo svg { height: 40px; width: auto; transition: height var(--d-3); }
.header.is-scrolled .header__logo svg { height: 34px; }
.header__nav { display: flex; align-items: center; gap: 0.3rem; margin-inline: auto; }
.header__nav a { font-family: var(--font-sans); font-weight: 500; font-size: var(--fs-200); padding: 0.55em 0.7em; border-radius: var(--r-sm); color: var(--text-soft); transition: color var(--d-1), background var(--d-1); position: relative; white-space: nowrap; display: inline-flex; align-items: center; gap: 0.25em; }
.header__nav a .ic { width: 0.9em; height: 0.9em; }
.header__nav { gap: 0.05rem; }
.header__nav a:hover, .header__nav a.is-current { color: var(--brand-strong); }
.header__nav a.is-current::after { content: ''; position: absolute; left: 0.8em; right: 0.8em; bottom: 0.2em; height: 2px; background: var(--brand); border-radius: 2px; }
.header__actions { display: flex; align-items: center; gap: 0.6rem; flex-shrink: 0; }
.header__scrollprogress { position: absolute; left: 0; bottom: 0; height: 2px; width: 100%; background: transparent; }
.header__scrollprogress i { display: block; height: 100%; width: var(--progress, 0%); background: linear-gradient(90deg, var(--c-teal), var(--c-sea)); transition: width 80ms linear; }

/* mega menu */
.mega { position: relative; }
.mega__panel { position: absolute; top: calc(100% + 0.5rem); left: 50%; transform: translateX(-50%) translateY(8px); width: min(860px, 92vw); background: var(--c-white); border: 1px solid var(--border); border-radius: var(--r-lg); box-shadow: var(--sh-3); padding: 1.6rem; opacity: 0; visibility: hidden; transition: opacity var(--d-2), transform var(--d-2); z-index: var(--z-menu); }
.mega:hover .mega__panel, .mega:focus-within .mega__panel { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.mega__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem 1.6rem; }
.mega__col h5 { font-family: var(--font-sans); font-size: var(--fs-100); letter-spacing: 0.12em; text-transform: uppercase; color: var(--brand-strong); margin-bottom: 0.6rem; }
.mega__col a { display: block; padding: 0.32em 0; font-size: var(--fs-200); color: var(--text-soft); }
.mega__col a:hover { color: var(--brand-strong); }

/* language selector */
.langsel { position: relative; }
.langsel__btn { display: inline-flex; align-items: center; gap: 0.4em; padding: 0.5em 0.7em; border: 1px solid var(--border-strong); border-radius: var(--r-pill); font-family: var(--font-sans); font-weight: 600; font-size: var(--fs-100); }
.langsel__menu { position: absolute; right: 0; top: calc(100% + 0.4rem); background: #fff; border: 1px solid var(--border); border-radius: var(--r-md); box-shadow: var(--sh-2); padding: 0.4rem; min-width: 170px; opacity: 0; visibility: hidden; transform: translateY(6px); transition: opacity var(--d-2), transform var(--d-2); z-index: var(--z-menu); }
.langsel.is-open .langsel__menu { opacity: 1; visibility: visible; transform: none; }
.langsel__menu a { display: flex; align-items: center; gap: 0.6em; padding: 0.5em 0.7em; border-radius: var(--r-sm); font-family: var(--font-sans); font-size: var(--fs-200); }
.langsel__menu a:hover { background: var(--c-aqua); }
.langsel__menu a.is-current { color: var(--brand-strong); font-weight: 600; }

/* burger / mobile */
.burger { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; border-radius: var(--r-sm); }
.burger span { display: block; width: 22px; height: 2px; background: var(--text); position: relative; transition: transform var(--d-2), opacity var(--d-2); }
.burger span::before, .burger span::after { content: ''; position: absolute; left: 0; width: 22px; height: 2px; background: var(--text); transition: transform var(--d-2); }
.burger span::before { top: -7px; } .burger span::after { top: 7px; }
body.menu-open .burger span { background: transparent; }
body.menu-open .burger span::before { transform: translateY(7px) rotate(45deg); }
body.menu-open .burger span::after { transform: translateY(-7px) rotate(-45deg); }

.mobilenav { position: fixed; inset: 0; z-index: var(--z-menu); background: var(--c-porcelain); transform: translateY(-100%); transition: transform var(--d-3) var(--e-inout); overflow-y: auto; padding: 90px var(--gutter) 120px; visibility: hidden; }
body.menu-open .mobilenav { transform: none; visibility: visible; }
.mobilenav a { display: block; font-family: var(--font-display); font-size: var(--fs-500); padding: 0.5rem 0; border-bottom: 1px solid var(--border); color: var(--text); }
.mobilenav .mobilenav__group summary { font-family: var(--font-display); font-size: var(--fs-500); padding: 0.5rem 0; border-bottom: 1px solid var(--border); cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.mobilenav__group summary::-webkit-details-marker { display: none; }
.mobilenav__group[open] summary { color: var(--brand-strong); }
.mobilenav__sub a { font-family: var(--font-sans); font-size: var(--fs-300); padding: 0.35rem 0 0.35rem 1rem; border-bottom: none; color: var(--text-soft); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero { position: relative; padding-top: clamp(7rem, 6rem + 6vw, 11rem); padding-bottom: var(--section-y); overflow: clip; }
.hero__bg { position: absolute; inset: 0; z-index: -2; background:
    radial-gradient(120% 80% at 85% -10%, var(--c-aqua) 0%, transparent 55%),
    radial-gradient(90% 70% at -10% 20%, #eef8f9 0%, transparent 50%),
    var(--c-porcelain); }
.hero__grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(1.5rem, 4vw, 4rem); align-items: center; }
@media (max-width: 940px) { .hero__grid { grid-template-columns: 1fr; } }
.hero h1 { font-size: var(--fs-900); margin-top: 1.2rem; overflow-wrap: break-word; hyphens: auto; }
.hero h1 em { font-style: italic; color: var(--brand-strong); }
.hero__lead { margin-top: 1.5rem; font-size: var(--fs-400); color: var(--text-soft); max-width: 52ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2rem; }
.hero__meta { display: flex; flex-wrap: wrap; gap: 1.5rem 2.5rem; margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.hero__meta div { }
.hero__meta b { font-family: var(--font-display); font-size: var(--fs-500); color: var(--text); display: block; }
.hero__meta span { font-family: var(--font-sans); font-size: var(--fs-100); color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; }
.hero__visual { position: relative; }
.hero__visual .frame { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-3); aspect-ratio: 4/5; }
.hero__visual .frame img { width: 100%; height: 100%; object-fit: cover; }
.hero__badge { position: absolute; left: -1.5rem; bottom: 2rem; background: #fff; border-radius: var(--r-lg); box-shadow: var(--sh-2); padding: 1rem 1.3rem; display: flex; align-items: center; gap: 0.8rem; max-width: 240px; }
.hero__badge .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 0 4px var(--c-aqua); flex-shrink: 0; }
@media (max-width: 520px) { .hero__badge { left: 0.5rem; } }
.scrollcue { display: inline-flex; align-items: center; gap: 0.6em; margin-top: 2.5rem; font-family: var(--font-sans); font-size: var(--fs-100); letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); }
.scrollcue i { width: 1px; height: 34px; background: linear-gradient(var(--brand), transparent); position: relative; overflow: hidden; }
.scrollcue i::after { content: ''; position: absolute; top: -50%; left: 0; width: 1px; height: 50%; background: var(--brand); animation: cue 1.8s var(--e-inout) infinite; }
@keyframes cue { 0% { top: -50%; } 100% { top: 100%; } }
@media (prefers-reduced-motion: reduce) { .scrollcue i::after { animation: none; } }

/* ==========================================================================
   TRUST BAR / MARQUEE
   ========================================================================== */
.trustbar { border-block: 1px solid var(--border); background: var(--c-white); }
/* when the utility trust bar is the first thing in the page, clear the fixed header */
main > .trustbar:first-child { border-top: none; padding-top: 80px; }
@media (max-width: 720px) { main > .trustbar:first-child { padding-top: 66px; } }
.trustbar__row { display: flex; flex-wrap: wrap; gap: 0.8rem 2.4rem; padding-block: 1.1rem; align-items: center; justify-content: space-between; }
@media (max-width: 900px) { .trustbar__row { justify-content: flex-start; gap: 0.6rem 1.4rem; } }
.trustbar__item { display: inline-flex; align-items: center; gap: 0.6em; font-family: var(--font-sans); font-size: var(--fs-200); color: var(--text-soft); font-weight: 500; }
.trustbar__item .ic { width: 1.2em; height: 1.2em; color: var(--brand); }

/* stat strip */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 2vw, 2rem); }
@media (max-width: 780px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat { padding: 1.5rem 0; }
.stat b { font-family: var(--font-display); font-size: var(--fs-700); color: var(--brand-strong); display: block; line-height: 1; }
.stat span { font-family: var(--font-sans); font-size: var(--fs-200); color: var(--text-soft); margin-top: 0.5rem; display: block; }

/* ==========================================================================
   BENTO GRID (treatments / trust)
   ========================================================================== */
.bento { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: minmax(180px, auto); gap: clamp(0.8rem, 1.4vw, 1.4rem); }
.bento__cell { position: relative; border-radius: var(--r-lg); overflow: hidden; background: var(--c-white); border: 1px solid var(--border); display: flex; flex-direction: column; transition: transform var(--d-2) var(--e-out), box-shadow var(--d-2); }
.bento__cell:hover { transform: translateY(-4px); box-shadow: var(--sh-2); }
.bento__cell--wide { grid-column: span 2; }
.bento__cell--tall { grid-row: span 2; }
.bento__cell--img { color: #fff; min-height: 240px; }
.bento__cell--img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.bento__cell--img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,59,57,0) 30%, rgba(11,59,57,0.72) 100%); z-index: 1; }
.bento__body { position: relative; z-index: 2; padding: 1.4rem; margin-top: auto; }
.bento__cell--img .bento__body h3 { color: #fff; }
.bento__cell:not(.bento__cell--img) .bento__body { display: flex; flex-direction: column; gap: 0.5rem; height: 100%; }
.bento__tag { font-family: var(--font-sans); font-size: var(--fs-100); letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; opacity: 0.85; }
.bento__meta { display: flex; gap: 1rem; font-family: var(--font-sans); font-size: var(--fs-100); margin-top: 0.4rem; }
.bento__meta span { display: inline-flex; align-items: center; gap: 0.35em; opacity: 0.9; }
@media (max-width: 900px) { .bento { grid-template-columns: repeat(2, 1fr); } .bento__cell--wide { grid-column: span 2; } }
@media (max-width: 540px) { .bento { grid-template-columns: 1fr; } .bento__cell--wide, .bento__cell--tall { grid-column: auto; grid-row: auto; } }

/* generic card */
.card { background: var(--c-white); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; transition: transform var(--d-2) var(--e-out), box-shadow var(--d-2); display: flex; flex-direction: column; }
.card:hover { transform: translateY(-4px); box-shadow: var(--sh-2); }
.card__img { aspect-ratio: 3/2; overflow: hidden; background: var(--c-mist); }
.card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--d-4) var(--e-out); }
.card:hover .card__img img { transform: scale(1.04); }
.card__body { padding: 1.3rem; display: flex; flex-direction: column; gap: 0.6rem; flex: 1; }
.card__tag { font-family: var(--font-sans); font-size: var(--fs-100); letter-spacing: 0.1em; text-transform: uppercase; color: var(--brand-strong); font-weight: 600; }
.card h3 { font-size: var(--fs-400); }
.card__foot { margin-top: auto; padding-top: 0.6rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.6rem); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1rem, 2vw, 1.6rem); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 2vw, 1.6rem); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* pill / chip */
.chip { display: inline-flex; align-items: center; gap: 0.4em; padding: 0.4em 0.9em; border-radius: var(--r-pill); background: var(--c-aqua); color: var(--brand-strong); font-family: var(--font-sans); font-weight: 600; font-size: var(--fs-100); border: 1px solid transparent; }
.chip--outline { background: transparent; border-color: var(--border-strong); color: var(--text-soft); }
.chip.is-active { background: var(--brand); color: #fff; }

/* ==========================================================================
   BEFORE / AFTER SLIDER
   ========================================================================== */
.ba { position: relative; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 3/2; user-select: none; touch-action: pan-y; box-shadow: var(--sh-2); background: var(--c-mist); }
.ba img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.ba__after { clip-path: inset(0 0 0 var(--pos, 50%)); }
.ba__handle { position: absolute; top: 0; bottom: 0; left: var(--pos, 50%); width: 2px; background: #fff; transform: translateX(-1px); z-index: 3; }
.ba__grip { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 44px; height: 44px; border-radius: 50%; background: #fff; box-shadow: var(--sh-2); display: flex; align-items: center; justify-content: center; color: var(--brand-strong); }
.ba__label { position: absolute; top: 0.8rem; z-index: 4; font-family: var(--font-sans); font-size: var(--fs-100); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; background: rgba(11,59,57,0.55); color: #fff; padding: 0.3em 0.7em; border-radius: var(--r-pill); backdrop-filter: blur(4px); }
.ba__label--before { left: 0.8rem; } .ba__label--after { right: 0.8rem; }
.ba input[type=range] { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: ew-resize; z-index: 5; margin: 0; }

/* ==========================================================================
   ACCORDION / FAQ
   ========================================================================== */
.accordion { border-top: 1px solid var(--border); }
.accordion__item { border-bottom: 1px solid var(--border); }
.accordion__btn { width: 100%; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.2rem 0; font-family: var(--font-sans); font-weight: 600; font-size: var(--fs-400); color: var(--text); }
.accordion__btn .ic { width: 1.3em; height: 1.3em; color: var(--brand); flex-shrink: 0; transition: transform var(--d-2) var(--e-out); }
.accordion__item[aria-expanded="true"] .accordion__btn .ic, .accordion__btn[aria-expanded="true"] .ic { transform: rotate(45deg); }
.accordion__panel { overflow: hidden; height: 0; transition: height var(--d-3) var(--e-inout); }
.accordion__panel-inner { padding: 0 0 1.4rem; color: var(--text-soft); max-width: 72ch; }

/* ==========================================================================
   TABS
   ========================================================================== */
.tabs__list { display: inline-flex; gap: 0.3rem; padding: 0.3rem; background: var(--c-mist); border-radius: var(--r-pill); }
.tabs__tab { padding: 0.6em 1.2em; border-radius: var(--r-pill); font-family: var(--font-sans); font-weight: 600; font-size: var(--fs-200); color: var(--text-soft); }
.tabs__tab[aria-selected="true"] { background: #fff; color: var(--brand-strong); box-shadow: var(--sh-1); }
.tabs__panel { margin-top: 1.5rem; }
.tabs__panel[hidden] { display: none; }

/* ==========================================================================
   FORMS
   ========================================================================== */
.field { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.1rem; }
.field label { font-family: var(--font-sans); font-weight: 600; font-size: var(--fs-200); color: var(--text-soft); }
.field .req { color: var(--accent); }
.field input, .field select, .field textarea {
  width: 100%; padding: 0.85em 1em; border: 1.5px solid var(--border); border-radius: var(--r-md);
  background: #fff; font-family: var(--font-body); font-size: var(--fs-300); color: var(--text);
  transition: border-color var(--d-1), box-shadow var(--d-1);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 4px var(--c-aqua); }
.field textarea { min-height: 130px; resize: vertical; }
.field--error input, .field--error select, .field--error textarea { border-color: var(--accent); }
.field__err { font-size: var(--fs-100); color: #d4674c; display: none; }
.field--error .field__err { display: block; }
.field__hint { font-size: var(--fs-100); color: var(--text-muted); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.telinput { display: grid; grid-template-columns: auto 1fr; gap: 0.5rem; }
.checkline { display: flex; align-items: flex-start; gap: 0.6rem; font-size: var(--fs-200); color: var(--text-soft); }
.checkline input { width: auto; margin-top: 0.2em; }
.form-status { padding: 1rem 1.2rem; border-radius: var(--r-md); font-size: var(--fs-200); margin-top: 1rem; }
.form-status--ok { background: var(--c-aqua); color: var(--brand-strong); border: 1px solid var(--border-strong); }

/* ==========================================================================
   STICKY CONVERSION ELEMENTS
   ========================================================================== */
.floatcta { position: fixed; right: clamp(1rem, 2vw, 1.8rem); bottom: clamp(1rem, 2vw, 1.8rem); z-index: var(--z-cta); display: flex; flex-direction: column; gap: 0.7rem; align-items: flex-end; }
.floatcta__wa { display: inline-flex; align-items: center; gap: 0.5em; background: #25d366; color: #fff; padding: 0.8em 1.1em; border-radius: var(--r-pill); box-shadow: var(--sh-2); font-family: var(--font-sans); font-weight: 600; font-size: var(--fs-200); }
.floatcta__wa .ic { width: 1.3em; height: 1.3em; }
.floatcta__quote { display: inline-flex; align-items: center; gap: 0.5em; background: var(--c-deep); color: #fff; padding: 0.8em 1.2em; border-radius: var(--r-pill); box-shadow: var(--sh-2); font-family: var(--font-sans); font-weight: 600; font-size: var(--fs-200); }
@media (max-width: 720px) { .floatcta { display: none; } }

/* mobile bottom conversion bar */
.mobilebar { position: fixed; left: 0; right: 0; bottom: 0; z-index: var(--z-cta); display: none; grid-template-columns: repeat(3, 1fr); background: rgba(252,253,253,0.94); backdrop-filter: blur(12px); border-top: 1px solid var(--border); padding: 0.5rem 0.5rem calc(0.5rem + env(safe-area-inset-bottom)); gap: 0.4rem; }
.mobilebar a { display: flex; flex-direction: column; align-items: center; gap: 0.2rem; padding: 0.5rem 0.2rem; border-radius: var(--r-sm); font-family: var(--font-sans); font-size: var(--fs-100); font-weight: 600; color: var(--text-soft); }
.mobilebar a .ic { width: 1.35em; height: 1.35em; }
.mobilebar a.is-primary { background: var(--brand); color: #fff; }
.mobilebar a.is-wa { color: #1eb958; }
@media (max-width: 720px) { .mobilebar { display: grid; } body { padding-bottom: 66px; } }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { background: var(--c-deep); color: #cfe9e5; padding-block: clamp(3.5rem, 3rem + 4vw, 6rem) 2rem; }
.footer a { color: #cfe9e5; transition: color var(--d-1); }
.footer a:hover { color: #fff; }
.footer__top { display: grid; grid-template-columns: 1.6fr repeat(4, 1fr); gap: 2rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.12); }
@media (max-width: 940px) { .footer__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__top { grid-template-columns: 1fr; } }
.footer__brand svg { height: 42px; margin-bottom: 1rem; }
.footer__brand p { color: #a9d3ce; font-size: var(--fs-200); max-width: 34ch; }
.footer__col h5 { font-family: var(--font-sans); font-size: var(--fs-100); letter-spacing: 0.14em; text-transform: uppercase; color: #7fc4bc; margin-bottom: 1rem; }
.footer__col a { display: block; padding: 0.28rem 0; font-size: var(--fs-200); }
.footer__social { display: flex; gap: 0.6rem; margin-top: 1.2rem; }
.footer__social a { width: 40px; height: 40px; border: 1px solid rgba(255,255,255,0.18); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.footer__social a:hover { background: var(--brand); border-color: var(--brand); }
.footer__social .ic { width: 1.1em; height: 1.1em; }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; padding-top: 2rem; font-size: var(--fs-100); color: #8fc4be; }
.footer__bottom nav { display: flex; flex-wrap: wrap; gap: 1.2rem; }
.footer__disclaimer { margin-top: 1.5rem; font-size: var(--fs-100); color: #6fb0a9; max-width: 90ch; }

/* ==========================================================================
   BREADCRUMBS, CHAPTER NAV, MISC
   ========================================================================== */
.crumbs { display: flex; flex-wrap: wrap; gap: 0.4em; font-family: var(--font-sans); font-size: var(--fs-100); color: var(--text-muted); padding-block: 1rem; }
.crumbs a:hover { color: var(--brand-strong); }
.crumbs .sep { opacity: 0.5; }

.chapternav { position: sticky; top: 100px; align-self: start; }
.chapternav ol { display: flex; flex-direction: column; gap: 0.2rem; border-left: 2px solid var(--border); }
.chapternav a { display: block; padding: 0.4rem 0 0.4rem 1rem; margin-left: -2px; border-left: 2px solid transparent; font-family: var(--font-sans); font-size: var(--fs-200); color: var(--text-muted); }
.chapternav a.is-active { color: var(--brand-strong); border-left-color: var(--brand); font-weight: 600; }

.callout { background: var(--c-aqua); border: 1px solid var(--border-strong); border-radius: var(--r-lg); padding: 1.4rem 1.6rem; }
.callout--warn { background: #fdf3ef; border-color: #f6d9cf; }
.disclaimer { font-size: var(--fs-100); color: var(--text-muted); border-left: 3px solid var(--border-strong); padding-left: 1rem; max-width: 80ch; }

.prose > * + * { margin-top: 1.1rem; }
.prose h2 { margin-top: 2.5rem; }
.prose h3 { margin-top: 1.8rem; }
.prose ul { display: flex; flex-direction: column; gap: 0.5rem; }
.prose ul li { position: relative; padding-left: 1.5rem; }
.prose ul li::before { content: ''; position: absolute; left: 0; top: 0.65em; width: 7px; height: 7px; border-radius: 50%; background: var(--brand); }
.prose a { color: var(--brand-strong); text-decoration: underline; text-underline-offset: 3px; }

/* page hero (inner pages) */
.pagehero { padding-top: clamp(7rem, 6rem + 5vw, 10rem); padding-bottom: clamp(2.5rem, 2rem + 3vw, 4.5rem); background: radial-gradient(100% 120% at 90% -20%, var(--c-aqua) 0%, transparent 55%), var(--c-porcelain); }
.pagehero h1 { margin-top: 0.5rem; }
.pagehero .lead { margin-top: 1.2rem; }

/* cookie banner */
.cookie { position: fixed; left: clamp(1rem, 2vw, 1.5rem); right: clamp(1rem, 2vw, 1.5rem); bottom: clamp(1rem, 2vw, 1.5rem); max-width: 480px; background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); box-shadow: var(--sh-3); padding: 1.4rem 1.5rem; z-index: var(--z-cookie); transform: translateY(140%); transition: transform var(--d-3) var(--e-out); }
.cookie.is-show { transform: none; }
.cookie h4 { margin-bottom: 0.5rem; }
.cookie p { font-size: var(--fs-200); color: var(--text-soft); }
.cookie__actions { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1rem; }
@media (max-width: 720px) { .cookie { bottom: 76px; } }

/* modal */
.modal { position: fixed; inset: 0; z-index: var(--z-modal); display: grid; place-items: center; padding: 1.5rem; opacity: 0; visibility: hidden; transition: opacity var(--d-2); }
.modal.is-open { opacity: 1; visibility: visible; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(11,59,57,0.55); backdrop-filter: blur(4px); }
.modal__box { position: relative; background: #fff; border-radius: var(--r-lg); max-width: 640px; width: 100%; max-height: 88vh; overflow-y: auto; padding: 2rem; box-shadow: var(--sh-3); transform: translateY(12px); transition: transform var(--d-2) var(--e-out); }
.modal.is-open .modal__box { transform: none; }
.modal__close { position: absolute; top: 1rem; right: 1rem; width: 40px; height: 40px; border-radius: 50%; background: var(--c-mist); display: flex; align-items: center; justify-content: center; }

/* skip link */
.skip { position: absolute; left: 1rem; top: -60px; background: var(--brand); color: #fff; padding: 0.7em 1.2em; border-radius: var(--r-sm); z-index: var(--z-top); transition: top var(--d-2); font-family: var(--font-sans); font-weight: 600; }
.skip:focus { top: 1rem; }

/* ==========================================================================
   SMART TREATMENT FINDER
   ========================================================================== */
.finder { background: #fff; border: 1px solid var(--border); border-radius: var(--r-xl); padding: clamp(1.5rem, 3vw, 2.6rem); box-shadow: var(--sh-1); }
.finder__q { font-family: var(--font-display); font-size: var(--fs-500); margin-bottom: 1.4rem; }
.finder__opts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.8rem; }
@media (max-width: 780px) { .finder__opts { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .finder__opts { grid-template-columns: 1fr; } }
.finder__opt { display: flex; align-items: center; gap: 0.8rem; padding: 1rem 1.2rem; border: 1.5px solid var(--border); border-radius: var(--r-md); text-align: left; font-family: var(--font-sans); font-weight: 600; font-size: var(--fs-200); color: var(--text-soft); transition: border-color var(--d-2), background var(--d-2), transform var(--d-1); }
.finder__opt:hover { border-color: var(--brand); transform: translateY(-2px); }
.finder__opt.is-active { border-color: var(--brand); background: var(--c-aqua); color: var(--brand-strong); }
.finder__opt-ic { color: var(--brand); display: inline-flex; }
.finder__result { margin-top: 1.6rem; }

/* ==========================================================================
   SCROLLYTELLING
   ========================================================================== */
.scrolly { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 5vw, 5rem); align-items: start; }
.scrolly__track { display: flex; flex-direction: column; gap: clamp(3rem, 12vh, 9rem); padding-block: 4vh; }
.scrolly__chapter { }
.scrolly__num { font-family: var(--font-sans); font-weight: 800; font-size: var(--fs-500); color: var(--c-aqua-2); display: block; }
.scrolly__chapter h3 { margin-top: 0.3rem; }
.scrolly__chapter p { margin-top: 0.6rem; }
.scrolly__sticky { position: sticky; top: 110px; height: min(72vh, 620px); }
.scrolly__stack { position: relative; width: 100%; height: 100%; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-3); }
.scrolly__visual { position: absolute; inset: 0; margin: 0; }
.scrolly__visual img { width: 100%; height: 100%; object-fit: cover; }
.scrolly__visual:not(:first-child) { opacity: 0; } /* JS could crossfade; static shows first */
@media (max-width: 900px) {
  .scrolly { grid-template-columns: 1fr; }
  .scrolly__sticky { display: none; }
  .scrolly__track { gap: 2rem; }
  .scrolly__chapter { background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); padding: 1.4rem; }
}

/* ==========================================================================
   PROCESS STEPS
   ========================================================================== */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 2vw, 1.6rem); counter-reset: step; }
@media (max-width: 900px) { .process { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .process { grid-template-columns: 1fr; } }
.process__step { position: relative; padding: 1.6rem 1.2rem; background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); }
.process__num { font-family: var(--font-sans); font-weight: 800; font-size: var(--fs-400); color: var(--brand); }
.process__step h4 { margin-top: 0.5rem; }
.process__step p { margin-top: 0.4rem; font-size: var(--fs-200); }

/* timeline / itinerary */
.timeline { border-left: 2px solid var(--border-strong); display: flex; flex-direction: column; gap: 1.5rem; padding-left: 1.5rem; }
.timeline__item { position: relative; }
.timeline__item::before { content: ''; position: absolute; left: calc(-1.5rem - 6px); top: 0.4rem; width: 12px; height: 12px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 0 4px var(--c-aqua); }
.timeline__day { font-family: var(--font-sans); font-weight: 700; color: var(--brand-strong); font-size: var(--fs-100); letter-spacing: 0.08em; text-transform: uppercase; }
.timeline__item h4 { margin-top: 0.2rem; }

/* hotspot facilities */
.hotspots { position: relative; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-2); }
.hotspots img { width: 100%; display: block; }

/* filter bar */
.filterbar { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }
.ba-card figcaption { padding: 1rem 0.2rem 0; font-family: var(--font-sans); font-size: var(--fs-200); }

/* ==========================================================================
   TREATMENT DETAIL LAYOUT
   ========================================================================== */
.treatment-layout { display: grid; grid-template-columns: 1fr 320px; gap: clamp(2rem, 5vw, 5rem); padding-block: clamp(2.5rem, 4vw, 4rem); align-items: start; }
@media (max-width: 980px) { .treatment-layout { grid-template-columns: 1fr; } .treatment-side { display: none; } }
.treatment-main > section { padding-block: clamp(1.8rem, 3vw, 2.6rem); border-top: 1px solid var(--border); }
.treatment-main > section:first-child { border-top: none; padding-top: 0; }
.treatment-main .eyebrow-num { display: block; margin-bottom: 0.4rem; }
.treatment-side { position: sticky; top: 100px; }
.factbox { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden; margin: 1.5rem 0; }
.factbox > div { background: #fff; padding: 1rem 1.2rem; }
.factbox dt { font-family: var(--font-sans); font-size: var(--fs-100); letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-muted); }
.factbox dd { font-family: var(--font-display); font-size: var(--fs-400); color: var(--text); margin-top: 0.2rem; }

/* utilities */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; white-space: nowrap; }
.mt-0{margin-top:0}.center{text-align:center}.mx-auto{margin-inline:auto}
.stack-sm > * + *{margin-top:0.6rem}.stack > * + *{margin-top:1.1rem}.stack-lg > * + *{margin-top:2rem}
.flex{display:flex}.items-center{align-items:center}.gap{gap:1rem}.wrap{flex-wrap:wrap}
.hide-mobile{}@media(max-width:720px){.hide-mobile{display:none!important}}
.hide-desktop{display:none}@media(max-width:720px){.hide-desktop{display:revert}}

/* ==========================================================================
   ██  SOFT-3D / SPATIAL BENTO LAYER  (2026 claymorphism overhaul)  ██
   Overrides the base look with pillowy depth, floating objects, blob fields,
   grain, and tactile motion. Loaded last so it wins the cascade.
   ========================================================================== */

/* --- ambient blob field + grain behind everything --- */
body { position: relative; background: var(--c-porcelain); }
body::before {
  content: ''; position: fixed; inset: 0; z-index: -3; pointer-events: none;
  background:
    radial-gradient(38vw 38vw at 82% -6%, rgba(52,209,194,0.18), transparent 60%),
    radial-gradient(34vw 34vw at -8% 30%, rgba(255,157,130,0.14), transparent 60%),
    radial-gradient(30vw 30vw at 60% 108%, rgba(200,195,255,0.16), transparent 60%),
    radial-gradient(28vw 28vw at 12% 88%, rgba(255,202,103,0.12), transparent 60%);
}
body::after {
  content: ''; position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background-image: var(--grain); background-size: 180px; opacity: 0.4; mix-blend-mode: soft-light;
}

/* --- rounded floating section panels --- */
.bg-soft, .bg-aqua {
  border-radius: var(--r-2xl);
  margin-inline: clamp(0.6rem, 2vw, 2rem);
  position: relative; overflow: clip;
}
.bg-soft { background: linear-gradient(180deg, #ffffff, var(--c-mist)); box-shadow: var(--sh-1); }
.bg-aqua { background: linear-gradient(165deg, #f0fdfb 0%, #e2f6f1 60%, #f6efe4 100%); box-shadow: var(--sh-1); }
.bg-soft::before, .bg-aqua::before {
  content: ''; position: absolute; width: 40%; aspect-ratio: 1; border-radius: 50%;
  right: -8%; top: -14%; background: radial-gradient(circle at 40% 35%, rgba(52,209,194,0.28), transparent 70%);
  filter: blur(20px); pointer-events: none; z-index: 0;
}
.bg-aqua::after {
  content: ''; position: absolute; width: 34%; aspect-ratio: 1; border-radius: 50%;
  left: -6%; bottom: -12%; background: radial-gradient(circle at 50% 50%, rgba(255,157,130,0.22), transparent 70%);
  filter: blur(24px); pointer-events: none; z-index: 0;
}
.bg-soft > *, .bg-aqua > * { position: relative; z-index: 1; }

/* --- claymorphic cards --- */
.card, .callout, .finder, .factbox > div, .process__step, .bento__cell:not(.bento__cell--img),
.field input, .field select, .field textarea, .tabs__list, .mega__panel, .langsel__menu, .cookie, .modal__box {
  border-radius: var(--r-lg);
}
.card {
  border: 1px solid rgba(255,255,255,0.9);
  background: linear-gradient(170deg, #ffffff, #f7fcfb);
  box-shadow: var(--sh-2), inset 0 2px 3px rgba(255,255,255,0.8);
}
.card:hover { transform: translateY(-8px) scale(1.012); box-shadow: var(--sh-float); }
.card__img { border-radius: calc(var(--r-lg) - 8px); margin: 8px 8px 0; }
.card__img + .card__body, .card .card__body { padding-top: 1rem; }

/* --- bento: bigger, floating, playful --- */
.bento { gap: clamp(1rem, 1.6vw, 1.6rem); }
.bento__cell { border-radius: var(--r-xl); border: 1px solid rgba(255,255,255,0.85); }
.bento__cell:not(.bento__cell--img) { background: linear-gradient(165deg,#fff,#f4fbf9); box-shadow: var(--sh-2), inset 0 2px 3px rgba(255,255,255,0.8); }
.bento__cell--img { box-shadow: var(--sh-2); }
.bento__cell--img::after { background: linear-gradient(180deg, rgba(11,59,57,0) 40%, rgba(11,59,57,0.55) 100%); }
.bento__cell:hover { transform: translateY(-8px); box-shadow: var(--sh-float); }

/* --- claymorphic buttons --- */
.btn { border-radius: var(--r-pill); font-weight: 700; }
.btn--primary { background: linear-gradient(160deg, #2fd3c2, #12a595); box-shadow: var(--sh-teal), inset 0 2px 2px rgba(255,255,255,0.45); }
.btn--primary:hover { background: linear-gradient(160deg,#34d9c8,#0f9c8f); }
.btn--dark { background: linear-gradient(160deg, #12514c, #0a332f); box-shadow: var(--sh-2), inset 0 2px 2px rgba(255,255,255,0.12); }
.btn--ghost { background: rgba(255,255,255,0.75); box-shadow: var(--sh-1); backdrop-filter: blur(6px); }
.btn--light { box-shadow: var(--sh-2), inset 0 2px 2px rgba(255,255,255,0.7); }
.btn:active { transform: translateY(1px) scale(0.98); }

/* --- chips / pills --- */
.chip { border-radius: var(--r-pill); box-shadow: var(--sh-1); background: linear-gradient(160deg,#eafaf8,#d9f2ee); }
.chip.is-active { background: linear-gradient(160deg, var(--pop-aqua), var(--brand-strong)); box-shadow: var(--sh-teal); }
.chip--outline { background: rgba(255,255,255,0.7); }

/* --- callout / finder soft-3D --- */
.callout { border: 1px solid rgba(255,255,255,0.9); box-shadow: var(--sh-1), inset 0 2px 3px rgba(255,255,255,0.7); }
.finder { border: 1px solid rgba(255,255,255,0.9); box-shadow: var(--sh-3); background: linear-gradient(170deg,#ffffff,#f3fbfa); }
.finder__opt { border-radius: var(--r-md); background: linear-gradient(165deg,#fff,#f3fbf9); box-shadow: var(--sh-1); border-color: transparent; }
.finder__opt:hover { box-shadow: var(--sh-2); }
.finder__opt.is-active { box-shadow: var(--sh-teal); }
.finder__opt-ic { width: 40px; height: 40px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: linear-gradient(160deg,#eafaf8,#c9ede8); box-shadow: var(--sh-1); }

/* --- process steps as floating clay tiles --- */
.process__step { background: linear-gradient(165deg,#fff,#f4fbf9); box-shadow: var(--sh-2), inset 0 2px 3px rgba(255,255,255,0.8); border: 1px solid rgba(255,255,255,0.85); border-radius: var(--r-lg); }
.process__num { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(160deg,#eafaf8,#c9ede8); box-shadow: var(--sh-1); }

/* --- factbox soft --- */
.factbox { border: none; background: transparent; gap: 0.8rem; }
.factbox > div { background: linear-gradient(165deg,#fff,#f3fbf9); box-shadow: var(--sh-1), inset 0 2px 3px rgba(255,255,255,0.7); border-radius: var(--r-md); }

/* --- forms soft --- */
.field input, .field select, .field textarea { border-radius: var(--r-md); background: linear-gradient(180deg,#fff,#fbfefe); box-shadow: var(--sh-inset); border-color: rgba(15,125,115,0.14); }

/* --- header: floating rounded pill on scroll --- */
.header.is-scrolled { background: transparent; box-shadow: none; }
.header.is-scrolled .header__inner {
  background: rgba(255,255,255,0.72); backdrop-filter: saturate(1.6) blur(16px);
  border-radius: var(--r-pill); box-shadow: var(--sh-2); padding-inline: 1.2rem;
  margin-top: 0.5rem; border: 1px solid rgba(255,255,255,0.7);
}
.header__inner { transition: background var(--d-3), box-shadow var(--d-3), padding var(--d-3); }

/* --- floating / tactile motion --- */
@keyframes floaty { 0%,100% { transform: translateY(0) rotate(var(--rot,0deg)); } 50% { transform: translateY(-14px) rotate(var(--rot,0deg)); } }
.float { animation: floaty 6s var(--e-inout) infinite; }
.float-2 { animation: floaty 7.5s var(--e-inout) infinite; animation-delay: -2s; }
.float-3 { animation: floaty 9s var(--e-inout) infinite; animation-delay: -4s; }
@media (prefers-reduced-motion: reduce) { .float, .float-2, .float-3 { animation: none; } }
[data-tilt] { transition: transform var(--d-2) var(--e-out); transform-style: preserve-3d; will-change: transform; }

/* --- hero: spatial soft-3D --- */
.hero { padding-top: clamp(7.5rem, 6rem + 7vw, 12rem); }
.hero h1 { font-size: var(--fs-900); letter-spacing: -0.02em; }
.hero__stage { position: relative; display: grid; place-items: center; min-height: min(60vw, 560px); }
.clayobj { display: block; filter: drop-shadow(0 30px 40px rgba(15,125,115,0.28)); }
.clayobj--hero { width: min(78%, 460px); }
.clayfloat { position: absolute; }
.clayfloat svg { width: 100%; height: auto; filter: drop-shadow(0 18px 26px rgba(16,49,46,0.22)); }
.clayfloat--a { width: clamp(66px, 12vw, 120px); top: 4%; right: 8%; }
.clayfloat--b { width: clamp(52px, 9vw, 96px); bottom: 10%; left: 2%; }
.clayfloat--c { width: clamp(46px, 8vw, 84px); top: 40%; right: -2%; }
.hero__badge { border-radius: var(--r-lg); box-shadow: var(--sh-float), inset 0 2px 3px rgba(255,255,255,0.8); border: 1px solid rgba(255,255,255,0.8); }

/* --- object chip used inline in sections --- */
.objtile { width: 64px; height: 64px; border-radius: var(--r-md); background: linear-gradient(160deg,#fff,#eef8f6); box-shadow: var(--sh-2), inset 0 2px 3px rgba(255,255,255,0.8); display: grid; place-items: center; padding: 8px; }
.objtile svg { width: 100%; height: 100%; }

/* --- stat numbers pop --- */
.stat b { background: linear-gradient(120deg, var(--brand-strong), var(--pop-aqua)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* --- section head number as clay bubble --- */
.section-head__rail .eyebrow-num { display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(160deg,#fff,#e6f7f4); box-shadow: var(--sh-1), inset 0 2px 3px rgba(255,255,255,0.8); font-size: var(--fs-200); }

/* --- footer rounded top --- */
.footer { border-radius: var(--r-2xl) var(--r-2xl) 0 0; }

/* --- custom cursor dot (fine pointers only) --- */
@media (pointer: fine) {
  .cursor-dot { position: fixed; top: 0; left: 0; width: 10px; height: 10px; border-radius: 50%; background: var(--brand); pointer-events: none; z-index: 9999; transform: translate(-50%,-50%); transition: width .2s, height .2s, background .2s; mix-blend-mode: multiply; }
  .cursor-dot.is-hover { width: 46px; height: 46px; background: rgba(52,209,194,0.25); }
}
