/* ── 1. DESIGN TOKENS ─────────────────────────── */
:root {
  --walnut-abyss: #0c0908;
  --walnut: #1a1210;
  --walnut-mid: #2a1f1a;
  --walnut-elevated: #3a2c24;
  --brass: #d4a24e;
  --brass-dark: #b8893a;
  --brass-glow: rgba(212, 162, 78, 0.18);
  --pearl: #f3ebe1;
  --pearl-muted: rgba(243, 235, 225, 0.72);
  --pearl-dim: rgba(243, 235, 225, 0.48);
  --border-glass: rgba(243, 235, 225, 0.12);
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: Inter, system-ui, -apple-system, sans-serif;
  --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;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-full: 9999px;
  --header-h: 4.25rem;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --duration: 220ms;
  --max-w: 72rem;
  --z-header: 100;
  --z-nav-mobile: 110;
  --z-overlay: 105;
}

/* ── 2. RESET & BASE ──────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--pearl);
  background: var(--walnut-abyss);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body.nav-open {
  overflow: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* scaffold spacer until hero exists */
.scaffold-note {
  min-height: 120vh;
  padding: 6rem 1.5rem;
  padding-top: calc(var(--header-h) + 4rem);
  color: var(--pearl-dim);
  text-align: center;
}

/* ── 3. BUTTONS ───────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.65rem 1.15rem;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9375rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: background var(--duration) var(--ease),
    color var(--duration) var(--ease),
    border-color var(--duration) var(--ease),
    box-shadow var(--duration) var(--ease),
    transform var(--duration) var(--ease);
  text-decoration: none;
  border: 1px solid transparent;
  line-height: 1.2;
}
.btn--sm {
  padding: 0.5rem 0.95rem;
  font-size: 0.875rem;
}
.btn--lg {
  padding: 0.85rem 1.4rem;
  font-size: 1rem;
}
.btn--brass {
  background: var(--brass);
  color: var(--walnut-abyss);
  box-shadow: 0 0 0 0 transparent, 0 8px 24px var(--brass-glow);
}
.btn--brass:hover {
  background: var(--brass-dark);
  color: var(--walnut-abyss);
}
.btn--ghost {
  background: transparent;
  color: var(--pearl);
  border-color: rgba(212, 162, 78, 0.55);
}
.btn--ghost:hover {
  border-color: var(--brass);
  color: var(--brass);
  background: rgba(212, 162, 78, 0.08);
}

/* ── 4. SITE HEADER / NAV ─────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-header);
  transition: background var(--duration) var(--ease),
    border-color var(--duration) var(--ease),
    backdrop-filter var(--duration) var(--ease);
  background: transparent;
  border-bottom: 1px solid transparent;
}
.site-header.is-solid {
  background: rgba(26, 18, 16, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--border-glass);
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  height: var(--header-h);
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-5);
}
.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav__logo img {
  height: 40px;
  width: auto;
}
.nav__links {
  display: none;
  align-items: center;
  gap: var(--space-6);
  margin-left: var(--space-8);
}
.nav__links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--pearl-muted);
  letter-spacing: 0.02em;
  transition: color var(--duration) var(--ease);
  position: relative;
}
.nav__links a:hover {
  color: var(--pearl);
}
.nav__links a[aria-current="page"] {
  color: var(--brass);
}
.nav__links a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.35rem;
  height: 1px;
  background: var(--brass);
}
.nav__cta {
  display: none;
  align-items: center;
  gap: var(--space-3);
  margin-left: auto;
  flex-shrink: 0;
}
.nav__toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  margin-left: auto;
  flex-shrink: 0;
  padding: 0.4rem;
  -webkit-tap-highlight-color: transparent;
  border-radius: var(--radius-sm);
}
.nav__toggle-bar {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--pearl);
  border-radius: 1px;
  transition: transform var(--duration) var(--ease), opacity var(--duration) var(--ease);
}
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(2) {
  opacity: 0;
}
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav__overlay {
  position: fixed;
  inset: 0;
  z-index: var(--z-overlay);
  background: rgba(12, 9, 8, 0.55);
  backdrop-filter: blur(2px);
}
.nav__overlay[hidden] {
  display: none !important;
}

.nav__mobile {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  z-index: var(--z-nav-mobile);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  padding: var(--space-5);
  background: rgba(26, 18, 16, 0.97);
  border-bottom: 1px solid var(--border-glass);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}
.nav__mobile[hidden] {
  display: none !important;
}
.nav__mobile > a:not(.btn) {
  display: block;
  padding: var(--space-3) var(--space-2);
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--pearl-muted);
  border-bottom: 1px solid var(--border-glass);
}
.nav__mobile > a:not(.btn):hover {
  color: var(--brass);
}
.nav__mobile .btn {
  margin-top: var(--space-2);
  width: 100%;
}

@media (min-width: 901px) {
  .nav__links {
    display: flex;
  }
  .nav__cta {
    display: flex;
  }
  .nav__toggle {
    display: none;
  }
  .nav__mobile,
  .nav__overlay {
    display: none !important;
  }
}

/* ── 5. HOMEPAGE HERO ─────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero__art,
.hero__canvas,
.hero__vignette {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero__art {
  z-index: 0;
}
.hero__art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  transform: scale(1.04);
}
.hero__canvas {
  z-index: 1;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.88;
}
.hero__vignette {
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(to right,
      rgba(12, 9, 8, 0.94) 0%,
      rgba(12, 9, 8, 0.78) 38%,
      rgba(12, 9, 8, 0.35) 62%,
      rgba(12, 9, 8, 0.18) 100%),
    linear-gradient(to top,
      rgba(12, 9, 8, 0.72) 0%,
      transparent 38%),
    linear-gradient(to bottom,
      rgba(12, 9, 8, 0.55) 0%,
      transparent 28%);
}
.hero__inner {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: calc(var(--header-h) + 2.5rem) var(--space-5) var(--space-12);
}
.hero__eyebrow {
  margin: 0 0 var(--space-4);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass);
}
.hero__title {
  margin: 0 0 var(--space-5);
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--pearl);
}
.hero__line {
  display: block;
  font-size: clamp(2.5rem, 6.2vw, 4.35rem);
}
.hero__line--support {
  margin-top: var(--space-3);
  font-size: clamp(1.2rem, 2.7vw, 1.85rem);
  font-weight: 400;
  line-height: 1.28;
  max-width: 22em;
  color: var(--pearl-muted);
  letter-spacing: -0.01em;
}
.hero__sub {
  margin: 0 0 var(--space-8);
  max-width: 36rem;
  font-size: clamp(0.98rem, 1.5vw, 1.125rem);
  color: var(--pearl-muted);
  line-height: 1.6;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-10);
}
.hero__depth {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-5);
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 40rem;
}
.hero__depth li {
  position: relative;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--pearl-dim);
}
.hero__depth li:not(:last-child)::after {
  content: "·";
  position: absolute;
  right: calc(var(--space-5) * -0.65);
  color: rgba(212, 162, 78, 0.55);
}
.hero-scroll-pad {
  height: 70vh;
  background:
    linear-gradient(to bottom, var(--walnut-abyss), var(--walnut));
}

@media (max-width: 640px) {
  .hero__art img {
    object-position: 70% center;
  }
  .hero__vignette {
    background:
      linear-gradient(to right,
        rgba(12, 9, 8, 0.95) 0%,
        rgba(12, 9, 8, 0.88) 48%,
        rgba(12, 9, 8, 0.45) 78%,
        rgba(12, 9, 8, 0.22) 100%),
      linear-gradient(to top,
        rgba(12, 9, 8, 0.8) 0%,
        transparent 42%),
      linear-gradient(to bottom,
        rgba(12, 9, 8, 0.65) 0%,
        transparent 30%);
  }
  .hero__title {
    filter: drop-shadow(0 2px 14px rgba(12, 9, 8, 0.9))
      drop-shadow(0 0 22px rgba(12, 9, 8, 0.75));
  }
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero__actions .btn {
    width: 100%;
  }
  .hero__depth {
    gap: var(--space-2) var(--space-4);
  }
  .hero__depth li:not(:last-child)::after {
    display: none;
  }
}

/* ── 6. BODY PAGE TOOLPATH (behind tiles/images, full-page scroll) ── */
/*
  Sits UNDER hero art, cards, and solid UI so it only reads in the open
  page atmosphere / section fills — not on top of photos or copy chrome.
*/
.body-carve {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.78;
  mix-blend-mode: screen;
}
.site-header {
  z-index: var(--z-header); /* 100 — always above path */
}
/* Create stacking so section content (images, cards, text) paints over path */
main,
.site-footer {
  position: relative;
  z-index: 1;
}
.hero,
.work-card,
.service-card,
.process-step,
.materials-row li,
.cta-band__inner,
.section__head,
.section__cta {
  position: relative;
  z-index: 2;
}
/* Hero art must fully cover path */
.hero__art,
.hero__canvas,
.hero__vignette,
.hero__inner {
  z-index: 2;
}
.hero__art { z-index: 0; } /* within hero stacking: art base */
.hero__canvas { z-index: 1; }
.hero__vignette { z-index: 2; }
.hero__inner { z-index: 3; }

