/* ============================================================
   BUSS CUSTOM CABINETRY — SITE.CSS
   Version 1.0 — May 2026
   ============================================================ */

/* 1. GOOGLE FONTS */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;1,9..144,300;1,9..144,400&family=Manrope:wght@300;400;500;600;700&display=swap');

/* ============================================================
   2. BRAND TOKENS
   ============================================================ */
:root {
  /* —— Color Palette —— */
  --bg:            #0D0B09;   /* near-black, warm base */
  --surface:       #141210;   /* first surface level */
  --surface-2:     #1C1814;   /* second surface level */
  --surface-3:     #252018;   /* third surface level */
  --border:        #2A2218;   /* default border */
  --border-2:      #3A3228;   /* lighter border */

  --amber:         #C8782A;   /* primary accent */
  --amber-lt:      #E09245;   /* hover / lighter amber */
  --amber-dim:     #7A4C1A;   /* muted amber (borders) */
  --amber-muted:   rgba(200, 120, 42, 0.10);
  --amber-glow:    rgba(200, 120, 42, 0.05);

  --text:          #EDE5D8;   /* primary text */
  --text-2:        #A09080;   /* secondary / body text */
  --text-3:        #5C5048;   /* muted / captions */

  /* —— Typography —— */
  --font-d: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-b: 'Manrope', system-ui, -apple-system, sans-serif;

  /* —— Type Scale (fluid, mobile-first) —— */
  --sz-xs:   0.75rem;                        /* 12px */
  --sz-sm:   0.875rem;                       /* 14px */
  --sz-base: 1rem;                           /* 16px */
  --sz-lg:   1.125rem;                       /* 18px */
  --sz-xl:   1.25rem;                        /* 20px */
  --sz-2xl:  1.5rem;                         /* 24px */
  --sz-3xl:  2rem;                           /* 32px */
  --sz-4xl:  clamp(2rem,    4vw, 2.75rem);   /* 32–44px */
  --sz-5xl:  clamp(2.5rem,  6vw, 3.75rem);   /* 40–60px */
  --sz-6xl:  clamp(3rem,    8vw, 5.25rem);   /* 48–84px */
  --sz-hero: clamp(3.25rem, 9vw, 6.25rem);   /* 52–100px */

  /* —— Spacing —— */
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-5:  1.25rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;
  --sp-32: 8rem;

  /* —— Layout —— */
  --max-w:     1240px;
  --content-w: 720px;
  --gutter:    clamp(1.25rem, 4vw, 2.5rem);

  /* —— Radius —— */
  --radius:    3px;
  --radius-lg: 6px;

  /* —— Motion —— */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --dur:  220ms;
  --dur-md: 380ms;
}

/* ============================================================
   3. RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-b);
  font-size: var(--sz-base);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, picture, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; border: none; background: none; }
::selection { background: var(--amber); color: #fff; }

/* ============================================================
   4. BASE TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-d);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--text);
}
p { line-height: 1.7; }
strong { font-weight: 600; }
em { font-style: italic; }

/* ============================================================
   5. LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.content {
  max-width: var(--content-w);
  margin-inline: auto;
}

/* ============================================================
   6. NAVIGATION
   ============================================================ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: var(--sp-4) 0;
  transition:
    background var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease);
}
.site-nav.scrolled {
  background: rgba(13, 11, 9, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-8);
}
/* Wordmark */
.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex-shrink: 0;
  line-height: 1;
}
.nav-logo-primary {
  font-family: var(--font-d);
  font-weight: 300;
  font-style: italic;
  font-size: 1.35rem;
  letter-spacing: 0.1em;
  color: var(--text);
}
.nav-logo-secondary {
  font-family: var(--font-b);
  font-weight: 600;
  font-size: 0.575rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-3);
}
/* Desktop links */
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
}
.nav-links a {
  font-family: var(--font-b);
  font-size: var(--sz-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-2);
  transition: color var(--dur) var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); }
