/* ==========================================================================
   Anchor Home Services, global.css
   Design system per Brand Bible §4 + website channel guidelines §6.
   Last updated: 2026-04-22
   ========================================================================== */

/* ---------------- Fonts ---------------- */
@import url('https://fonts.googleapis.com/css2?family=Source+Serif+Pro:wght@400;600;700&family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

/* ---------------- Design tokens ---------------- */
:root {
  /* Primary brand, darker, near-black navy for luxurious dark surfaces */
  --navy: #0E1A2B;
  --navy-deep: #070F1B;
  --navy-dark: #0A1322;
  --navy-mid: #1B2A41;
  --navy-soft: #2C3D58;

  /* Gold, used only as a rare hairline accent, never as a surface */
  --gold: #C9A24B;
  --gold-light: #D9B973;
  --gold-dark: #A8842F;
  --gold-soft: rgba(201, 162, 75, 0.35);

  /* Walnut, darker, for secondary dark surfaces */
  --walnut: #2E1F14;
  --walnut-deep: #1F1409;
  --walnut-mid: #3D2817;
  --walnut-light: #6B4423;
  --walnut-pale: #C4A988;

  /* Paper / background, warm ivory, paper, cream */
  --ivory: #F6F1E7;
  --paper: #F9F5EE;
  --paper-warm: #F3EBDB;
  --cream: #EFE6D3;

  /* Type */
  --charcoal: #1A1A1A;
  --slate: #5A6270;
  --slate-dark: #3B4350;

  /* Dividers */
  --border: #E5DFD1;
  --border-dark: #CDC4B0;
  --border-strong: #A8997A;

  /* Status (used sparingly per Brand Bible §4) */
  --green: #2F855A;
  --yellow: #B7791F;
  --red: #B83232;

  /* Typography */
  --serif: 'Source Serif Pro', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  --mono: 'JetBrains Mono', 'IBM Plex Mono', 'Menlo', monospace;

  /* Layout */
  --content-max: 1160px;
  --wide-max: 1280px;
  --gutter: 32px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;

  /* Motion */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast: 120ms;
  --t-med: 240ms;
}

/* ---------------- Reset ---------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--navy); text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: 3px; transition: color var(--t-fast) var(--ease); }
a:hover { color: var(--walnut); text-decoration-color: var(--walnut); }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
ul, ol { padding-left: 1.25em; }
hr { border: 0; height: 1px; background: var(--border); margin: 48px 0; }

/* ---------------- Utilities ---------------- */
.container { max-width: var(--content-max); margin: 0 auto; padding: 0 var(--gutter); }
.container-wide { max-width: var(--wide-max); margin: 0 auto; padding: 0 var(--gutter); }
.serif { font-family: var(--serif); }
.sans { font-family: var(--sans); }
.mono { font-family: var(--mono); letter-spacing: -0.01em; }
.muted { color: var(--slate); }
.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--walnut);
}
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ---------------- Typography scale ---------------- */
h1, h2, h3, h4 { font-family: var(--serif); color: var(--navy); font-weight: 600; line-height: 1.15; letter-spacing: -0.01em; }
h1 { font-size: clamp(36px, 5.4vw, 60px); line-height: 1.08; letter-spacing: -0.02em; }
h2 { font-size: clamp(28px, 3.6vw, 40px); }
h3 { font-size: clamp(20px, 2vw, 24px); line-height: 1.25; }
h4 { font-size: 18px; text-transform: none; }
p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }
p.lead { font-size: 20px; line-height: 1.55; color: var(--charcoal); }
small { font-size: 14px; color: var(--slate); }

/* ---------------- Header / Navigation ---------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--navy);
  border-bottom: 1px solid rgba(201, 162, 75, 0.18);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
}
.wordmark {
  display: inline-flex; align-items: center;
  text-decoration: none;
  line-height: 0;
}
.wordmark__img {
  height: 36px;
  width: auto;
  display: block;
}
.wordmark:hover { opacity: 0.85; }
.footer-brand__name {
  display: inline-block;
  font-family: var(--serif);
  font-size: 22px; font-weight: 600;
  color: var(--paper);
  text-decoration: none;
  letter-spacing: 0.01em;
  margin-bottom: 12px;
}
.footer-brand__name:hover { color: var(--gold); }
.nav { display: flex; align-items: center; gap: 24px; }
.nav a {
  font-size: 14px; color: var(--ivory);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 8px 2px;
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--gold); border-bottom-color: var(--gold); }
.nav__phone {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--ivory);
  text-decoration: none;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.nav__phone:hover { color: var(--gold); }
.nav__cta {
  background: transparent !important;
  color: var(--ivory) !important;
  padding: 10px 18px !important;
  border: 1px solid var(--gold) !important;
  border-radius: 2px !important;
  font-family: var(--mono);
  font-size: 12px !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase;
  font-weight: 500 !important;
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease) !important;
}
.nav__cta:hover { background: var(--gold) !important; color: var(--navy) !important; border-color: var(--gold) !important; }

/* Mobile nav toggle */
.nav-toggle { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; background: transparent; border: 0; }
.nav-toggle__bar { display: block; width: 22px; height: 1.5px; background: var(--ivory); position: relative; }
.nav-toggle__bar::before, .nav-toggle__bar::after { content: ""; position: absolute; left: 0; width: 22px; height: 1.5px; background: var(--ivory); }
.nav-toggle__bar::before { top: -7px; }
.nav-toggle__bar::after { top: 7px; }

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: var(--navy-deep);
    border-bottom: 1px solid rgba(201, 162, 75, 0.2);
    padding: 8px 0 16px;
    display: none;
  }
  .nav.is-open { display: flex; }
  .nav a { width: 100%; padding: 16px var(--gutter); border-bottom: 1px solid rgba(255,255,255,0.05); color: var(--ivory); }
  .nav a:hover { border-bottom-color: rgba(201, 162, 75, 0.2); background: rgba(255,255,255,0.03); color: var(--gold); }
  .nav__phone { padding: 16px var(--gutter); border-bottom: 1px solid rgba(255,255,255,0.05); width: 100%; }
  .nav__cta {
    margin: 16px var(--gutter) 8px !important;
    display: inline-block;
    text-align: center;
    width: calc(100% - (var(--gutter) * 2));
  }
}

