/* style.css — Paul Derrick Remodeling design tokens + components */

/* ------------------------- FONTS ------------------------- */
/* Display: Anton (bold condensed headline font) — Google Fonts
   Body: General Sans (Fontshare) — clean modern 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);
  --text-hero: clamp(2.75rem, 0.5rem + 7vw, 7rem);

  /* ---------- SPACING (4px base) ---------- */
  --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.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --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%;

  /* ---------- FONTS ---------- */
  --font-display: 'Anton', 'Oswald', 'Arial Narrow', sans-serif;
  --font-body: 'General Sans', 'Inter', 'Helvetica Neue', sans-serif;
}

/* ================= LIGHT MODE (default) ================= */
:root,
[data-theme='light'] {
  /* Surfaces — warm off-white, like limestone/porcelain */
  --color-bg: #f7f5f1;
  --color-surface: #ffffff;
  --color-surface-2: #fbfaf7;
  --color-surface-offset: #efeae2;
  --color-surface-offset-2: #e7e0d4;
  --color-surface-dynamic: #ded5c3;
  --color-divider: #e2dcd0;
  --color-border: #d7cfbe;

  /* Text */
  --color-text: #14180f;
  --color-text-muted: #5b5c50;
  --color-text-faint: #9a9788;
  --color-text-inverse: #f7f5ef;

  /* Primary — deep near-black forest green (brand) */
  --color-primary: #0d1f0f;
  --color-primary-hover: #16301a;
  --color-primary-active: #091509;
  --color-primary-highlight: #d7ded4;

  /* Gold accent — used sparingly */
  --color-gold: #c79a3f;
  --color-gold-hover: #a97f2e;
  --color-gold-active: #8a6823;
  --color-gold-highlight: #f2e6c8;

  /* Status */
  --color-success: #3f7a3d;
  --color-success-highlight: #dcead9;
  --color-error: #9c3b2e;
  --color-error-highlight: #f0d9d3;
  --color-warning: #96601c;
  --color-warning-highlight: #ede1c8;

  --shadow-sm: 0 1px 2px oklch(0.15 0.02 130 / 0.08);
  --shadow-md: 0 4px 14px oklch(0.15 0.02 130 / 0.10);
  --shadow-lg: 0 16px 40px oklch(0.15 0.02 130 / 0.16);
}

/* ================= DARK MODE ================= */
[data-theme='dark'] {
  --color-bg: #0b140c;
  --color-surface: #101c11;
  --color-surface-2: #142112;
  --color-surface-offset: #172415;
  --color-surface-offset-2: #1c2b19;
  --color-surface-dynamic: #24371f;
  --color-divider: #22331f;
  --color-border: #2c3f27;

  --color-text: #eae7dc;
  --color-text-muted: #a9ac9c;
  --color-text-faint: #707565;
  --color-text-inverse: #14180f;

  --color-primary: #e9e5d8;
  --color-primary-hover: #f6f2e6;
  --color-primary-active: #d8d3c2;
  --color-primary-highlight: #33422e;

  --color-gold: #dcb35f;
  --color-gold-hover: #ecc677;
  --color-gold-active: #f4d691;
  --color-gold-highlight: #3a301b;

  --color-success: #6fae6b;
  --color-success-highlight: #23331f;
  --color-error: #d0705d;
  --color-error-highlight: #3a231e;
  --color-warning: #d1a052;
  --color-warning-highlight: #3a301e;

  --shadow-sm: 0 1px 2px oklch(0 0 0 / 0.3);
  --shadow-md: 0 4px 16px oklch(0 0 0 / 0.4);
  --shadow-lg: 0 20px 48px oklch(0 0 0 / 0.55);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --color-bg: #0b140c;
    --color-surface: #101c11;
    --color-surface-2: #142112;
    --color-surface-offset: #172415;
    --color-surface-offset-2: #1c2b19;
    --color-surface-dynamic: #24371f;
    --color-divider: #22331f;
    --color-border: #2c3f27;
    --color-text: #eae7dc;
    --color-text-muted: #a9ac9c;
    --color-text-faint: #707565;
    --color-text-inverse: #14180f;
    --color-primary: #e9e5d8;
    --color-primary-hover: #f6f2e6;
    --color-primary-active: #d8d3c2;
    --color-primary-highlight: #33422e;
    --color-gold: #dcb35f;
    --color-gold-hover: #ecc677;
    --color-gold-active: #f4d691;
    --color-gold-highlight: #3a301b;
    --shadow-sm: 0 1px 2px oklch(0 0 0 / 0.3);
    --shadow-md: 0 4px 16px oklch(0 0 0 / 0.4);
    --shadow-lg: 0 20px 48px oklch(0 0 0 / 0.55);
  }
}

