/* ============================================================
   360 DENTAL JAMAICA: "Porcelain & Coral"
   Editorial warmth: cream porcelain base, ocean-petrol ink
   (never black), logo cyan + coral accents, Fraunces display.
   ============================================================ */

:root {
  /* Base */
  --cream:         #FDFAF5;
  --cream-2:       #F6EFE2;
  --paper:         #FFFFFF;
  --line:          rgba(20, 64, 79, 0.12);
  --line-strong:   rgba(20, 64, 79, 0.22);

  /* Ink: deep ocean petrol, replaces black everywhere */
  --ink:           #14404F;
  --ink-soft:      #40626F;
  --mute:          #6E8894;
  --deep:          #0D3844;   /* immersive band background */
  --deep-2:        #124B5B;

  /* Brand (from logo: cyan + coral + leaf) */
  --teal:          #11AEC6;
  --teal-bright:   #26C9DE;
  --teal-deep:     #0B87A0;
  --coral:         #F0563F;
  --coral-deep:    #D9432E;
  --coral-soft:    rgba(240, 86, 63, 0.10);
  --leaf:          #7CC242;
  --gold:          #F2B33D;

  /* Gradients */
  --grad-cta:      linear-gradient(120deg, #F0563F 0%, #F2884B 100%);
  --grad-brand:    linear-gradient(130deg, #0B87A0 0%, #11AEC6 55%, #26C9DE 100%);
  --grad-num:      linear-gradient(120deg, #F2B33D 0%, #F0563F 100%);

  --shadow-soft:   0 24px 60px -28px rgba(20, 64, 79, 0.35);
  --shadow-card:   0 16px 40px -24px rgba(20, 64, 79, 0.28);
  --radius:        26px;
  --radius-sm:     16px;
  --maxw:          1180px;
  --ease:          cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

body {
  font-family: 'Outfit', system-ui, -apple-system, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--coral); color: #fff; }

/* ---- Scroll progress ---- */
.progress {
  position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 90;
  background: linear-gradient(90deg, var(--coral), var(--teal));
  transform-origin: 0 50%; transform: scaleX(0);
}

/* ---- Ambient background ---- */
.bg-field { position: fixed; inset: 0; z-index: -2; overflow: hidden; pointer-events: none; }
.bg-field::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(52% 44% at 88% -4%, rgba(38, 201, 222, .14), transparent 62%),
    radial-gradient(46% 40% at 2% 12%, rgba(240, 86, 63, .08), transparent 60%),
    radial-gradient(56% 50% at 50% 112%, rgba(17, 174, 198, .08), transparent 60%),
    linear-gradient(180deg, #FEFCF8 0%, #FAF4EA 100%);
}

/* ---- Layout ---- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
section { position: relative; padding: 110px 0; }
section.tint { background: var(--cream-2); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12.5px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--teal-deep); padding: 8px 16px; border-radius: 100px;
  background: rgba(17, 174, 198, .09); border: 1px solid rgba(17, 174, 198, .3);
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--coral); box-shadow: 0 0 10px var(--coral); }
.eyebrow.light { color: #BDEAF2; background: rgba(38, 201, 222, .12); border-color: rgba(38, 201, 222, .3); }

h1, h2, h3 { font-family: 'Fraunces', Georgia, serif; font-weight: 560; line-height: 1.06; letter-spacing: -.015em; color: var(--ink); }
h1 em, h2 em { font-style: italic; font-weight: 500; color: var(--coral); }
.fullstop { color: var(--teal); }

.sec-head { max-width: 680px; margin-bottom: 60px; }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head.split {
  max-width: none; display: flex; align-items: flex-end; justify-content: space-between; gap: 40px;
}
.sec-head.split > div { max-width: 560px; }
.sec-head.split > p { max-width: 380px; margin-bottom: 8px; }
.sec-head h2 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); margin: 20px 0 16px; }
.sec-head p { color: var(--ink-soft); font-size: 1.05rem; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 600; font-size: 15.5px; padding: 15px 28px; border-radius: 100px;
  cursor: pointer; border: 1px solid transparent; text-decoration: none; font-family: inherit;
  transition: transform .25s var(--ease), box-shadow .3s var(--ease), background .3s, color .3s, border-color .3s;
  min-height: 50px; white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-lg { padding: 17px 32px; font-size: 16.5px; }
.btn-primary { background: var(--grad-cta); color: #fff; box-shadow: 0 14px 32px -12px rgba(240, 86, 63, .55); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 42px -12px rgba(240, 86, 63, .7); }
.btn-primary svg { transition: transform .25s var(--ease); }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-ghost { background: rgba(255,255,255,.75); color: var(--ink); border-color: var(--line-strong); backdrop-filter: blur(12px); }
.btn-ghost:hover { background: #fff; border-color: var(--teal); transform: translateY(-2px); }
.btn:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, button:focus-visible {
  outline: 3px solid var(--teal); outline-offset: 3px; border-radius: 8px;
}

/* ============================================================
   NAV
   ============================================================ */
header {
  position: fixed; top: 16px; left: 0; right: 0; z-index: 50;
  display: flex; justify-content: center; padding: 0 16px;
}
.nav {
  width: 100%; max-width: var(--maxw);
  display: flex; align-items: center; justify-content: space-between;
  padding: 11px 12px 11px 22px; border-radius: 100px;
  background: rgba(253, 250, 245, .7); border: 1px solid var(--line);
  backdrop-filter: blur(18px) saturate(140%);
  transition: background .3s, box-shadow .3s;
}
header.scrolled .nav { background: rgba(253, 250, 245, .94); box-shadow: 0 14px 38px -20px rgba(20, 64, 79, .4); }
.brand { display: flex; align-items: center; text-decoration: none; }
.brand-logo { height: 40px; width: auto; display: block; }
footer .brand-logo { height: 44px; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a { color: var(--ink-soft); text-decoration: none; font-size: 14.5px; font-weight: 500; padding: 9px 14px; border-radius: 100px; transition: color .2s, background .2s; }
.nav-links a:hover { color: var(--ink); background: rgba(20, 64, 79, .06); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-cta .phone { color: var(--ink); text-decoration: none; font-weight: 600; font-size: 14.5px; display: flex; align-items: center; gap: 8px; padding: 9px 14px; }
.nav-cta .phone svg { width: 16px; height: 16px; color: var(--coral); }
.nav-cta .phone:hover { color: var(--coral-deep); }
.burger { display: none; background: rgba(20, 64, 79, .06); border: 1px solid var(--line); width: 46px; height: 46px; border-radius: 50%; cursor: pointer; color: var(--ink); align-items: center; justify-content: center; }
.burger svg { width: 22px; height: 22px; }
.nav-mobile-only { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding: 175px 0 100px; min-height: 100vh; display: flex; align-items: center; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center; width: 100%; }
.hero h1 { font-size: clamp(2.9rem, 6.4vw, 5.4rem); margin: 28px 0 24px; }
.hero p.lead { font-size: clamp(1.05rem, 1.6vw, 1.24rem); color: var(--ink-soft); max-width: 520px; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-proof { display: flex; align-items: center; gap: 14px; margin-top: 34px; }
.avatars { display: flex; }
.avatars .av {
  width: 42px; height: 42px; border-radius: 50%; border: 2.5px solid var(--cream);
  display: grid; place-items: center; font-size: 13px; font-weight: 700; color: #fff;
  font-family: 'Fraunces', serif;
}
.avatars .av + .av { margin-left: -10px; }
.avatars .a1 { background: var(--teal-deep); }
.avatars .a2 { background: var(--coral); }
.avatars .a3 { background: var(--gold); }
.proof-txt .stars { display: flex; gap: 2px; color: var(--gold); }
.proof-txt .stars svg { width: 14px; height: 14px; }
.proof-txt b { font-size: 13.5px; font-weight: 600; color: var(--ink-soft); }

.hero-meta { display: flex; gap: 34px; margin-top: 38px; flex-wrap: wrap; padding-top: 30px; border-top: 1px solid var(--line); }
.hero-meta .m b { font-family: 'Fraunces', serif; font-weight: 600; font-size: 1.8rem; display: block; color: var(--ink); }
.hero-meta .m span { font-size: 13.5px; color: var(--mute); }

/* Hero visual: arched photo + spinning badge */
.hero-visual { position: relative; }
.arch {
  position: relative; overflow: hidden; z-index: 1;
  border-radius: 300px 300px var(--radius) var(--radius);
  aspect-ratio: 4 / 4.8;
  border: 6px solid #fff;
  box-shadow: var(--shadow-soft);
}
.arch img { width: 100%; height: 100%; object-fit: cover; display: block; }
.blob {
  position: absolute; inset: -8% -12% auto auto; width: 78%; aspect-ratio: 1; z-index: 0;
  background: radial-gradient(circle at 30% 30%, rgba(38, 201, 222, .4), rgba(240, 86, 63, .18) 60%, transparent 75%);
  border-radius: 50%; filter: blur(46px); animation: breathe 8s ease-in-out infinite;
}
@keyframes breathe { 50% { transform: scale(1.12) translateY(10px); } }

.spin-badge {
  position: absolute; z-index: 3; width: 148px; height: 148px;
  left: -34px; bottom: 10%;
  border-radius: 50%; background: var(--cream); box-shadow: var(--shadow-card);
  display: grid; place-items: center;
}
.spin-badge svg { position: absolute; inset: 8px; width: calc(100% - 16px); height: calc(100% - 16px); animation: rotate 16s linear infinite; }
.spin-badge svg text { font-family: 'Outfit', sans-serif; font-size: 10.5px; font-weight: 600; letter-spacing: .16em; fill: var(--ink); text-transform: uppercase; }
@keyframes rotate { to { transform: rotate(360deg); } }
.spin-core {
  width: 62px; height: 62px; border-radius: 50%; background: var(--grad-cta); color: #fff;
  display: grid; place-items: center; box-shadow: 0 10px 24px -8px rgba(240, 86, 63, .6);
}
.spin-core svg { width: 30px; height: 30px; }

.hero-chip {
  position: absolute; z-index: 2; display: flex; align-items: center; gap: 9px; padding: 12px 16px;
  border-radius: 100px; background: rgba(255,255,255,.9); border: 1px solid var(--line);
  backdrop-filter: blur(14px); font-size: 13px; font-weight: 600; color: var(--ink);
  box-shadow: var(--shadow-card);
}
.hero-chip svg { width: 16px; height: 16px; color: var(--coral); }
.hero-chip.c1 { top: 10%; right: -5%; animation: bob 5s ease-in-out infinite; }
.hero-chip.c2 { bottom: 4%; right: 8%; animation: bob 6s ease-in-out infinite .8s; }
@keyframes bob { 50% { transform: translateY(-12px); } }

/* ---- Trust ticker: tilted deep band ---- */
.strip {
  background: var(--deep); color: var(--cream);
  transform: rotate(-1.2deg) scale(1.02); margin: 10px 0 -10px;
  box-shadow: var(--shadow-card);
}
.marquee { display: flex; overflow: hidden; }
.marquee-track { display: flex; align-items: center; gap: 34px; padding: 20px 28px; white-space: nowrap; animation: scroll 30s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes scroll { to { transform: translateX(-50%); } }
.marquee-item { font-family: 'Fraunces', serif; font-style: italic; font-weight: 500; font-size: 17px; color: #F3EDE2; }
.marquee .sep { color: var(--coral); font-size: 13px; }

/* ============================================================
   SERVICES: bento cards
   ============================================================ */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.card {
  padding: 32px 30px; border-radius: var(--radius); cursor: default;
  background: var(--paper); border: 1px solid var(--line);
  position: relative; overflow: hidden;
  transition: transform .35s var(--ease), border-color .35s, box-shadow .35s;
  transform-style: preserve-3d; box-shadow: var(--shadow-card);
}
.card::before {
  content: ""; position: absolute; inset: 0; opacity: 0; transition: opacity .4s;
  background: radial-gradient(420px circle at var(--mx,50%) var(--my,0%), rgba(240, 86, 63, .08), transparent 45%);
}
.card:hover { border-color: rgba(240, 86, 63, .4); box-shadow: var(--shadow-soft); }
.card:hover::before { opacity: 1; }
.card .idx {
  position: absolute; top: 18px; right: 24px;
  font-family: 'Fraunces', serif; font-style: italic; font-size: 2.6rem; font-weight: 500;
  color: var(--cream-2); line-height: 1; transition: color .35s;
}
.card:hover .idx { color: var(--coral-soft); color: rgba(240, 86, 63, .25); }
.card .ic { width: 52px; height: 52px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 18px; background: rgba(17, 174, 198, .1); border: 1px solid rgba(17, 174, 198, .28); color: var(--teal-deep); }
.card .ic svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.28rem; margin-bottom: 9px; }
.card p { color: var(--ink-soft); font-size: 14.5px; line-height: 1.6; }
.card.span3 { grid-column: span 3; }
.card.span2 { grid-column: span 2; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 64px; align-items: center; }
.about-photo { position: relative; }
.arch.portrait {
  aspect-ratio: 4 / 5; background: linear-gradient(170deg, #DFF3F7 0%, #F8E8DC 100%);
}
.arch.portrait img { object-fit: cover; object-position: top; }
.about-photo .badge {
  position: absolute; bottom: 22px; left: 22px; right: 22px; padding: 18px 22px;
  background: rgba(253, 250, 245, .92); backdrop-filter: blur(16px); border: 1px solid var(--line);
  border-radius: 18px; display: flex; align-items: center; gap: 14px; box-shadow: var(--shadow-card);
}
.about-photo .badge .sig { font-family: 'Fraunces', serif; font-weight: 600; font-size: 1.15rem; color: var(--ink); }
.about-photo .badge .role { font-size: 13px; color: var(--coral-deep); font-weight: 600; }
.about-grid h2 { font-size: clamp(2rem, 4.2vw, 3rem); margin: 18px 0 20px; }
.about-grid p { color: var(--ink-soft); margin-bottom: 18px; }
.about-copy .pull {
  font-family: 'Fraunces', serif; font-size: clamp(1.4rem, 2.4vw, 1.8rem); font-weight: 500;
  color: var(--ink); line-height: 1.3; padding-left: 22px; border-left: 3px solid var(--coral);
  margin: 26px 0;
}
.about-copy .pull em { color: var(--coral); font-style: italic; }
.about-points { display: grid; gap: 14px; margin-top: 26px; }
.about-points li { display: flex; gap: 13px; list-style: none; align-items: flex-start; color: var(--ink); font-size: 15px; font-weight: 500; }
.about-points .chk { flex: none; width: 24px; height: 24px; border-radius: 50%; background: rgba(124, 194, 66, .16); border: 1px solid rgba(124, 194, 66, .5); display: grid; place-items: center; color: #4F8F1F; margin-top: 2px; }
.about-points .chk svg { width: 14px; height: 14px; }

/* ============================================================
   THE 360 WAY: immersive deep band
   ============================================================ */
section.deep {
  background:
    radial-gradient(55% 60% at 85% 0%, rgba(38, 201, 222, .14), transparent 60%),
    radial-gradient(45% 55% at 8% 100%, rgba(240, 86, 63, .12), transparent 60%),
    var(--deep);
  color: #EAF4F1;
}
section.deep .sec-head h2 { color: #FBF6EC; }
section.deep .sec-head h2 em { color: var(--teal-bright); }
section.deep .sec-head p { color: rgba(234, 244, 241, .75); }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; position: relative; }
.steps::before {
  content: ""; position: absolute; top: 58px; left: 6%; right: 6%; height: 0;
  border-top: 2px dashed rgba(38, 201, 222, .3); z-index: 0;
}
.step {
  position: relative; z-index: 1; padding: 30px 26px; border-radius: var(--radius);
  background: rgba(253, 250, 245, .05); border: 1px solid rgba(234, 244, 241, .14);
  backdrop-filter: blur(8px);
  transition: transform .35s var(--ease), border-color .35s, background .35s;
}
.step:hover { transform: translateY(-6px); border-color: rgba(38, 201, 222, .5); background: rgba(253, 250, 245, .08); }
.step .num {
  font-family: 'Fraunces', serif; font-style: italic; font-size: 2.6rem; font-weight: 500; line-height: 1;
  background: var(--grad-num); -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 16px;
}
.step h3 { font-size: 1.18rem; margin-bottom: 8px; color: #FBF6EC; }
.step p { color: rgba(234, 244, 241, .72); font-size: 14px; }

/* ============================================================
   GALLERY: before/after slider
   ============================================================ */
.ba {
  position: relative; border-radius: var(--radius); overflow: hidden; border: 6px solid #fff;
  aspect-ratio: 2/1; user-select: none; cursor: ew-resize; box-shadow: var(--shadow-soft);
  max-width: 940px; margin: 0 auto 18px;
}
.ba img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba .after { clip-path: inset(0 0 0 50%); }
.ba .ba-line { position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background: var(--coral); box-shadow: 0 0 16px rgba(240, 86, 63, .8); transform: translateX(-1px); }
.ba .ba-handle { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,.95); border: 2px solid var(--coral); display: grid; place-items: center; color: var(--coral-deep); backdrop-filter: blur(8px); box-shadow: var(--shadow-card); }
.ba .ba-handle svg { width: 22px; height: 22px; }
.ba .lbl { position: absolute; bottom: 14px; padding: 6px 14px; border-radius: 100px; font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; background: rgba(253, 250, 245, .9); backdrop-filter: blur(8px); border: 1px solid var(--line); color: var(--ink-soft); }
.ba .lbl.l { left: 14px; } .ba .lbl.r { right: 14px; color: var(--coral-deep); }
.ba .tag {
  position: absolute; top: 14px; left: 14px; padding: 7px 15px; border-radius: 100px;
  font-family: 'Fraunces', serif; font-style: italic; font-size: 14px; font-weight: 500;
  background: var(--deep); color: #F3EDE2; box-shadow: var(--shadow-card);
}
.results { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.result { position: relative; border-radius: var(--radius-sm); overflow: hidden; border: 5px solid #fff; aspect-ratio: 1/1; box-shadow: var(--shadow-card); margin: 0; }
.result img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.result:hover img { transform: scale(1.05); }
.result figcaption {
  position: absolute; bottom: 12px; left: 12px; padding: 7px 15px; border-radius: 100px;
  font-family: 'Fraunces', serif; font-style: italic; font-size: 14px; font-weight: 500;
  background: rgba(253, 250, 245, .92); backdrop-filter: blur(8px); border: 1px solid var(--line); color: var(--ink);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.tcards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.tcard {
  position: relative; padding: 34px 30px 30px; border-radius: var(--radius);
  background: var(--paper); border: 1px solid var(--line); box-shadow: var(--shadow-card);
  transition: transform .35s var(--ease), box-shadow .35s;
}
.tcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.tcard .qmark {
  position: absolute; top: 6px; right: 22px; font-family: 'Fraunces', serif; font-style: italic;
  font-size: 5.4rem; line-height: 1; color: var(--coral-soft); color: rgba(240, 86, 63, .18); pointer-events: none;
}
.tcard .stars { display: flex; gap: 3px; color: var(--gold); margin-bottom: 16px; }
.tcard .stars svg { width: 17px; height: 17px; }
.tcard blockquote { font-size: 15.5px; color: var(--ink); line-height: 1.68; margin-bottom: 22px; }
.tcard .who { display: flex; align-items: center; gap: 12px; }
.tcard .av { width: 44px; height: 44px; border-radius: 50%; background: var(--grad-brand); display: grid; place-items: center; font-weight: 600; color: #fff; font-family: 'Fraunces', serif; }
.tcard .who b { display: block; font-size: 14.5px; color: var(--ink); }
.tcard .who span { font-size: 12.5px; color: var(--mute); }

/* ============================================================
   BOOK / CONTACT
   ============================================================ */
.book-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: 32px; overflow: hidden; box-shadow: var(--shadow-soft); }
.book-info {
  padding: 54px 50px; color: #EAF4F1;
  background:
    radial-gradient(60% 50% at 100% 0%, rgba(38, 201, 222, .18), transparent 60%),
    radial-gradient(50% 45% at 0% 100%, rgba(240, 86, 63, .16), transparent 60%),
    var(--deep);
}
.book-info h2 { font-size: clamp(1.9rem, 3.8vw, 2.7rem); margin: 18px 0 16px; color: #FBF6EC; }
.book-info h2 em { color: var(--teal-bright); }
.book-info > p { color: rgba(234, 244, 241, .78); margin-bottom: 34px; }
.contact-list { display: grid; gap: 20px; }
.contact-list .row { display: flex; gap: 15px; align-items: flex-start; }
.contact-list .ic { flex: none; width: 44px; height: 44px; border-radius: 13px; background: rgba(253, 250, 245, .08); border: 1px solid rgba(234, 244, 241, .2); display: grid; place-items: center; color: var(--teal-bright); }
.contact-list .ic svg { width: 20px; height: 20px; }
.contact-list .row b { font-size: 12px; color: rgba(234, 244, 241, .55); font-weight: 700; display: block; letter-spacing: .12em; }
.contact-list .row a, .contact-list .row p { color: #F3EDE2; text-decoration: none; font-weight: 500; font-size: 15.5px; }
.contact-list .row a:hover { color: var(--teal-bright); }
.insurers { margin-top: 34px; padding-top: 26px; border-top: 1px solid rgba(234, 244, 241, .15); }
.insurers > span { display: block; font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(234, 244, 241, .55); margin-bottom: 14px; }
.ins-logos { display: flex; gap: 12px; flex-wrap: wrap; }
.ins { display: grid; place-items: center; padding: 10px 18px; border-radius: 14px; background: rgba(253, 250, 245, .94); border: 1px solid rgba(234, 244, 241, .3); }
.ins img { height: 30px; width: auto; display: block; }
.book-form { padding: 54px 50px; background: var(--paper); }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13px; color: var(--ink-soft); margin-bottom: 8px; font-weight: 600; }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; border-radius: 13px; font-size: 15px; font-family: inherit;
  background: var(--cream); border: 1px solid var(--line-strong); color: var(--ink); transition: border-color .2s, background .2s, box-shadow .2s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--mute); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--coral); background: #fff; outline: none; box-shadow: 0 0 0 4px rgba(240, 86, 63, .12); }
.field select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%23D9432E' stroke-width='2'%3E%3Cpath d='M3 5l4 4 4-4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-note { font-size: 12.5px; color: var(--mute); margin-top: 14px; text-align: center; }
.form-ok { display: none; padding: 16px; border-radius: 13px; background: rgba(124, 194, 66, .12); border: 1px solid rgba(124, 194, 66, .5); color: #3E7A12; font-weight: 500; font-size: 14.5px; margin-top: 16px; text-align: center; }
.form-ok.show { display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
footer { position: relative; overflow: hidden; border-top: 1px solid var(--line); padding: 70px 0 36px; background: var(--cream-2); }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; position: relative; z-index: 1; }
.foot-grid p { color: var(--ink-soft); font-size: 14.5px; margin-top: 16px; max-width: 280px; }
.foot-col h4 { font-family: 'Outfit', sans-serif; font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--mute); margin-bottom: 18px; }
.foot-col a { display: block; color: var(--ink-soft); text-decoration: none; font-size: 14.5px; margin-bottom: 11px; transition: color .2s; }
.foot-col a:hover { color: var(--coral-deep); }
.socials { display: flex; gap: 10px; margin-top: 20px; }
.socials a { width: 42px; height: 42px; border-radius: 13px; background: rgba(255,255,255,.7); border: 1px solid var(--line); display: grid; place-items: center; color: var(--ink-soft); transition: all .25s; }
.socials a:hover { color: #fff; background: var(--coral); border-color: var(--coral); transform: translateY(-3px); }
.socials svg { width: 19px; height: 19px; }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; border-top: 1px solid var(--line); color: var(--mute); font-size: 13.5px; flex-wrap: wrap; gap: 12px; position: relative; z-index: 1; }
.foot-mark {
  position: absolute; bottom: -0.28em; right: -10px; z-index: 0; pointer-events: none;
  font-family: 'Fraunces', serif; font-style: italic; font-weight: 600; line-height: 1;
  font-size: clamp(8rem, 22vw, 19rem); color: rgba(20, 64, 79, .05);
}

/* ---- Sticky mobile CTA ---- */
.mobile-cta {
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 60;
  display: none; gap: 10px; padding: 10px;
  background: rgba(253, 250, 245, .88); backdrop-filter: blur(16px);
  border: 1px solid var(--line); border-radius: 100px; box-shadow: var(--shadow-soft);
}
.mobile-cta .btn { flex: 1; min-height: 46px; padding: 12px 16px; font-size: 14.5px; }
.mobile-cta .btn-ghost { flex: 0 0 auto; }
.mobile-cta .btn svg { width: 16px; height: 16px; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
/* Progressive: only hide when JS is active (html.js), so content is never lost if JS/IO fails */
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero { min-height: 0; }
  .hero-visual { max-width: 440px; margin: 0 auto; width: 100%; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-photo { max-width: 420px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps::before { display: none; }
  .card.span3 { grid-column: span 6; }
  .card.span2 { grid-column: span 3; }
  .sec-head.split { flex-direction: column; align-items: flex-start; gap: 14px; }
}
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-cta .phone { display: none; }
  .nav-cta > .btn-primary { display: none; }
  .nav-mobile-only { display: flex; }
  .burger { display: flex; }
  .book-grid { grid-template-columns: 1fr; }
  .tcards { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  section { padding: 80px 0; }
  .hero { padding: 140px 0 70px; }
  .mobile-cta { display: flex; }
  body { padding-bottom: 76px; }
  /* mobile menu */
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute; top: 74px; left: 16px; right: 16px;
    background: rgba(253, 250, 245, .98); border: 1px solid var(--line); border-radius: 24px; padding: 14px;
    backdrop-filter: blur(20px); gap: 4px; box-shadow: var(--shadow-soft);
  }
  .nav-links.open a { padding: 13px 16px; font-size: 16px; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .wrap { padding: 0 18px; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .card.span2, .card.span3 { grid-column: span 2; }
  .steps { grid-template-columns: 1fr; }
  .results { grid-template-columns: 1fr; }
  .ba { aspect-ratio: 4/3; }
  .field-row { grid-template-columns: 1fr; }
  .book-info, .book-form { padding: 34px 24px; }
  .foot-grid { grid-template-columns: 1fr; }
  .hero-actions .btn { flex: 1; }
  .hero-meta { gap: 22px; }
  .foot-bottom { flex-direction: column; text-align: center; }
  .spin-badge { width: 116px; height: 116px; left: -10px; }
  .spin-badge svg text { font-size: 11.5px; }
  .spin-core { width: 50px; height: 50px; }
  .spin-core svg { width: 24px; height: 24px; }
  .hero-chip.c1 { right: -2%; }
  .hero-chip.c2 { right: 2%; }
}