/* ---------------- Buttons ---------------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 22px; border-radius: var(--radius-sm); font-family: var(--sans); font-size: 16px; font-weight: 500; text-decoration: none; transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease); cursor: pointer; border: 1px solid transparent; line-height: 1; }
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--navy); color: var(--paper); }
.btn--primary:hover { background: var(--walnut); color: var(--paper); }
.btn--secondary { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn--secondary:hover { background: var(--navy); color: var(--paper); }
.btn--gold { background: var(--gold); color: var(--navy); }
.btn--gold:hover { background: var(--gold-dark); }
.btn--text { background: transparent; color: var(--navy); text-decoration: underline; text-decoration-color: var(--gold); padding: 6px 0; }
.btn--large { padding: 18px 28px; font-size: 17px; }
.btn--small { padding: 10px 16px; font-size: 14px; }

/* ---------------- Sections ---------------- */
section { padding: 88px 0; }
section.compact { padding: 56px 0; }
section.band-cream { background: var(--cream); }
section.band-navy { background: var(--navy); color: var(--paper); }
section.band-navy h1, section.band-navy h2, section.band-navy h3 { color: var(--paper); }
section.band-navy .eyebrow { color: var(--gold); }
section.band-navy a { color: var(--gold); text-decoration-color: var(--gold-light); }
section.band-walnut { background: var(--walnut); color: var(--paper); }
section.band-walnut h1, section.band-walnut h2, section.band-walnut h3 { color: var(--paper); }
section.band-walnut .eyebrow { color: var(--walnut-pale); }

@media (max-width: 720px) { section { padding: 64px 0; } }

/* Section headings */
.section-head { max-width: 760px; margin-bottom: 48px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 14px; display: inline-block; }
.section-head h2 { margin-bottom: 16px; }
.section-head p { font-size: 18px; color: var(--slate-dark); }

/* ---------------- Hero ---------------- */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, var(--paper) 0%, var(--cream) 100%);
  padding: 96px 0 88px;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 12% 18%, rgba(201,162,75,0.12), transparent 40%),
                    radial-gradient(circle at 88% 82%, rgba(107,68,35,0.08), transparent 42%);
  pointer-events: none;
}
.hero__inner { position: relative; display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
.hero__eyebrow { margin-bottom: 16px; display: inline-block; }
.hero h1 { margin-bottom: 20px; color: var(--navy); }
.hero__lead { font-size: 21px; line-height: 1.5; color: var(--slate-dark); margin-bottom: 32px; max-width: 620px; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 24px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 16px 28px; font-size: 14px; color: var(--slate); }
.hero__trust-item { display: inline-flex; align-items: center; gap: 8px; }
.hero__trust-item::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

@media (min-width: 980px) {
  .hero { padding: 128px 0 112px; }
  .hero__inner { grid-template-columns: 1.1fr 0.9fr; }
}

/* ---------------- Promise block (the Anchor Promise, per Vision doc) ---------------- */
.promise {
  background: var(--navy);
  color: var(--paper);
  padding: 88px 0;
  border-top: 4px solid var(--gold);
}
.promise h2 { color: var(--paper); margin-bottom: 32px; max-width: 720px; }
.promise ul { list-style: none; padding: 0; display: grid; gap: 20px; max-width: 840px; }
.promise li {
  font-family: var(--serif);
  font-size: 22px; line-height: 1.4;
  color: var(--paper);
  padding-left: 32px;
  position: relative;
}
.promise li::before {
  content: ""; position: absolute; left: 0; top: 14px;
  width: 18px; height: 2px; background: var(--gold);
}

/* ---------------- Cards / grids ---------------- */
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr 1fr; }
@media (min-width: 720px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr 1fr; }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease), border-color var(--t-med) var(--ease);
}
.card:hover { transform: translateY(-2px); box-shadow: 0 12px 32px -18px rgba(27,42,65,0.25); border-color: var(--border-dark); }
.card--link { color: inherit; text-decoration: none; display: block; }
.card__eyebrow { margin-bottom: 10px; }
.card h3 { margin-bottom: 12px; }
.card p { color: var(--slate-dark); margin-bottom: 16px; }
.card__footer { margin-top: 20px; font-size: 14px; color: var(--navy); font-weight: 500; }
.card__footer::after { content: " →"; color: var(--gold); }

/* Pricing cards */
.pricing-grid { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 880px) { .pricing-grid { grid-template-columns: repeat(4, 1fr); } }
.pricing-card { background: var(--paper); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 32px 28px; display: flex; flex-direction: column; position: relative; }
.pricing-card--featured { border-color: var(--gold); box-shadow: 0 12px 40px -20px rgba(201,162,75,0.4); }
.pricing-card--featured::before { content: "Most common"; position: absolute; top: -12px; left: 28px; background: var(--gold); color: var(--navy); font-family: var(--mono); font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; padding: 4px 10px; border-radius: 2px; }
.pricing-card__name { font-family: var(--serif); font-size: 26px; color: var(--navy); margin-bottom: 6px; font-weight: 600; }
.pricing-card__subtitle { color: var(--slate); font-size: 14px; margin-bottom: 20px; }
.pricing-card__price { font-family: var(--serif); font-size: 42px; color: var(--navy); font-weight: 600; line-height: 1; }
.pricing-card__price-unit { font-family: var(--sans); font-size: 15px; color: var(--slate); font-weight: 400; }
.pricing-card__hr { margin: 24px 0; border: 0; border-top: 1px solid var(--border); }
.pricing-card ul { list-style: none; padding: 0; margin: 0 0 28px; display: flex; flex-direction: column; gap: 10px; font-size: 15px; flex-grow: 1; }
.pricing-card li { display: flex; gap: 10px; align-items: flex-start; color: var(--charcoal); }
.pricing-card li::before { content: ""; margin-top: 10px; flex: 0 0 6px; height: 6px; background: var(--gold); border-radius: 50%; }

/* ---------------- FAQ ---------------- */
.faq { display: flex; flex-direction: column; gap: 0; max-width: 860px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-item summary { list-style: none; cursor: pointer; padding: 24px 40px 24px 0; font-family: var(--serif); font-size: 20px; color: var(--navy); font-weight: 600; position: relative; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%); font-family: var(--sans); font-weight: 400; font-size: 28px; color: var(--gold); line-height: 1; transition: transform var(--t-fast) var(--ease); }
.faq-item[open] summary::after { content: "–"; }
.faq-item__body { padding: 0 40px 28px 0; color: var(--charcoal); font-size: 17px; line-height: 1.65; }
.faq-item__body p + p { margin-top: 14px; }

/* ---------------- Callout / pull quote ---------------- */
.callout { background: var(--paper-warm); border-left: 4px solid var(--walnut); padding: 28px 32px; border-radius: 0 var(--radius-md) var(--radius-md) 0; margin: 40px 0; }
.callout p { margin-bottom: 8px; color: var(--charcoal); }
.callout p:last-child { margin-bottom: 0; }
.callout--navy { background: var(--navy-mid); color: var(--paper); border-left-color: var(--gold); }
.callout--navy p { color: var(--paper); }

