/* ============================================================
   Southeastern Granite Co — Design Tokens & Global Styles
   Art direction: premium-but-approachable stone/craftsman.
   Warm stone neutrals (charcoal, greige, cream) + confident
   bronze/copper accent. Serif display (Fraunces) + clean sans
   body (General Sans / Work Sans).
   ============================================================ */

:root {
  /* ---------- Type scale (fluid clamp) ---------- */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 5rem);

  /* ---------- Fonts ---------- */
  --font-display: 'Fraunces', 'Iowan Old Style', Georgia, serif;
  --font-body: 'General Sans', 'Work Sans', -apple-system, sans-serif;

  /* ---------- Spacing (4px system) ---------- */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* ---------- Radius ---------- */
  --radius-sm: 0.25rem;
  --radius-md: 0.4rem;
  --radius-lg: 0.65rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;

  /* ---------- Transitions ---------- */
  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);

  /* ---------- Content widths ---------- */
  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1200px;
  --content-full: 100%;
}

/* ---------- Light mode (default) — Warm Stone palette ---------- */
:root,
[data-theme='light'] {
  --color-bg: #f7f3ec;
  --color-surface: #fbf8f2;
  --color-surface-2: #fefdfa;
  --color-surface-offset: #efe8dc;
  --color-surface-offset-2: #e6ddcd;
  --color-surface-dynamic: #ddd2bd;
  --color-divider: #ddd3c1;
  --color-border: #cdbfa8;

  --color-text: #2a241d;
  --color-text-muted: #6b6154;
  --color-text-faint: #a89b87;
  --color-text-inverse: #f7f3ec;

  /* Primary Accent — Deep Bronze/Copper */
  --color-primary: #a15c2c;
  --color-primary-hover: #7e4720;
  --color-primary-active: #5f3417;
  --color-primary-highlight: #ecd9c4;

  /* Deep charcoal (secondary ink / header) */
  --color-charcoal: #2b2621;
  --color-charcoal-2: #201c18;

  /* Success / Warning / Error (used sparingly — form states) */
  --color-success: #4a7c3f;
  --color-success-highlight: #dbe8d5;
  --color-error: #a13a2c;
  --color-error-highlight: #ecd6d0;

  --shadow-sm: 0 1px 2px oklch(0.25 0.02 60 / 0.08);
  --shadow-md: 0 4px 14px oklch(0.25 0.02 60 / 0.10);
  --shadow-lg: 0 14px 36px oklch(0.25 0.02 60 / 0.16);
}

/* ---------- Dark mode ---------- */
[data-theme='dark'] {
  --color-bg: #1c1712;
  --color-surface: #221c16;
  --color-surface-2: #27201a;
  --color-surface-offset: #2b241d;
  --color-surface-offset-2: #332b22;
  --color-surface-dynamic: #3c3226;
  --color-divider: #3a3226;
  --color-border: #4a3f30;

  --color-text: #ede6d9;
  --color-text-muted: #b3a690;
  --color-text-faint: #7c7261;
  --color-text-inverse: #1c1712;

  --color-primary: #d68a4c;
  --color-primary-hover: #e6a668;
  --color-primary-active: #f0bb84;
  --color-primary-highlight: #4a3624;

  --color-charcoal: #ede6d9;
  --color-charcoal-2: #f7f3ec;

  --color-success: #86b876;
  --color-success-highlight: #34402c;
  --color-error: #d97e6a;
  --color-error-highlight: #4a2e26;

  --shadow-sm: 0 1px 2px oklch(0 0 0 / 0.3);
  --shadow-md: 0 4px 14px oklch(0 0 0 / 0.35);
  --shadow-lg: 0 14px 36px oklch(0 0 0 / 0.45);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --color-bg: #1c1712;
    --color-surface: #221c16;
    --color-surface-2: #27201a;
    --color-surface-offset: #2b241d;
    --color-surface-offset-2: #332b22;
    --color-surface-dynamic: #3c3226;
    --color-divider: #3a3226;
    --color-border: #4a3f30;
    --color-text: #ede6d9;
    --color-text-muted: #b3a690;
    --color-text-faint: #7c7261;
    --color-text-inverse: #1c1712;
    --color-primary: #d68a4c;
    --color-primary-hover: #e6a668;
    --color-primary-active: #f0bb84;
    --color-primary-highlight: #4a3624;
    --color-charcoal: #ede6d9;
    --color-charcoal-2: #f7f3ec;
    --color-success: #86b876;
    --color-success-highlight: #34402c;
    --color-error: #d97e6a;
    --color-error-highlight: #4a2e26;
    --shadow-sm: 0 1px 2px oklch(0 0 0 / 0.3);
    --shadow-md: 0 4px 14px oklch(0 0 0 / 0.35);
    --shadow-lg: 0 14px 36px oklch(0 0 0 / 0.45);
  }
}

