/* ============================================================
   Marriage License Notary — Global Styles
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,500;1,600&family=Dancing+Script:wght@500;600;700&family=Lato:wght@300;400;700;900&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:        #BC9A55;
  --gold-dark:   #9C7E3C;
  --gold-light:  #E4D0A8;
  --gold-bg:     #F6EFDD;
  --charcoal:    #2B2925;
  --dark:        #1A1815;
  --text:        #3C3A34;
  --text-light:  #6E675C;
  --white:       #FFFFFF;
  --off-white:   #FBF9F5;
  --border:      #E8E0D2;
  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Lato', Arial, sans-serif;
  --font-script: 'Dancing Script', cursive;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Announcement Bar ─────────────────────────────────────── */
.announcement-bar {
  background: var(--dark);
  color: #C8B99A;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  padding: 0.6rem 1.5rem;
  text-align: center;
}
.announcement-bar .bar-divider { color: var(--gold); font-size: 0.4rem; }
.announcement-bar span { display: flex; align-items: center; gap: 0.45rem; }
.announcement-bar svg { flex-shrink: 0; color: var(--gold); }

/* ── Header ───────────────────────────────────────────────── */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 1.1rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo { flex-shrink: 0; line-height: 1; }
.logo-text {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.18rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--charcoal);
  line-height: 1.18;
}
.logo-script {
  font-family: var(--font-script);
  font-size: 1.15rem;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.15rem;
  font-weight: 600;
}
.logo-script::before, .logo-script::after {
  content: '';
  height: 1px;
  width: 22px;
  background: var(--gold-light);
}
.logo-script::after { flex: 1; max-width: 40px; }

.site-nav { display: flex; align-items: center; gap: 0.15rem; }
.site-nav a {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--text-light);
  padding: 0.5rem 0.85rem;
  transition: color 0.2s;
  position: relative;
}
.site-nav a:hover, .site-nav a.active { color: var(--charcoal); }
.site-nav a.active::after {
  content: '◆';
  position: absolute;
  left: 0; right: 0;
  bottom: -0.55rem;
  text-align: center;
  color: var(--gold);
  font-size: 0.4rem;
}
.btn-nav-cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 0.7rem 1.3rem !important;
  font-weight: 700 !important;
  font-size: 0.66rem !important;
  letter-spacing: 0.12em !important;
  margin-left: 0.6rem;
  transition: background 0.2s !important;
}
.btn-nav-cta:hover { background: var(--gold-dark) !important; }
.btn-nav-cta.active::after { display: none !important; }

.menu-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  padding: 0.4rem; color: var(--charcoal);
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 0.95rem 1.9rem;
  cursor: pointer;
  border: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  text-align: center;
}
.btn-primary { background: var(--gold); color: var(--white); }
.btn-primary:hover { background: var(--gold-dark); }
.btn-dark { background: var(--charcoal); color: var(--white); }
.btn-dark:hover { background: var(--dark); }
.btn-outline { background: transparent; color: var(--charcoal); border: 1.5px solid #B7AE9C; }
.btn-outline:hover { background: var(--charcoal); color: var(--white); border-color: var(--charcoal); }

/* ── Layout shell ─────────────────────────────────────────── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 2.5rem; }

/* Gold decorative rule */
.gold-rule {
  width: 56px;
  height: 1.5px;
  background: var(--gold);
  margin: 1.1rem 0;
}
.gold-rule.center { margin-left: auto; margin-right: auto; }

.section-label {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============================================================
   HOME HERO
   ============================================================ */
.hero { display: grid; grid-template-columns: 43% 57%; overflow: hidden; }
.hero-content {
  display: flex; flex-direction: column; justify-content: center;
  padding: 3.5rem 3rem 3.5rem 0;
  max-width: 560px;
  margin-left: auto;
  padding-left: 2.5rem;
}
.hero-eyebrow {
  font-size: 0.63rem; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.9rem;
}
.hero-heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3vw, 3.05rem);
  font-weight: 600; line-height: 1.12; color: var(--charcoal); margin-bottom: 1.25rem;
}
.hero-sub {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-light); margin-bottom: 1.75rem; max-width: 370px; line-height: 1.75;
}
.hero-buttons { display: flex; gap: 0.85rem; flex-wrap: wrap; margin-bottom: 1.75rem; }
.hero-badge {
  display: flex; align-items: flex-start; gap: 0.55rem;
  font-size: 0.64rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--text-light); max-width: 330px; line-height: 1.55;
  border-top: 1px solid var(--border); padding-top: 1.25rem;
}
.hero-badge svg { flex-shrink: 0; margin-top: 2px; color: var(--gold); }
.hero-image { position: relative; aspect-ratio: 1176/784; max-height: 640px; overflow: hidden; }
.hero-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 12%; }
.hero-image::before {
  content: ''; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background:
    linear-gradient(to right, rgba(255,255,255,0.45) 0%, rgba(255,255,255,0.08) 13%, transparent 27%),
    linear-gradient(to top, rgba(44,41,37,0.14) 0%, transparent 24%);
}
.hero-image::after {
  content: ''; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  box-shadow: inset 0 0 90px rgba(44,41,37,0.16);
}

