/* ============================================================
   Pearl Dental — Premium Cosmetic Dentistry Design System
   Crisp white · calm teal/mint · light & reassuring
   ============================================================ */

:root {
  /* Palette */
  --teal-900: #0c3b39;
  --teal-800: #0f4f4a;
  --teal-700: #15665e;
  --teal-600: #1c8278;
  --teal-500: #29a394;
  --mint-400: #4cc4b0;
  --mint-300: #84dccb;
  --mint-200: #b9eee3;
  --mint-100: #ddf6f0;
  --mint-50:  #eef9f7;
  --gold-500: #c9a36a;
  --gold-300: #e6cfa3;
  --paper: #fbfdfc;
  --white: #ffffff;
  --ink: #142a2a;
  --ink-soft: #43605d;
  --muted: #74908d;
  --line: rgba(15, 79, 74, 0.10);
  --line-2: rgba(15, 79, 74, 0.16);

  /* Type */
  --serif: "Fraunces", Georgia, serif;
  --sans: "Outfit", system-ui, sans-serif;

  /* Shape & motion */
  --radius: 18px;
  --radius-lg: 30px;
  --radius-xl: 44px;
  --shadow-sm: 0 4px 18px rgba(15, 79, 74, 0.07);
  --shadow: 0 18px 48px rgba(15, 79, 74, 0.12);
  --shadow-lg: 0 40px 90px rgba(12, 59, 57, 0.20);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --wrap: 1240px;
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: no-preference) { html { scroll-behavior: smooth; } }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; line-height: 1.07; letter-spacing: -0.018em; color: var(--ink); }
h1 { font-size: clamp(2.7rem, 6vw, 5.1rem); }
h2 { font-size: clamp(2rem, 4vw, 3.35rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
em { font-style: italic; color: var(--teal-600); }

.wrap { width: min(100% - 2.6rem, var(--wrap)); margin-inline: auto; }
.section { padding: clamp(4.5rem, 9vw, 8rem) 0; position: relative; }
.mintbg { background: var(--mint-50); }
.softgrad { background: linear-gradient(180deg, var(--mint-50), var(--paper)); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--sans); font-weight: 600; font-size: 0.95rem;
  letter-spacing: 0.005em; padding: 0.95rem 1.75rem; border-radius: 100px;
  cursor: pointer; border: 1.5px solid transparent;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.3s, color 0.3s, border-color 0.3s;
  white-space: nowrap;
}
.btn .arr { transition: transform 0.4s var(--ease); }
.btn:hover .arr { transform: translateX(5px); }
.btn-solid {
  background: linear-gradient(135deg, var(--teal-700), var(--mint-400));
  color: var(--white); box-shadow: 0 14px 32px rgba(28, 130, 120, 0.34);
}
.btn-solid:hover { transform: translateY(-3px); box-shadow: 0 22px 46px rgba(28, 130, 120, 0.42); }
.btn-mint {
  background: var(--white); color: var(--teal-700);
  border-color: var(--mint-200); box-shadow: var(--shadow-sm);
}
.btn-mint:hover { transform: translateY(-3px); border-color: var(--mint-400); box-shadow: var(--shadow); color: var(--teal-600); }
.btn-ghost { background: transparent; border-color: var(--line-2); color: var(--ink); }
.btn-ghost:hover { border-color: var(--mint-400); color: var(--teal-600); transform: translateY(-2px); }
.btn-light { background: var(--white); color: var(--teal-700); }
.btn-light:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(0,0,0,0.18); }
.btn-outline-light { background: rgba(255,255,255,0.1); color: #fff; border-color: rgba(255,255,255,0.45); backdrop-filter: blur(6px); }
.btn-outline-light:hover { background: rgba(255,255,255,0.96); color: var(--teal-700); transform: translateY(-3px); }

/* ---------- Eyebrow & headings ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--sans); font-weight: 600; font-size: 0.74rem;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--teal-600);
  margin-bottom: 1.1rem;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: linear-gradient(90deg, var(--mint-400), var(--gold-500)); border-radius: 2px; }
.eyebrow.center { justify-content: center; }
.eyebrow.light { color: var(--mint-300); }
.eyebrow.light::before { background: linear-gradient(90deg, var(--mint-300), var(--gold-300)); }
.light-h { color: #fff; }
.sec-head { margin-bottom: clamp(2.5rem, 4vw, 3.6rem); }
.sec-head.center { text-align: center; max-width: 720px; margin-inline: auto; }
.split-head { display: grid; grid-template-columns: 1.25fr 1fr; gap: 2rem; align-items: end; }
.split-head p { color: var(--ink-soft); }
.sec-foot { text-align: center; margin-top: clamp(2.5rem, 4vw, 3.4rem); }
.muted-p { color: var(--ink-soft); margin-bottom: 1.7rem; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), padding 0.4s var(--ease);
  padding: 0.7rem 0;
  background: rgba(251, 253, 252, 0.72);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid transparent;
}
.site-header.shrink {
  padding: 0.35rem 0;
  background: rgba(251, 253, 252, 0.92);
  box-shadow: 0 8px 30px rgba(15, 79, 74, 0.08);
  border-bottom-color: var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand { display: inline-flex; align-items: center; gap: 0.6rem; }
.brand-mark { width: 38px; height: 38px; display: grid; place-items: center; color: var(--teal-600); flex: none; }
.brand-mark svg { width: 100%; height: 100%; }
.brand-text { font-family: var(--serif); font-size: 1.5rem; font-weight: 500; letter-spacing: -0.02em; color: var(--ink); }
.brand-text em { font-style: normal; color: var(--teal-600); font-weight: 400; }

.nav-links { display: flex; gap: 0.4rem; }
.nav-links a {
  position: relative; padding: 0.5rem 0.95rem; border-radius: 100px;
  font-weight: 500; font-size: 0.98rem; color: var(--ink-soft);
  transition: color 0.25s, background 0.25s;
}
.nav-links a:hover { color: var(--teal-700); background: var(--mint-100); }
.nav-links a.active { color: var(--teal-700); background: var(--mint-100); }

.nav-cta { display: flex; align-items: center; gap: 1.1rem; }
.nav-phone { display: inline-flex; align-items: center; gap: 0.45rem; font-weight: 600; font-size: 0.95rem; color: var(--ink); }
.nav-phone svg { width: 17px; height: 17px; color: var(--teal-600); }
.nav-phone:hover { color: var(--teal-600); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 26px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.35s var(--ease), opacity 0.25s; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(3.5rem, 7vw, 6rem); overflow: hidden; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(60px); z-index: 0; opacity: 0.55; pointer-events: none; }
.hero-orb.a { width: 540px; height: 540px; top: -160px; right: -120px; background: radial-gradient(circle, var(--mint-200), transparent 70%); }
.hero-orb.b { width: 460px; height: 460px; bottom: -200px; left: -160px; background: radial-gradient(circle, var(--mint-100), transparent 70%); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.hero-copy h1 { margin-bottom: 1.4rem; }
.hero-tag { font-size: 1.12rem; color: var(--ink-soft); max-width: 30rem; margin-bottom: 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }
.hero-trust { display: flex; align-items: center; gap: 0.7rem; margin-top: 2rem; font-size: 0.95rem; color: var(--ink-soft); }
.hero-trust b { color: var(--ink); }
.stars { color: var(--gold-500); letter-spacing: 0.12em; font-size: 1rem; }

.hero-media { position: relative; }
.hero-frame {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-lg); aspect-ratio: 5 / 4.1; will-change: transform;
}
.hero-frame::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.4); border-radius: inherit; pointer-events: none; }
.hero-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute; top: 1.6rem; left: -1.4rem; z-index: 2;
  background: var(--white); padding: 1rem 1.3rem; border-radius: var(--radius);
  box-shadow: var(--shadow); text-align: center; border: 1px solid var(--line);
}
.hero-badge .n { font-family: var(--serif); font-size: 2.1rem; color: var(--teal-600); line-height: 1; }
.hero-badge .n .u { font-size: 0.5em; color: var(--muted); }
.hero-badge .l { font-size: 0.72rem; color: var(--muted); margin-top: 0.35rem; max-width: 8rem; }
.hero-float {
  position: absolute; bottom: 1.6rem; right: -1.2rem; z-index: 2;
  display: flex; align-items: center; gap: 0.7rem;
  background: var(--white); padding: 0.85rem 1.1rem; border-radius: 100px;
  box-shadow: var(--shadow); border: 1px solid var(--line);
}
.hero-float .dot { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: linear-gradient(135deg, var(--teal-600), var(--mint-400)); color: #fff; }
.hero-float .dot svg { width: 19px; height: 19px; }
.hero-float .t { display: flex; flex-direction: column; line-height: 1.25; }
.hero-float .t b { font-size: 0.92rem; }
.hero-float .t span { font-size: 0.74rem; color: var(--muted); }

/* curve divider */
.curve-divider { line-height: 0; margin-top: -1px; }
.curve-divider svg { width: 100%; height: clamp(40px, 6vw, 80px); display: block; }

/* ============================================================
   STATS
   ============================================================ */
.stats { background: var(--mint-50); padding: clamp(2.5rem, 5vw, 4rem) 0; }
.stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.stat { text-align: center; position: relative; }
.stat:not(:last-child)::after { content: ""; position: absolute; right: -0.75rem; top: 15%; height: 70%; width: 1px; background: var(--line-2); }
.stat .n { font-family: var(--serif); font-size: clamp(2.4rem, 4vw, 3.4rem); color: var(--teal-600); line-height: 1; }
.stat .suf { color: var(--mint-400); }
.stat .l { font-size: 0.85rem; color: var(--ink-soft); margin-top: 0.6rem; letter-spacing: 0.02em; }

/* ============================================================
   TREATMENT CARDS
   ============================================================ */
.treat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.tcard {
  display: flex; flex-direction: column; padding: 2rem 1.7rem;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.3s;
  position: relative; overflow: hidden;
}
.tcard::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 4px; background: linear-gradient(90deg, var(--teal-600), var(--mint-400)); transform: scaleX(0); transform-origin: left; transition: transform 0.45s var(--ease); }
.tcard:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: var(--mint-200); }
.tcard:hover::before { transform: scaleX(1); }
.tcard-ico { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; background: var(--mint-100); color: var(--teal-600); margin-bottom: 1.3rem; transition: background 0.3s, color 0.3s; }
.tcard-ico svg { width: 28px; height: 28px; }
.tcard:hover .tcard-ico { background: linear-gradient(135deg, var(--teal-600), var(--mint-400)); color: #fff; }
.tcard h3 { margin-bottom: 0.6rem; }
.tcard p { font-size: 0.96rem; color: var(--ink-soft); flex: 1; margin-bottom: 1.2rem; }
.go { display: inline-flex; align-items: center; gap: 0.4rem; font-weight: 600; font-size: 0.88rem; color: var(--teal-600); }
.go svg { transition: transform 0.4s var(--ease); }
.tcard:hover .go svg, .area:hover .go svg { transform: translateX(4px); }

/* ============================================================
   SPLIT SECTIONS
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split.flip .split-media { order: 2; }
.split-media { position: relative; }
.frame { position: relative; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4 / 3.1; }
.frame.portrait { aspect-ratio: 4 / 4.4; }
.frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.frame.zoom:hover img { transform: scale(1.06); }
.tab {
  position: absolute; bottom: 1.3rem; left: 1.3rem; z-index: 2;
  display: flex; align-items: center; gap: 0.75rem;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(8px);
  padding: 0.8rem 1.1rem; border-radius: 100px; box-shadow: var(--shadow-sm);
}
.tab svg { width: 26px; height: 26px; color: var(--teal-600); flex: none; }
.tab b { display: block; font-size: 0.92rem; }
.tab span { font-size: 0.74rem; color: var(--muted); }

.split-copy h2 { margin-bottom: 1.1rem; }
.lead { font-size: 1.12rem; color: var(--ink-soft); margin-bottom: 1.7rem; }
.feature-list { display: flex; flex-direction: column; gap: 1.3rem; }
.feature-list li { display: flex; gap: 1rem; }
.feature-list .ico { flex: none; width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; background: var(--mint-100); color: var(--teal-600); }
.feature-list .ico svg { width: 23px; height: 23px; }
.feature-list h4 { font-family: var(--sans); font-weight: 600; font-size: 1.05rem; margin-bottom: 0.25rem; color: var(--ink); }
.feature-list p { font-size: 0.95rem; color: var(--ink-soft); }

/* ============================================================
   STEPS
   ============================================================ */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; counter-reset: s; }