/* ================= GLOBAL ELEMENTS ================= */

.container {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-5);
}
.container--default {
  max-width: var(--content-default);
}
.container--narrow {
  max-width: var(--content-narrow);
}

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

h1 {
  font-size: var(--text-hero);
  line-height: 1.02;
}
h2 {
  font-size: var(--text-2xl);
  line-height: 1.05;
}
h3 {
  font-size: var(--text-lg);
  text-transform: none;
  font-weight: 600;
  font-family: var(--font-body);
  letter-spacing: normal;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.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.14em;
  text-transform: uppercase;
  color: var(--color-gold);
}
.eyebrow::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--color-gold);
  display: inline-block;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-8);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius-sm);
  min-height: 44px;
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--color-gold);
  color: #1a1204;
}
.btn-primary:hover {
  background: var(--color-gold-hover);
  box-shadow: var(--shadow-md);
}
.btn-primary:active {
  background: var(--color-gold-active);
}

.btn-dark {
  background: var(--color-primary);
  color: var(--color-text-inverse, #fff);
}
[data-theme='dark'] .btn-dark,
:root:not([data-theme]) .btn-dark {
  color: var(--color-bg);
}
.btn-dark:hover {
  background: var(--color-primary-hover);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  border-color: oklch(from var(--color-text) l c h / 0.28);
  color: var(--color-text);
}
.btn-outline:hover {
  border-color: var(--color-text);
  background: oklch(from var(--color-text) l c h / 0.05);
}

.btn-outline-inverse {
  background: transparent;
  border-color: oklch(1 0 0 / 0.4);
  color: #fff;
}
.btn-outline-inverse:hover {
  border-color: #fff;
  background: oklch(1 0 0 / 0.08);
}

.btn-block {
  width: 100%;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #0d1f0f;
  border-bottom: 1px solid oklch(1 0 0 / 0.08);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: var(--space-4);
  gap: var(--space-6);
}
.site-header__brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: #fff;
}
.site-header__brand svg {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}
.site-header__wordmark {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  letter-spacing: 0.08em;
  line-height: 1.15;
  color: #fff;
}
.site-header__wordmark span {
  display: block;
  color: var(--color-gold);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}
.site-nav__links {
  display: flex;
  gap: var(--space-6);
  list-style: none;
}
.site-nav__links a {
  color: oklch(1 0 0 / 0.82);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: var(--space-2) 0;
  border-bottom: 1px solid transparent;
}
.site-nav__links a:hover,
.site-nav__links a[aria-current='page'] {
  color: #fff;
  border-bottom-color: var(--color-gold);
}

.nav-toggle {
  display: none;
  color: #fff;
  padding: var(--space-2);
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.theme-toggle {
  color: #fff;
  min-width: 40px;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
}
.theme-toggle:hover {
  background: oklch(1 0 0 / 0.1);
}

@media (max-width: 860px) {
  .site-nav__links {
    position: fixed;
    inset: 72px var(--space-4) auto var(--space-4);
    flex-direction: column;
    background: #0d1f0f;
    border: 1px solid oklch(1 0 0 / 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-4);
    gap: var(--space-1);
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition:
      opacity var(--transition-interactive),
      transform var(--transition-interactive);
  }
  .site-nav__links.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .site-nav__links a {
    display: block;
    padding: var(--space-3) var(--space-2);
  }
  .nav-toggle {
    display: inline-flex;
  }
  .site-nav {
    gap: var(--space-3);
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: #0d1f0f;
  color: #fff;
  overflow: hidden;
  padding-block: clamp(var(--space-16), 10vw, var(--space-32));
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 12%, oklch(0.62 0.13 95 / 0.16), transparent 55%),
    linear-gradient(180deg, oklch(0.08 0.02 145 / 0.2), oklch(0.05 0.02 145 / 0.55));
  pointer-events: none;
}
.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-16);
  align-items: center;
}
.hero__eyebrow {
  color: var(--color-gold);
}
.hero h1 {
  margin-block: var(--space-5) var(--space-6);
  color: #fff;
}
.hero h1 em {
  font-style: normal;
  color: var(--color-gold);
}
.hero p.lede {
  font-size: var(--text-lg);
  color: oklch(1 0 0 / 0.78);
  max-width: 46ch;
  margin-bottom: var(--space-8);
}
.hero__ctas {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}
.hero__media {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, oklch(0.05 0.02 145 / 0.7));
}
.hero__media-caption {
  position: absolute;
  left: var(--space-5);
  bottom: var(--space-5);
  right: var(--space-5);
  z-index: 1;
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: oklch(1 0 0 / 0.85);
}