.pull { font-family: var(--serif); font-size: 28px; line-height: 1.3; color: var(--navy); max-width: 760px; margin: 56px auto; padding: 0 28px; border-left: 3px solid var(--gold); }
.pull cite { display: block; margin-top: 16px; font-family: var(--sans); font-size: 14px; color: var(--slate); font-style: normal; }

/* ---------------- Service areas grid ---------------- */
.areas-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 640px) { .areas-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .areas-grid { grid-template-columns: repeat(3, 1fr); } }
.area-card { background: var(--paper); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 24px; text-decoration: none; color: inherit; display: flex; flex-direction: column; gap: 6px; transition: border-color var(--t-fast) var(--ease), background var(--t-fast) var(--ease); }
.area-card:hover { border-color: var(--gold); background: var(--paper-warm); }
.area-card__zip { font-family: var(--mono); font-size: 13px; color: var(--walnut); letter-spacing: 0.06em; }
.area-card__name { font-family: var(--serif); font-size: 20px; color: var(--navy); font-weight: 600; }
.area-card__meta { font-size: 14px; color: var(--slate); }
.area-card__desc { margin: 6px 0 0; font-size: 14.5px; line-height: 1.55; color: var(--slate-dark); }
.area-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; }
@media (max-width: 900px) { .area-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .area-grid { grid-template-columns: 1fr; } }
.area-card--static { cursor: default; }
.area-card--static:hover { border-color: var(--border); background: var(--paper); }

/* ---------------- Step list (how it works) ---------------- */
.steps { display: grid; gap: 24px; grid-template-columns: 1fr; counter-reset: step; }
@media (min-width: 900px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step { padding: 32px 28px; background: var(--paper); border: 1px solid var(--border); border-radius: var(--radius-md); position: relative; }
.step::before { counter-increment: step; content: counter(step, decimal-leading-zero); font-family: var(--mono); font-size: 14px; font-weight: 500; color: var(--walnut); letter-spacing: 0.1em; display: block; margin-bottom: 14px; }
.step h3 { margin-bottom: 10px; font-size: 22px; }
.step p { color: var(--slate-dark); font-size: 16px; }

/* ---------------- Two column text ---------------- */
.two-col { display: grid; gap: 48px; grid-template-columns: 1fr; }
@media (min-width: 900px) { .two-col { grid-template-columns: 1.05fr 1fr; } }
.two-col__aside { background: var(--cream); padding: 32px; border-radius: var(--radius-md); align-self: start; }
.two-col__aside h3 { font-size: 20px; margin-bottom: 14px; }
.two-col__aside p { color: var(--slate-dark); font-size: 15px; }

/* ---------------- Forms ---------------- */
.form { display: flex; flex-direction: column; gap: 18px; max-width: 640px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 14px; font-weight: 500; color: var(--navy); }
.field input, .field select, .field textarea {
  font: inherit; font-size: 16px;
  background: var(--paper);
  color: var(--charcoal);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,162,75,0.18); }