/* Features bar */
.features-bar { border-top: 1px solid var(--border); padding: 2.75rem 0; }
.features-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.5rem; text-align: center; }
.feature-icon { color: var(--gold); margin: 0 auto 0.8rem; }
.feature-title {
  font-size: 0.63rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--charcoal); margin-bottom: 0.4rem;
}
.feature-desc { font-size: 0.78rem; color: var(--text-light); line-height: 1.55; }

/* Tagline bar */
.tagline-bar {
  background: var(--charcoal); color: var(--gold-light); text-align: center;
  padding: 1.15rem 2rem; font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
}
.tagline-bar .diamond { color: var(--gold); margin: 0 1.1rem; }

/* ============================================================
   INTERIOR — HERO ROW (heading left, image right)
   ============================================================ */
.lead {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 3.5rem;
  align-items: stretch;
  padding: 3.25rem 0 2.5rem;
}
.lead-text { max-width: 520px; align-self: center; }
.lead h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  font-weight: 600; color: var(--charcoal); line-height: 1.05; margin-bottom: 0.4rem;
}
/* hero image fills the column to the same height as the text, like the mockup */
.lead-img { min-height: 360px; border-radius: 3px; overflow: hidden; box-shadow: 0 14px 40px rgba(44,41,37,0.12); }
.lead-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }

.lead-eyebrow {
  font-size: 0.64rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.75rem;
}
.lead-intro {
  font-family: var(--font-serif);
  font-size: 1.3rem; font-weight: 500; font-style: italic;
  color: var(--gold-dark); line-height: 1.5; margin: 1.25rem 0;
}
.lead-body { font-size: 0.9rem; color: var(--text-light); line-height: 1.8; margin-bottom: 1.1rem; }
.lead-sub {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-light); line-height: 1.75; max-width: 420px;
}

/* ── Section wrap ─────────────────────────────────────────── */
.section { padding: 1rem 0 3.5rem; }
.section-narrow { max-width: 760px; margin: 0 auto; }

/* ============================================================
   CONTACT LINKS (shared)
   ============================================================ */
.contact-links { display: flex; flex-direction: column; gap: 0.6rem; }
.contact-link {
  display: flex; align-items: center; gap: 0.7rem;
  font-size: 0.88rem; color: var(--charcoal); transition: color 0.2s;
}
.contact-link:hover { color: var(--gold-dark); }
.contact-link svg { color: var(--gold); flex-shrink: 0; }

/* ============================================================
   CTA BAND (footer "Still have questions" with imagery)
   ============================================================ */
.cta-band {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  align-items: center;
  background: var(--off-white);
  border-radius: 3px;
  overflow: hidden;
  margin: 1rem 0 3.5rem;
}
.cta-band-inner { padding: 1.3rem 2.25rem; }
.cta-band-photo { position: relative; display: flex; align-items: center; }
/* the complete photo is shown; the block sizes to the photo's proportions, like the mockup */
.cta-band-photo img { width: 100%; height: auto; display: block; }
.cta-band h2 {
  font-family: var(--font-serif); font-size: 1.6rem; font-weight: 600;
  color: var(--charcoal); line-height: 1.1; margin-bottom: 0;
}
.cta-band .script {
  font-family: var(--font-script); font-size: 1.3rem; color: var(--gold-dark);
  font-weight: 600; margin-bottom: 0.45rem; display: block;
}
.cta-band .gold-rule { margin: 0.5rem 0; width: 42px; }
.cta-eyebrow {
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold-dark); margin-bottom: 0.5rem;
}
.cta-band .contact-links { margin-bottom: 0.8rem; gap: 0.35rem; }
.cta-band .contact-link { font-size: 0.8rem; }
.cta-band .btn { padding: 0.65rem 1.45rem; font-size: 0.66rem; }