@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }
  .hero__media {
    aspect-ratio: 16/10;
  }
}

/* ---------- Dual path cards ---------- */
.audience-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
  margin-top: var(--space-12);
}
.audience-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  border: 1px solid oklch(1 0 0 / 0.14);
  background: oklch(1 0 0 / 0.04);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.audience-card h3 {
  color: #fff;
  font-size: var(--text-lg);
}
.audience-card p {
  color: oklch(1 0 0 / 0.72);
  font-size: var(--text-sm);
}
.audience-card .btn {
  margin-top: auto;
  align-self: flex-start;
}
@media (max-width: 700px) {
  .audience-split {
    grid-template-columns: 1fr;
  }
}

/* ---------- Section headers ---------- */
.section-head {
  max-width: 62ch;
  margin-bottom: var(--space-12);
}
.section-head--center {
  margin-inline: auto;
  text-align: center;
}
.section-head h2 {
  margin-top: var(--space-3);
}

/* ---------- Services grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}
.service-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  box-shadow: var(--shadow-sm);
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.service-card__icon {
  width: 40px;
  height: 40px;
  color: var(--color-gold);
}
.service-card h3 {
  font-size: var(--text-base);
}
.service-card p {
  font-size: var(--text-sm);
}
.service-card a.card-link {
  margin-top: auto;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-gold);
}
@media (max-width: 980px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Trust strip ---------- */
.trust-strip {
  background: var(--color-surface-offset);
  border-top: 1px solid var(--color-divider);
  border-bottom: 1px solid var(--color-divider);
  padding-block: var(--space-8);
}
.trust-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}
.trust-stat {
  text-align: left;
}
.trust-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-primary);
}
[data-theme='dark'] .trust-stat strong {
  color: var(--color-gold);
}
.trust-stat span {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  letter-spacing: 0.03em;
}
@media (max-width: 900px) {
  .trust-strip .container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---------- Process steps ---------- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  counter-reset: step;
}
.process-step {
  position: relative;
  padding-top: var(--space-10);
  border-top: 1px solid var(--color-divider);
}
.process-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-gold);
  display: block;
  margin-bottom: var(--space-3);
}
.process-step h3 {
  margin-bottom: var(--space-2);
}
.process-step p {
  font-size: var(--text-sm);
}
@media (max-width: 900px) {
  .process-steps {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
}

/* ---------- Feature split (two column) ---------- */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}
.feature-split.reverse .feature-split__media {
  order: 2;
}
.feature-split__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.feature-split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}
.feature-split__body ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: var(--space-5);
}
.feature-split__body li {
  display: flex;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text);
  align-items: flex-start;
}
.feature-split__body li svg {
  width: 18px;
  height: 18px;
  color: var(--color-gold);
  flex-shrink: 0;
  margin-top: 3px;
}
@media (max-width: 900px) {
  .feature-split,
  .feature-split.reverse .feature-split__media {
    grid-template-columns: 1fr;
    order: 0;
  }
  .feature-split {
    gap: var(--space-8);
  }
}

/* ---------- Dark section ---------- */
.section-dark {
  background: var(--color-primary);
  color: #fff;
}
[data-theme='dark'] .section-dark,
:root:not([data-theme]) .section-dark {
  background: #08120a;
}
.section-dark h2,
.section-dark h3 {
  color: #fff;
}
.section-dark p {
  color: oklch(1 0 0 / 0.72);
}
.section-dark .eyebrow {
  color: var(--color-gold);
}

/* ---------- CTA band ---------- */
.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
  flex-wrap: wrap;
  background: linear-gradient(120deg, #0d1f0f, #16301a);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: var(--space-10) var(--space-10);
}
.cta-band h2 {
  font-size: var(--text-xl);
  color: #fff;
  margin: 0;
  max-width: 34ch;
}
.cta-band p {
  color: oklch(1 0 0 / 0.7);
  margin-top: var(--space-2);
}
.cta-band__actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