.field textarea { min-height: 140px; resize: vertical; }
.field__help { font-size: 13px; color: var(--slate); }
.form__submit { align-self: flex-start; }
.form-status { font-size: 15px; padding: 12px 16px; border-radius: var(--radius-sm); }
.form-status--ok { background: #E9F3ED; color: var(--green); border: 1px solid #BEDCC7; }
.form-status--err { background: #FBE9E9; color: var(--red); border: 1px solid #E9C0C0; }

/* ---------------- Footer ---------------- */
.site-footer {
  background: var(--navy);
  color: var(--paper);
  padding: 72px 0 32px;
  margin-top: 96px;
}
.site-footer a { color: var(--paper); text-decoration: none; }
.site-footer a:hover { color: var(--gold); }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 40px; margin-bottom: 48px; }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-brand p { color: #B4B9C2; font-size: 15px; max-width: 340px; margin-top: 16px; }
.footer-col h3 { font-family: var(--sans); font-size: 13px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.footer-col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col li a { font-size: 15px; color: #C8CDD6; }
.footer-bottom { border-top: 1px solid #2C3D58; padding-top: 28px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: 13px; color: #99A0AE; }
.footer-bottom a { color: #99A0AE; }

/* ---------------- Skip link ---------------- */
.skip-link { position: absolute; left: -9999px; top: 0; background: var(--gold); color: var(--navy); padding: 12px 16px; font-weight: 600; z-index: 100; }
.skip-link:focus { left: 16px; top: 16px; }

/* ---------------- Global focus-visible (WCAG AA keyboard nav) ---------------- */
:focus { outline: none; }
a:focus-visible,
button:focus-visible,
[role="button"]:focus-visible,
summary:focus-visible,
input[type="checkbox"]:focus-visible,
input[type="radio"]:focus-visible,
input[type="submit"]:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}
/* On dark backgrounds, the gold ring still works — no override needed since gold is the accent color across the design system. */

/* ---------------- Breadcrumbs ---------------- */
.breadcrumbs { font-size: 13px; color: var(--slate); padding: 16px 0 0; font-family: var(--mono); letter-spacing: 0.04em; }
.breadcrumbs a { color: var(--slate); text-decoration: none; }
.breadcrumbs a:hover { color: var(--navy); }
.breadcrumbs span[aria-current] { color: var(--navy); }
.breadcrumbs__sep { margin: 0 8px; color: var(--border-strong); }

/* ---------------- Decorative mark ---------------- */
.mark { width: 24px; height: 24px; vertical-align: middle; color: var(--gold); display: inline-block; }

/* ---------------- Page header (subpage hero) ---------------- */
.page-head { padding: 80px 0 48px; background: linear-gradient(180deg, var(--paper) 0%, var(--cream) 100%); border-bottom: 1px solid var(--border); }
.page-head .eyebrow { margin-bottom: 14px; display: inline-block; }
.page-head h1 { margin-bottom: 16px; max-width: 820px; }
.page-head p.lead { max-width: 720px; color: var(--slate-dark); }

/* ---------------- Prose / long-form content ---------------- */
.prose { max-width: 760px; }
.prose h2 { margin: 48px 0 16px; }
.prose h3 { margin: 36px 0 12px; }
.prose p { margin-bottom: 1.1em; font-size: 17px; line-height: 1.7; }
.prose ul, .prose ol { margin: 0 0 1.3em 0; padding-left: 1.5em; }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--navy); }

/* ---------------- Data strip (proof bar) ---------------- */
.data-strip { display: grid; grid-template-columns: 1fr; gap: 32px; padding: 40px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
@media (min-width: 720px) { .data-strip { grid-template-columns: repeat(4, 1fr); } }
.data-stat { text-align: left; }
.data-stat__num { font-family: var(--serif); font-size: 40px; color: var(--navy); font-weight: 600; line-height: 1; margin-bottom: 6px; }
.data-stat__label { font-size: 13px; color: var(--slate); text-transform: uppercase; letter-spacing: 0.12em; font-family: var(--mono); }

/* ==========================================================================
   Extension block, additional classes used by service pages (2026-04-22)
   ========================================================================== */

/* Container variants */
.container--narrow { max-width: 820px; margin: 0 auto; padding: 0 var(--gutter); }

/* Eyebrow variants */
.eyebrow--centered { display: block; text-align: center; margin-bottom: 14px; }
.eyebrow--on-dark { color: var(--gold); }

/* Section-level titles used on subpages */
.section-title { text-align: center; max-width: 760px; margin: 0 auto 16px; }
.section-sub { text-align: center; max-width: 720px; margin: 0 auto 56px; font-size: 18px; color: var(--slate-dark); }

/* Band aliases (double-dash variant) */
section.band { padding: 96px 0; }
section.band--cream { background: var(--cream); }
section.band--navy { background: var(--navy); color: var(--paper); }
section.band--navy h1, section.band--navy h2, section.band--navy h3 { color: var(--paper); }
section.band--navy .eyebrow { color: var(--gold); }
section.band--navy a { color: var(--gold); text-decoration-color: var(--gold-light); }
section.band--walnut { background: var(--walnut); color: var(--paper); }
section.band--walnut h1, section.band--walnut h2, section.band--walnut h3 { color: var(--paper); }
section.band--walnut .eyebrow { color: var(--walnut-pale); }

/* Compliance statement (walnut band) */
.compliance-statement { font-family: var(--serif); font-size: 19px; line-height: 1.55; color: var(--paper); max-width: 760px; margin: 0 auto; text-align: center; }

/* Page-head extensions */
.page-head__lede { font-size: 21px; line-height: 1.55; color: var(--slate-dark); max-width: 760px; margin-top: 20px; }
.page-head__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 32px; align-items: center; }

/* Imaged page head, shares the signature photograph with the homepage hero
   for a coherent visual signature across the three primary product pages. */
.page-head--imaged {
  position: relative;
  padding: 120px 0 80px;
  background-color: var(--navy-deep);
  background-image: url('https://images.unsplash.com/photo-1703699502638-7751c4acd044?w=1920&q=80&auto=format&fit=crop');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border-bottom: 1px solid rgba(201, 162, 75, 0.22);
  overflow: hidden;
  color: var(--ivory);
}
.page-head--imaged::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 25% 25%, rgba(27, 42, 65, 0.45), transparent 60%),
    linear-gradient(180deg, rgba(10, 20, 36, 0.82) 0%, rgba(10, 20, 36, 0.92) 100%);
  z-index: 0;
}
.page-head--imaged > .container,
.page-head--imaged > .container--narrow { position: relative; z-index: 1; }
.page-head--imaged .breadcrumbs { color: rgba(245, 241, 232, 0.7); }
.page-head--imaged .breadcrumbs a { color: rgba(245, 241, 232, 0.85); }
.page-head--imaged .breadcrumbs a:hover { color: var(--gold); }
.page-head--imaged .breadcrumbs [aria-current="page"] { color: var(--gold); }
.page-head--imaged .eyebrow { color: var(--gold); border-bottom: 1px solid rgba(201, 162, 75, 0.4); padding-bottom: 10px; }
.page-head--imaged h1 { color: var(--ivory); font-weight: 400; letter-spacing: -0.015em; }
.page-head--imaged .page-head__lede { color: rgba(245, 241, 232, 0.88); max-width: 760px; }
.page-head--imaged .page-head__actions .btn--text { color: var(--gold); }
.page-head--imaged .page-head__actions .btn--text:hover { color: var(--paper); }
@media (max-width: 720px) {
  .page-head--imaged { padding: 88px 0 64px; }
}

/* CTA band */
.cta-band { text-align: center; }
.cta-band h2 { color: var(--paper); margin-bottom: 16px; max-width: 720px; margin-left: auto; margin-right: auto; }
.cta-band p { color: #C8CDD6; max-width: 640px; margin: 0 auto 32px; font-size: 18px; }
.cta-band__buttons { display: inline-flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* Service cards (services/index) */
.grid-2--wide { display: grid; gap: 32px; grid-template-columns: 1fr; }
@media (min-width: 860px) { .grid-2--wide { grid-template-columns: 1fr 1fr; gap: 40px; } }
.service-card { background: var(--paper); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 40px; display: flex; flex-direction: column; transition: border-color var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease); }
.service-card:hover { border-color: var(--border-dark); box-shadow: 0 12px 32px -18px rgba(27,42,65,0.18); }
.service-card h2 { margin: 10px 0 6px; font-size: 32px; }
.service-card h2 a { color: var(--navy); text-decoration: none; }
.service-card h2 a:hover { color: var(--walnut); }
.service-card__price { font-family: var(--mono); font-size: 15px; color: var(--walnut); margin-bottom: 16px; letter-spacing: 0.02em; }
.service-card p { color: var(--charcoal); margin-bottom: 20px; }
.service-card__bullets { list-style: none; padding: 0; margin: 0 0 28px; display: flex; flex-direction: column; gap: 8px; font-size: 15px; flex-grow: 1; }
.service-card__bullets li { padding-left: 22px; position: relative; color: var(--slate-dark); }
.service-card__bullets li::before { content: ""; position: absolute; left: 0; top: 10px; width: 10px; height: 2px; background: var(--gold); }

/* Features (three-column inline blocks) */
.feature { padding: 24px 0; }
.feature__num { display: block; font-family: var(--mono); font-size: 13px; font-weight: 500; color: var(--walnut); letter-spacing: 0.12em; margin-bottom: 12px; }
.feature h3 { margin-bottom: 10px; font-size: 22px; }
.feature p { color: var(--slate-dark); }

/* Pricing card extensions (fresh BEM structure) */
.pricing-card__header { margin-bottom: 20px; }
.pricing-card__tier { font-family: var(--serif); font-size: 26px; color: var(--navy); font-weight: 600; display: block; }
.pricing-card__size { font-size: 14px; color: var(--slate); margin-top: 4px; }
.pricing-card__price span { font-family: var(--sans); font-size: 15px; color: var(--slate); font-weight: 400; margin-left: 4px; }
.pricing-card__features { list-style: none; padding: 0; margin: 24px 0 28px; display: flex; flex-direction: column; gap: 10px; font-size: 15px; flex-grow: 1; }
.pricing-card__features li { padding-left: 22px; position: relative; color: var(--charcoal); }
.pricing-card__features li::before { content: ""; position: absolute; left: 0; top: 10px; width: 10px; height: 2px; background: var(--gold); }
.pricing-card__badge { position: absolute; top: -12px; left: 28px; background: var(--gold); color: var(--navy); font-family: var(--mono); font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; padding: 4px 10px; border-radius: 2px; }
.pricing-footnote { font-size: 14px; color: var(--slate); max-width: 720px; margin: 32px auto 0; text-align: center; line-height: 1.6; }

/* Button variants */
.btn--full { width: 100%; justify-content: center; }

/* Callout variants */
.callout--gold { background: rgba(201,162,75,0.08); border-left: 4px solid var(--gold); padding: 32px; border-radius: 0 var(--radius-md) var(--radius-md) 0; margin: 40px 0; }
.callout--gold h3 { margin: 8px 0 12px; }
.callout--gold p { margin-bottom: 12px; }

/* Promise (new BEM variant used on Anchor Plan page) */
.promise--on-dark { display: flex; flex-direction: column; gap: 20px; max-width: 720px; margin: 0 auto; padding: 0; }
.promise--on-dark p { font-family: var(--serif); font-size: 22px; line-height: 1.4; color: var(--paper); padding-left: 32px; position: relative; margin: 0; }
.promise--on-dark p::before { content: ""; position: absolute; left: 0; top: 14px; width: 18px; height: 2px; background: var(--gold); }

/* FAQ details-based variant (service pages use native <details>) */
details.faq-item { border-bottom: 1px solid var(--border); padding: 0; }
details.faq-item:first-of-type { border-top: 1px solid var(--border); }
details.faq-item summary { list-style: none; cursor: pointer; padding: 24px 40px 24px 0; font-family: var(--serif); font-size: 19px; color: var(--navy); font-weight: 600; position: relative; }
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after { content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%); font-family: var(--sans); font-weight: 400; font-size: 28px; color: var(--gold); line-height: 1; transition: transform var(--t-fast) var(--ease); }
details.faq-item[open] summary::after { content: "–"; }
details.faq-item p { padding: 0 40px 24px 0; color: var(--charcoal); font-size: 16.5px; line-height: 1.65; margin: 0; }
.faq-cta { margin-top: 32px; font-size: 15px; color: var(--slate); text-align: center; }

/* Prose variants */
.prose--wide { max-width: var(--content-max); }

/* Checklist grid (Anchor Plan in-scope list) */
.checklist-grid { display: grid; grid-template-columns: 1fr; gap: 32px; margin: 32px 0 16px; }
@media (min-width: 720px) { .checklist-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1040px) { .checklist-grid { grid-template-columns: 1fr 1fr 1fr 1fr; gap: 28px; } }
.checklist h4 { font-family: var(--sans); font-size: 13px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--walnut); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.checklist ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.checklist li { font-size: 14.5px; line-height: 1.5; color: var(--charcoal); padding-left: 18px; position: relative; }
.checklist li::before { content: ""; position: absolute; left: 0; top: 9px; width: 8px; height: 2px; background: var(--gold); }

/* Mini pricing table (Guardian, Rental) */
.mini-pricing { margin: 32px 0; overflow-x: auto; }
.price-table { width: 100%; border-collapse: collapse; font-size: 15px; }
.price-table thead th { font-family: var(--mono); font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--slate); padding: 12px 16px; border-bottom: 2px solid var(--border-dark); text-align: left; }
.price-table tbody td { padding: 16px; border-bottom: 1px solid var(--border); color: var(--charcoal); }
.price-table tbody tr:last-child td { border-bottom: none; }
.price-table tbody tr:hover { background: var(--paper-warm); }
.discount-note { font-size: 12px; color: var(--walnut); font-family: var(--mono); margin-left: 4px; }