/* ============================================================
   HOW IT WORKS — steps
   ============================================================ */
.hiw-steps { display: flex; flex-direction: column; gap: 0; margin-bottom: 1rem; }
.hiw-step {
  display: grid; grid-template-columns: 70px 56px 1fr;
  gap: 1.5rem; align-items: start;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
}
.hiw-step:first-child { border-top: 1px solid var(--border); }
.step-number {
  font-family: var(--font-serif); font-size: 2.6rem; font-weight: 500;
  color: var(--gold); line-height: 1; text-align: center;
}
.step-icon {
  width: 52px; height: 52px; border: 1.5px solid var(--gold-light); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: var(--gold);
}
.step-content h2 {
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--charcoal); margin-bottom: 0.5rem; padding-top: 0.4rem;
}
.step-content p { font-size: 0.88rem; color: var(--text-light); line-height: 1.75; }
.hiw-closing {
  font-family: var(--font-serif); font-size: 1.85rem; font-weight: 500; font-style: italic;
  color: var(--charcoal); line-height: 1.35; margin: 2.5rem 0 1.5rem; max-width: 460px;
}

/* ============================================================
   PRICING
   ============================================================ */
.price-banner {
  text-align: center; padding: 1rem 0 2.5rem; border-bottom: 1px solid var(--border); margin-bottom: 2.5rem;
}
.price-banner .label {
  font-size: 0.64rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.5rem;
}
.price-banner .amount {
  font-family: var(--font-serif); font-size: 2.5rem; font-weight: 500; color: var(--charcoal);
}
.price-banner .amount span { font-size: 3.4rem; font-weight: 600; color: var(--gold); }
.price-banner .note {
  font-size: 0.78rem; color: var(--text-light); font-style: italic; margin-top: 0.6rem; max-width: 540px; margin-left: auto; margin-right: auto;
}

.no-deposit { margin-bottom: 1.5rem; }
.no-deposit h2 {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.6rem;
}
.no-deposit p { font-size: 0.92rem; color: var(--text-light); line-height: 1.7; }
.guarantee { display: flex; align-items: center; gap: 0.6rem; font-size: 0.82rem; color: var(--text-light); margin-top: 0.9rem; }
.guarantee svg { color: var(--gold); }

.includes-box {
  background: var(--off-white); border: 1px solid var(--border); border-radius: 3px;
  padding: 2rem 2.25rem; margin-bottom: 3rem; display: grid; grid-template-columns: 56px 1fr; gap: 1.5rem; align-items: start;
}
.includes-box .ib-icon { color: var(--gold); }
.includes-label {
  font-size: 0.64rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--charcoal); margin-bottom: 0.85rem;
}
.pricing-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem 2rem; }
.pricing-list li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.86rem; color: var(--text); line-height: 1.5; }
.pricing-list li::before { content: '•'; color: var(--gold); font-size: 1rem; line-height: 1.35; flex-shrink: 0; }