.nav-links a.nav-cta {
  color: var(--amber);
  border: 1px solid var(--amber-dim);
  padding: var(--sp-2) var(--sp-5);
  border-radius: var(--radius);
  transition:
    background var(--dur) var(--ease),
    color var(--dur) var(--ease),
    border-color var(--dur) var(--ease);
}
.nav-links a.nav-cta:hover {
  background: var(--amber);
  color: #fff;
  border-color: var(--amber);
}
/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 1.5px;
  background: var(--text-2);
  border-radius: 2px;
  transition: transform var(--dur-md) var(--ease), opacity var(--dur) var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); background: var(--text); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); background: var(--text); }

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    top: 64px;
    background: rgba(13, 11, 9, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--sp-10);
    z-index: 90;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    font-size: var(--sz-2xl);
    letter-spacing: 0.08em;
    font-weight: 300;
    font-family: var(--font-d);
    text-transform: none;
  }
  .nav-links a.nav-cta {
    font-family: var(--font-b);
    font-size: var(--sz-sm);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: var(--sp-3) var(--sp-10);
  }
  .nav-toggle { display: flex; }
}

/* ============================================================
   7. HERO
   ============================================================ */
.hero {
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: clamp(3rem, 6vw, 5rem);
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  /*
   * ============================================================
   * PHOTO SLOT — Hero background
   * Replace this CSS gradient with:
   *   background-image: url('img/hero.jpg');
   *   background-size: cover;
   *   background-position: center 30%;
   *
   * Best shot: pantry interior with warm lighting showing
   * drawer detail and wood grain. Or shop bench mid-project.
   * ============================================================
   */
  background:
    radial-gradient(ellipse at 38% 42%, rgba(175, 92, 22, 0.20) 0%, transparent 52%),
    radial-gradient(ellipse at 75% 20%, rgba(110, 52, 10, 0.13) 0%, transparent 42%),
    linear-gradient(158deg, #1E1508 0%, #0F0C07 45%, #080604 100%);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    /* Top scrim for nav contrast — fades out below header area */
    linear-gradient(
      to bottom,
      rgba(13, 11, 9, 0.72) 0%,
      rgba(13, 11, 9, 0.45) 8%,
      rgba(13, 11, 9, 0.00) 22%
    ),
    /* Bottom scrim for hero copy readability */
    linear-gradient(
      to top,
      rgba(13, 11, 9, 0.95) 0%,
      rgba(13, 11, 9, 0.50) 45%,
      rgba(13, 11, 9, 0.12) 100%
    );
}
.hero-content {
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  font-family: var(--font-b);
  font-size: var(--sz-xs);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: var(--sp-6);
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--amber);
  flex-shrink: 0;
}
.hero-headline {
  font-size: var(--sz-hero);
  font-weight: 300;
  font-style: italic;
  line-height: 1.06;
  letter-spacing: -0.03em;
  max-width: 16ch;
  margin-bottom: var(--sp-6);
}
.hero-body {
  font-size: var(--sz-lg);
  color: var(--text-2);
  max-width: 44ch;
  margin-bottom: var(--sp-10);
  line-height: 1.72;
  font-weight: 300;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  align-items: center;
}
.hero-scroll {
  position: absolute;
  bottom: var(--sp-8);
  right: var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  color: var(--text-3);
  font-family: var(--font-b);
  font-size: 0.625rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  user-select: none;
}
.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 3rem;
  background: linear-gradient(to bottom, var(--text-3), transparent);
  margin-top: var(--sp-2);
}

/* ============================================================
   8. SECTION WRAPPERS & HEADERS
   ============================================================ */
