/* ============================================================
   Diamond Bloom Infusions
   Custom design system — luxe wellness / editorial
   Palette from the logo: violet, lavender, diamond-blue, platinum
   ============================================================ */

:root {
  --violet-950: #2a1652;
  --violet-900: #3a2070;
  --violet-800: #4a2a8c;
  --violet-700: #5a33a6;
  --violet-600: #7140c2;   /* primary */
  --violet-500: #8a5bd6;
  --violet-400: #a981e0;
  --lavender:   #c9a9e9;
  --lavender-200:#e4d3f5;
  --lavender-50:#f4edfb;
  --diamond:    #5b8def;
  --diamond-50: #ecf2fe;
  --platinum:   #cfd4dd;

  --ink:        #281f3d;
  --ink-soft:   #5d5577;
  --ink-faint:  #8b84a0;
  --bg:         #ffffff;
  --bg-soft:    #fbf9fe;
  --bg-tint:    #f5effb;

  --line:       #eae3f3;
  --line-strong:#ddd2ec;

  --radius:     20px;
  --shadow-xs:  0 2px 8px rgba(42,22,82,.06);
  --shadow-sm:  0 8px 24px rgba(42,22,82,.08);
  --shadow-md:  0 18px 50px rgba(42,22,82,.14);

  --maxw: 1180px;
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* ---------- base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  margin: 0; font-family: var(--font-body); color: var(--ink); overflow-x: hidden;
  background: var(--bg); line-height: 1.7; font-weight: 400;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--violet-700); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--violet-600); }

h1, h2, h3, h4 { font-family: var(--font-display); color: var(--violet-950); line-height: 1.1; margin: 0 0 .5em; font-weight: 700; letter-spacing: -.01em; }
h2 { font-size: clamp(2rem, 4vw, 3.1rem); }
h3 { font-size: 1.35rem; }
p { margin: 0 0 1rem; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; position: relative; }
.section--tint { background: var(--bg-tint); }
.section--soft { background: var(--bg-soft); }

/* SVG icon helper */
.icon { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ---------- section heading system ---------- */
.kicker {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-body); font-weight: 700; font-size: .74rem;
  letter-spacing: .26em; text-transform: uppercase; color: var(--violet-600);
  margin: 0 0 18px;
}
.kicker::before {
  content: ""; width: 26px; height: 1.5px; background: var(--violet-400); display: inline-block;
}
.kicker--center { justify-content: center; }
.kicker--center::after { content: ""; width: 26px; height: 1.5px; background: var(--violet-400); }
.index { font-family: var(--font-display); font-style: italic; color: var(--lavender); font-size: 1rem; }