.optional-label {
  font-size: 0.64rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); text-align: center; display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem;
}
.optional-label::before, .optional-label::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.optional-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; margin-bottom: 3.5rem; text-align: center; }
.optional-icon { color: var(--gold); margin: 0 auto 0.85rem; }
.optional-item h3 {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--charcoal); margin-bottom: 0.6rem;
}
.optional-item p { font-size: 0.83rem; color: var(--text-light); line-height: 1.65; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { margin: 0.5rem 0 3rem; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  width: 100%; background: none; border: none; padding: 1.2rem 0;
  display: flex; align-items: center; gap: 1.1rem; cursor: pointer; text-align: left;
}
.faq-q-number {
  width: 30px; height: 30px; border-radius: 50%; background: var(--gold); color: var(--white);
  font-size: 0.74rem; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.faq-q-text { flex: 1; font-size: 0.92rem; font-weight: 700; color: var(--charcoal); line-height: 1.4; }
.faq-toggle {
  width: 28px; height: 28px; border-radius: 50%; border: 1.5px solid var(--gold); color: var(--gold);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  font-size: 1.15rem; font-weight: 400; line-height: 1; transition: background 0.2s, color 0.2s;
}
.faq-item.open .faq-toggle { background: var(--gold); color: var(--white); }
.faq-answer {
  display: none; padding: 0.1rem 3rem 1.5rem 2.6rem;
  font-size: 0.89rem; color: var(--text-light); line-height: 1.8;
}
.faq-item.open .faq-answer { display: block; }
.faq-answer ul { margin-top: 0.6rem; padding-left: 1.1rem; list-style: disc; display: flex; flex-direction: column; gap: 0.3rem; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-services {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  padding: 2.5rem 0 2rem; border-top: 1px solid var(--border);
}
.about-col { display: flex; flex-direction: column; }
.about-col h2 {
  font-size: 0.64rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--charcoal); margin-bottom: 1.5rem; padding-bottom: 0.6rem; border-bottom: 1px solid var(--border);
}
.service-item { display: flex; align-items: flex-start; gap: 0.9rem; margin-bottom: 1.5rem; }
.service-icon-wrap {
  width: 40px; height: 40px; border: 1.5px solid var(--gold-light); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--gold);
}
.service-item h3 {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--charcoal); margin-bottom: 0.3rem;
}
.service-item p { font-size: 0.84rem; color: var(--text-light); line-height: 1.65; }
.area-intro { font-size: 0.86rem; color: var(--text-light); margin-bottom: 1.1rem; }
.area-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem 1rem; margin-bottom: 1.5rem; }
.area-list li { display: flex; align-items: center; gap: 0.55rem; font-size: 0.88rem; color: var(--text-light); }
.area-list li svg { color: var(--gold); flex-shrink: 0; }
/* map sits at the bottom of the column (aligns with the Services list) and shows in full */
.area-map { margin-top: auto; border-radius: 3px; border: 1px solid var(--border); overflow: hidden; }
.area-map img { width: 100%; height: auto; display: block; }

/* ============================================================
   COMPLETE YOUR APPLICATION
   ============================================================ */
.apply-eyebrow {
  font-size: 0.64rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin: 1.25rem 0 0.5rem;
}
.apply-features { display: flex; flex-direction: column; gap: 0.65rem; margin: 1.25rem 0 1.75rem; }
.apply-feature { display: flex; align-items: center; gap: 0.7rem; font-size: 0.9rem; color: var(--text); }
.apply-feature svg { color: var(--gold); flex-shrink: 0; }
.apply-note {
  margin-top: 1rem; font-size: 0.8rem; color: var(--text-light);
  display: flex; align-items: flex-start; gap: 0.5rem; line-height: 1.6;
}
.apply-note svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }

.promise-box {
  background: var(--off-white); border: 1px solid var(--border); border-radius: 3px;
  padding: 1.75rem 2rem; margin: 1rem 0 2.5rem; text-align: center; max-width: 760px; margin-left: auto; margin-right: auto;
}
.promise-box .shield { color: var(--gold); margin: 0 auto 0.6rem; }
.promise-box h2 {
  font-size: 0.64rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--charcoal); margin-bottom: 0.5rem;
}
.promise-box p { font-size: 0.84rem; color: var(--text-light); line-height: 1.7; max-width: 560px; margin: 0 auto; }