.section {
  padding-block: clamp(4rem, 8vw, 7rem);
}
.section--dark    { background: var(--surface);   }
.section--darker  { background: var(--bg);         }
.section--mid     { background: var(--surface-2);  }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  font-family: var(--font-b);
  font-size: var(--sz-xs);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: var(--sp-4);
}
.section-label::before {
  content: '';
  display: block;
  width: 1.5rem;
  height: 1px;
  background: var(--amber);
  flex-shrink: 0;
}
.section-headline {
  font-size: var(--sz-5xl);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.025em;
}
.section-headline em {
  font-style: italic;
  color: var(--text-2);
}
.section-body {
  font-size: var(--sz-lg);
  color: var(--text-2);
  line-height: 1.78;
  max-width: 52ch;
  margin-top: var(--sp-5);
  font-weight: 300;
}

/* ============================================================
   9. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  font-family: var(--font-b);
  font-size: var(--sz-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: var(--sp-4) var(--sp-8);
  border-radius: var(--radius);
  transition:
    background var(--dur) var(--ease),
    color var(--dur) var(--ease),
    border-color var(--dur) var(--ease),
    transform var(--dur) var(--ease);
}
.btn:active { transform: scale(0.98); }
.btn-primary {
  background: var(--amber);
  color: #fff;
}
.btn-primary:hover {
  background: var(--amber-lt);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--amber);
  border: 1px solid var(--amber-dim);
}
.btn-outline:hover {
  background: var(--amber-muted);
  border-color: var(--amber);
}
.btn-ghost {
  background: transparent;
  color: var(--text-2);
  border: 1px solid var(--border-2);
}
.btn-ghost:hover {
  color: var(--text);
  border-color: var(--text-3);
  background: rgba(255,255,255,0.03);
}
.btn-link {
  background: none;
  color: var(--text-2);
  padding-inline: 0;
  font-weight: 500;
  font-size: var(--sz-sm);
  letter-spacing: 0;
  text-transform: none;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--border-2);
  transition: color var(--dur) var(--ease), text-decoration-color var(--dur) var(--ease);
}
.btn-link:hover {
  color: var(--text);
  text-decoration-color: var(--text-3);
}

/* ============================================================
   10. SERVICE / WHAT I BUILD GRID
   ============================================================ */
.services-grid {
  display: grid;
  /* Mobile: 1 col. Tablet: 2 cols. Desktop: 3 cols. Fixed columns at
     each breakpoint so 6 service items always tile cleanly (no empty
     cells from auto-fill). */
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border);
  margin-top: var(--sp-14, 3.5rem);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (min-width: 620px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}
.service-item {
  background: var(--surface);
  padding: var(--sp-8);
  transition: background var(--dur) var(--ease);
}
.service-item:hover { background: var(--surface-2); }
.service-icon {
  width: 2rem;
  height: 2rem;
  margin-bottom: var(--sp-5);
  color: var(--amber);
  opacity: 0.7;
}
.service-title {
  font-family: var(--font-d);
  font-size: var(--sz-xl);
  font-weight: 300;
  margin-bottom: var(--sp-3);
  color: var(--text);
  line-height: 1.2;
}
.service-body {
  font-size: var(--sz-sm);
  color: var(--text-2);
  line-height: 1.72;
}

/* ============================================================
   11. DIFFERENTIATORS
   ============================================================ */
.diff-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-8);
  margin-top: var(--sp-12);
}
@media (min-width: 620px) {
  .diff-grid { grid-template-columns: repeat(3, 1fr); gap: var(--sp-10); }
}
.diff-rule {
  width: 2rem;
  height: 1px;
  background: var(--amber-dim);
  margin-bottom: var(--sp-5);
}
.diff-title {
  font-family: var(--font-d);
  font-size: var(--sz-2xl);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: var(--sp-3);
}
.diff-body {
  font-size: var(--sz-sm);
  color: var(--text-2);
  line-height: 1.78;
}