/* Section fills: translucent so path breathes in the open field */
.work-preview {
  background: linear-gradient(
    180deg,
    rgba(12, 9, 8, 0.72) 0%,
    rgba(26, 18, 16, 0.7) 45%,
    rgba(26, 18, 16, 0.74) 100%
  );
}
.services-preview {
  background:
    radial-gradient(ellipse 80% 50% at 80% 0%, rgba(212, 162, 78, 0.05), transparent 55%),
    rgba(12, 9, 8, 0.7);
}
.process-preview {
  background: linear-gradient(
    180deg,
    rgba(26, 18, 16, 0.72) 0%,
    rgba(12, 9, 8, 0.76) 100%
  );
}
.materials {
  background: rgba(26, 18, 16, 0.68);
}
.cta-band {
  background:
    radial-gradient(ellipse 70% 80% at 50% 100%, rgba(212, 162, 78, 0.1), transparent 60%),
    rgba(12, 9, 8, 0.72);
}
/* Cards stay solid so path never sits on imagery */
.work-card {
  background: var(--walnut-mid);
  isolation: isolate;
}
.service-card {
  background: rgba(42, 31, 26, 0.92);
  backdrop-filter: blur(10px);
}
.process-step {
  background: rgba(26, 18, 16, 0.92);
}
.materials-row li {
  background: rgba(12, 9, 8, 0.88);
}

