/* =========================================================
   Octus Estate — Shared Stylesheet
   Treatments: classic | editorial | luxury (via [data-treatment])
   ========================================================= */

:root {
  /* Brand */
  --navy: #0f314e;
  --navy-deep: #0a2238;
  --navy-soft: #1a4366;
  --gold: #c59f4a;
  --gold-soft: #d9bf85;
  --gold-deep: #a8862e;
  --sage: #a9c8be;
  --sage-soft: #c8dcd5;
  --grey-100: #f5f4f1;
  --grey-200: #e8e8e8;
  --grey-300: #d4d4d0;
  --grey-500: #8a8a85;
  --grey-700: #5a5a55;
  --ink: #1b1b1b;

  /* Backgrounds (default = Classic) */
  --bg: #faf8f3;            /* warm cream */
  --bg-elev: #ffffff;
  --bg-deep: var(--navy);
  --bg-band: #f1ede3;       /* slightly deeper cream band */
  --fg: #1f2a36;
  --fg-soft: #4a5663;
  --rule: #e3ddd0;
  --accent: var(--gold);

  /* Type */
  --serif: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --sans: "Instrument Sans", "Söhne", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", "IBM Plex Mono", ui-monospace, monospace;

  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 14px;
  --shadow-sm: 0 1px 2px rgba(15, 49, 78, 0.06), 0 1px 1px rgba(15, 49, 78, 0.04);
  --shadow: 0 2px 8px rgba(15, 49, 78, 0.08), 0 8px 24px rgba(15, 49, 78, 0.06);
  --shadow-lg: 0 12px 40px rgba(15, 49, 78, 0.12);

  /* Layout */
  --max: 1240px;
  --gutter: 28px;
}

/* =========== TREATMENT: EDITORIAL =========== */
[data-treatment="editorial"] {
  --bg: #f7f6f2;
  --bg-elev: #ffffff;
  --bg-band: #ecebe5;
  --rule: #dcd9cf;
  --fg: #14222e;
  --serif: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --sans: "Inter Tight", "Instrument Sans", -apple-system, sans-serif;
}

/* =========== TREATMENT: QUIET LUXURY =========== */
[data-treatment="luxury"] {
  --bg: #efece4;
  --bg-elev: #f7f4ec;
  --bg-band: #e6e1d4;
  --rule: #d2cbb8;
  --fg: #0f314e;
  --fg-soft: #3a4b5c;
  --serif: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --sans: "Instrument Sans", -apple-system, sans-serif;
  --accent: var(--gold-deep);
}

/* =========================================================
   Reset & base
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin: 0 0 0.4em;
  text-wrap: balance;
}
h1 { font-size: clamp(40px, 5.6vw, 76px); line-height: 1.02; font-weight: 500; }
h2 { font-size: clamp(30px, 3.8vw, 52px); line-height: 1.08; }
h3 { font-size: clamp(22px, 2vw, 28px); line-height: 1.2; }
h4 { font-size: 18px; line-height: 1.3; font-family: var(--sans); font-weight: 600; letter-spacing: 0; }

p { margin: 0 0 1em; color: var(--fg-soft); text-wrap: pretty; }
.lead { font-size: clamp(18px, 1.4vw, 22px); line-height: 1.5; color: var(--fg); }

.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--accent);
  display: inline-block;
}

/* =========================================================
   Container & grid
   ========================================================= */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.container-wide { max-width: 1440px; margin: 0 auto; padding: 0 var(--gutter); }