/* Plain lists (used on detail pages) */
.plain-list { list-style: none; padding: 0; margin: 16px 0; display: flex; flex-direction: column; gap: 10px; }
.plain-list li { padding-left: 22px; position: relative; color: var(--charcoal); font-size: 16px; line-height: 1.55; }
.plain-list li::before { content: ""; position: absolute; left: 0; top: 10px; width: 10px; height: 2px; background: var(--gold); }
.plain-list--centered { max-width: 520px; margin: 24px auto; }

/* Pull quote (new BEM variant) */
.pull-quote { font-family: var(--serif); font-size: 24px; line-height: 1.4; color: var(--navy); max-width: 720px; margin: 40px 0; padding: 0 24px; border-left: 3px solid var(--gold); }
.pull-quote cite { display: block; margin-top: 16px; font-family: var(--sans); font-size: 14px; color: var(--slate); font-style: normal; }

/* Numbered steps (vertical list, used on Entry Visit + Guardian) */
.steps--numbered { list-style: none; padding: 0; counter-reset: anchor-step; display: flex; flex-direction: column; gap: 32px; max-width: 820px; margin: 32px auto 0; }
.steps--numbered li { padding-left: 64px; position: relative; counter-increment: anchor-step; }
.steps--numbered li::before { content: counter(anchor-step, decimal-leading-zero); position: absolute; left: 0; top: 2px; width: 48px; height: 48px; background: var(--navy); color: var(--gold); font-family: var(--mono); font-size: 14px; font-weight: 500; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; letter-spacing: 0.02em; }
.steps--numbered li h3 { margin-bottom: 8px; font-size: 22px; }
.steps--numbered li p { color: var(--slate-dark); margin: 0; }

/* Note, small emphasis paragraph */
.note { font-size: 15px; color: var(--slate); border-top: 1px dashed var(--border-dark); padding-top: 16px; margin-top: 24px; }

/* Two-column extension without sidebar styling */
.two-col > div { padding: 8px 0; }
.two-col h2 { font-size: 28px; margin-bottom: 16px; }

/* Definition-list style fact sheet (About page) */
.fact-list { margin: 32px 0 0; padding: 0; border-top: 1px solid var(--border); }
.fact-list__row { display: grid; grid-template-columns: 220px 1fr; gap: 24px; padding: 18px 0; border-bottom: 1px solid var(--border); align-items: baseline; }
.fact-list__row dt { font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--slate); margin: 0; }
.fact-list__row dd { margin: 0; color: var(--charcoal); font-size: 17px; line-height: 1.6; }
.fact-list__row dd a { color: var(--navy); text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: 3px; }
@media (max-width: 640px) {
  .fact-list__row { grid-template-columns: 1fr; gap: 6px; padding: 14px 0; }
}

/* Pricing grid on pricing page, 4-up cards */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 32px; }
@media (max-width: 1100px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-4 { grid-template-columns: 1fr; } }
.pricing-grid { align-items: stretch; }
.pricing-grid .pricing-card { display: flex; flex-direction: column; }
.pricing-grid .pricing-card__features { flex: 1; }

