:root {
  --cream: #fff8ea;
  --paper: #ffffff;
  --sky: #c7e7fa;
  --sky-strong: #67bef2;
  --blue: #2f84be;
  --deep: #241b10;
  --ink: #201a10;
  --muted: #756a5c;
  --sand: #ead9c4;
  --mint: #d9f0e3;
  --line: rgba(32, 26, 16, 0.13);
  --shadow: 0 24px 70px rgba(47, 132, 190, 0.18);
  --shadow-blue: 0 22px 46px -16px rgba(47, 132, 190, .45);
  --radius: 26px;
  --ease: cubic-bezier(.16,1,.3,1);
  --font-display: "Fraunces", serif;
  --font-body: "Public Sans", sans-serif;
  --font-label: "Public Sans", sans-serif;
  --font-hand: "Caveat", cursive;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html { overflow-x: hidden; }
body {
  position: relative;
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  overflow-x: hidden;
  background: var(--cream);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: .03;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

a { color: inherit; text-decoration: none; }
img, video { max-width: 100%; display: block; }

.blob { position: absolute; border-radius: 50%; filter: blur(70px); pointer-events: none; z-index: 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ---- floating glass nav ---- */
.site-header { position: sticky; top: 0; z-index: 30; padding: 1.1rem clamp(.9rem, 3vw, 2rem) 0; }
.nav-pill {
  max-width: 1120px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: .6rem .6rem .6rem 1.15rem; border-radius: 999px;
  background: rgba(255,255,255,.7); backdrop-filter: blur(22px) saturate(1.5); -webkit-backdrop-filter: blur(22px) saturate(1.5);
  border: 1px solid rgba(255,255,255,.7);
  box-shadow: 0 14px 36px -16px rgba(36,27,16,.28), inset 0 1px 0 rgba(255,255,255,.8);
}

.brand { display: inline-flex; align-items: center; gap: .65rem; font-weight: 800; color: var(--deep); }
.brand-mark {
  width: 2.3rem; height: 2.3rem; border-radius: 50%; display: grid; place-items: center; color: white;
  background: linear-gradient(135deg, var(--sky-strong), var(--blue));
  box-shadow: 0 10px 22px rgba(47, 132, 190, .28);
  font-family: var(--font-label); font-size: .8rem;
}

.nav { display: flex; align-items: center; gap: 1rem; font-size: .92rem; font-weight: 600; color: var(--deep); }
.nav a { opacity: .82; transition: opacity .2s ease; }
.nav a:hover { opacity: 1; }
.nav-cta { padding: .68rem 1.05rem; border-radius: 999px; background: var(--deep); color: white; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.nav-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-blue); }
.menu-toggle { display: none; border: 0; background: rgba(255,255,255,.6); border-radius: 999px; padding: .65rem 1rem; font-weight: 700; color: var(--deep); box-shadow: inset 0 0 0 1px var(--line); }

.section-shell { position: relative; width: min(1120px, calc(100% - 2rem)); margin: 0 auto; z-index: 1; }
.hero { position: relative; overflow: visible; min-height: calc(100vh - 96px); display: grid; grid-template-columns: 1.06fr .94fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; padding: clamp(2.5rem, 6vw, 4.5rem) 0 3rem; }
.hero .blob-a { width: 460px; height: 460px; top: -100px; left: -160px; background: radial-gradient(circle, rgba(169,218,247,.8), transparent 70%); }
.hero .blob-b { width: 380px; height: 380px; bottom: -80px; right: -130px; background: radial-gradient(circle, rgba(217,240,227,.65), transparent 70%); animation: drift 22s ease-in-out infinite alternate; }

@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(-24px, 18px) scale(1.06); }
}