.step { position: relative; padding: 2.2rem 1.6rem 2rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.step-n { font-family: var(--serif); font-size: 2.6rem; color: var(--mint-300); line-height: 1; display: block; margin-bottom: 0.9rem; }
.step h3 { margin-bottom: 0.55rem; }
.step p { font-size: 0.95rem; color: var(--ink-soft); }
.step:not(:last-child)::after { content: "→"; position: absolute; right: -0.95rem; top: 50%; transform: translateY(-50%); color: var(--mint-400); font-size: 1.2rem; z-index: 2; }

/* ============================================================
   DETAIL BAND
   ============================================================ */
.detail-band { background: var(--mint-50); }
.detail-grid { display: grid; grid-template-columns: 0.85fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.detail-bullets { display: grid; gap: 0.85rem; margin-bottom: 1.9rem; }
.detail-bullets span { display: flex; align-items: center; gap: 0.7rem; font-weight: 500; color: var(--ink); }
.detail-bullets svg { width: 20px; height: 20px; color: var(--teal-600); flex: none; padding: 3px; background: var(--mint-100); border-radius: 50%; }

/* ============================================================
   QUOTES
   ============================================================ */
.quote-band { background: linear-gradient(160deg, var(--teal-800), var(--teal-900)); overflow: hidden; }
.qb-orb { position: absolute; width: 500px; height: 500px; border-radius: 50%; top: -160px; right: -120px; background: radial-gradient(circle, rgba(76,196,176,0.3), transparent 70%); filter: blur(40px); }
.quotes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; position: relative; z-index: 1; }
.qcard { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-lg); padding: 2rem 1.8rem; backdrop-filter: blur(8px); transition: transform 0.45s var(--ease), background 0.3s; }
.qcard:hover { transform: translateY(-6px); background: rgba(255,255,255,0.09); }
.qcard .stars { font-size: 1.05rem; margin-bottom: 1rem; }
.qcard blockquote { font-family: var(--serif); font-size: 1.12rem; line-height: 1.55; color: #eafaf7; font-style: italic; margin-bottom: 1.5rem; }
.qmeta { display: flex; align-items: center; gap: 0.8rem; }
.qmeta .av { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; font-weight: 600; color: #fff; background: linear-gradient(135deg, var(--teal-500), var(--mint-400)); }
.qmeta b { color: #fff; font-size: 0.95rem; display: block; }
.qmeta span { font-size: 0.8rem; color: var(--mint-300); }

/* ============================================================
   JOURNAL
   ============================================================ */
.journal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.post { padding: 1.9rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); }
.post:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.post .meta { display: flex; align-items: center; gap: 0.55rem; font-size: 0.78rem; color: var(--muted); margin-bottom: 1rem; }
.post .type { color: var(--teal-600); font-weight: 600; background: var(--mint-100); padding: 0.25rem 0.7rem; border-radius: 100px; letter-spacing: 0.04em; text-transform: uppercase; font-size: 0.68rem; }
.post .meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--mint-400); }
.post h3 { margin-bottom: 0.7rem; line-height: 1.25; }
.post h3 a { transition: color 0.25s; }
.post:hover h3 a { color: var(--teal-600); }
.post p { font-size: 0.95rem; color: var(--ink-soft); margin-bottom: 1.2rem; }
.more { display: inline-flex; align-items: center; gap: 0.4rem; font-weight: 600; font-size: 0.88rem; color: var(--teal-600); }
.more svg { transition: transform 0.4s var(--ease); }
.post:hover .more svg { transform: translateX(4px); }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band { position: relative; overflow: hidden; padding: clamp(4rem, 8vw, 7rem) 0; text-align: center; background: linear-gradient(135deg, var(--teal-700), var(--teal-600) 55%, var(--mint-400)); color: #fff; }
.cta-orb { position: absolute; border-radius: 50%; filter: blur(50px); opacity: 0.4; }
.cta-orb.a { width: 420px; height: 420px; top: -140px; left: -100px; background: radial-gradient(circle, #fff, transparent 70%); }
.cta-orb.b { width: 380px; height: 380px; bottom: -160px; right: -80px; background: radial-gradient(circle, var(--mint-200), transparent 70%); }
.cta-band .wrap { position: relative; z-index: 1; }
.cta-band h2 { margin: 0 auto 1rem; max-width: 16ch; }
.cta-p { color: rgba(255,255,255,0.9); max-width: 46ch; margin: 0 auto 2rem; font-size: 1.1rem; }
.cta-band .hero-actions { justify-content: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--teal-900); color: rgba(255,255,255,0.78); padding-top: clamp(3.5rem, 6vw, 5rem); }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 2.5rem; padding-bottom: 2.8rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
.brand.foot .brand-mark { color: var(--mint-300); }
.brand.foot .brand-text, .brand.foot .brand-text em { color: #fff; }
.footer-brand p { margin: 1.1rem 0 1.3rem; font-size: 0.94rem; max-width: 30ch; line-height: 1.65; }
.footer-social { display: flex; gap: 0.7rem; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,0.08); transition: background 0.3s, transform 0.3s; }
.footer-social a:hover { background: var(--teal-600); transform: translateY(-3px); }
.footer-social svg { width: 19px; height: 19px; color: #fff; }
.footer-col h4 { font-family: var(--sans); font-weight: 600; font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mint-300); margin-bottom: 1.1rem; }
.footer-col a { display: block; padding: 0.32rem 0; font-size: 0.94rem; transition: color 0.25s, padding 0.25s; }
.footer-col a:hover { color: #fff; padding-left: 5px; }
.footer-nap { font-style: normal; font-size: 0.94rem; line-height: 1.9; }
.footer-nap a { color: var(--mint-300); }
.footer-nap a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.7rem; padding: 1.6rem 0; font-size: 0.84rem; color: rgba(255,255,255,0.55); }
.footer-disclaimer { background: rgba(0,0,0,0.25); padding: 1.1rem 1.3rem; font-size: 0.78rem; text-align: center; color: rgba(255,255,255,0.5); line-height: 1.6; }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: 0.09s; }
.reveal[data-d="2"] { transition-delay: 0.18s; }
.reveal[data-d="3"] { transition-delay: 0.27s; }
.reveal[data-d="4"] { transition-delay: 0.36s; }

/* ============================================================
   PAGE HEADER (inner pages)
   ============================================================ */
.page-hero { position: relative; overflow: hidden; padding: clamp(3.5rem, 7vw, 6rem) 0 clamp(3rem, 5vw, 4.5rem); background: var(--mint-50); }
.page-hero .hero-orb.a { top: -200px; right: -140px; }
.page-hero-inner { position: relative; z-index: 1; max-width: 760px; }
.page-hero h1 { margin: 1rem 0 1.1rem; }
.page-hero p { font-size: 1.15rem; color: var(--ink-soft); max-width: 52ch; }
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; color: var(--muted); }
.breadcrumb a:hover { color: var(--teal-600); }
.breadcrumb svg { width: 14px; height: 14px; }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.filter-bar { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; margin-bottom: clamp(2.5rem, 4vw, 3.4rem); }
.filter-btn { font-family: var(--sans); font-weight: 500; font-size: 0.92rem; padding: 0.6rem 1.3rem; border-radius: 100px; border: 1.5px solid var(--line-2); background: var(--white); color: var(--ink-soft); cursor: pointer; transition: all 0.3s var(--ease); }
.filter-btn:hover { border-color: var(--mint-400); color: var(--teal-600); }
.filter-btn.active { background: linear-gradient(135deg, var(--teal-700), var(--mint-400)); color: #fff; border-color: transparent; box-shadow: 0 10px 24px rgba(28,130,120,0.28); }

.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.price-card { display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); overflow: hidden; transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), opacity 0.4s, border-color 0.3s; }
.price-card.hide { display: none; }
.price-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); border-color: var(--mint-200); }
.price-card.featured { border-color: var(--mint-400); box-shadow: 0 22px 56px rgba(28,130,120,0.16); }
.price-head { padding: 1.7rem 1.7rem 1.3rem; position: relative; }
.price-card.featured .price-head { background: var(--mint-50); }
.price-cat { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal-600); }
.price-ico { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; background: var(--mint-100); color: var(--teal-600); margin-bottom: 1rem; }
.price-ico svg { width: 26px; height: 26px; }
.price-head h3 { margin: 0.4rem 0 0.55rem; }
.price-head p { font-size: 0.94rem; color: var(--ink-soft); }
.price-tag { display: flex; align-items: baseline; gap: 0.4rem; padding: 0 1.7rem 0.2rem; }
.price-tag .from { font-size: 0.82rem; color: var(--muted); }
.price-tag .amt { font-family: var(--serif); font-size: 2rem; color: var(--teal-700); }
.price-tag .per { font-size: 0.85rem; color: var(--muted); }
.price-feats { list-style: none; padding: 1.1rem 1.7rem 1.6rem; display: grid; gap: 0.65rem; flex: 1; }
.price-feats li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.92rem; color: var(--ink-soft); }
.price-feats svg { width: 17px; height: 17px; color: var(--teal-600); flex: none; margin-top: 3px; }
.price-foot { padding: 0 1.7rem 1.7rem; }
.price-foot .btn { width: 100%; justify-content: center; }
.featured-flag { position: absolute; top: 1.3rem; right: 1.3rem; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: #fff; background: linear-gradient(135deg, var(--teal-600), var(--mint-400)); padding: 0.3rem 0.7rem; border-radius: 100px; }

.finance-band { background: linear-gradient(135deg, var(--teal-800), var(--teal-700)); border-radius: var(--radius-xl); padding: clamp(2.5rem, 5vw, 4rem); color: #fff; display: grid; grid-template-columns: 1.3fr 1fr; gap: 2.5rem; align-items: center; position: relative; overflow: hidden; }
.finance-band .qb-orb { top: -120px; left: -80px; }
.finance-band h2 { color: #fff; position: relative; z-index: 1; }
.finance-band p { color: rgba(255,255,255,0.85); margin: 1rem 0 0; position: relative; z-index: 1; }
.finance-stats { display: grid; gap: 1.1rem; position: relative; z-index: 1; }
.finance-stats .fs { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14); border-radius: var(--radius); padding: 1.1rem 1.3rem; }
.finance-stats .fs b { font-family: var(--serif); font-size: 1.7rem; color: #fff; display: block; }
.finance-stats .fs span { font-size: 0.85rem; color: var(--mint-300); }

.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
.faq { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.faq summary { cursor: pointer; padding: 1.3rem 1.5rem; font-weight: 600; font-size: 1.02rem; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; transition: color 0.25s; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.4rem; color: var(--teal-600); transition: transform 0.3s; flex: none; }
.faq[open] summary { color: var(--teal-600); }
.faq[open] summary::after { transform: rotate(45deg); }
.faq p { padding: 0 1.5rem 1.4rem; color: var(--ink-soft); font-size: 0.96rem; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.contact-form { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-xl); padding: clamp(1.8rem, 3vw, 2.6rem); box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { display: flex; flex-direction: column; margin-bottom: 1.1rem; }
.field label { font-size: 0.85rem; font-weight: 600; margin-bottom: 0.45rem; color: var(--ink); }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: 0.98rem; padding: 0.85rem 1rem;
  border: 1.5px solid var(--line-2); border-radius: 13px; background: var(--paper);
  color: var(--ink); transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--mint-400); background: #fff; box-shadow: 0 0 0 4px var(--mint-100); }
.field textarea { resize: vertical; min-height: 120px; }
.contact-form .btn { width: 100%; justify-content: center; margin-top: 0.4rem; }
[data-form-note] { margin-top: 1rem; padding: 0.9rem 1.1rem; border-radius: 13px; font-size: 0.92rem; font-weight: 500; display: none; }
[data-form-note].show { display: block; background: var(--mint-100); color: var(--teal-700); border: 1px solid var(--mint-200); }

.info-card { background: var(--mint-50); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.8rem; margin-bottom: 1.3rem; }
.info-card h3 { font-family: var(--sans); font-weight: 600; font-size: 1.05rem; margin-bottom: 1rem; display: flex; align-items: center; gap: 0.6rem; }
.info-card h3 svg { width: 20px; height: 20px; color: var(--teal-600); }
.info-list { display: grid; gap: 0.55rem; }
.info-list .row { display: flex; justify-content: space-between; gap: 1rem; font-size: 0.93rem; padding: 0.4rem 0; border-bottom: 1px dashed var(--line-2); }
.info-list .row:last-child { border-bottom: none; }
.info-list .row b { color: var(--ink); }
.info-list .row.closed span { color: var(--muted); }
.nap-block { font-style: normal; font-size: 0.98rem; line-height: 1.95; }
.nap-block a { color: var(--teal-600); font-weight: 500; }
.map-frame { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); background: var(--mint-50); }
.map-frame svg { width: 100%; height: auto; display: block; }

/* ============================================================
   BLOG PAGE
   ============================================================ */
.featured-post { display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-sm); margin-bottom: clamp(3rem, 5vw, 4rem); }
.featured-post .fp-media { position: relative; aspect-ratio: 4 / 3.2; overflow: hidden; }
.featured-post .fp-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.featured-post:hover .fp-media img { transform: scale(1.05); }
.featured-post .fp-flag { position: absolute; top: 1.2rem; left: 1.2rem; background: linear-gradient(135deg, var(--teal-600), var(--mint-400)); color: #fff; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; padding: 0.35rem 0.9rem; border-radius: 100px; }
.fp-body { padding: clamp(1.5rem, 3vw, 2.6rem) clamp(1.5rem, 3vw, 2.6rem) clamp(1.5rem, 3vw, 2.6rem) 0; }
.fp-body h2 { margin: 0.8rem 0 1rem; font-size: clamp(1.7rem, 3vw, 2.5rem); }
.fp-body p { color: var(--ink-soft); margin-bottom: 1.6rem; }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.bcard { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); display: flex; flex-direction: column; }
.bcard:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.bcard-media { aspect-ratio: 3 / 2; overflow: hidden; position: relative; }
.bcard-media .ph { width: 100%; height: 100%; display: grid; place-items: center; }
.bcard-media .ph svg { width: 64px; height: 64px; color: rgba(255,255,255,0.85); }
.bcard-body { padding: 1.6rem; display: flex; flex-direction: column; flex: 1; }
.bcard h3 { font-size: 1.2rem; margin: 0.7rem 0 0.6rem; line-height: 1.3; }
.bcard:hover h3 { color: var(--teal-600); }
.bcard p { font-size: 0.92rem; color: var(--ink-soft); flex: 1; margin-bottom: 1.1rem; }

.newsletter { background: linear-gradient(135deg, var(--teal-700), var(--mint-400)); border-radius: var(--radius-xl); padding: clamp(2.5rem, 5vw, 3.8rem); text-align: center; color: #fff; position: relative; overflow: hidden; }
.newsletter .cta-orb.a { top: -120px; left: -80px; }
.newsletter h2 { color: #fff; position: relative; z-index: 1; }
.newsletter p { color: rgba(255,255,255,0.9); max-width: 44ch; margin: 0.9rem auto 1.8rem; position: relative; z-index: 1; }
.newsletter form { display: flex; gap: 0.7rem; max-width: 460px; margin: 0 auto; position: relative; z-index: 1; }
.newsletter input { flex: 1; font-family: var(--sans); padding: 0.9rem 1.2rem; border-radius: 100px; border: none; font-size: 0.96rem; }
.newsletter input:focus { outline: none; box-shadow: 0 0 0 4px rgba(255,255,255,0.3); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .treat-grid, .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .step:nth-child(2)::after { display: none; }
  .price-grid, .quotes-grid, .journal-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .finance-band { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; gap: 0.3rem;
    position: absolute; top: calc(100% + 0.6rem); left: 1.3rem; right: 1.3rem;
    background: var(--white); padding: 1rem; border-radius: var(--radius-lg);
    box-shadow: var(--shadow); border: 1px solid var(--line); z-index: 99;
  }
  .nav.open .nav-links a { padding: 0.8rem 1rem; }
  .nav.open .nav-cta { display: flex; flex-direction: column; align-items: stretch; gap: 0.7rem;
    position: absolute; top: calc(100% + 0.6rem); left: 1.3rem; right: 1.3rem; transform: translateY(220px);
    background: var(--white); padding: 0 1rem 1rem; border-radius: 0 0 var(--radius-lg) var(--radius-lg); z-index: 99; }
  .nav.open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav.open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero-grid, .split, .detail-grid, .contact-grid, .featured-post { grid-template-columns: 1fr; }
  .split.flip .split-media { order: 0; }
  .hero-media { margin-top: 1rem; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .stat:nth-child(2)::after { display: none; }
  .split-head { grid-template-columns: 1fr; }
  .fp-body { padding: 0 1.6rem 1.8rem; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .treat-grid, .steps-grid, .price-grid, .quotes-grid, .journal-grid, .blog-grid, .stats-inner, .faq-grid, .form-row { grid-template-columns: 1fr; }
  .stat::after, .step::after { display: none; }
  .hero-badge { left: 0; top: 0.8rem; }
  .hero-float { right: 0; }
  .newsletter form { flex-direction: column; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .frame.zoom:hover img, .hero-frame { transform: none !important; }
  * { scroll-behavior: auto !important; }
}