/* Form fields (booking + contact) */
.field { display: flex; flex-direction: column; margin-bottom: 20px; }
.field label { font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--slate-dark); margin-bottom: 8px; font-weight: 500; }
.field__opt { color: var(--slate); text-transform: none; letter-spacing: 0; font-weight: 400; font-family: var(--sans); font-size: 12px; }
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field select,
.field textarea {
  font-family: var(--sans); font-size: 16px; color: var(--charcoal);
  padding: 13px 14px; border: 1px solid var(--border-dark); border-radius: 4px;
  background: var(--paper); transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
  width: 100%; box-sizing: border-box;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(27, 42, 65, 0.15);
}
.field textarea { resize: vertical; min-height: 120px; font-family: var(--sans); line-height: 1.5; }
.field select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%236B7280' d='M6 8L0 0h12z'/></svg>"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 540px) { .field-row { grid-template-columns: 1fr; } }
.field--consent { margin-top: 8px; }
.field--consent .checkbox { display: flex; align-items: flex-start; gap: 12px; cursor: pointer; }
.field--consent .checkbox input { margin-top: 4px; width: 18px; height: 18px; accent-color: var(--navy); flex-shrink: 0; }
.field--consent .checkbox span { font-size: 14.5px; color: var(--slate-dark); line-height: 1.5; }
.form-note { font-size: 14.5px; color: var(--slate); margin-top: 16px; text-align: center; }
.form-note a { color: var(--navy); text-decoration: underline; text-decoration-color: var(--gold); }

/* Booking two-column layout */
.booking-grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); gap: 48px; align-items: start; }
@media (max-width: 900px) { .booking-grid { grid-template-columns: 1fr; gap: 40px; } }
.booking-grid__aside { display: flex; flex-direction: column; gap: 24px; }
.aside-card { background: var(--cream); border: 1px solid var(--border); border-radius: 6px; padding: 28px 28px 24px; }
.aside-card--navy { background: var(--navy); border-color: var(--navy); color: var(--paper); }
.aside-card .fact-list { margin-top: 16px; border-top: 1px solid var(--border-dark); }
.aside-card .fact-list__row { grid-template-columns: 120px 1fr; padding: 12px 0; font-size: 15px; }
.aside-card .fact-list__row dd { font-size: 15px; }
.aside-steps { list-style: none; counter-reset: aside-step; padding: 0; margin: 20px 0 0; display: flex; flex-direction: column; gap: 18px; }
.aside-steps li { padding-left: 44px; position: relative; counter-increment: aside-step; color: var(--charcoal); font-size: 15.5px; line-height: 1.55; }
.aside-steps li::before { content: counter(aside-step, decimal-leading-zero); position: absolute; left: 0; top: 0; width: 32px; height: 32px; background: var(--navy); color: var(--gold); font-family: var(--mono); font-size: 11px; font-weight: 500; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; letter-spacing: 0.02em; }
.aside-steps li strong { display: block; color: var(--navy); font-family: var(--serif); font-size: 17px; font-weight: 600; margin-bottom: 2px; }
.aside-steps li span { color: var(--slate-dark); }

/* Contact page big links */
.contact-big { font-family: var(--serif); font-size: 24px; color: var(--navy); text-decoration: none; display: inline-block; margin: 6px 0 10px; border-bottom: 2px solid var(--gold); padding-bottom: 2px; }
.contact-big:hover { color: var(--walnut); }
.contact-addr { font-family: var(--serif); font-size: 20px; color: var(--navy); margin: 6px 0 10px; line-height: 1.4; }

/* Field-Notes empty state */
.field-notes-coming { text-align: left; padding: 8px 0 16px; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0ms !important; transition-duration: 0ms !important; scroll-behavior: auto !important; }
}

/* ==========================================================================
   Royal-Shell-inspired editorial homepage system (2026-04-22)
   Dark-dominant. Photo-tile forward. Minimal copy. Mobile-first.
   ========================================================================== */

/* ---------- Dark hero, full-viewport, editorial ---------- */
.hero--dark {
  position: relative;
  background-color: var(--navy-deep);
  background-image: url('https://images.unsplash.com/photo-1703699502638-7751c4acd044?w=1920&q=80&auto=format&fit=crop');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: var(--ivory);
  padding: 0;
  overflow: hidden;
  min-height: 88vh;
  display: flex;
  align-items: center;
}
.hero--dark::before {
  /* Dark editorial wash that preserves a hint of the photograph beneath. */
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(27, 42, 65, 0.4), transparent 55%),
    radial-gradient(ellipse at 80% 70%, rgba(46, 31, 20, 0.35), transparent 55%),
    linear-gradient(180deg, rgba(10, 20, 36, 0.78) 0%, rgba(10, 20, 36, 0.88) 100%);
  z-index: 0;
}
.hero--dark::after {
  /* Bottom vignette for type legibility */
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.55) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero--dark__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 96px 0 80px;
}
.hero--dark__eyebrow {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gold-soft);
}
.hero--dark h1 {
  font-family: var(--serif);
  color: var(--ivory);
  font-weight: 400;
  font-size: clamp(40px, 8.5vw, 92px);
  line-height: 1.02;
  letter-spacing: -0.018em;
  max-width: 14ch;
  margin-bottom: 32px;
}
.hero--dark h1 em {
  font-style: italic;
  color: var(--ivory);
  font-weight: 400;
}
.hero--dark__sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(17px, 2.2vw, 21px);
  line-height: 1.5;
  color: rgba(246, 241, 231, 0.78);
  max-width: 48ch;
  margin-bottom: 48px;
}
.hero--dark__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border: 1px solid var(--ivory);
  color: var(--ivory);
  background: transparent;
  text-decoration: none;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}
.btn-ghost:hover {
  background: var(--ivory);
  color: var(--navy-deep);
}
.btn-ghost--gold {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-ghost--gold:hover {
  background: var(--gold);
  color: var(--navy-deep);
  border-color: var(--gold);
}
.hero--dark__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(246, 241, 231, 0.4);
}

/* ---------- Intro strip (walnut band, one sentence) ---------- */
.intro-strip {
  background: var(--walnut-deep);
  color: var(--ivory);
  padding: 48px 0;
  text-align: center;
  border-top: 1px solid rgba(201, 162, 75, 0.12);
  border-bottom: 1px solid rgba(201, 162, 75, 0.12);
}
.intro-strip p {
  font-family: var(--serif);
  font-size: clamp(18px, 2.2vw, 24px);
  font-style: italic;
  line-height: 1.5;
  color: rgba(246, 241, 231, 0.9);
  max-width: 68ch;
  margin: 0 auto;
}