/* ============================================================
   12. SPLIT LAYOUTS
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-12);
  align-items: center;
}
@media (min-width: 768px) {
  .split--50-50 { grid-template-columns: 1fr 1fr; }
  .split--40-60 { grid-template-columns: 2fr 3fr; }
  .split--60-40 { grid-template-columns: 3fr 2fr; }
}
@media (min-width: 768px) {
  .split--rev > *:first-child  { order: 2; }
  .split--rev > *:last-child   { order: 1; }
}

/* ============================================================
   13. FIGURES & IMAGE PLACEHOLDERS
   ============================================================ */
.fig { overflow: hidden; border-radius: var(--radius); }

/* Image placeholder — replace .fig-img background with a real photo */
.fig-img {
  width: 100%;
  aspect-ratio: 4/3;
  /*
   * ============================================================
   * PHOTO SLOT — Replace this gradient with:
   *   background-image: url('img/YOURFILE.jpg');
   *   background-size: cover;
   *   background-position: center;
   * ============================================================
   */
  background:
    radial-gradient(ellipse at 28% 38%, rgba(178, 92, 22, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse at 72% 65%, rgba(108, 50, 10, 0.14) 0%, transparent 48%),
    linear-gradient(148deg, #1E1610 0%, #0F0C08 100%);
}
.fig-img--tall  { aspect-ratio: 3/4; }
.fig-img--wide  { aspect-ratio: 16/9; }
.fig-img--sq    { aspect-ratio: 1/1; }
.fig-img--cin   { aspect-ratio: 21/9; }

/* Subtle "replace me" indicator for dev */
.fig-img::after {
  content: attr(data-slot);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  font-family: var(--font-b);
  font-size: var(--sz-xs);
  letter-spacing: 0.1em;
  color: var(--text-3);
  text-transform: uppercase;
  padding: var(--sp-4);
}

.fig-caption {
  font-size: var(--sz-xs);
  color: var(--text-3);
  letter-spacing: 0.06em;
  padding-top: var(--sp-3);
  line-height: 1.6;
}

/* ============================================================
   14. PORTFOLIO / GALLERY
   ============================================================ */
.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-3);
  margin-top: var(--sp-12);
}
@media (min-width: 620px) {
  .portfolio-grid--2 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .portfolio-grid--3 { grid-template-columns: repeat(3, 1fr); }
}
.portfolio-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
}
.portfolio-card-img {
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  /*
   * ============================================================
   * PHOTO SLOT — portfolio card image
   * Replace gradient with: background-image: url('img/FILE.jpg');
   * background-size: cover; background-position: center;
   * ============================================================
   */
  background:
    radial-gradient(ellipse at 30% 42%, rgba(175, 90, 20, 0.20) 0%, transparent 58%),
    linear-gradient(148deg, #201710 0%, #0E0C08 100%);
  transition: transform 600ms var(--ease);
}
.portfolio-card:hover .portfolio-card-img { transform: scale(1.025); }
.portfolio-card-meta {
  padding: var(--sp-5) var(--sp-6) var(--sp-6);
}
.portfolio-card-title {
  font-family: var(--font-d);
  font-size: var(--sz-xl);
  font-weight: 300;
  color: var(--text);
  margin-bottom: var(--sp-1);
  line-height: 1.2;
}
.portfolio-card-tag {
  font-family: var(--font-b);
  font-size: var(--sz-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
}
.portfolio-card-note {
  font-size: var(--sz-sm);
  color: var(--text-2);
  line-height: 1.65;
  margin-top: var(--sp-3);
}
/* Upcoming slot (empty) — legacy, kept for reference */
.portfolio-card--upcoming .portfolio-card-img {
  background: var(--surface-2);
  border: 1px dashed var(--border-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--sz-xs);
  color: var(--text-3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Project-type cards — typographic display in the image area,
   used in the "More work on the bench" section. */
.portfolio-card-img--type,
.portfolio-card-img--cta {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: var(--sp-6);
  text-align: left;
  background:
    radial-gradient(ellipse at 30% 22%, rgba(160, 82, 18, 0.10) 0%, transparent 58%),
    linear-gradient(165deg, var(--surface-2) 0%, var(--surface) 100%);
  border: 1px solid var(--border);
}
.portfolio-card-img--cta {
  background:
    radial-gradient(ellipse at 28% 28%, rgba(175, 92, 22, 0.22) 0%, transparent 60%),
    linear-gradient(165deg, #2A1810 0%, #110C07 100%);
  border-color: var(--amber-dim);
}
.portfolio-card-img-eyebrow {
  font-family: var(--font-b);
  font-size: var(--sz-xs);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
}
.portfolio-card-img-headline {
  font-family: var(--font-d);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--text);
}
.portfolio-card-img--cta .portfolio-card-img-headline { color: var(--text); }
.portfolio-card-img-headline em {
  color: var(--amber);
  font-style: italic;
}
.portfolio-card-img-foot {
  font-family: var(--font-b);
  font-size: var(--sz-xs);
  letter-spacing: 0.1em;
  color: var(--text-3);
  text-transform: uppercase;
}

/* CTA card: whole card is the link */
a.portfolio-card--cta {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: transform var(--dur) var(--ease);
}
a.portfolio-card--cta:hover { transform: translateY(-2px); }
a.portfolio-card--cta:hover .portfolio-card-img--cta {
  border-color: var(--amber);
}

/* Shot grid (within a project detail) */
.shot-grid {
  display: grid;
  gap: var(--sp-2);
}
.shot-grid--2 { grid-template-columns: repeat(2, 1fr); }
.shot-grid--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 560px) {
  .shot-grid--2, .shot-grid--3 { grid-template-columns: 1fr; }
}
.shot {
  aspect-ratio: 1/1;
  border-radius: var(--radius);
  overflow: hidden;
  background:
    radial-gradient(ellipse at 55% 35%, rgba(160, 82, 18, 0.18) 0%, transparent 52%),
    linear-gradient(135deg, #1C1510 0%, #0D0B07 100%);
}
.shot--wide { aspect-ratio: 16/10; }
.shot--tall { aspect-ratio: 3/4; }
.shot--hero { aspect-ratio: 3/2; }

/* ============================================================
   15. PROCESS STEPS
   ============================================================ */
.process-list {
  display: flex;
  flex-direction: column;
  margin-top: var(--sp-12);
}
.process-step {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 0 var(--sp-6);
  padding-block: var(--sp-8);
  border-top: 1px solid var(--border);
  align-items: start;
}
.process-step:last-child { border-bottom: 1px solid var(--border); }
.step-num {
  font-family: var(--font-d);
  font-size: var(--sz-sm);
  font-weight: 300;
  color: var(--amber);
  letter-spacing: 0.06em;
  padding-top: 0.25rem;
  line-height: 1;
}
.step-body {}
.step-title {
  font-family: var(--font-d);
  font-size: var(--sz-2xl);
  font-weight: 300;
  margin-bottom: var(--sp-3);
  line-height: 1.2;
}
.step-desc {
  font-size: var(--sz-base);
  color: var(--text-2);
  line-height: 1.78;
}
.step-desc p + p { margin-top: var(--sp-3); }

/* ============================================================
   16. ABOUT / BIO
   ============================================================ */
.bio-pull {
  font-family: var(--font-d);
  font-style: italic;
  font-size: var(--sz-4xl);
  font-weight: 300;
  line-height: 1.3;
  color: var(--text);
  max-width: 22ch;
  margin-bottom: var(--sp-8);
}
.bio-body p {
  font-size: var(--sz-lg);
  color: var(--text-2);
  line-height: 1.82;
  margin-bottom: var(--sp-5);
  font-weight: 300;
}
.bio-body p:last-child { margin-bottom: 0; }

/* ============================================================
   17. STAT ROW
   ============================================================ */
.stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-6) var(--sp-16);
  padding-block: var(--sp-8);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-block: var(--sp-12);
}
.stat-value {
  font-family: var(--font-d);
  font-size: var(--sz-4xl);
  font-weight: 300;
  color: var(--text);
  line-height: 1;
}
.stat-label {
  font-size: var(--sz-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-top: var(--sp-2);
}

/* ============================================================
   18. TESTIMONIAL SLOTS
   ============================================================ */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--sp-6);
  margin-top: var(--sp-12);
}
.testimonial-slot {
  padding: var(--sp-8);
  border: 1px dashed var(--border-2);
  border-radius: var(--radius-lg);
  background: var(--surface);
}
.testimonial-quote {
  font-family: var(--font-d);
  font-style: italic;
  font-size: var(--sz-lg);
  color: var(--text-2);
  line-height: 1.72;
  margin-bottom: var(--sp-4);
}
.testimonial-attr {
  font-size: var(--sz-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
}

/* ============================================================
   19. CTA SECTION
   ============================================================ */
.cta-section {
  text-align: center;
  padding-block: clamp(5rem, 10vw, 9rem);
}
.cta-section .section-headline {
  max-width: 22ch;
  margin-inline: auto;
}
.cta-section .section-body {
  text-align: center;
  margin-inline: auto;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  justify-content: center;
  margin-top: var(--sp-8);
}

/* ============================================================
   20. FORMS
   ============================================================ */
.form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
}
@media (min-width: 560px) {
  .form-row--2 { grid-template-columns: repeat(2, 1fr); }
}
.field {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.field-label {
  font-family: var(--font-b);
  font-size: var(--sz-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-2);
}
.field-label .req { color: var(--amber); margin-left: 2px; }
.field-input,
.field-select,
.field-textarea {
  background: var(--surface-2);
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  color: var(--text);
  padding: var(--sp-3) var(--sp-4);
  font-size: var(--sz-base);
  line-height: 1.5;
  width: 100%;
  transition:
    border-color var(--dur) var(--ease),
    background var(--dur) var(--ease);
  -webkit-appearance: none;
  appearance: none;
}
.field-input::placeholder,
.field-textarea::placeholder { color: var(--text-3); }
.field-input:focus,
.field-select:focus,
.field-textarea:focus {
  outline: none;
  border-color: var(--amber);
  background: var(--surface-3);
}
.field-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235C5048' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--sp-3) center;
  padding-right: var(--sp-10);
  cursor: pointer;
}
.field-select option { background: #1C1814; }
.field-textarea { resize: vertical; min-height: 140px; }
.field-hint {
  font-size: var(--sz-xs);
  color: var(--text-3);
  line-height: 1.6;
}
.form-notice {
  padding: var(--sp-5) var(--sp-6);
  background: var(--amber-muted);
  border-left: 2px solid var(--amber-dim);
  border-radius: var(--radius);
}
.form-notice p {
  font-size: var(--sz-sm);
  color: var(--text-2);
  line-height: 1.72;
}
.form-submit { margin-top: var(--sp-2); }

/* ============================================================
   21. INQUIRY PAGE LAYOUT
   ============================================================ */
.inquiry-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-16);
  align-items: start;
}
@media (min-width: 900px) {
  .inquiry-wrap { grid-template-columns: 3fr 2fr; }
}
.inquiry-sidebar-head {
  font-family: var(--font-d);
  font-size: var(--sz-3xl);
  font-weight: 300;
  margin-bottom: var(--sp-4);
  line-height: 1.2;
}
.inquiry-sidebar-body {
  font-size: var(--sz-sm);
  color: var(--text-2);
  line-height: 1.78;
}
.inquiry-sidebar-body p + p { margin-top: var(--sp-3); }
.inquiry-checklist {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-top: var(--sp-6);
  padding-top: var(--sp-6);
  border-top: 1px solid var(--border);
}
.inquiry-check {
  position: relative;
  padding-left: calc(1em + var(--sp-3));
  font-size: var(--sz-sm);
  color: var(--text-2);
  line-height: 1.6;
}
.inquiry-check::before {
  content: '→';
  color: var(--amber);
  position: absolute;
  left: 0;
  top: 0;
  line-height: inherit;
}