.section-head { max-width: 640px; margin: 0 0 56px; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head p { color: var(--ink-soft); font-size: 1.08rem; margin: 0; }

/* diamond divider glyph */
.diamond-rule { display: flex; align-items: center; justify-content: center; gap: 14px; color: var(--lavender); margin: 0 auto 18px; }
.diamond-rule span { height: 1px; width: 48px; background: linear-gradient(90deg, transparent, var(--lavender)); }
.diamond-rule span:last-child { background: linear-gradient(90deg, var(--lavender), transparent); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  font-family: var(--font-body); font-weight: 700; font-size: .98rem; letter-spacing: .01em;
  padding: 14px 28px; border-radius: 4px; border: 1.5px solid transparent; cursor: pointer;
  transition: transform .18s cubic-bezier(.2,.8,.2,1), box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  white-space: nowrap;
}
.btn .icon { width: 18px; height: 18px; transition: transform .2s ease; }
.btn:hover .icon { transform: translateX(3px); }
.btn--primary { background: var(--violet-600); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--violet-700); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--ghost { background: transparent; color: var(--violet-700); border-color: var(--line-strong); }
.btn--ghost:hover { background: #fff; color: var(--violet-700); border-color: var(--violet-400); }
.btn--light { background: #fff; color: var(--violet-700); }
.btn--light:hover { color: var(--violet-700); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.35); }
.btn--outline-light:hover { background: rgba(255,255,255,.1); color: #fff; border-color: #fff; }
.btn--lg { padding: 17px 36px; font-size: 1.02rem; }

/* ---------- top bar ---------- */
.topbar { background: var(--violet-950); color: #d9cef2; font-size: .82rem; font-weight: 500; }
.topbar__inner { display: flex; align-items: center; justify-content: center; gap: 26px; padding: 9px 24px; flex-wrap: wrap; max-width: var(--maxw); margin: 0 auto; }
.topbar a, .topbar span { color: #d9cef2; display: inline-flex; align-items: center; gap: 8px; }
.topbar a:hover { color: #fff; }
.topbar .icon { width: 15px; height: 15px; stroke-width: 1.8; color: var(--violet-400); }
.topbar .sep { width: 4px; height: 4px; border-radius: 50%; background: var(--violet-500); padding: 0; }

/* ---------- header ---------- */
.header { position: sticky; top: 0; z-index: 60; background: rgba(255,255,255,.86); backdrop-filter: saturate(150%) blur(14px); border-bottom: 1px solid var(--line); }
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 14px 24px; max-width: var(--maxw); margin: 0 auto; }
.brand { display: flex; align-items: center; gap: 13px; }
.brand img { height: 90px; width: auto; }
.brand__name { font-family: var(--font-display); font-weight: 700; color: var(--violet-950); font-size: 1.22rem; line-height: 1; }
.brand__tag { display: block; font-family: var(--font-body); font-size: .58rem; font-weight: 700; letter-spacing: .34em; text-transform: uppercase; color: var(--violet-500); margin-top: 4px; }

.nav { display: flex; align-items: center; gap: 30px; }
.nav a { color: var(--ink); font-weight: 600; font-size: .92rem; white-space: nowrap; position: relative; padding: 4px 0; }
.nav a::after { content: ""; position: absolute; left: 0; bottom: -2px; height: 1.5px; width: 0; background: var(--violet-600); transition: width .25s ease; }
.nav a:hover { color: var(--violet-700); }
.nav a:hover::after { width: 100%; }
.nav > .btn { display: none; }
.header__cta { display: flex; align-items: center; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--violet-900); margin: 5px 0; transition: .25s; border-radius: 2px; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; overflow: hidden; background: linear-gradient(180deg, #fff, var(--bg-soft)); }
.hero__bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.hero__orb { position: absolute; border-radius: 50%; filter: blur(10px); opacity: .55; }
.hero__orb--1 { width: 520px; height: 520px; right: -120px; top: -160px; background: radial-gradient(closest-side, var(--diamond-50), transparent); opacity: .9; }
.hero__orb--2 { width: 460px; height: 460px; left: -140px; bottom: -180px; background: radial-gradient(closest-side, var(--lavender-50), transparent); }

.hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; padding: 92px 0 104px; }
.hero h1 { font-size: clamp(2.6rem, 5.6vw, 4.4rem); margin-bottom: .3em; }
.hero h1 em { font-style: italic; color: var(--violet-600); }
.hero__lead { font-size: 1.18rem; color: var(--ink-soft); max-width: 40ch; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.hero__trust { margin-top: 34px; display: flex; gap: 26px; flex-wrap: wrap; }
.hero__trust div { display: flex; align-items: center; gap: 10px; font-size: .9rem; font-weight: 600; color: var(--violet-900); }
.hero__trust .icon { width: 20px; height: 20px; color: var(--violet-500); }

/* hero art composition */
.hero__art { position: relative; display: flex; justify-content: center; align-items: center; }
.hero__glow { position: absolute; width: 360px; height: 360px; border-radius: 50%; background: radial-gradient(closest-side, rgba(137,91,214,.28), transparent 70%); filter: blur(6px); z-index: 0; }
.hero__art .iv-bag { position: relative; z-index: 2; transform: scale(1.12); }
.hero__chip {
  position: absolute; z-index: 3; background: rgba(255,255,255,.92); backdrop-filter: blur(8px);
  border: 1px solid var(--line); border-radius: 14px; padding: 11px 15px; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 11px; font-size: .82rem; font-weight: 700; color: var(--violet-900);
}
.hero__chip .icon { width: 26px; height: 26px; color: var(--violet-600); background: var(--lavender-50); padding: 5px; border-radius: 9px; flex: 0 0 auto; }
.hero__chip small { display: block; font-weight: 500; color: var(--ink-faint); font-size: .72rem; }
.hero__chip--1 { left: -6%; top: 22%; }
.hero__chip--2 { right: -4%; bottom: 20%; }
.hero__diamond { position: absolute; z-index: 1; color: var(--violet-400); opacity: .9; fill: none; stroke: currentColor; stroke-width: 1.4; stroke-linejoin: round; }
.hero__diamond--a { width: 26px; top: 6%; right: 24%; }
.hero__diamond--b { width: 16px; bottom: 12%; left: 22%; }

/* ---------- marquee ---------- */
.marquee { background: var(--violet-950); color: #efe8fb; overflow: hidden; border-top: 1px solid rgba(255,255,255,.06); }
.marquee__track { display: flex; align-items: center; gap: 0; white-space: nowrap; padding: 14px 0; width: max-content; animation: marquee 34s linear infinite; }
.marquee__track span { font-family: var(--font-display); font-style: italic; font-size: 1.12rem; padding: 0 28px; opacity: .92; }
.marquee__track svg { width: 13px; height: 13px; color: var(--violet-400); opacity: .9; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linejoin: round; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- highlights ---------- */
.highlights { background: #fff; border-bottom: 1px solid var(--line); }
.highlights__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.hcard { padding: 40px 28px; text-align: center; border-right: 1px solid var(--line); transition: background .25s ease; }
.hcard:last-child { border-right: none; }
.hcard:hover { background: var(--bg-soft); }
.hcard__ic { width: 54px; height: 54px; margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; border-radius: 14px; background: var(--lavender-50); color: var(--violet-600); }
.hcard__ic .icon { width: 26px; height: 26px; }
.hcard h3 { font-family: var(--font-body); font-size: 1.04rem; font-weight: 800; color: var(--violet-950); margin-bottom: 5px; }
.hcard p { font-size: .9rem; color: var(--ink-soft); margin: 0; }

/* ---------- intro (editorial split) ---------- */
.intro__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 56px; align-items: start; }
.intro__lead { font-family: var(--font-display); font-size: clamp(1.4rem, 2.4vw, 1.9rem); line-height: 1.45; color: var(--violet-900); font-weight: 600; }
.intro__lead em { font-style: italic; color: var(--violet-600); }
.intro__body p { color: var(--ink-soft); font-size: 1.05rem; }
.intro__sign { margin-top: 18px; font-family: var(--font-display); font-style: italic; font-size: 1.5rem; color: var(--violet-700); }

/* ============================================================
   IV BAG (CSS-drawn, brand purple, refined)
   ============================================================ */
.iv-bag { --bag-w: 188px; position: relative; width: var(--bag-w); margin: 0 auto; filter: drop-shadow(0 22px 32px rgba(42,22,82,.24)); }
.iv-bag__loop { width: 26px; height: 18px; margin: 0 auto -3px; border: 2.5px solid var(--platinum); border-bottom: none; border-radius: 13px 13px 0 0; }
.iv-bag__body {
  position: relative; height: calc(var(--bag-w) * 1.52);
  border-radius: 28px 28px 18px 18px / 44px 44px 16px 16px;
  background:
    linear-gradient(155deg, rgba(255,255,255,.55), rgba(255,255,255,0) 38%),
    linear-gradient(180deg, var(--lavender) 0%, var(--violet-400) 42%, var(--violet-600) 100%);
  border: 1.5px solid rgba(255,255,255,.65);
  box-shadow: inset 0 2px 12px rgba(255,255,255,.55), inset 0 -22px 36px rgba(42,22,82,.22), inset 14px 0 24px rgba(255,255,255,.18);
  overflow: hidden;
}
/* top fluid sheen */
.iv-bag__body::before { content: ""; position: absolute; inset: 9px 11px auto 11px; height: 30px; border-radius: 20px; background: linear-gradient(180deg, rgba(255,255,255,.6), transparent); }
/* measurement ticks */
.iv-bag__body::after {
  content: ""; position: absolute; top: 30px; bottom: 40px; right: 9px; width: 12px;
  background:
    repeating-linear-gradient(180deg, rgba(255,255,255,.7) 0 1.5px, transparent 1.5px 18px);
  -webkit-mask: linear-gradient(90deg, transparent, #000 60%); mask: linear-gradient(90deg, transparent, #000 60%);
  opacity: .65;
}
.iv-bag__label {
  position: absolute; left: 15px; right: 15px; top: 28px; bottom: 30px;
  background: rgba(255,255,255,.9); border-radius: 14px; box-shadow: 0 8px 20px rgba(42,22,82,.16);
  display: flex; flex-direction: column; align-items: center; justify-content: space-between; padding: 16px 12px; text-align: center; z-index: 2;
}
.iv-bag__mark { font-family: var(--font-display); font-weight: 700; color: var(--violet-700); font-size: .9rem; line-height: 1; }
.iv-bag__mark small { display: block; font-family: var(--font-body); font-weight: 700; letter-spacing: .26em; font-size: .46rem; color: var(--violet-500); margin-top: 3px; }
.iv-bag__name { font-family: var(--font-display); font-weight: 700; color: var(--violet-950); font-size: 1.16rem; line-height: 1.08; }
.iv-bag__sub { font-family: var(--font-body); font-weight: 700; text-transform: uppercase; letter-spacing: .2em; font-size: .5rem; color: var(--ink-faint); }
.iv-bag__ports { display: flex; gap: 8px; justify-content: center; margin-top: -2px; }
.iv-bag__ports span { width: 10px; height: 16px; background: linear-gradient(180deg, var(--platinum), #aab0bb); border-radius: 0 0 4px 4px; }
.iv-bag__spike { width: 5px; height: 18px; margin: -1px auto 0; background: linear-gradient(180deg, #aab0bb, #8d93a0); border-radius: 0 0 3px 3px; }

/* ---------- services ---------- */
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.service {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 26px 28px; box-shadow: var(--shadow-xs);
  display: flex; flex-direction: column; align-items: center; text-align: center; overflow: hidden;
  transition: transform .22s cubic-bezier(.2,.8,.2,1), box-shadow .25s ease, border-color .25s ease;
}
.service::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--violet-500), var(--diamond)); transform: scaleX(0); transform-origin: left; transition: transform .3s ease; }
.service:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: var(--lavender-200); }
.service:hover::before { transform: scaleX(1); }
.service .iv-bag { --bag-w: 152px; margin-bottom: 22px; }
.service h3 { font-size: 1.28rem; margin-bottom: 4px; }
.service__cat { color: var(--violet-600); font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .18em; margin-bottom: 14px; }
.service__purpose { font-size: .9rem; line-height: 1.55; color: var(--ink-soft); margin: 0 0 20px; max-width: 34ch; }
.service__list { list-style: none; padding: 0; margin: 0 0 22px; width: 100%; }
.service__list li { font-size: .92rem; color: var(--ink-soft); padding: 7px 0 7px 22px; position: relative; text-align: left; border-bottom: 1px solid var(--line); }
.service__list li:last-child { border-bottom: none; }
.service__list li::before { content: ""; position: absolute; left: 4px; top: 50%; width: 7px; height: 7px; margin-top: -3.5px; background: var(--violet-400); transform: rotate(45deg); border-radius: 1px; }
.service__foot { margin-top: auto; width: 100%; display: flex; align-items: baseline; justify-content: center; gap: 8px; padding-top: 6px; border-top: 1px dashed var(--line); }
.service__price { font-family: var(--font-display); font-size: 1.55rem; color: var(--violet-950); font-weight: 700; }
.service__per { font-size: .72rem; color: var(--ink-faint); letter-spacing: .08em; text-transform: uppercase; font-weight: 700; }

/* ---------- add-ons ---------- */
.addons__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.addon { position: relative; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 44px 20px 22px; box-shadow: var(--shadow-xs); transition: transform .18s ease, box-shadow .25s ease, border-color .2s ease; }
.addon::after { content: ""; position: absolute; left: 20px; top: 22px; width: 8px; height: 8px; background: var(--violet-400); transform: rotate(45deg); border-radius: 1px; transition: background .2s ease; }
.addon:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--lavender-200); }
.addon:hover::after { background: var(--violet-600); }
.addon h3 { font-family: var(--font-body); font-size: 1.04rem; font-weight: 800; color: var(--violet-950); margin-bottom: 4px; }
.addon p { font-size: .85rem; color: var(--ink-soft); margin: 0 0 12px; }
.addon .price { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: var(--violet-600); }
.addons__note { text-align: center; color: var(--ink-soft); font-size: .95rem; margin-top: 30px; }

/* ---------- weight management (GLP-1) ---------- */
.weight-wrap { max-width: 560px; margin: 0 auto; }
.glp { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 42px 34px 34px; box-shadow: var(--shadow-sm); text-align: center; overflow: hidden; }
.glp::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--violet-500), var(--diamond)); }
.glp__ic { width: 60px; height: 60px; margin: 0 auto 18px; display: flex; align-items: center; justify-content: center; border-radius: 16px; background: var(--lavender-50); color: var(--violet-600); }
.glp__ic .icon { width: 28px; height: 28px; }
.glp h3 { font-size: 1.5rem; margin-bottom: 4px; }
.glp__cat { color: var(--violet-600); font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .18em; margin-bottom: 16px; }
.glp__desc { color: var(--ink-soft); font-size: 1rem; max-width: 44ch; margin: 0 auto 20px; }
.glp__list { list-style: none; padding: 0; margin: 0 auto 8px; text-align: left; display: inline-block; }
.glp__list li { font-size: .95rem; color: var(--ink-soft); padding: 8px 0 8px 26px; position: relative; }
.glp__list li::before { content: ""; position: absolute; left: 6px; top: 50%; width: 7px; height: 7px; margin-top: -3.5px; background: var(--violet-400); transform: rotate(45deg); border-radius: 1px; }
.glp__foot { display: flex; align-items: baseline; justify-content: center; gap: 10px; padding-top: 20px; margin: 12px 0 24px; border-top: 1px dashed var(--line); }
.glp__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.glp__note { margin: 16px auto 0; font-size: .85rem; color: var(--ink-faint); max-width: 42ch; }
.glp__price { font-size: 1.2rem; letter-spacing: .01em; }

/* ---------- telehealth exam note (reused across sections) ---------- */
.exam-note { display: flex; align-items: flex-start; justify-content: center; gap: 9px; color: var(--ink-soft); font-size: .95rem; margin-top: 30px; }
.exam-note .icon { width: 18px; height: 18px; color: var(--violet-600); flex: 0 0 auto; margin-top: 2px; }
.exam-note span { text-align: center; }
.exam-note a { font-weight: 700; }
/* telehealth callout in the contact area — easy for staff to direct clients to */
.telehealth-cta { display: flex; gap: 14px; align-items: flex-start; background: var(--lavender-50); border: 1px solid var(--lavender-200); border-radius: 14px; padding: 18px 20px; margin: 22px 0 26px; }
.telehealth-cta__ic { flex: 0 0 auto; width: 42px; height: 42px; border-radius: 11px; background: #fff; color: var(--violet-600); display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-xs); }
.telehealth-cta b { display: block; color: var(--violet-950); font-size: 1rem; margin-bottom: 3px; }
.telehealth-cta p { color: var(--ink-soft); font-size: .9rem; margin: 0 0 14px; }
.telehealth-cta .btn { padding: 11px 20px; font-size: .92rem; }

/* ============================================================
   BENEFITS — dark luxe section
   ============================================================ */
.dark { background: var(--violet-950); color: #e6ddf6; position: relative; overflow: hidden; }
.dark h2, .dark h3 { color: #fff; }
.dark .kicker { color: var(--lavender); }
.dark .kicker::before, .dark .kicker--center::after { background: var(--violet-500); }
.dark .section-head p { color: #bcaee0; }
.dark__facets { position: absolute; inset: 0; opacity: .07; pointer-events: none; background-image: radial-gradient(var(--lavender) 1px, transparent 1px); background-size: 26px 26px; }
.benefits__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; position: relative; z-index: 1; }
.benefit { display: flex; gap: 18px; align-items: flex-start; padding: 28px; border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); background: rgba(255,255,255,.03); transition: background .25s ease, border-color .25s ease, transform .2s ease; }
.benefit:hover { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.2); transform: translateY(-4px); }
.benefit__ic { flex: 0 0 auto; width: 50px; height: 50px; border-radius: 13px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--violet-600), var(--violet-800)); color: #fff; }
.benefit__ic .icon { width: 24px; height: 24px; }
.benefit h3 { font-family: var(--font-body); font-size: 1.08rem; font-weight: 800; margin-bottom: 6px; }
.benefit p { font-size: .92rem; color: #c4b8e4; margin: 0; }

/* ---------- how it works ---------- */
.steps { position: relative; }
.steps__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; position: relative; }
.steps__grid::before { content: ""; position: absolute; top: 34px; left: 12.5%; right: 12.5%; height: 2px; background: repeating-linear-gradient(90deg, var(--lavender) 0 8px, transparent 8px 16px); z-index: 0; }
.step__link { display: inline-flex; align-items: center; gap: 6px; margin-top: 12px; font-weight: 700; font-size: .9rem; color: var(--violet-700); }
.step__link .icon { width: 16px; height: 16px; transition: transform .2s ease; }
.step__link:hover .icon { transform: translateX(3px); }
.step { text-align: center; position: relative; z-index: 1; }
.step__num { position: relative; width: 70px; height: 70px; margin: 0 auto 22px; display: flex; align-items: center; justify-content: center; }
.step__num svg { position: absolute; inset: 0; width: 100%; height: 100%; color: var(--violet-600); filter: drop-shadow(0 8px 16px rgba(113,64,194,.35)); }
.step__num b { position: relative; font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: #fff; }
.step h3 { font-size: 1.25rem; }
.step p { color: var(--ink-soft); font-size: .98rem; margin: 0; }

/* ---------- about ---------- */
.about__grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 60px; align-items: center; }
.about__media { position: relative; }
.about__photo { aspect-ratio: 4/5; border-radius: var(--radius); background: linear-gradient(160deg, var(--lavender-50), var(--diamond-50)); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; color: var(--violet-500); text-align: center; font-size: .9rem; padding: 24px; box-shadow: var(--shadow-md); }
.about__photo .icon { width: 40px; height: 40px; margin: 0 auto 10px; opacity: .7; }
.about__badge { position: absolute; right: -18px; bottom: 26px; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 14px 18px; box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 12px; }
.about__badge .icon { width: 30px; height: 30px; color: var(--violet-600); }
.about__badge b { display: block; font-size: .9rem; color: var(--violet-950); white-space: nowrap; }
.about__badge small { color: var(--ink-faint); font-size: .76rem; white-space: nowrap; }
.about__pull { font-family: var(--font-display); font-size: clamp(1.5rem,2.6vw,2rem); line-height: 1.35; color: var(--violet-900); margin: 0 0 20px; }
.about p { color: var(--ink-soft); font-size: 1.04rem; }
.about p em { color: var(--violet-700); font-style: italic; }
.about__mission { margin-top: 22px; font-family: var(--font-display); font-style: italic; font-size: clamp(1.2rem, 2vw, 1.4rem); line-height: 1.4; color: var(--violet-700); }

/* placeholder marker (subtle, not loud) */
.placeholder { color: var(--violet-600); background: var(--lavender-50); border-bottom: 1px dashed var(--violet-400); padding: 0 .3em; border-radius: 3px; font-style: normal; }

/* ---------- service area ---------- */
.area__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; }
.area__list { display: flex; flex-wrap: wrap; gap: 12px; margin: 0; padding: 0; }
.area__list li { list-style: none; display: flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 9px 18px; font-size: .9rem; font-weight: 600; color: var(--violet-800); box-shadow: var(--shadow-xs); }
.area__list li::before { content: ""; width: 6px; height: 6px; background: var(--violet-400); transform: rotate(45deg); }

/* ---------- faq ---------- */
.faq { max-width: 860px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--line-strong); }
.faq__q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; padding: 26px 4px; font-family: var(--font-display); font-size: 1.18rem; font-weight: 700; color: var(--violet-950); display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.faq__q .icon { color: var(--violet-500); transition: transform .25s ease; flex: 0 0 auto; }
.faq__item[open] .faq__q .icon { transform: rotate(45deg); }
.faq__a { padding: 0 4px 26px; color: var(--ink-soft); font-size: 1rem; max-width: 92%; }

/* ---------- CTA band ---------- */
.ctaband { background: linear-gradient(135deg, var(--violet-700), var(--violet-950)); color: #fff; text-align: center; position: relative; overflow: hidden; }
.ctaband__facets { position: absolute; inset: 0; opacity: .08; background-image: radial-gradient(#fff 1px, transparent 1px); background-size: 24px 24px; }
.ctaband .container { position: relative; z-index: 1; }
.ctaband h2 { color: #fff; }
.ctaband p { color: #d8cdf2; max-width: 50ch; margin: 0 auto 28px; font-size: 1.1rem; text-wrap: balance; }
.ctaband__btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- contact ---------- */
.contact__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: start; }
/* let grid/flex children shrink below their intrinsic min-content width so the
   form (long select option, Turnstile widget, long email) can't overflow on phones */
.contact__grid > * { min-width: 0; }
.contact__info h3 { font-family: var(--font-display); }
.contact__methods { list-style: none; padding: 0; margin: 26px 0 0; }
.contact__methods li { display: flex; gap: 16px; align-items: center; padding: 18px 0; border-bottom: 1px solid var(--line); }
.contact__methods .ic { width: 46px; height: 46px; flex: 0 0 auto; color: var(--violet-600); background: var(--lavender-50); border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.contact__methods b { display: block; color: var(--violet-950); font-weight: 800; font-size: .92rem; }
.contact__methods a, .contact__methods span { color: var(--ink-soft); overflow-wrap: anywhere; }

.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow-md); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
/* min-width:0 lets .field shrink inside the 2-col .form-row grid; without it the
   long <select> option forces its track past the card and pushes the next field out */
.field { margin-bottom: 18px; display: flex; flex-direction: column; min-width: 0; }
.field label { font-size: .82rem; font-weight: 700; color: var(--violet-950); margin-bottom: 7px; letter-spacing: .02em; }
.field input, .field select, .field textarea { font-family: var(--font-body); font-size: .98rem; color: var(--ink); padding: 13px 15px; border: 1.5px solid var(--line-strong); border-radius: 10px; background: var(--bg-soft); transition: border-color .15s ease, box-shadow .15s ease, background .15s ease; min-width: 0; max-width: 100%; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--violet-400); background: #fff; box-shadow: 0 0 0 4px var(--lavender-50); }
.field textarea { resize: vertical; min-height: 124px; }

.relay-status { margin-top: 14px; font-size: 14px; font-weight: 600; }
.relay-status--sending { color: var(--ink-faint); }
.relay-status--ok { color: #157347; }
.relay-status--error { color: #b02a37; }
.relay-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- footer ---------- */
.footer { background: var(--violet-950); color: #c8b9ea; padding: 72px 0 30px; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; margin-bottom: 44px; }
.footer h4 { color: #fff; font-family: var(--font-body); font-size: .82rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 18px; }
.footer a { color: #c8b9ea; }
.footer a:hover { color: #fff; }
.footer__brand img { height: 70px; margin-bottom: 16px; }
.footer__brand .footer__tag { font-family: var(--font-display); font-style: italic; color: var(--lavender); font-size: 1.15rem; margin-bottom: 12px; }
.footer__brand p { font-size: .92rem; max-width: 36ch; color: #ab9cd2; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 12px; font-size: .92rem; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.12); padding-top: 24px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .82rem; color: #9d8ec8; }
.footer__disclaimer { font-size: .76rem; color: #9d8ec8; margin-top: 16px; max-width: 78ch; line-height: 1.6; }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.8,.2,1), transform .7s cubic-bezier(.2,.8,.2,1), filter .7s ease; will-change: opacity, transform; }
.reveal.is-visible { opacity: 1; transform: none; filter: none; }

/* directional + style variants — keep subtle */
.reveal--left  { transform: translateX(-34px); }
.reveal--right { transform: translateX(34px); }
.reveal--scale { transform: translateY(20px) scale(.965); }
.reveal--blur  { filter: blur(8px); }

.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
.reveal[data-delay="5"] { transition-delay: .40s; }

/* gentle continuous float for the diamond accents once revealed */
@keyframes db-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
.float-soft { animation: db-float 6s ease-in-out infinite; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; filter: none; transition: none; }
  .marquee__track { animation: none; }
  .float-soft { animation: none; }
}

/* ============================================================
   responsive
   ============================================================ */
@media (max-width: 1000px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; padding-top: 64px; gap: 40px; }
  .hero__lead { margin: 0 auto; }
  .hero__cta, .hero__trust { justify-content: center; }
  .hero__art { order: -1; margin-bottom: 8px; }
  .hero__chip--1 { left: 2%; } .hero__chip--2 { right: 2%; }
  .highlights__grid { grid-template-columns: repeat(2, 1fr); }
  .hcard:nth-child(2) { border-right: none; }
  .hcard { border-bottom: 1px solid var(--line); }
  .intro__grid, .about__grid, .area__grid, .contact__grid { grid-template-columns: 1fr; gap: 36px; }
  .services__grid, .benefits__grid { grid-template-columns: repeat(2, 1fr); }
  .addons__grid { grid-template-columns: repeat(2, 1fr); }
  .steps__grid { grid-template-columns: 1fr; gap: 30px; }
  .steps__grid::before { display: none; }
  .about__media { max-width: 380px; margin: 0 auto; }
}
/* collapse the horizontal nav to a hamburger before the links can
   collide with the logo / overflow the bar (8 links + CTA need ~1080px) */
@media (max-width: 1080px) {
  .nav, .header__cta { display: none; }
  .nav-toggle { display: block; }
  .header { position: sticky; }
  .nav.is-open { display: flex; flex-direction: column; align-items: stretch; gap: 2px; position: absolute; top: 100%; left: 0; right: 0; background: #fff; padding: 16px 24px 22px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md); }
  .nav.is-open a { padding: 13px 0; border-bottom: 1px solid var(--line); }
  .nav.is-open a::after { display: none; }
  .nav.is-open .btn { display: inline-flex; margin-top: 12px; }
}
@media (max-width: 720px) {
  .section { padding: 68px 0; }
  .benefits__grid { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .services__grid, .addons__grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .topbar__inner { gap: 14px; font-size: .76rem; }
  .topbar .sep { display: none; }
  /* drop the long email on phones — phone link is the primary CTA and the
     email still lives in the contact section + footer */
  .topbar a.topbar__email { display: none; }
  .brand__name { font-size: 1.05rem; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .hero__chip { display: none; }
  .hero h1 { font-size: 2.3rem; }
  .hero__lead { font-size: 1.04rem; }
  .hero__inner { padding-top: 48px; }
  .about__badge { right: 8px; }
  .about__pull { font-size: 1.5rem; }
}

/* ============================================================
   multi-page additions (5-page split)
   ============================================================ */
/* subpage <h1> sized to match the section h2 scale */
.page-title { font-size: clamp(2rem, 4vw, 3.1rem); }
/* current-page indicator in the header nav */
.nav a[aria-current="page"] { color: var(--violet-700); }
.nav a[aria-current="page"]::after { width: 100%; }