/* ---------- Section title, editorial, centered ---------- */
.section-head--editorial {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 64px;
}
.section-head--editorial .eyebrow {
  display: inline-block;
  color: var(--gold);
  margin-bottom: 20px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gold-soft);
}
.section-head--editorial h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--navy);
  margin-bottom: 0;
}
.section-head--editorial__sub {
  max-width: 720px;
  margin: var(--space-lg) auto 0;
  font-family: var(--serif);
  font-size: clamp(17px, 1.6vw, 19px);
  line-height: 1.65;
  color: var(--ink-mid, #4a4a4a);
}
.section-head--editorial--on-dark h2 { color: var(--ivory); }
.section-head--editorial--on-dark .eyebrow { color: var(--gold); }
.section-head--editorial--on-dark .section-head--editorial__sub { color: rgba(244, 240, 232, 0.82); }

/* ---------- Area tiles v2, Royal-Shell pattern ---------- */
.area-tiles-v2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid rgba(201, 162, 75, 0.1);
  border-left: 1px solid rgba(201, 162, 75, 0.1);
}
@media (min-width: 640px) {
  .area-tiles-v2 { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 960px) {
  .area-tiles-v2 { grid-template-columns: repeat(3, 1fr); }
}
.area-tile-v2 {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  aspect-ratio: 4 / 3;
  padding: 32px 28px;
  text-decoration: none;
  color: var(--ivory);
  overflow: hidden;
  border-right: 1px solid rgba(201, 162, 75, 0.1);
  border-bottom: 1px solid rgba(201, 162, 75, 0.1);
  isolation: isolate;
  background: var(--navy-deep);
  transition: transform var(--t-med) var(--ease);
}
.area-tile-v2::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(27, 42, 65, 0.8), transparent 60%),
    linear-gradient(155deg, var(--navy-mid) 0%, var(--navy-deep) 55%, var(--walnut-deep) 100%);
  z-index: -2;
  transition: transform var(--t-med) var(--ease), filter var(--t-med) var(--ease);
}
.area-tile-v2::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 15, 27, 0.1) 0%, rgba(7, 15, 27, 0.78) 100%);
  z-index: -1;
  transition: background var(--t-med) var(--ease);
}
.area-tile-v2:hover::before {
  transform: scale(1.04);
  filter: brightness(1.12);
}
.area-tile-v2:hover::after {
  background: linear-gradient(180deg, rgba(7, 15, 27, 0.05) 0%, rgba(7, 15, 27, 0.65) 100%);
}
.area-tile-v2__zip {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.area-tile-v2__zip::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--gold);
}
.area-tile-v2__name {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ivory);
  margin: 0;
}
.area-tile-v2__meta {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(246, 241, 231, 0.55);
  margin-top: 14px;
}
/* Accent tile variants, subtle palette shifts per row */
.area-tile-v2--walnut::before {
  background:
    radial-gradient(circle at 70% 30%, rgba(61, 40, 23, 0.8), transparent 60%),
    linear-gradient(155deg, var(--walnut-mid) 0%, var(--walnut-deep) 55%, var(--navy-deep) 100%);
}
.area-tile-v2--feature {
  background: var(--walnut-deep);
}
.area-tile-v2--feature::before {
  background:
    radial-gradient(circle at 50% 40%, rgba(107, 68, 35, 0.4), transparent 60%),
    linear-gradient(155deg, var(--walnut-mid) 0%, var(--navy-deep) 100%);
}
.area-tile-v2--all {
  justify-content: center;
  align-items: center;
  text-align: center;
  background: var(--navy-deep);
}
.area-tile-v2--all::before {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy-dark));
}
.area-tile-v2--all .area-tile-v2__name { font-style: italic; }

/* ---------- Feature band, dark overlay on image (Royal Shell pattern) ---------- */
.feature-band {
  position: relative;
  background: var(--navy-deep);
  color: var(--ivory);
  padding: 120px 0;
  overflow: hidden;
}
.feature-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--navy-deep) 0%, rgba(7, 15, 27, 0.65) 45%, rgba(7, 15, 27, 0.15) 100%),
    radial-gradient(ellipse at 80% 50%, var(--walnut-mid) 0%, transparent 65%),
    linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-deep) 100%);
  z-index: 0;
}
.feature-band__inner {
  position: relative;
  z-index: 1;
  max-width: 620px;
}
.feature-band__eyebrow {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gold-soft);
}
.feature-band h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 5.2vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.015em;
  color: var(--ivory);
  margin-bottom: 28px;
}
.feature-band h2 em { font-style: italic; }
.feature-band__body {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.55;
  color: rgba(246, 241, 231, 0.8);
  margin-bottom: 36px;
  max-width: 52ch;
}
.feature-band__body p + p { margin-top: 14px; }
.feature-band__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 26px;
  background: transparent;
  color: var(--ivory);
  border: 1px solid var(--ivory);
  text-decoration: none;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.feature-band__cta:hover {
  background: var(--ivory);
  color: var(--navy-deep);
}

/* ---------- Process strip v2, near-black, mono-numbered ---------- */
.process-v2 {
  background: var(--navy-deep);
  color: var(--ivory);
  padding: 112px 0;
}
.process-v2__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid rgba(201, 162, 75, 0.15);
}
@media (min-width: 860px) {
  .process-v2__grid { grid-template-columns: repeat(3, 1fr); }
}
.process-v2__step {
  padding: 44px 32px;
  border-bottom: 1px solid rgba(201, 162, 75, 0.15);
  position: relative;
}
@media (min-width: 860px) {
  .process-v2__step {
    border-bottom: none;
    border-right: 1px solid rgba(201, 162, 75, 0.15);
  }
  .process-v2__step:last-child { border-right: none; }
}
.process-v2__num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 22px;
  display: block;
}
.process-v2__step h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 26px;
  line-height: 1.2;
  color: var(--ivory);
  margin-bottom: 12px;
}
.process-v2__step p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(246, 241, 231, 0.72);
  margin: 0;
}

/* ---------- Editorial pull quote, the one ivory break ---------- */
.pull-quote--editorial {
  background: var(--ivory);
  padding: 120px 0;
  text-align: center;
}
.pull-quote--editorial__eyebrow {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--walnut);
  margin-bottom: 32px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(107, 68, 35, 0.3);
}
.pull-quote--editorial blockquote {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(24px, 3.6vw, 38px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--navy-deep);
  max-width: 22ch;
  margin: 0 auto 32px;
}
.pull-quote--editorial__cite {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--walnut);
  font-style: normal;
}
.pull-quote--editorial__cite span {
  display: block;
  margin-top: 6px;
  letter-spacing: 0.14em;
  color: var(--slate);
}