/* ============================================================
   Layout primitives
   ============================================================ */
.container {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-5);
}
.container--narrow {
  max-width: var(--content-default);
}
.container--prose {
  max-width: var(--content-narrow);
}

main {
  display: block;
}

section {
  padding-block: clamp(var(--space-12), 7vw, var(--space-24));
}

.section--tight {
  padding-block: clamp(var(--space-8), 5vw, var(--space-16));
}

.section--surface {
  background: var(--color-surface-offset);
}
.section--charcoal {
  background: var(--color-charcoal-2);
  color: var(--color-bg);
}
[data-theme='dark'] .section--charcoal,
@media (prefers-color-scheme: dark) {
}

/* ============================================================
   Typography
   ============================================================ */
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: -0.01em;
}

.section--charcoal h1,
.section--charcoal h2,
.section--charcoal h3 {
  color: #f7f3ec;
}

h1 {
  font-size: var(--text-2xl);
  line-height: 1.05;
}
h2 {
  font-size: var(--text-xl);
  line-height: 1.1;
  margin-bottom: var(--space-4);
}
h3 {
  font-size: var(--text-lg);
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: var(--space-2);
}
h4 {
  font-size: var(--text-base);
  font-weight: 600;
}

p {
  color: var(--color-text-muted);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
}
.section--charcoal .eyebrow {
  color: #e6a668;
}

.lede {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  max-width: 60ch;
}

.prose p,
.prose li {
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--color-text);
  max-width: 68ch;
  margin-bottom: var(--space-4);
}
.prose h2 {
  margin-top: var(--space-12);
}
.prose h3 {
  margin-top: var(--space-8);
}
.prose ul,
.prose ol {
  margin-bottom: var(--space-4);
  padding-inline-start: var(--space-6);
}
.prose li {
  margin-bottom: var(--space-2);
}
.prose strong {
  color: var(--color-text);
}

/* ============================================================
   Buttons & Links
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  padding: var(--space-4) var(--space-6);
  border-radius: var(--radius-md);
  min-height: 44px;
  text-decoration: none;
  border: 1px solid transparent;
  line-height: 1.2;
}
.btn--primary {
  background: var(--color-primary);
  color: #fdf9f2;
}
.btn--primary:hover {
  background: var(--color-primary-hover);
}
.btn--primary:active {
  background: var(--color-primary-active);
}
.btn--outline {
  background: transparent;
  border-color: var(--color-border);
  color: var(--color-text);
}
.btn--outline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.section--charcoal .btn--outline,
.hero .btn--outline,
.page-hero .btn--outline,
.cta-band .btn--outline {
  border-color: oklch(from #f7f3ec l c h / 0.3);
  color: #f7f3ec;
}
.section--charcoal .btn--outline:hover,
.hero .btn--outline:hover,
.page-hero .btn--outline:hover,
.cta-band .btn--outline:hover {
  border-color: #e6a668;
  color: #e6a668;
}

.link-inline {
  color: var(--color-primary);
  text-decoration: underline;
  text-decoration-color: oklch(from var(--color-primary) l c h / 0.35);
  text-underline-offset: 2px;
  font-weight: 600;
}
.link-inline:hover {
  text-decoration-color: currentColor;
}

/* ============================================================
   Header / Nav
   ============================================================ */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--color-primary);
  color: #fff;
  padding: var(--space-3) var(--space-5);
  z-index: 100;
  border-radius: var(--radius-sm);
}
.skip-link:focus {
  left: var(--space-4);
  top: var(--space-4);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: oklch(from var(--color-bg) l c h / 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-divider);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: var(--space-4);
  gap: var(--space-6);
}

.brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  color: var(--color-text);
  flex-shrink: 0;
}
.brand__mark {
  width: 34px;
  height: 48px;
  flex-shrink: 0;
  object-fit: contain;
}
.brand__name {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 600;
  line-height: 1.1;
}
.brand__name small {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.main-nav {
  display: none;
}
.main-nav[role='list'] {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}
.main-nav a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
  padding: var(--space-2) 0;
  border-bottom: 2px solid transparent;
}
.main-nav a:hover,
.main-nav a[aria-current='page'] {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}

.header-cta {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--color-text);
  border-radius: var(--radius-md);
}
.nav-toggle:hover {
  background: var(--color-surface-offset);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: var(--space-4) 0 var(--space-6);
  border-top: 1px solid var(--color-divider);
}
.mobile-nav.is-open {
  display: flex;
}
.mobile-nav a {
  padding: var(--space-3) var(--space-1);
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
  border-bottom: 1px solid var(--color-divider);
}
.mobile-nav a[aria-current='page'] {
  color: var(--color-primary);
}
.mobile-nav .btn {
  margin-top: var(--space-4);
}

@media (min-width: 900px) {
  .main-nav[role='list'] {
    display: flex;
  }
  .header-cta {
    display: inline-flex;
  }
  .nav-toggle {
    display: none;
  }
  .mobile-nav {
    display: none !important;
  }
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  padding-block: clamp(var(--space-16), 10vw, var(--space-32));
  overflow: hidden;
  color: #f7f3ec;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    oklch(0.16 0.02 50 / 0.92),
    oklch(0.2 0.03 45 / 0.78)
  );
  z-index: 1;
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero__inner {
  position: relative;
  z-index: 2;
}
.hero h1 {
  font-size: var(--text-3xl);
  color: #fdf9f2;
  max-width: 18ch;
  margin-block: var(--space-4) var(--space-5);
}
.hero .lede {
  color: #ecdfca;
  font-size: var(--text-lg);
  max-width: 52ch;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-top: var(--space-8);
}
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
  margin-top: var(--space-12);
  font-size: var(--text-sm);
  color: #ecdfca;
}
.hero__trust li {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.hero__trust svg {
  width: 18px;
  height: 18px;
  color: #e6a668;
  flex-shrink: 0;
}

/* Page hero (interior pages, shorter) */
.page-hero {
  padding-block: clamp(var(--space-12), 6vw, var(--space-20));
  background: var(--color-charcoal-2);
  color: #f7f3ec;
}
.page-hero h1 {
  color: #fdf9f2;
  font-size: var(--text-2xl);
  max-width: 22ch;
}
.page-hero .lede {
  color: #ecdfca;
  margin-top: var(--space-4);
}

/* Breadcrumbs */
.breadcrumbs {
  font-size: var(--text-xs);
  color: #cdbfa8;
  margin-bottom: var(--space-4);
}
.breadcrumbs ol {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  list-style: none;
}
.breadcrumbs a {
  color: #cdbfa8;
  text-decoration: none;
}
.breadcrumbs a:hover {
  color: #e6a668;
  text-decoration: underline;
}
.breadcrumbs li:not(:last-child)::after {
  content: '/';
  margin-left: var(--space-2);
  color: #7c7261;
}
.breadcrumbs [aria-current='page'] {
  color: #f7f3ec;
}

/* ============================================================
   Cards / Grids
   ============================================================ */
.grid {
  display: grid;
  gap: var(--space-6);
}
.grid--2 {
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
}
.grid--3 {
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
}
.grid--4 {
  grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
}

.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.card__body {
  padding: var(--space-6);
}
.card__media {
  aspect-ratio: 4 / 3;
  width: 100%;
  overflow: hidden;
  background: var(--color-surface-offset);
}
.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-card .card__media {
  aspect-ratio: 9 / 16;
  position: relative;
  background: #000;
}
.video-card .card__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-feature {
  max-width: 420px;
  margin-inline: auto;
}
.card__tag {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-2);
  display: block;
}