section { padding: clamp(60px, 8vw, 120px) 0; }
.band { background: var(--bg-band); }
.band-deep { background: var(--navy); color: #e6ecf2; }
.band-deep h1, .band-deep h2, .band-deep h3 { color: #f7f1df; }
.band-deep p { color: #b9c7d4; }

/* =========================================================
   Header
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in oklab, var(--bg) 88%, transparent);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--rule);
}
.site-header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 16px var(--gutter);
  display: flex;
  align-items: center;
  gap: 36px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand img { width: 38px; height: 38px; }
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-text .name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.brand-text .sub {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.32em;
  color: var(--fg-soft);
  margin-top: 3px;
  text-transform: uppercase;
}
.site-nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.site-nav a {
  font-size: 14px;
  color: var(--fg);
  position: relative;
  padding: 4px 0;
  transition: color .15s;
}
.site-nav a:hover { color: var(--accent); }
.site-nav a.current { color: var(--accent); }
.site-nav a.current::after {
  content: "";
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1px; background: var(--accent);
}
.header-cta { display: flex; gap: 10px; align-items: center; }
.phone-link {
  font-size: 13px;
  color: var(--fg-soft);
  font-variant-numeric: tabular-nums;
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: var(--radius);
  font-family: var(--sans);
  font-weight: 500;
  font-size: 14.5px;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .18s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy-deep);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}
.btn-secondary {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-secondary:hover {
  background: var(--navy);
  color: #f7f1df;
}
.btn-ghost {
  background: transparent;
  color: var(--navy);
  padding-left: 0; padding-right: 0;
  border-bottom: 1px solid var(--navy);
  border-radius: 0;
}
.btn-ghost:hover { color: var(--accent); border-color: var(--accent); }
.btn-large { padding: 16px 28px; font-size: 15.5px; }
.btn .arrow { transition: transform .18s; }
.btn:hover .arrow { transform: translateX(3px); }

/* On dark band */
.band-deep .btn-secondary,
.cta-band .btn-secondary { color: #f7f1df; border-color: rgba(247,241,223,0.45); }
.band-deep .btn-secondary:hover,
.cta-band .btn-secondary:hover { background: #f7f1df; color: var(--navy); border-color: #f7f1df; }

/* =========================================================
   Cards & shared blocks
   ========================================================= */
.card {
  background: var(--bg-elev);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: color-mix(in oklab, var(--gold) 30%, var(--rule));
}

.rule { height: 1px; background: var(--rule); margin: 0; border: 0; }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  padding: clamp(60px, 7vw, 100px) 0 clamp(50px, 6vw, 90px);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero-copy .eyebrow { margin-bottom: 24px; }
.hero-copy h1 { margin-bottom: 22px; }
.hero-copy h1 .accent {
  font-style: italic;
  color: var(--navy-soft);
}
.hero-copy h1 .accent-gold { color: var(--gold-deep); font-style: italic; }
.hero-actions {
  display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap;
}
.hero-meta {
  display: flex;
  gap: 28px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
}
.hero-meta-item { font-size: 13px; }
.hero-meta-item strong {
  display: block;
  font-family: var(--serif);
  font-size: 28px;
  color: var(--navy);
  font-weight: 500;
  margin-bottom: 2px;
}
.hero-meta-item span { color: var(--fg-soft); }

/* Hero visual */
.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(165deg, var(--sage-soft), var(--sage) 55%, var(--navy-soft));
  box-shadow: var(--shadow-lg);
}
.hero-visual .placeholder-img {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono);
  font-size: 12px;
  color: rgba(15, 49, 78, 0.55);
  letter-spacing: 0.08em;
}
.hero-visual .placeholder-img::before {
  content: "";
  position: absolute; inset: 24px;
  border: 1px dashed rgba(15, 49, 78, 0.25);
  border-radius: 10px;
  background-image: repeating-linear-gradient(
    45deg,
    transparent 0, transparent 14px,
    rgba(15, 49, 78, 0.04) 14px, rgba(15, 49, 78, 0.04) 15px
  );
}
.hero-visual .placeholder-img span { position: relative; z-index: 1; background: rgba(255,255,255,0.7); padding: 6px 12px; border-radius: 999px; }

/* Hero photo — fills the .hero-visual container behind the floating badges */
.hero-visual .hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  display: block;
  z-index: 0;
}
/* Subtle inset frame + gentle bottom vignette so the white badges keep contrast */
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  box-shadow: inset 0 0 0 1px rgba(197, 159, 74, 0.28);
  background: linear-gradient(to bottom, rgba(15, 49, 78, 0) 60%, rgba(15, 49, 78, 0.18) 100%);
  border-radius: var(--radius-lg);
}

.hero-badge {
  position: absolute;
  background: var(--bg-elev);
  border: 1px solid var(--rule);
  padding: 18px 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: 240px;
  z-index: 2;
}
.hero-badge.tl { top: 22px; left: 22px; }
.hero-badge.br { bottom: 28px; right: 22px; }
.hero-badge .label {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 6px;
}
.hero-badge .value {
  font-family: var(--serif); font-size: 22px; color: var(--navy);
}
.hero-badge .note { font-size: 12px; color: var(--fg-soft); margin-top: 2px; }

/* =========================================================
   Section heading shared
   ========================================================= */
.section-head {
  max-width: 720px;
  margin-bottom: 56px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head h2 { margin-bottom: 18px; }

/* =========================================================
   Process / 3 meetings
   ========================================================= */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
.process-grid::before {
  content: "";
  position: absolute;
  top: 38px; left: 8%; right: 8%;
  height: 1px;
  border-top: 1px dashed var(--gold);
  z-index: 0;
}
.process-step {
  position: relative;
  z-index: 1;
  background: var(--bg-elev);
  border: 1px solid var(--rule);
  padding: 32px 28px;
  border-radius: var(--radius-lg);
}
.process-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--gold);
  color: var(--gold-deep);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 22px;
  font-variant-numeric: tabular-nums;
}
.process-step h3 { margin-bottom: 10px; font-size: 22px; }
.process-step .duration {
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--fg-soft); margin-bottom: 16px;
}