.next-label {
  font-size: 0.64rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); text-align: center; display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem;
}
.next-label::before, .next-label::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.next-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-bottom: 3rem; text-align: center; }
.next-num {
  width: 44px; height: 44px; border-radius: 50%; background: var(--gold); color: var(--white);
  font-family: var(--font-serif); font-size: 1.3rem; font-weight: 600;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 0.85rem;
}
.next-step h3 {
  font-size: 0.63rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--charcoal); margin-bottom: 0.4rem;
}
.next-step p { font-size: 0.82rem; color: var(--text-light); line-height: 1.55; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--dark); padding: 2.5rem 0; color: #9A8E7E; }
.footer-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 2.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
}
.footer-logo .logo-text { color: #D4C5A9; font-size: 0.95rem; }
.footer-logo .logo-script { font-size: 0.95rem; }
.footer-logo .logo-script::before, .footer-logo .logo-script::after { background: rgba(188,154,85,0.4); }
.footer-center { font-size: 0.64rem; letter-spacing: 0.1em; text-align: center; color: #7A6E62; }
.footer-auth {
  font-size: 0.59rem; letter-spacing: 0.08em; max-width: 270px;
  display: flex; align-items: flex-start; gap: 0.5rem; line-height: 1.55; text-align: right;
}
.footer-auth svg { color: var(--gold); flex-shrink: 0; margin-top: 1px; opacity: 0.75; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
/* Cross-browser hardening (prevents grid/flex overflow & misalignment
   on WebKit-based browsers such as Safari & DuckDuckGo on iPad) */
html, body { overflow-x: hidden; max-width: 100%; }
.lead > *, .about-services > *, .hiw-step > *,
.features-grid > *, .optional-grid > *, .next-grid > *,
.cta-band-inner > * { min-width: 0; }
img { height: auto; }

/* Tablet / iPad landscape */
@media (max-width: 1024px) {
  .container { padding: 0 2rem; }
  .lead { gap: 2.25rem; }
  .lead h1 { font-size: clamp(2.4rem, 5vw, 3.4rem); }
}

@media (max-width: 1000px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); }
  .next-grid { grid-template-columns: repeat(2, 1fr); }
  .lead { gap: 2.25rem; }
}

@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; }
  .hero-image { order: -1; aspect-ratio: 16/10; max-height: 280px; }
  .hero-content { padding: 2rem 1.5rem; max-width: none; margin: 0; }
  .lead { grid-template-columns: 1fr; gap: 1.75rem; }
  .lead-img { order: -1; }
  .lead-text { max-width: none; }
  .about-services { grid-template-columns: 1fr; gap: 2.5rem; }
  .pricing-list { grid-template-columns: 1fr; }
  .optional-grid { grid-template-columns: 1fr; gap: 2rem; }
  .area-list { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .announcement-bar { font-size: 0.56rem; gap: 0.75rem; flex-wrap: wrap; }
  .header-inner { padding: 0.85rem 1.25rem; }
  .menu-toggle { display: flex; }
  .site-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
    flex-direction: column; align-items: stretch; padding: 0.75rem 1.25rem; gap: 0.2rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 0.7rem 0.5rem; }
  .site-nav a.active::after { display: none; }
  .btn-nav-cta { text-align: center; margin: 0.5rem 0 0; }
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .features-grid > *:last-child { grid-column: span 2; }
  .next-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-auth { text-align: center; max-width: none; }
  .cta-band { grid-template-columns: 1fr; min-height: 0; }
  .cta-band-photo { order: -1; min-height: 200px; }
  .cta-band-photo::before { background: linear-gradient(to bottom, var(--off-white) 0%, rgba(251,249,245,0) 18%); }
  .cta-band-inner { padding: 2rem 1.75rem; }
  .container { padding: 0 1.25rem; }
  .lead { padding-top: 2rem; }
  .lead h1 { font-size: 2.5rem; }
}

@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .features-grid > *:last-child { grid-column: auto; }
  .next-grid { grid-template-columns: 1fr; }
  .area-list { grid-template-columns: 1fr; }
  .hiw-step { grid-template-columns: 50px 1fr; }
  .hiw-step .step-icon { display: none; }
  .includes-box { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; }
}

/* ── ADA ──────────────────────────────────────────────────── */
.skip-link { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.skip-link:focus {
  position: fixed; left: 50%; transform: translateX(-50%); top: 1rem; z-index: 9999;
  background: var(--gold); color: var(--white); padding: 0.75rem 1.5rem; font-weight: 700;
  font-size: 0.85rem; width: auto; height: auto;
}
a:focus-visible, button:focus-visible, [tabindex]:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