/* Remove temporary scroll pad */
.hero-scroll-pad { display: none; }

/* ── 7. SECTIONS (shared) ─────────────────────── */
.section {
  position: relative;
  padding: clamp(4rem, 8vw, 6.5rem) 0;
}
.section__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-5);
}
.section__head {
  max-width: 40rem;
  margin: 0 auto 2.75rem;
  text-align: center;
}
.section__head--left {
  margin: 0;
  text-align: left;
}
.eyebrow {
  margin: 0 0 var(--space-3);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass);
}
.section__title {
  margin: 0 0 var(--space-4);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.85rem, 3.6vw, 2.75rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--pearl);
}
.section__sub {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--pearl-muted);
}
.section__cta {
  display: flex;
  justify-content: center;
  margin-top: 2.25rem;
}
.text-link {
  display: inline-flex;
  margin-top: var(--space-4);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--brass);
  text-decoration: underline;
  text-underline-offset: 0.2em;
  transition: color var(--duration) var(--ease);
}
.text-link:hover { color: var(--pearl); }

/* Reveal */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
  transition-delay: calc(var(--i, 0) * 80ms);
}
.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .js [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ── 8. WORK PREVIEW ──────────────────────────── */
/* background set in §6 (semi-transparent for toolpath) */
.work-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}
@media (min-width: 720px) {
  .work-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .work-card--lg {
    grid-column: 1 / -1;
    min-height: 22rem;
  }
}
@media (min-width: 1024px) {
  .work-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(14rem, 1fr);
  }
  .work-card--lg {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
    min-height: 100%;
  }
}
.work-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-glass);
  background: var(--walnut-mid);
  min-height: 14rem;
  isolation: isolate;
}
.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.7s var(--ease);
}
.work-card:hover img {
  transform: scale(1.045);
}
.work-card__meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 3.5rem var(--space-5) var(--space-5);
  background: linear-gradient(to top, rgba(12, 9, 8, 0.92), transparent);
}
.work-card__tag {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 0.35rem;
}
.work-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--pearl);
}