.project-card__caption {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-top: var(--space-2);
}

/* Process steps */
.process-step {
  display: flex;
  gap: var(--space-5);
  align-items: flex-start;
}
.process-step__num {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-primary);
  font-weight: 600;
  flex-shrink: 0;
  width: 2.4ch;
}

/* Materials list */
.material-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: center;
  padding-block: var(--space-12);
  border-bottom: 1px solid var(--color-divider);
}
.material-block:last-child {
  border-bottom: none;
}
.material-block__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.material-block__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}
@media (min-width: 800px) {
  .material-block {
    grid-template-columns: 1fr 1fr;
  }
  .material-block--reverse .material-block__media {
    order: 2;
  }
}

/* Trust badges / logos */
.trust-strip {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-10);
  justify-content: center;
}
.trust-strip img {
  height: 40px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  opacity: 0.85;
  filter: grayscale(0.15);
}

/* Testimonial */
.testimonial {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-sm);
}
.testimonial blockquote {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-text);
  margin-bottom: var(--space-4);
  font-style: italic;
}
.testimonial cite {
  font-style: normal;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  font-weight: 600;
}

/* Google reviews */
.rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-bottom: var(--space-2);
}
.rating-summary__score {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-text);
}
.rating-summary__stars {
  display: inline-flex;
  gap: 2px;
  color: #f5b700;
}
.rating-summary__stars svg {
  width: 20px;
  height: 20px;
}
.rating-summary__meta {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}
.rating-summary__meta a {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
}
.rating-summary__meta a:hover {
  text-decoration: underline;
}
.review-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.review-card__stars {
  display: inline-flex;
  gap: 2px;
  color: #f5b700;
}
.review-card__stars svg {
  width: 16px;
  height: 16px;
}
.review-card blockquote {
  font-size: var(--text-sm);
  color: var(--color-text);
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}
.review-card cite {
  font-style: normal;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.review-card cite svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* FAQ (details/summary, native accessible disclosure) */
.faq-item {
  border-bottom: 1px solid var(--color-divider);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding-block: var(--space-5);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-base);
  color: var(--color-text);
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary .faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--color-primary);
  transition: transform var(--transition-interactive);
}
.faq-item[open] summary .faq-icon {
  transform: rotate(45deg);
}
.faq-item p {
  padding-bottom: var(--space-5);
  font-size: var(--text-base);
  max-width: 68ch;
}

/* Warranty / trust banner */
.warranty-banner {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  background: var(--color-primary-highlight);
  border: 1px solid oklch(from var(--color-primary) l c h / 0.3);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
}
.warranty-banner svg {
  width: 40px;
  height: 40px;
  color: var(--color-primary);
  flex-shrink: 0;
}
.warranty-banner h3 {
  margin-bottom: var(--space-1);
}
.warranty-banner p {
  color: var(--color-text);
  font-size: var(--text-sm);
  margin: 0;
}