/* ============================================================
   22. SUCCESS STATE
   ============================================================ */
.form-success {
  display: none;
  text-align: center;
  padding: var(--sp-20) var(--sp-8);
}
.form-success.visible { display: block; }
.form-success-icon {
  font-size: 2.5rem;
  margin-bottom: var(--sp-4);
}
.form-success-head {
  font-family: var(--font-d);
  font-size: var(--sz-3xl);
  font-weight: 300;
  margin-bottom: var(--sp-4);
}
.form-success-body {
  font-size: var(--sz-base);
  color: var(--text-2);
  max-width: 38ch;
  margin-inline: auto;
  line-height: 1.72;
}

/* ============================================================
   23. PAGE HEADERS (non-hero pages)
   ============================================================ */
.page-header {
  padding-top: calc(var(--sp-32) + 1.5rem);
  padding-bottom: var(--sp-12);
  border-bottom: 1px solid var(--border);
  margin-bottom: var(--sp-16);
}
.page-header .section-label { margin-bottom: var(--sp-3); }
.page-header h1 {
  font-size: var(--sz-6xl);
  font-weight: 300;
  font-style: italic;
  line-height: 1.08;
  max-width: 18ch;
}
.page-header .page-lead {
  font-size: var(--sz-lg);
  color: var(--text-2);
  max-width: 52ch;
  margin-top: var(--sp-5);
  line-height: 1.78;
  font-weight: 300;
}