/* ── 9. SERVICES PREVIEW ──────────────────────── */
/* background set in §6 */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}
@media (min-width: 720px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.service-card {
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-glass);
  background: rgba(42, 31, 26, 0.55);
  backdrop-filter: blur(8px);
  transition: border-color var(--duration) var(--ease), background var(--duration) var(--ease);
}
.service-card:hover {
  border-color: rgba(212, 162, 78, 0.35);
  background: rgba(58, 44, 36, 0.55);
}
.service-card__icon {
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: var(--space-4);
  color: var(--brass);
}
.service-card__icon svg {
  width: 100%;
  height: 100%;
}
.service-card__title {
  margin: 0 0 var(--space-3);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--pearl);
}
.service-card__text {
  margin: 0;
  color: var(--pearl-muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

/* ── 10. PROCESS ──────────────────────────────── */
/* background set in §6 */
.process-preview__layout {
  display: grid;
  gap: var(--space-10);
  align-items: start;
}
@media (min-width: 900px) {
  .process-preview__layout {
    grid-template-columns: 0.9fr 1.1fr;
    gap: var(--space-12);
  }
}
.process-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--space-4);
}
.process-step {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: var(--space-4);
  row-gap: var(--space-2);
  padding: var(--space-5);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-glass);
  background: rgba(26, 18, 16, 0.65);
}
.process-step__num {
  grid-row: 1 / 3;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--brass);
  line-height: 1;
  padding-top: 0.15rem;
}
.process-step__title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--pearl);
}
.process-step__text {
  margin: 0;
  grid-column: 2;
  color: var(--pearl-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* ── 11. MATERIALS ────────────────────────────── */
.materials {
  padding-top: 3rem;
  padding-bottom: 3rem;
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  /* background set in §6 */
}
.materials .section__head {
  margin-bottom: 1.75rem;
}
.materials-row {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}
@media (min-width: 640px) {
  .materials-row {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .materials-row {
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-3);
  }
}
.materials-row li {
  padding: var(--space-4);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-glass);
  background: rgba(12, 9, 8, 0.35);
}
.materials-row strong {
  display: block;
  color: var(--brass);
  font-size: 0.92rem;
  margin-bottom: 0.25rem;
}
.materials-row span {
  color: var(--pearl-dim);
  font-size: 0.85rem;
  line-height: 1.4;
}

/* ── 12. CTA BAND ─────────────────────────────── */
.cta-band {
  position: relative;
  padding: clamp(4.5rem, 9vw, 7rem) 0;
  /* background set in §6 */
  overflow: hidden;
}
.cta-band__inner {
  max-width: 40rem;
  margin: 0 auto;
  padding: 0 var(--space-5);
  text-align: center;
}
.cta-band__title {
  margin: 0 0 var(--space-4);
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.85rem);
  font-weight: 600;
  color: var(--pearl);
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.cta-band__sub {
  margin: 0 0 var(--space-8);
  color: var(--pearl-muted);
  font-size: 1.05rem;
  line-height: 1.65;
}
.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
}
@media (max-width: 640px) {
  .cta-band__actions {
    flex-direction: column;
  }
  .cta-band__actions .btn {
    width: 100%;
  }
}

/* ── 13. FOOTER ───────────────────────────────── */
.site-footer {
  background: #080605;
  border-top: 1px solid var(--border-glass);
  padding: var(--space-12) 0 var(--space-6);
}
.site-footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-5);
  display: grid;
  gap: var(--space-10);
}
@media (min-width: 800px) {
  .site-footer__inner {
    grid-template-columns: 1.3fr 1fr;
  }
}
.footer__logo img {
  height: 36px;
  width: auto;
  margin-bottom: var(--space-4);
}
.footer__tagline {
  margin: 0 0 var(--space-4);
  color: var(--pearl-muted);
  max-width: 28rem;
  font-size: 0.95rem;
  line-height: 1.55;
}
.footer__contact {
  margin: 0;
  color: var(--pearl-dim);
  font-size: 0.9rem;
  line-height: 1.7;
}
.footer__contact a:hover {
  color: var(--brass);
}
.footer__nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
}
.footer__heading {
  margin: 0 0 var(--space-3);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass);
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.footer__col a {
  color: var(--pearl-muted);
  font-size: 0.95rem;
}
.footer__col a:hover {
  color: var(--pearl);
}
.site-footer__bottom {
  max-width: var(--max-w);
  margin: var(--space-10) auto 0;
  padding: var(--space-5) var(--space-5) 0;
  border-top: 1px solid var(--border-glass);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: space-between;
  color: var(--pearl-dim);
  font-size: 0.82rem;
}
.footer__note a {
  color: var(--brass);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

/* ── 14. INTERIOR PAGE HERO ───────────────────── */
.page-hero {
  position: relative;
  padding: calc(var(--header-h) + 3.5rem) var(--space-5) 3.5rem;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(ellipse 70% 80% at 90% 20%, rgba(212, 162, 78, 0.1), transparent 50%),
    linear-gradient(180deg, rgba(12, 9, 8, 0.2), rgba(12, 9, 8, 0.85)),
    var(--walnut);
  border-bottom: 1px solid var(--border-glass);
}
.page-hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
  margin: 0 0 var(--space-4);
  font-size: 0.8rem;
  color: var(--pearl-dim);
}
.breadcrumb a { color: var(--pearl-muted); }
.breadcrumb a:hover { color: var(--brass); }
.breadcrumb span[aria-hidden] { opacity: 0.5; }
.page-hero__title {
  margin: 0 0 var(--space-4);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: var(--pearl);
  max-width: 18ch;
}
.page-hero__sub {
  margin: 0;
  max-width: 38rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--pearl-muted);
}
.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