/* ============================================================
   Forms (accessible — visible labels, required text, focus states)
   ============================================================ */
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}
@media (min-width: 640px) {
  .form-grid--2col {
    grid-template-columns: 1fr 1fr;
  }
}
.field {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.field label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
}
.field .required {
  color: var(--color-primary);
  font-weight: 600;
}
.field .hint {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}
.field input,
.field select,
.field textarea {
  background: var(--color-surface-2);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-base);
  min-height: 48px;
  color: var(--color-text);
}
.field textarea {
  min-height: 140px;
  resize: vertical;
}
.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 1px;
  border-color: var(--color-primary);
}
.field input::placeholder,
.field textarea::placeholder {
  color: var(--color-text-faint);
}
.form-status {
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 600;
  display: none;
}
.form-status.is-visible {
  display: block;
}
.form-status--success {
  background: var(--color-success-highlight);
  color: var(--color-success);
}
.form-status--error {
  background: var(--color-error-highlight);
  color: var(--color-error);
}
fieldset {
  border: none;
  padding: 0;
}
legend {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-text);
  margin-bottom: var(--space-4);
  padding: 0;
}

/* NAP / contact info block */
.nap-block {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}
.nap-item {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}
.nap-item svg {
  width: 22px;
  height: 22px;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
}
.nap-item h3 {
  font-size: var(--text-base);
  margin-bottom: var(--space-1);
}
.nap-item p {
  font-size: var(--text-sm);
  margin: 0;
}
.nap-item a {
  color: var(--color-text);
  text-decoration: none;
}
.nap-item a:hover {
  color: var(--color-primary);
}

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}
.map-embed img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--color-charcoal-2);
  color: #ecdfca;
  padding-block: var(--space-16) var(--space-8);
}
.site-footer h3 {
  color: #f7f3ec;
  font-size: var(--text-base);
  margin-bottom: var(--space-4);
}
.site-footer a {
  color: #ecdfca;
  text-decoration: none;
  font-size: var(--text-sm);
}
.site-footer a:hover {
  color: #e6a668;
  text-decoration: underline;
}
.footer-grid {
  display: grid;
  gap: var(--space-10);
  grid-template-columns: 1fr;
  padding-bottom: var(--space-10);
  border-bottom: 1px solid #3a3226;
}
@media (min-width: 800px) {
  .footer-grid {
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
  }
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}
.footer-brand img {
  width: 32px;
  height: 45px;
  object-fit: contain;
}
.footer-brand span {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: #f7f3ec;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-4);
  padding-top: var(--space-6);
  font-size: var(--text-xs);
  color: #b3a690;
}

/* ============================================================
   Utility
   ============================================================ */
.text-center {
  text-align: center;
}
.mx-auto {
  margin-inline: auto;
}
.mb-2 {
  margin-bottom: var(--space-2);
}
.mb-4 {
  margin-bottom: var(--space-4);
}
.mb-6 {
  margin-bottom: var(--space-6);
}
.mb-8 {
  margin-bottom: var(--space-8);
}
.mb-12 {
  margin-bottom: var(--space-12);
}
.mt-8 {
  margin-top: var(--space-8);
}
.max-w-prose {
  max-width: 60ch;
}
.stack {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.cluster {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  align-items: center;
}
.section-head {
  margin-bottom: var(--space-10);
}
.section-head--center {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-primary);
  background: var(--color-primary-highlight);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
}
.icon-feature {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}
.icon-feature svg {
  width: 28px;
  height: 28px;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
}
.icon-feature h3 {
  margin-bottom: var(--space-1);
  font-size: var(--text-base);
}
.icon-feature p {
  font-size: var(--text-sm);
  margin: 0;
}

/* Skip-to-content, visually hidden but focusable already in base.css .sr-only */

/* Final CTA band */
.cta-band {
  background: linear-gradient(120deg, var(--color-charcoal-2), #3a2c1e);
  color: #f7f3ec;
  border-radius: var(--radius-xl);
  padding: clamp(var(--space-10), 6vw, var(--space-16));
  text-align: center;
}
.cta-band h2 {
  color: #fdf9f2;
}
.cta-band p {
  color: #ecdfca;
  max-width: 55ch;
  margin-inline: auto;
}
.cta-band .btn-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-top: var(--space-8);
}

/* Responsive section padding refinement */
@media (max-width: 640px) {
  .hero h1 {
    max-width: none;
  }
  .footer-bottom {
    flex-direction: column;
  }
}