/* ============================================================
   24. FOOTER
   ============================================================ */
.site-footer {
  padding-block: var(--sp-16);
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-12);
}
@media (min-width: 620px) {
  .footer-inner {
    grid-template-columns: 2fr 1fr 1fr;
    align-items: start;
  }
}
.footer-logo-primary {
  font-family: var(--font-d);
  font-size: var(--sz-xl);
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.08em;
  color: var(--text);
  line-height: 1;
}
.footer-logo-secondary {
  font-family: var(--font-b);
  font-size: 0.575rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-top: 3px;
  margin-bottom: var(--sp-5);
}
.footer-tagline {
  font-size: var(--sz-sm);
  color: var(--text-3);
  line-height: 1.72;
  max-width: 26ch;
}
.footer-col-head {
  font-family: var(--font-b);
  font-size: var(--sz-xs);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: var(--sp-4);
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.footer-links a {
  font-size: var(--sz-sm);
  color: var(--text-2);
  transition: color var(--dur) var(--ease);
  line-height: 1;
}
.footer-links a:hover { color: var(--text); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-3);
  padding-top: var(--sp-8);
  margin-top: var(--sp-8);
  border-top: 1px solid var(--border);
}
.footer-copy,
.footer-location {
  font-size: var(--sz-xs);
  color: var(--text-3);
  letter-spacing: 0.04em;
}

/* ============================================================
   25. SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 580ms var(--ease), transform 580ms var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   26. UTILITIES
   ============================================================ */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border-width: 0;
}
:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
  border-radius: var(--radius);
}
.amber   { color: var(--amber); }
.muted   { color: var(--text-2); }
.divider {
  width: 100%; height: 1px;
  background: var(--border);
  margin-block: var(--sp-8);
}
.divider--amber { background: var(--amber-dim); }
.mt-4  { margin-top: var(--sp-4);  }
.mt-6  { margin-top: var(--sp-6);  }
.mt-8  { margin-top: var(--sp-8);  }
.mt-10 { margin-top: var(--sp-10); }
.mt-12 { margin-top: var(--sp-12); }
.mt-16 { margin-top: var(--sp-16); }
.mb-4  { margin-bottom: var(--sp-4);  }
.mb-8  { margin-bottom: var(--sp-8);  }
.mb-12 { margin-bottom: var(--sp-12); }