/* ---------- CTA band v2, dark, editorial closer ---------- */
.cta-band--dark {
  position: relative;
  background: var(--navy-deep);
  color: var(--ivory);
  padding: 128px 0;
  text-align: center;
  overflow: hidden;
}
.cta-band--dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(201, 162, 75, 0.09), transparent 55%),
    linear-gradient(180deg, var(--navy-deep), var(--navy-dark));
  z-index: 0;
}
.cta-band--dark__inner {
  position: relative;
  z-index: 1;
}
.cta-band--dark .eyebrow {
  display: inline-block;
  color: var(--gold);
  margin-bottom: 24px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gold-soft);
}
.cta-band--dark h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(34px, 5.5vw, 60px);
  line-height: 1.06;
  letter-spacing: -0.015em;
  color: var(--ivory);
  margin-bottom: 24px;
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
}
.cta-band--dark p {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.55;
  color: rgba(246, 241, 231, 0.7);
  max-width: 54ch;
  margin: 0 auto 44px;
}
.cta-band--dark__actions {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* ---------- Trust strip (just under hero, small, uppercase mono pills) ---------- */
.trust-strip {
  background: var(--navy-dark);
  border-top: 1px solid rgba(201, 162, 75, 0.1);
  border-bottom: 1px solid rgba(201, 162, 75, 0.1);
  padding: 20px 0;
}
.trust-strip__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px 32px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(246, 241, 231, 0.55);
}
.trust-strip__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.trust-strip__item::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
}

/* ---------- Services two-up, dark ---------- */
.services-editorial {
  background: var(--navy-dark);
  color: var(--ivory);
  padding: 112px 0;
}
.services-editorial__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid rgba(201, 162, 75, 0.12);
  border-left: 1px solid rgba(201, 162, 75, 0.12);
}
@media (min-width: 860px) {
  .services-editorial__grid { grid-template-columns: 1fr 1fr; }
}
.service-editorial-card {
  display: block;
  padding: 48px 40px;
  text-decoration: none;
  color: var(--ivory);
  border-right: 1px solid rgba(201, 162, 75, 0.12);
  border-bottom: 1px solid rgba(201, 162, 75, 0.12);
  transition: background var(--t-med) var(--ease);
}
.service-editorial-card:hover {
  background: rgba(201, 162, 75, 0.04);
}
.service-editorial-card__eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 20px;
}
.service-editorial-card__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.15;
  color: var(--ivory);
  margin: 0 0 12px;
}
.service-editorial-card__price {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 18px;
  display: block;
}
.service-editorial-card__desc {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(246, 241, 231, 0.72);
  margin: 0 0 28px;
  max-width: 40ch;
}
.service-editorial-card__more {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--gold);
}
.service-editorial-card:hover .service-editorial-card__more { color: var(--gold); }

/* ---------- Mobile refinements ---------- */
@media (max-width: 640px) {
  .hero--dark { min-height: 78vh; }
  .hero--dark__inner { padding: 72px 0 60px; }
  .hero--dark__actions .btn-ghost { width: 100%; }
  .feature-band { padding: 88px 0; }
  .process-v2 { padding: 80px 0; }
  .process-v2__step { padding: 36px 24px; }
  .cta-band--dark { padding: 96px 0; }
  .pull-quote--editorial { padding: 88px 0; }
  .service-editorial-card { padding: 36px 28px; }
  .intro-strip { padding: 36px 0; }
}

/* ==========================================================================
   Late-stage overrides (2026-04-23). Kept at the end of the file on purpose.
   ========================================================================== */

/* Breadcrumbs — fix the numbered <ol> rendering */
.breadcrumbs ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.breadcrumbs li { display: inline-flex; align-items: center; }
.breadcrumbs li + li::before {
  content: "/";
  margin: 0 10px;
  color: var(--border-strong);
  font-family: var(--mono);
}
.breadcrumbs [aria-current="page"] { color: var(--navy); font-weight: 500; }

/* Button color overrides in dark bands — keep .btn--gold navy-on-gold readable */
section.band--navy a.btn--gold,
section.band--walnut a.btn--gold,
section.band-navy a.btn--gold,
section.band-walnut a.btn--gold,
.cta-band--dark a.btn--gold {
  color: var(--navy);
  text-decoration: none;
}
section.band--navy a.btn--gold:hover,
section.band--walnut a.btn--gold:hover,
section.band-navy a.btn--gold:hover,
section.band-walnut a.btn--gold:hover,
.cta-band--dark a.btn--gold:hover {
  background: var(--gold-dark);
  color: var(--navy);
}
/* Secondary button on dark bands reads as paper outline, not navy-on-navy */
section.band--navy a.btn--secondary,
section.band--walnut a.btn--secondary,
section.band-navy a.btn--secondary,
section.band-walnut a.btn--secondary {
  color: var(--paper);
  border-color: var(--paper);
  background: transparent;
  text-decoration: none;
}
section.band--navy a.btn--secondary:hover,
section.band--walnut a.btn--secondary:hover,
section.band-navy a.btn--secondary:hover,
section.band-walnut a.btn--secondary:hover {
  background: var(--paper);
  color: var(--navy);
}
/* btn--primary on dark bands: invert to paper on gold hairline */
section.band--navy a.btn--primary,
section.band--walnut a.btn--primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
section.band--navy a.btn--primary:hover,
section.band--walnut a.btn--primary:hover {
  background: var(--gold-dark);
  color: var(--navy);
}

/* Pricing grid — 3 columns (Cottage killed), not 4 */
@media (min-width: 880px) {
  .pricing-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; }
}
/* Kill the CSS-pseudo "Most common" badge — we render it as a span now */
.pricing-card--featured::before { content: none; display: none; }
/* Resolve the double-bullet conflict on pricing-card__features */
.pricing-card ul.pricing-card__features { list-style: none; padding: 0; margin: 24px 0 28px; display: flex; flex-direction: column; gap: 10px; font-size: 15px; flex-grow: 1; }
.pricing-card ul.pricing-card__features li { display: block; padding-left: 22px; position: relative; color: var(--charcoal); margin: 0; }
.pricing-card ul.pricing-card__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 2px;
  background: var(--gold);
  border-radius: 0;
  margin: 0;
  flex: none;
}

/* Compliance statement — no longer locked to paper text; inherits from band */
.compliance-statement { color: inherit; }
section.band--walnut .compliance-statement,
section.band-walnut .compliance-statement,
section.band--navy .compliance-statement,
section.band-navy .compliance-statement { color: var(--paper); }
section.band--cream .compliance-statement,
section.band-cream .compliance-statement,
section:not([class*="band"]) .compliance-statement { color: var(--slate-dark); }

/* Eyebrow on light band when re-using the --on-dark modifier */
section.band--cream .eyebrow--on-dark,
section.band-cream .eyebrow--on-dark { color: var(--walnut); }