/* ---------- Cards grid (portfolio-style) ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}
.gallery-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.gallery-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.gallery-card figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: var(--space-4);
  background: linear-gradient(180deg, transparent, oklch(0.05 0.02 145 / 0.82));
  color: #fff;
  font-size: var(--text-xs);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  background: #0d1f0f;
  color: #fff;
  padding-block: clamp(var(--space-12), 8vw, var(--space-20));
}
.page-hero h1 {
  font-size: var(--text-2xl);
  color: #fff;
  margin-top: var(--space-3);
}
.page-hero p {
  max-width: 60ch;
  color: oklch(1 0 0 / 0.75);
  margin-top: var(--space-4);
  font-size: var(--text-lg);
}
.breadcrumb {
  font-size: var(--text-xs);
  color: oklch(1 0 0 / 0.55);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.breadcrumb a:hover {
  color: var(--color-gold);
}

/* ---------- Anchor service sections ---------- */
.service-section {
  border-top: 1px solid var(--color-divider);
}
.service-section__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--space-16);
  align-items: start;
}
.service-section__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: calc(72px + var(--space-6));
}
.service-section__media img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.service-section__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  margin-top: var(--space-8);
}
.service-section__list-item h4 {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  margin-bottom: var(--space-2);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.service-section__list-item h4 svg {
  width: 18px;
  height: 18px;
  color: var(--color-gold);
}
.service-section__list-item p {
  font-size: var(--text-sm);
}
@media (max-width: 900px) {
  .service-section__grid {
    grid-template-columns: 1fr;
  }
  .service-section__media {
    position: static;
  }
  .service-section__list {
    grid-template-columns: 1fr;
  }
}

/* ---------- Investor page specifics ---------- */
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}
.stat-box {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
}
.stat-box strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-primary);
}
[data-theme='dark'] .stat-box strong {
  color: var(--color-gold);
}
.stat-box span {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}
@media (max-width: 780px) {
  .stat-row {
    grid-template-columns: 1fr;
  }
}

.checklist {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.checklist li {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  padding: var(--space-4);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}
.checklist li svg {
  width: 22px;
  height: 22px;
  color: var(--color-gold);
  flex-shrink: 0;
}
.checklist h4 {
  font-size: var(--text-base);
  margin-bottom: var(--space-1);
}
.checklist p {
  font-size: var(--text-sm);
  margin: 0;
}

/* ---------- About page: badges ---------- */
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.badge svg {
  width: 16px;
  height: 16px;
  color: var(--color-gold);
}

.service-area-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2) var(--space-6);
}
.service-area-list li {
  font-size: var(--text-sm);
  padding: var(--space-2) 0;
  border-bottom: 1px solid var(--color-divider);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.service-area-list li svg {
  width: 14px;
  height: 14px;
  color: var(--color-gold);
}
@media (max-width: 700px) {
  .service-area-list {
    grid-template-columns: 1fr 1fr;
  }
}

/* ---------- Form (contact) ---------- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
}
.form-grid .field--full {
  grid-column: 1 / -1;
}
.field {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.field label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.field input,
.field select,
.field textarea {
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-surface);
  font-size: var(--text-base);
  min-height: 44px;
}
.field textarea {
  min-height: 120px;
  resize: vertical;
}
.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 1px;
}
.field-hint {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-16);
}
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
}

.contact-info-item {
  display: flex;
  gap: var(--space-4);
  padding-block: var(--space-4);
  border-bottom: 1px solid var(--color-divider);
}
.contact-info-item svg {
  width: 22px;
  height: 22px;
  color: var(--color-gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-info-item h4 {
  font-size: var(--text-sm);
  margin-bottom: var(--space-1);
}
.contact-info-item p,
.contact-info-item a {
  font-size: var(--text-sm);
}
.contact-info-item a:hover {
  color: var(--color-gold);
}

.form-status {
  padding: var(--space-4);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  display: none;
}
.form-status.is-visible {
  display: block;
}
.form-status.success {
  background: var(--color-success-highlight);
  color: var(--color-success);
}

/* ---------- Footer ---------- */
.site-footer {
  background: #0d1f0f;
  color: oklch(1 0 0 / 0.75);
  padding-block: var(--space-16) var(--space-8);
}
.site-footer h4 {
  color: #fff;
  font-size: var(--text-sm);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: var(--space-10);
}
.footer-grid ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  list-style: none;
  font-size: var(--text-sm);
}
.footer-grid a:hover {
  color: var(--color-gold);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}
.footer-brand svg {
  width: 36px;
  height: 36px;
}
.footer-brand span {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  letter-spacing: 0.06em;
  color: #fff;
}
.footer-bottom {
  margin-top: var(--space-12);
  padding-top: var(--space-6);
  border-top: 1px solid oklch(1 0 0 / 0.12);
  display: flex;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
  font-size: var(--text-xs);
  color: oklch(1 0 0 / 0.5);
}
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--color-gold);
  color: #1a1204;
  padding: var(--space-2) var(--space-4);
  z-index: 200;
  border-radius: var(--radius-sm);
}
.skip-link:focus {
  left: var(--space-4);
  top: var(--space-4);
}

/* ---------- Utility ---------- */
.mt-0 {
  margin-top: 0 !important;
}
.text-center {
  text-align: center;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

/* ---------- Scroll reveal ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