/* ── 15. WORK GALLERY HUB ─────────────────────── */
.work-hub-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}
@media (min-width: 640px) {
  .work-hub-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .work-hub-grid { grid-template-columns: repeat(3, 1fr); }
}
.work-hub-grid .work-card {
  min-height: 16rem;
  aspect-ratio: 4/3;
}

/* ── 16. QUOTE FORM ───────────────────────────── */
.quote-layout {
  display: grid;
  gap: var(--space-10);
  align-items: start;
}
@media (min-width: 900px) {
  .quote-layout {
    grid-template-columns: 0.9fr 1.1fr;
    gap: var(--space-12);
  }
}
.quote-aside {
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-glass);
  background: rgba(26, 18, 16, 0.88);
}
.quote-aside h2 {
  margin: 0 0 var(--space-3);
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--pearl);
}
.quote-aside p {
  margin: 0 0 var(--space-4);
  color: var(--pearl-muted);
  line-height: 1.6;
  font-size: 0.98rem;
}
.quote-aside ul {
  margin: 0;
  padding: 0 0 0 1.1rem;
  color: var(--pearl-muted);
  line-height: 1.7;
}
.quote-form {
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-glass);
  background: rgba(26, 18, 16, 0.92);
}
.form-row {
  display: grid;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}
@media (min-width: 640px) {
  .form-row--2 { grid-template-columns: 1fr 1fr; }
}
.form-field label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--pearl-dim);
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-glass);
  background: rgba(12, 9, 8, 0.65);
  color: var(--pearl);
  font: inherit;
  transition: border-color var(--duration) var(--ease);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: rgba(212, 162, 78, 0.55);
}
.form-field textarea { min-height: 9rem; resize: vertical; }
.form-field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--brass) 50%),
    linear-gradient(135deg, var(--brass) 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(50% - 3px), calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}
.form-note {
  margin: var(--space-4) 0 0;
  font-size: 0.82rem;
  color: var(--pearl-dim);
  line-height: 1.5;
}
.form-actions { margin-top: var(--space-5); }

/* ── 17. ABOUT / SISTER BRANDS ────────────────── */
.about-story {
  display: grid;
  gap: var(--space-8);
  align-items: center;
}
@media (min-width: 900px) {
  .about-story {
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--space-12);
  }
}
.about-story__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-glass);
  min-height: 16rem;
}
.about-story__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 18rem;
}
.about-prose p {
  color: var(--pearl-muted);
  line-height: 1.7;
  margin: 0 0 var(--space-4);
  font-size: 1.02rem;
}
.about-prose p strong { color: var(--pearl); font-weight: 600; }
.sister-grid {
  display: grid;
  gap: var(--space-4);
}
@media (min-width: 720px) {
  .sister-grid { grid-template-columns: 1fr 1fr; }
}
.sister-card {
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-glass);
  background: rgba(26, 18, 16, 0.9);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.sister-card__logo {
  height: 40px;
  width: auto;
  object-fit: contain;
  object-position: left center;
  margin-bottom: var(--space-2);
}
.sister-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--pearl);
}
.sister-card p {
  margin: 0;
  color: var(--pearl-muted);
  line-height: 1.6;
  flex: 1;
  font-size: 0.98rem;
}

/* Active nav link on interiors handled via aria-current */
.nav__links a[aria-current="page"],
.nav__mobile a[aria-current="page"] {
  color: var(--brass);
}