/* ---- eyebrow badge (icon + label, like reference sites) ---- */
.eyebrow-badge {
  position: relative; z-index: 1; display: inline-flex; align-items: center; gap: .5rem; margin: 0 0 1.1rem;
  padding: .5rem .9rem .5rem .6rem; border-radius: 999px; background: rgba(47,132,190,.1); border: 1px solid rgba(47,132,190,.18);
  font-family: var(--font-label); font-weight: 600; font-size: .8rem; color: var(--blue);
}
.eyebrow-badge .dot { width: 1.5rem; height: 1.5rem; border-radius: 50%; background: var(--blue); color: #fff; display: grid; place-items: center; font-size: .85rem; }

.eyebrow { position: relative; z-index: 1; margin: 0 0 .8rem; color: var(--blue); font-family: var(--font-label); font-weight: 600; text-transform: uppercase; letter-spacing: .1em; font-size: .78rem; }
h1, h2, h3 { position: relative; z-index: 1; color: var(--deep); margin: 0; font-family: var(--font-display); }
h1, h2 { letter-spacing: -.02em; font-weight: 800; }
h1 { font-size: clamp(2.5rem, 5vw, 4rem); line-height: 1.08; max-width: 15ch; }
h1 em, h2 em { font-style: italic; font-weight: 600; color: var(--blue); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); line-height: 1.14; }
h3 { font-size: 1.15rem; font-weight: 700; }
.accent { color: var(--blue); }
.sparkle { display: inline-block; color: var(--sky-strong); margin: 0 .1em; }
.highlight { position: relative; white-space: nowrap; }
.highlight::after { content: ""; position: absolute; left: -.15em; right: -.15em; bottom: .06em; height: .32em; background: rgba(103,190,242,.35); z-index: -1; border-radius: .2rem; }
.hero-text { position: relative; z-index: 1; margin: 1.4rem 0 0; font-size: clamp(1.05rem, 2vw, 1.24rem); line-height: 1.6; color: #4a4030; max-width: 38rem; }
.hero-text strong { color: var(--deep); font-weight: 700; }
.hero-actions { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: .85rem; margin: 2rem 0 1rem; }
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem; min-height: 3.25rem; padding: .95rem 1.4rem .95rem 1.5rem;
  border-radius: 999px; font-weight: 700; font-family: var(--font-body);
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), box-shadow .35s var(--ease), background .3s ease;
}
.button:hover { transform: translateY(-3px); }
.button:active { transform: translateY(-1px) scale(.97); }
.button .arrow { display: inline-grid; place-items: center; width: 1.5rem; height: 1.5rem; border-radius: 50%; background: rgba(255,255,255,.22); font-size: .85rem; transition: transform .35s var(--ease); }
.button:hover .arrow { transform: translateX(3px); }
.primary { background: var(--blue); color: white; box-shadow: 0 18px 32px rgba(47, 132, 190, .28); }
.primary:hover { box-shadow: var(--shadow-blue); }
.ghost { background: rgba(255,255,255,.7); box-shadow: inset 0 0 0 1.5px var(--line); color: var(--deep); }
.ghost:hover { background: #fff; }
.full { width: 100%; }
.microcopy { position: relative; z-index: 1; color: var(--muted); line-height: 1.55; margin: 0; }
.microcopy.strong { color: var(--deep); font-weight: 700; }
.microcopy.signature { margin-top: .5rem; font-family: var(--font-label); font-size: .85rem; }
.reassure-inline { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: .4rem 1rem; margin-top: 1.35rem; font-family: var(--font-label); font-size: .88rem; font-weight: 600; color: var(--muted); }
.reassure-inline span { display: inline-flex; align-items: center; gap: .4rem; }
.reassure-inline .tick { color: var(--blue); font-weight: 800; }

/* ---- decorative plus marks (Arko-style) ---- */
.plus { position: absolute; font-family: var(--font-display); font-weight: 600; color: var(--sky-strong); opacity: .8; pointer-events: none; }
.plus-1 { top: -.4rem; left: 13rem; font-size: 1.3rem; transform: rotate(-8deg); }
.plus-2 { top: 1.6rem; left: -.9rem; font-size: 1rem; color: var(--blue); opacity: .6; }

/* ---- hand-drawn annotation ---- */
.hand-note {
  position: absolute; z-index: 5; top: -2.2rem; right: .5rem; text-align: right; transform: rotate(-4deg);
  font-family: var(--font-hand); font-size: 1.4rem; font-weight: 600; color: var(--deep); line-height: 1.05; margin: 0;
}
.hand-note svg { width: 58px; height: 40px; display: block; margin: .15rem 0 0 auto; }

/* ---- realistic phone mockup ---- */
.hero-media { position: relative; z-index: 1; justify-self: center; padding-top: 2rem; }
.mockup-stage {
  position: relative; display: inline-block; padding: 1.2rem 1rem; border-radius: 30px;
  background: radial-gradient(120% 120% at 30% 18%, #ffffff 0%, var(--sky) 55%, var(--sky-strong) 100%);
  box-shadow: 0 26px 54px -26px rgba(103,190,242,.5);
}
.phone-frame {
  position: relative; z-index: 2; width: min(280px, 70vw); aspect-ratio: 9 / 18.5; margin: 0 auto;
  padding: 14px 11px; border-radius: 52px;
  background: linear-gradient(165deg, #4a4d54, #202226 55%, #0c0d0f);
  box-shadow: inset 0 1px 1px rgba(255,255,255,.35), inset 0 -1px 3px rgba(0,0,0,.6), 0 44px 80px -24px rgba(36,27,16,.4);
  transform: rotate(1.6deg); transition: transform .5s var(--ease);
}
.phone-frame:hover { transform: rotate(0deg) scale(1.012); }
.phone-screen { position: relative; width: 100%; height: 100%; border-radius: 38px; overflow: hidden; background: #000; }
.phone-island { position: absolute; top: 10px; left: 50%; transform: translateX(-50%); width: 84px; height: 24px; background: #000; border-radius: 999px; z-index: 3; box-shadow: inset 0 0 0 1px rgba(255,255,255,.06); }
.phone-btn { position: absolute; background: linear-gradient(90deg, #3a3c42, #1a1b1e); border-radius: 3px; }
.btn-mute { left: -3px; top: 92px; width: 3px; height: 26px; }
.btn-vol-up { left: -3px; top: 132px; width: 3px; height: 44px; }
.btn-vol-down { left: -3px; top: 188px; width: 3px; height: 44px; }
.btn-power { right: -3px; top: 148px; width: 3px; height: 64px; }
.audit-video { width: 100%; height: 100%; object-fit: cover; }
.floating-note { position: absolute; z-index: 4; max-width: 13rem; padding: .9rem 1rem; border-radius: 1.2rem; background: rgba(255, 253, 248, .9); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,.6); box-shadow: 0 18px 45px rgba(36,27,16,.16); font-weight: 700; color: var(--deep); font-size: .92rem; }
.note-one { left: -2.4rem; top: 14%; transform: rotate(-5deg); }
.note-two { right: -2rem; bottom: 12%; transform: rotate(4deg); }

/* ---- overlapping stickers ---- */
.sticker { position: absolute; z-index: 4; width: 3.1rem; height: 3.1rem; filter: drop-shadow(0 10px 18px rgba(36,27,16,.28)); }
.sticker svg { width: 100%; height: 100%; display: block; }
.sticker-heart { top: -.9rem; left: 1.3rem; transform: rotate(-12deg); }
.sticker-bubble { bottom: 1.1rem; right: -1.1rem; width: 3.4rem; height: 3.4rem; transform: rotate(9deg); }

.pain, .audit, .method, .examples, .diagnostics-wrap, .reservation, .faq, .final-cta, .calendly-embed-section { position: relative; padding: clamp(4.5rem, 9vw, 7.5rem) 0; }
.final-cta { padding-top: 0; }
.final-cta-box { position: relative; overflow: hidden; text-align: center; max-width: 640px; margin: 0 auto; background: linear-gradient(135deg, rgba(169,218,247,.4), rgba(217,240,227,.4)); border: 1px solid var(--line); border-radius: calc(var(--radius) + 8px); padding: clamp(2rem, 6vw, 3.5rem); box-shadow: var(--shadow); }
.final-cta-box p { position: relative; z-index: 1; color: #4a4030; line-height: 1.65; margin: 1rem 0 1.6rem; }
.final-cta-box .button { position: relative; z-index: 1; margin: 0 auto; }

.calendly-embed-box { max-width: 640px; margin: 0 auto; background: rgba(255,255,255,.85); border: 1px solid var(--line); border-radius: calc(var(--radius) + 8px); padding: clamp(1.2rem, 4vw, 2rem); box-shadow: var(--shadow); }
.final-cta-box + .calendly-embed-box { margin-top: 2.5rem; }
.calendly-inline-widget { width: 100%; min-width: 280px; height: 700px; border-radius: calc(var(--radius) - 6px); overflow: hidden; }
.section-intro { position: relative; z-index: 1; max-width: 740px; margin-bottom: 2.2rem; }
.centered { text-align: center; margin-left: auto; margin-right: auto; }
.pain-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.pain-grid article, .steps article, .booking-card, .faq details, .diagnostics article {
  background: rgba(255, 253, 248, .85);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.75), 0 18px 50px rgba(36,27,16,.07);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.pain-grid article:hover, .steps article:hover, .diagnostics article:hover {
  transform: translateY(-5px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.75), var(--shadow-blue);
  border-color: rgba(47,132,190,.25);
}
.pain-grid span, .steps span { display: inline-grid; place-items: center; width: 2.2rem; height: 2.2rem; border-radius: 50%; background: var(--sky); color: var(--deep); font-family: var(--font-label); font-weight: 600; margin-bottom: 1rem; }
.pain-grid p, .steps p, .audit-card p, .booking-card p, .faq p { color: #4a4030; line-height: 1.68; }

.audit-card, .reservation-box { position: relative; display: grid; grid-template-columns: .88fr 1.12fr; gap: clamp(1.5rem, 5vw, 4rem); align-items: center; background: rgba(255,255,255,.75); border: 1px solid var(--line); border-radius: calc(var(--radius) + 12px); padding: clamp(1rem, 4vw, 2rem); box-shadow: var(--shadow); }

/* ---- realistic instagram-style profile mockup (dark mode, matches real IG) ---- */
.ig-mock { position: relative; min-height: 560px; border-radius: 1.4rem; background: #000; border: 1px solid rgba(255,255,255,.08); overflow: hidden; box-shadow: 0 30px 60px -20px rgba(0,0,0,.5); }
.ig-mock-bar { display: flex; align-items: center; justify-content: space-between; padding: .8rem 1rem; }
.ig-mock-bar .back { color: #fff; font-size: 1rem; opacity: .85; }
.ig-mock-bar .uname { color: #fff; font-weight: 700; font-size: .82rem; font-family: var(--font-label); }
.ig-mock-bar .dots { color: #fff; opacity: .7; letter-spacing: .1em; }
.ig-mock-body { padding: .3rem 1.1rem 1.2rem; }
.ig-top { display: flex; align-items: center; gap: 1rem; }
.ig-avatar-ring { width: 62px; height: 62px; border-radius: 50%; padding: 2.5px; background: conic-gradient(from 180deg, var(--sky-strong), var(--blue), var(--mint), var(--sky-strong)); flex: none; }
.ig-avatar { width: 100%; height: 100%; border-radius: 50%; background: linear-gradient(160deg, #3a4b5c, #1c2733); }
.ig-stats { flex: 1; display: flex; justify-content: space-around; }
.ig-stat { display: flex; flex-direction: column; align-items: center; gap: .25rem; }
.ig-stat-num { color: #fff; font-weight: 700; font-size: 1rem; font-family: var(--font-label); }
.ig-stat-label { font-size: .68rem; color: rgba(255,255,255,.5); }
.ig-name { margin-top: .8rem; font-weight: 700; font-size: .88rem; color: #fff; }
.ig-bio { margin-top: .5rem; display: grid; gap: .3rem; }
.ig-bio-line { font-size: .82rem; line-height: 1.5; color: rgba(255,255,255,.82); }
.ig-link { margin-top: .3rem; display: flex; align-items: center; gap: .35rem; font-size: .82rem; color: #6bb3f0; }
.ig-actions { margin-top: .9rem; display: flex; gap: .5rem; }
.ig-actions .a1 { flex: 1; height: 2.15rem; border-radius: .55rem; background: var(--sky-strong); color: #0b1a26; display: flex; align-items: center; justify-content: center; font-family: var(--font-label); font-weight: 600; font-size: .78rem; }
.ig-actions .a2 { flex: 1; height: 2.15rem; border-radius: .55rem; background: rgba(255,255,255,.1); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--font-label); font-weight: 500; font-size: .78rem; }
.ig-actions .a3 { width: 2.15rem; height: 2.15rem; border-radius: .55rem; background: rgba(255,255,255,.1); color: #fff; display: flex; align-items: center; justify-content: center; font-size: .85rem; }
.ig-highlights { margin-top: 1.1rem; display: flex; gap: 1.1rem; }
.ig-highlight { display: flex; flex-direction: column; align-items: center; gap: .3rem; }
.ig-highlight .ring { width: 48px; height: 48px; border-radius: 50%; padding: 2px; }
.ig-highlight .ring.r1 { background: conic-gradient(var(--sky-strong), var(--sky)); }
.ig-highlight .ring.r2 { background: conic-gradient(var(--mint), #bfe6d2); }
.ig-highlight .ring.r3 { background: conic-gradient(var(--sand), #ddc4a3); }
.ig-highlight .ring span { display: block; width: 100%; height: 100%; border-radius: 50%; background: #16181c; }
.ig-highlight label { font-size: .62rem; color: rgba(255,255,255,.6); }
.ig-tabs { margin-top: 1.1rem; display: flex; border-top: 1px solid rgba(255,255,255,.14); }
.ig-tab { flex: 1; display: flex; align-items: center; justify-content: center; padding: .7rem 0; opacity: .4; color: #fff; }
.ig-tab.is-active { opacity: 1; border-top: 1.5px solid #fff; margin-top: -1px; }
.ig-tab svg { width: 17px; height: 17px; }
.ig-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.ig-grid span { aspect-ratio: 1; }
.ig-grid span:nth-child(1) { background: linear-gradient(145deg, var(--sky), var(--sky-strong)); }
.ig-grid span:nth-child(2) { background: linear-gradient(145deg, var(--mint), #bfe6d2); }
.ig-grid span:nth-child(3) { background: linear-gradient(145deg, var(--sand), #ddc4a3); }
.ig-grid span:nth-child(4) { background: linear-gradient(145deg, #2a3a48, var(--sky-strong)); }
.ig-grid span:nth-child(5) { background: linear-gradient(145deg, var(--sky-strong), var(--blue)); }
.ig-grid span:nth-child(6) { background: linear-gradient(145deg, #274235, var(--mint)); }

.audit-tag { position: absolute; padding: .7rem .85rem; border-radius: 999px; color: var(--deep); background: rgba(255,255,255,.96); backdrop-filter: blur(6px); box-shadow: 0 12px 28px rgba(0,0,0,.28); font-family: var(--font-label); font-weight: 500; font-size: .8rem; opacity: 0; transform: translateY(6px); transition: opacity .5s var(--ease), transform .5s var(--ease); }
.audit-tag.is-checked { opacity: 1; transform: translateY(0); }
.audit-tag.is-checked::before { content: "✓ "; color: var(--sky-strong); font-weight: 700; }
.tag-a { top: 4px; right: -10px; }
.tag-b { left: -12px; top: 210px; }
.tag-c { right: -8px; bottom: 108px; }
.check-list { margin-top: 1.4rem; display: grid; gap: .7rem; }
.check-list p { margin: 0; padding-left: 1rem; border-left: 3px solid var(--sky-strong); }

.expertise-wrap { position: relative; overflow: hidden; padding: clamp(3.5rem, 7vw, 5.5rem) 0; }
.expertise-wrap .blob-d { width: 420px; height: 420px; top: -120px; right: -160px; background: radial-gradient(circle, rgba(103,190,242,.35), transparent 70%); }
.expertise-wrap .blob-e { width: 360px; height: 360px; bottom: -140px; left: -140px; background: radial-gradient(circle, rgba(217,240,227,.35), transparent 70%); }
.expertise {
  position: relative; display: grid; grid-template-columns: .62fr 1fr; gap: clamp(1.6rem, 4vw, 3rem); align-items: center;
  background: linear-gradient(135deg, var(--sky) 0%, var(--paper) 65%);
  border: 1px solid var(--line); border-radius: calc(var(--radius) + 14px);
  padding: clamp(1.4rem, 4vw, 2rem); box-shadow: var(--shadow);
}
.expertise-photo {
  position: relative; z-index: 1; margin: 0; border-radius: calc(var(--radius) + 4px); overflow: hidden;
  transform: rotate(-2deg); box-shadow: 0 26px 50px -22px rgba(36,27,16,.4); border: 6px solid var(--paper);
}
.expertise-photo img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3 / 4; }
.expertise .eyebrow { color: var(--blue); }
.expertise h2 { color: var(--deep); max-width: 22ch; }
.expertise-copy { position: relative; z-index: 1; max-width: 760px; }
.expertise-copy p { margin-top: 1.1rem; color: var(--muted); line-height: 1.7; }
.proof-strip { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.8rem; }
.proof-strip span { border: 1px solid var(--line); background: rgba(255,255,255,.65); color: var(--deep); border-radius: 999px; padding: .6rem .9rem; font-family: var(--font-label); font-weight: 500; font-size: .82rem; }

.steps { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }

.marquee { position: relative; z-index: 1; overflow: hidden; margin-top: 1.4rem; mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.marquee-track { display: flex; width: max-content; gap: .7rem; animation: marquee 26s linear infinite; }
.marquee-track span { padding: .55rem .9rem; border-radius: 999px; background: var(--paper); border: 1px solid var(--line); color: var(--deep); font-family: var(--font-label); font-weight: 600; font-size: .88rem; white-space: nowrap; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.reservation-box { grid-template-columns: 1fr 370px; background: linear-gradient(135deg, rgba(169,218,247,.36), rgba(255,253,248,.92)); }
.booking-card { transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.booking-card:hover { transform: translateY(-4px); box-shadow: inset 0 1px 0 rgba(255,255,255,.75), var(--shadow-blue); }
.booking-title { margin-top: 0; color: var(--deep); font-weight: 800; font-size: 1.2rem; text-align: center; }
.tiny { font-size: .8rem; color: var(--muted); text-align: center; }
code { background: rgba(36,27,16,.08); border-radius: .4rem; padding: .08rem .32rem; }

.cal-mock { margin-bottom: 1.2rem; border: 1px solid var(--line); border-radius: 1.1rem; background: #fff; padding: 1rem 1.1rem 1.1rem; box-shadow: 0 1px 3px rgba(36,27,16,.06); }
.cal-host { display: flex; align-items: center; gap: .7rem; }
.cal-avatar { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; flex: none; box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--sky-strong); }
.cal-host-name { margin: 0; font-weight: 700; font-size: .88rem; color: var(--deep); }
.cal-host-role { margin: 0; font-size: .74rem; color: var(--muted); }
.cal-meta { display: flex; gap: .8rem; margin-top: .7rem; font-family: var(--font-label); font-size: .72rem; color: var(--muted); }
.cal-grid { margin-top: .9rem; }
.cal-grid-head, .cal-grid-body { display: grid; grid-template-columns: repeat(7, 1fr); gap: .3rem; }
.cal-grid-head span { text-align: center; font-family: var(--font-label); font-size: .62rem; color: var(--muted); }
.cal-grid-body { margin-top: .4rem; }
.cal-grid-body span { aspect-ratio: 1; display: grid; place-items: center; border-radius: 50%; font-size: .74rem; color: var(--muted); }
.cal-grid-body span.is-open { color: var(--blue); background: rgba(47,132,190,.09); font-weight: 600; }
.cal-grid-body span.is-off { color: #c7cdd6; }
.cal-grid-body span.is-picked { background: var(--blue); color: #fff; }

.reassure-row { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2.4rem; }
.reassure-row article { display: flex; align-items: center; gap: .8rem; }
.reassure-row .ic { flex: none; width: 2.6rem; height: 2.6rem; border-radius: .8rem; background: rgba(47,132,190,.1); display: grid; place-items: center; font-size: 1.15rem; }
.reassure-row strong { display: block; font-size: .92rem; color: var(--deep); }
.reassure-row span { font-size: .82rem; color: var(--muted); }

.faq-list { position: relative; z-index: 1; display: grid; gap: .8rem; max-width: 820px; margin: 0 auto; }
.faq details { transition: box-shadow .3s var(--ease), border-color .3s var(--ease); }
.faq details[open] { box-shadow: inset 0 1px 0 rgba(255,255,255,.75), var(--shadow-blue); border-color: rgba(47,132,190,.25); }
.faq summary { cursor: pointer; font-weight: 700; color: var(--deep); }
.faq p { margin-bottom: 0; margin-top: .6rem; }
.footer { display: flex; justify-content: space-between; gap: 1rem; padding: 2rem clamp(1rem, 4vw, 3.5rem); color: var(--muted); border-top: 1px solid var(--line); }
.footer a { font-weight: 700; color: var(--blue); }
.sticky-cta { display: none; }

.reveal { opacity: 0; transform: translateY(26px); filter: blur(6px); transition: opacity .9s var(--ease), transform .9s var(--ease), filter .9s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); filter: blur(0); }

.diagnostics { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(2, 1fr); gap: .9rem; }
.diagnostics article { display: flex; gap: .9rem; align-items: flex-start; }
.diagnostics .mark { flex: none; width: 1.9rem; height: 1.9rem; border-radius: 50%; background: rgba(47,132,190,.12); color: var(--blue); display: grid; place-items: center; font-weight: 700; }
.diagnostics p { margin: 0; color: #4a4030; line-height: 1.6; }
.diagnostics-wrap .blob-c { width: 380px; height: 380px; top: 20%; right: -160px; background: radial-gradient(circle, rgba(234,217,196,.45), transparent 70%); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; filter: none; transition: none; }
  .audit-tag { transition: none; opacity: 1; transform: none; }
  .marquee-track { animation: none; }
  .blob { animation: none; }
  .phone-frame:hover { transform: rotate(1.6deg); }
  html { scroll-behavior: auto; }
}

@media (max-width: 900px) {
  .menu-toggle { display: inline-flex; }
  .nav { position: fixed; inset: 76px 1rem auto 1rem; display: none; flex-direction: column; align-items: stretch; background: rgba(255,253,248,.97); border: 1px solid var(--line); border-radius: 1.4rem; padding: 1rem; box-shadow: var(--shadow); }
  .nav.is-open { display: flex; }
  .nav a { padding: .85rem; }
  .hero, .audit-card, .reservation-box, .expertise { grid-template-columns: 1fr; }
  .expertise-photo { max-width: 260px; margin: 0 auto; }
  .hero { padding-top: 2.5rem; min-height: auto; }
  h1 { max-width: 20ch; }
  .pain-grid, .steps, .diagnostics, .reassure-row { grid-template-columns: 1fr; }
  .note-one { left: -.5rem; top: 10%; }
  .note-two { right: -.2rem; bottom: 6%; }
  .footer { padding-bottom: 5.5rem; }
  .sticky-cta { display: flex; position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 30; align-items: center; justify-content: center; min-height: 3.25rem; border-radius: 999px; background: var(--deep); color: white; font-weight: 700; box-shadow: 0 18px 42px rgba(36,27,16,.26); }
  .calendly-inline-widget { height: 640px; }
}

@media (max-width: 520px) {
  .site-header { padding: .85rem .7rem 0; }
  .nav-pill { padding: .55rem .55rem .55rem 1rem; }
  .brand span:last-child { display: none; }
  .hero-actions .button { width: 100%; }
  .floating-note { font-size: .82rem; max-width: 11rem; }
  .ig-mock { min-height: 400px; }
  .audit-card, .reservation-box { border-radius: 1.6rem; }
  .calendly-embed-box { padding: 1rem; border-radius: 1.6rem; }
  .calendly-inline-widget { height: 560px; min-width: 0; }
}

#consent-banner { position: fixed; top: 0; left: 0; right: 0; z-index: 200; background: var(--deep); color: var(--cream);
  padding: .9rem 1.1rem; display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; justify-content: space-between; font-size: .9rem; }
#consent-banner p { margin: 0; max-width: 34rem; }
#consent-banner a { color: var(--cream); }
#consent-banner .consent-actions { display: flex; gap: .5rem; flex-shrink: 0; }
#consent-banner button { border: none; border-radius: 999px; padding: .55rem 1.1rem; font-weight: 700; font-size: .82rem; cursor: pointer; }
#consent-banner button[data-consent="accept"] { background: var(--sky-strong); color: var(--deep); }
#consent-banner button[data-consent="refuse"] { background: transparent; color: var(--cream); border: 1px solid rgba(255,248,234,.4); }
@media (max-width: 560px) { #consent-banner { flex-direction: column; align-items: stretch; text-align: center; } }