/* =========================================================
   Products grid
   ========================================================= */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.product-card {
  display: flex;
  gap: 22px;
  padding: 28px;
  background: var(--bg-elev);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.product-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: color-mix(in oklab, var(--gold) 28%, var(--rule));
}
.product-icon {
  width: 56px; height: 56px;
  flex-shrink: 0;
  border-radius: 12px;
  background: var(--bg);
  border: 1px solid var(--rule);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
}
.product-card h3 { font-size: 22px; margin-bottom: 6px; }
.product-card p { margin-bottom: 0; font-size: 15px; }
.product-card .price-tag {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--gold-deep);
  letter-spacing: 0.06em;
  margin-top: 8px;
  display: inline-block;
}

/* =========================================================
   Pricing
   ========================================================= */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.price-card {
  background: var(--bg-elev);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .2s, box-shadow .2s;
}
.price-card.featured {
  background: var(--navy);
  color: #e6ecf2;
  border-color: var(--navy);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.price-card.featured h3,
.price-card.featured .price-amount { color: #f7f1df; }
.price-card.featured .price-name { color: var(--gold); }
.price-card.featured .price-feature { color: #c5d1de; }
.price-card.featured .price-feature::before { color: var(--gold); }
.price-card.featured .btn-primary { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.price-card.featured .btn-primary:hover { background: #fff; color: var(--navy); border-color: #fff; }

.price-badge {
  position: absolute;
  top: -34px; left: 50%; transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy-deep);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
  z-index: 3;
  box-shadow: 0 2px 6px rgba(15, 49, 78, 0.18);
}
.price-card { overflow: visible; }
.price-name {
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 10px;
}
.price-card h3 { margin-bottom: 14px; font-size: 24px; }
.price-amount {
  font-family: var(--serif);
  font-size: 56px;
  line-height: 1;
  color: var(--navy);
  font-weight: 500;
  margin: 10px 0 4px;
}
.price-amount sup { font-size: 22px; vertical-align: top; margin-right: 2px; color: var(--fg-soft); font-weight: 400; }
.price-suffix { font-size: 13px; color: var(--fg-soft); margin-bottom: 24px; }
.price-features {
  list-style: none; padding: 0; margin: 0 0 28px;
  display: flex; flex-direction: column; gap: 12px;
}
.price-feature {
  font-size: 14.5px;
  color: var(--fg);
  padding-left: 26px;
  position: relative;
}
.price-feature::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  color: var(--gold-deep);
  font-weight: 600;
}
.price-feature.muted { color: var(--fg-soft); }
.price-feature.muted::before { content: "—"; color: var(--grey-300); }
.price-card .btn { margin-top: auto; justify-content: center; width: 100%; }

/* =========================================================
   Testimonials
   ========================================================= */
.testimonial-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 18px;
}
.testimonial {
  background: var(--bg-elev);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 30px;
  display: flex;
  flex-direction: column;
}
.testimonial.feature { grid-row: span 2; padding: 40px; background: var(--bg-band); }
.testimonial blockquote {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.4;
  color: var(--navy);
  margin: 0 0 24px;
  font-style: italic;
  font-weight: 400;
}
.testimonial.feature blockquote { font-size: 28px; }
.testimonial .quote-mark {
  font-family: var(--serif);
  font-size: 64px;
  line-height: 0.6;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.testimonial cite {
  font-style: normal;
  font-size: 14px;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.testimonial cite .name { color: var(--navy); font-weight: 600; }
.testimonial cite .role { color: var(--fg-soft); font-size: 13px; }

/* =========================================================
   FAQ accordion
   ========================================================= */
.faq-list { max-width: 860px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--rule);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: var(--serif);
  font-size: 22px;
  color: var(--navy);
  font-weight: 500;
  transition: color .2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--gold-deep); }
.faq-icon {
  width: 28px; height: 28px;
  border: 1px solid var(--rule);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform .25s, background .2s, border-color .2s;
  color: var(--navy);
}
.faq-item[open] .faq-icon {
  transform: rotate(45deg);
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-deep);
}
.faq-answer {
  padding: 0 0 28px;
  max-width: 720px;
  color: var(--fg-soft);
  font-size: 16px;
  line-height: 1.65;
}

/* =========================================================
   CTA band
   ========================================================= */
.cta-band {
  background: var(--navy);
  color: #e6ecf2;
  padding: clamp(60px, 7vw, 100px) 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(197, 159, 74, 0.18), transparent 60%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: center;
}
.cta-inner h2 { color: #f7f1df; }
.cta-inner p { color: #b9c7d4; font-size: 18px; }

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  background: var(--navy-deep);
  color: #b9c7d4;
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(247, 241, 223, 0.1);
}
.footer-brand { max-width: 320px; }
.footer-brand p { color: #8da0b3; font-size: 14px; margin-top: 16px; }
.footer-col h5 {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: #c5d1de; transition: color .15s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-size: 12px;
  color: #8da0b3;
  flex-wrap: wrap;
}
.footer-disclaimer {
  max-width: 100%;
  font-size: 11px;
  line-height: 1.6;
  color: #6b7a8b;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(247, 241, 223, 0.08);
}
.footer-legal-links {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-legal-links a {
  color: #b9c7d4;
  text-decoration: none;
  transition: color .15s;
}
.footer-legal-links a:hover { color: var(--gold); }
.footer-legal-links span { color: #4d5d6f; }
.footer-disclaimer a { color: #d9bf85; }
.footer-disclaimer a:hover { color: var(--gold); }

/* =========================================================
   Decorative ornament (gold scribble)
   ========================================================= */
.ornament {
  display: inline-block;
  width: 48px; height: 16px;
  background-image: radial-gradient(circle, var(--gold) 1px, transparent 1.5px);
  background-size: 5px 5px;
  background-position: center;
  opacity: 0.7;
}

/* =========================================================
   Stat / trust bar
   ========================================================= */
.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 36px 40px;
  background: var(--bg-elev);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin-top: -60px;
  position: relative;
  z-index: 2;
}
.trust-item .num {
  font-family: var(--serif);
  font-size: 38px;
  color: var(--navy);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 6px;
}
.trust-item .label {
  font-size: 13px;
  color: var(--fg-soft);
  line-height: 1.4;
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { aspect-ratio: 5/4; max-width: 560px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid::before { display: none; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .products-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .testimonial.feature { grid-row: auto; }
  .cta-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .trust-bar { grid-template-columns: repeat(2, 1fr); margin-top: 0; }
  .site-nav { display: none; }
  .header-cta .phone-link { display: none; }
}

/* =========================================================
   Tweaks panel positioning (when host activates)
   ========================================================= */
.tweaks-fab {
  position: fixed;
  bottom: 20px; right: 20px;
  z-index: 100;
}
