/* ============================================================
   NM ESTATE GROUNDS — Blueprint Design System
   ============================================================ */

/* ------------------------------------------------------------
   DESIGN TOKENS
   ------------------------------------------------------------ */
:root {
  /* Core palette */
  --bg-base:        #081810;
  --bg-surface:     #081810;
  --bg-surface-2:   #0b1e12;
  --bg-card:        #081810;
  --bg-dark:        #060f0a;

  /* Borders & lines */
  --border-faint:   rgba(255, 255, 255, 0.07);
  --border-subtle:  rgba(255, 255, 255, 0.12);
  --border-medium:  rgba(255, 255, 255, 0.20);
  --border-strong:  rgba(255, 255, 255, 0.32);

  /* Text */
  --text-primary:   #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.65);
  --text-muted:     rgba(255, 255, 255, 0.40);
  --text-dim:       rgba(255, 255, 255, 0.28);

  /* Gold accent — restrained */
  --gold:           #c8a96e;
  --gold-dim:       rgba(200, 169, 110, 0.55);
  --gold-faint:     rgba(200, 169, 110, 0.18);

  /* Typography */
  --font-display:   "Barlow Condensed", "Inter", Arial, sans-serif;
  --font-body:      "Inter", Arial, sans-serif;
  --font-serif:     "Playfair Display", Georgia, serif;

  /* Layout */
  --container:      1180px;
  --header-height:  68px;
  --section-pad:    108px;
  --gutter:         40px;

  /* Shadows */
  --shadow-card:    0 2px 24px rgba(0, 0, 0, 0.32);
  --shadow-lift:    0 8px 40px rgba(0, 0, 0, 0.48);
}

/* ------------------------------------------------------------
   RESET & BASE
   ------------------------------------------------------------ */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text-primary);
  background: var(--bg-base);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

img, svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button, input, select {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4 {
  margin: 0;
  line-height: 1;
}

/* ------------------------------------------------------------
   ACCESSIBILITY
   ------------------------------------------------------------ */
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--text-primary);
  background: var(--bg-surface);
  border: 1px solid var(--border-medium);
  font-size: 13px;
  transform: translateY(-140%);
  transition: transform 0.3s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.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;
}

/* ------------------------------------------------------------
   SHARED LAYOUT UTILITIES
   ------------------------------------------------------------ */
.section-inner {
  width: min(100% - var(--gutter) * 2, var(--container));
  margin: 0 auto;
}

/* Section label — eyebrow with flanking rules */
.section-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.section-label::before,
.section-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border-subtle);
}

.section-label::before {
  max-width: 0;
  flex: 0 0 0;
}

.section-label::after {
  flex: 1;
}

/* Eyebrow */
.eyebrow {
  margin: 0;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ------------------------------------------------------------
   BLUEPRINT FRAME — reusable framed image container
   ------------------------------------------------------------ */
.blueprint-frame {
  position: relative;
  border: 1px solid var(--border-subtle);
}

/* Corner markers — top-left */
.blueprint-frame::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  width: 14px;
  height: 14px;
  border-top: 1px solid var(--gold-dim);
  border-left: 1px solid var(--gold-dim);
  z-index: 2;
}

/* Corner markers — bottom-right */
.blueprint-frame::after {
  content: "";
  position: absolute;
  bottom: -5px;
  right: -5px;
  width: 14px;
  height: 14px;
  border-bottom: 1px solid var(--gold-dim);
  border-right: 1px solid var(--gold-dim);
  z-index: 2;
}

.blueprint-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ------------------------------------------------------------
   BUTTONS
   ------------------------------------------------------------ */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 24px;
  color: var(--text-primary);
  background: transparent;
  border: 1px solid var(--border-strong);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
  cursor: pointer;
}

.button svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  flex: 0 0 16px;
  transition: transform 0.25s ease;
}

.button:hover,
.button:focus {
  background: var(--border-subtle);
  border-color: var(--border-medium);
}

.button:hover svg,
.button:focus svg {
  transform: translateX(3px);
}

/* Outline variant (same as default in this design) */
.button-outline {
  border-color: var(--border-medium);
}

.button-outline:hover,
.button-outline:focus {
  border-color: var(--gold-dim);
  color: var(--gold);
}

/* Small nav CTA */
.button-small {
  min-height: 36px;
  padding: 0 16px;
  font-size: 10px;
  letter-spacing: 0.16em;
}

/* ------------------------------------------------------------
   NAVIGATION
   ------------------------------------------------------------ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(13, 31, 18, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-faint);
  transition: border-color 0.3s ease, background 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(10, 26, 14, 0.97);
  border-bottom-color: var(--border-subtle);
}

.nav-shell {
  width: min(100% - var(--gutter) * 2, var(--container));
  min-height: var(--header-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

/* Brand */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 38px;
  color: var(--gold);
  background: transparent;
  border: 1px solid var(--gold-dim);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.brand-copy {
  display: grid;
  gap: 1px;
  color: var(--text-primary);
}

.brand-copy > span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
}

.brand-copy small {
  color: var(--text-muted);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  color: var(--text-secondary);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--text-primary);
}

/* Hamburger */
.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 1px solid var(--border-subtle);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  width: 18px;
  height: 1px;
  background: var(--text-primary);
  transition: all 0.3s ease;
}

/* ------------------------------------------------------------
   HERO
   ------------------------------------------------------------ */
.hero {
  display: flex;
  align-items: center;
  background: var(--bg-base);
  padding-top: var(--header-height);
  overflow: hidden;
  position: relative;
}

@media (min-width: 821px) {
  .hero {
    max-height: 900px;
  }
}

/* Subtle blueprint grid overlay */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border-faint) 1px, transparent 1px),
    linear-gradient(90deg, var(--border-faint) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(100% - var(--gutter) * 2, var(--container));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 0 80px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero-content .eyebrow {
  margin-bottom: 20px;
}

h1 {
  font-family: var(--font-display);
  font-size: 76px;
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 28px;
}

.hero-lede {
  color: var(--text-secondary);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  max-width: 380px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 14px;
}

/* Hero image — portrait, full image visible, adapts to content */
.hero-media-wrap {
  position: relative;
  min-width: 335px;
}

.hero-media-wrap .blueprint-frame {
  position: relative;
  width: 100%;
  min-width: 335px;
  overflow: visible;
}

.hero-media-wrap .blueprint-frame img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center top;
}

/* Blueprint measurement tick marks on hero image */
.hero-media-wrap::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -20px;
  width: 12px;
  height: 1px;
  background: var(--gold-dim);
  z-index: 2;
}

.hero-media-wrap::after {
  content: "";
  position: absolute;
  top: 25%;
  left: -20px;
  width: 8px;
  height: 1px;
  background: var(--border-medium);
  z-index: 2;
}

/* ------------------------------------------------------------
   STATS BAND
   ------------------------------------------------------------ */
.stats-band {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.stats-inner {
  width: min(100% - var(--gutter) * 2, var(--container));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 40px 32px;
  border-right: 1px solid var(--border-subtle);
}

.stat-item:last-child {
  border-right: 0;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 800;
  line-height: 1;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.stat-plus {
  font-size: 28px;
  color: var(--gold);
}

.stat-label {
  color: var(--text-muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.5;
}

/* ------------------------------------------------------------
   SECTION — shared padding
   ------------------------------------------------------------ */
.section {
  padding: var(--section-pad) 0;
}

/* ------------------------------------------------------------
   INTRO / PROGRAMS SECTION
   ------------------------------------------------------------ */
.intro-section {
  background: var(--bg-base);
  border-bottom: 1px solid var(--border-faint);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.intro-heading h2 {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--text-primary);
}

.intro-body {
  display: grid;
  gap: 16px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.75;
  padding-top: 6px;
}

/* ------------------------------------------------------------
   SERVICES SECTION
   ------------------------------------------------------------ */
.services-section {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-subtle);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-subtle);
  border: 1px solid var(--border-subtle);
}

.service-card {
  display: flex;
  flex-direction: column;
  padding: 36px 28px 32px;
  background: var(--bg-card);
  transition: background 0.25s ease;
  position: relative;
}

.service-card:hover {
  background: var(--bg-surface-2);
}

.service-icon {
  width: 150px;
  height: 150px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-card h3 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-primary);
  line-height: 1.4;
  margin-bottom: 14px;
}

.service-card p {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.65;
  flex: 1;
  margin-bottom: 24px;
}

/* Text link */
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: auto;
  transition: color 0.2s ease;
}

.text-link svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  flex: 0 0 14px;
  transition: transform 0.2s ease;
}

.text-link:hover,
.text-link:focus {
  color: var(--gold);
}

.text-link:hover svg,
.text-link:focus svg {
  transform: translateX(3px);
}

/* ------------------------------------------------------------
   PROJECT EXAMPLE SECTION
   ------------------------------------------------------------ */
.project-section {
  background: var(--bg-base);
  border-bottom: 1px solid var(--border-faint);
}

.project-grid {
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  gap: 48px;
  align-items: stretch;
  border: 1px solid var(--border-subtle);
}

.project-specs {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  border-right: 1px solid var(--border-subtle);
}

.project-header {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-faint);
}

.project-location-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.project-location {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--text-primary);
  line-height: 1.1;
}

.project-detail {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.spec-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.spec-list {
  display: grid;
  gap: 6px;
}

.spec-list li {
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 400;
  padding-left: 14px;
  position: relative;
}

.spec-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--text-dim);
  font-size: 11px;
}

.spec-value {
  color: var(--text-secondary);
  font-size: 13px;
}

.project-image-wrap {
  padding: 24px;
}

.blueprint-frame--image {
  height: 100%;
  min-height: 320px;
}

.blueprint-frame--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ------------------------------------------------------------
   PROCESS / PORTFOLIO SECTION — Horizontal Timeline
   ------------------------------------------------------------ */
.portfolio-section {
  background: var(--bg-base);
  border-bottom: 1px solid var(--border-faint);
}

/* Timeline wrapper — positions the connecting line */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

/* Horizontal connecting line — runs through the center of the markers */
.process-grid::before {
  content: "";
  position: absolute;
  top: 20px; /* center of the 12px marker (top: 14px + 6px radius) */
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border-subtle);
  z-index: 0;
}

.process-step {
  padding: 0 32px 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}

/* Timeline marker — solid filled circle, clearly visible on the line */
.process-step::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(200, 169, 110, 0.18), 0 0 0 7px rgba(200, 169, 110, 0.07);
  margin-bottom: 26px;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

/* Small vertical connector from marker down to content */
.process-step::after {
  content: "";
  position: absolute;
  top: 12px;
  left: 32px;
  width: 1px;
  height: 20px;
  background: var(--border-subtle);
}

.process-num {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  display: block;
  margin-bottom: 14px;
}

.process-step h3 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.process-step p {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.65;
  max-width: 220px;
}

/* ------------------------------------------------------------
   FOUNDER SECTION
   ------------------------------------------------------------ */
.founder-section {
  padding: var(--section-pad) 0;
  background: var(--bg-base);
  border-bottom: 1px solid var(--border-faint);
  position: relative;
  overflow: hidden;
}

/* Subtle blueprint grid */
.founder-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border-faint) 1px, transparent 1px),
    linear-gradient(90deg, var(--border-faint) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.founder-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 64px;
  align-items: center;
}

.founder-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.founder-content .eyebrow {
  margin-bottom: 20px;
}

.founder-content h2 {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 28px;
}

.founder-content p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 16px;
  max-width: 520px;
}

.signature {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 24px 0 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
}

.signature strong {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--gold);
  font-style: italic;
}

.signature span {
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Founder image — portrait, full image visible, adapts to content */
.founder-image-wrap {
  position: relative;
  min-width: 335px;
}

.blueprint-frame--tall {
  width: 100%;
  min-width: 335px;
  overflow: visible;
}

.blueprint-frame--tall img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center top;
}

/* ------------------------------------------------------------
   TESTIMONIALS SECTION
   ------------------------------------------------------------ */
.testimonials-section {
  background: var(--bg-base);
  border-bottom: 1px solid var(--border-faint);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial {
  margin: 0;
  padding: 52px 40px 48px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  min-height: 280px;
}

/* Top gold accent line */
.testimonial::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold-dim);
}

/* Blueprint corner — top right */
.testimonial::after {
  content: "";
  position: absolute;
  top: -4px;
  right: -4px;
  width: 10px;
  height: 10px;
  border-top: 1px solid var(--gold-dim);
  border-right: 1px solid var(--gold-dim);
}

.testimonial blockquote {
  margin: 0 0 32px;
  color: var(--text-primary);
  font-family: var(--font-serif);
  font-size: 19px;
  font-style: italic;
  line-height: 1.6;
  flex: 1;
}

.testimonial figcaption {
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding-top: 20px;
  border-top: 1px solid var(--border-faint);
}

/* ------------------------------------------------------------
   CONSULTATION / FORM SECTION
   ------------------------------------------------------------ */
.consultation-section {
  padding: var(--section-pad) 0;
  background: var(--bg-base);
  border-bottom: 1px solid var(--border-faint);
}

.consultation-section h2 {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.consultation-lede {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 48px;
}

.consultation-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  background: #081810;
  border: 1px solid var(--border-subtle);
  padding: 10px;
}

.form-row {
  display: flex;
  flex-direction: column;
  background: #081810;
  border: 1px solid var(--border-subtle);
  margin-bottom: 0;
  position: relative;
  transition: border-color 0.2s ease;
}

.form-row:focus-within {
  border-color: var(--gold-dim);
}

.form-row label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.form-row input,
.form-row select {
  width: 100%;
  min-height: 76px;
  padding: 0 28px;
  color: var(--text-primary);
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.02em;
  accent-color: var(--gold);
  transition: background 0.2s ease;
}

.form-row input::placeholder {
  color: var(--text-muted);
  font-size: 13px;
  letter-spacing: 0.06em;
}

.form-row input:focus,
.form-row select:focus {
  background: rgba(200, 169, 110, 0.04);
  outline: none;
}

.form-row select {
  color-scheme: dark;
  cursor: pointer;
  accent-color: var(--gold);
}

.form-row select option {
  background: #0d1f12;
  color: var(--text-primary);
  accent-color: var(--gold);
}

/* Select placeholder color */
.form-row select:invalid,
.form-row select option[value=""] {
  color: var(--text-muted);
}

.form-submit {
  grid-column: 1 / -1;
  width: 100%;
  min-height: 76px;
  background: transparent;
  border: 1px solid var(--border-medium);
  font-size: 11px;
  letter-spacing: 0.16em;
  justify-content: center;
  gap: 14px;
  margin-top: 0;
}

.form-submit:hover,
.form-submit:focus {
  background: rgba(200, 169, 110, 0.06);
  border-color: var(--gold-dim);
  color: var(--gold);
}

.form-note {
  grid-column: 1 / -1;
  padding: 16px 28px;
  color: var(--text-muted);
  font-size: 12px;
  letter-spacing: 0.04em;
  background: transparent;
  border: 1px solid var(--border-faint);
}

.form-note.is-success {
  color: var(--gold);
  border-color: var(--gold-faint);
}

/* ------------------------------------------------------------
   FOOTER
   ------------------------------------------------------------ */
.site-footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border-subtle);
}

.footer-inner {
  width: min(100% - var(--gutter) * 2, var(--container));
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 64px 0 48px;
  border-bottom: 1px solid var(--border-faint);
}

.footer-brand-col .brand {
  margin-bottom: 20px;
}

.footer-brand-col p {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.65;
  max-width: 280px;
}

.footer-brand .brand-copy > span {
  color: var(--text-primary);
}

.footer-brand .brand-copy small {
  color: var(--text-dim);
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 400;
  margin-bottom: 10px;
  transition: color 0.2s ease;
}

.footer-col a:hover,
.footer-col a:focus {
  color: var(--text-primary);
}

.footer-hours-status {
  color: var(--gold);
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 10px;
}

.footer-muted {
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.7;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  color: var(--text-dim);
  font-size: 11px;
  letter-spacing: 0.04em;
}

.footer-bottom p {
  margin: 0;
}

/* ============================================================
   RESPONSIVE — 1100px
   ============================================================ */
@media (max-width: 1100px) {
  :root {
    --section-pad: 80px;
    --gutter: 32px;
  }

  h1 {
    font-size: 60px;
  }

  .hero-inner {
    gap: 40px;
  }

  .intro-heading h2,
  .founder-content h2,
  .consultation-section h2 {
    font-size: 40px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item:nth-child(2) {
    border-right: 0;
  }

  .stat-item:nth-child(3) {
    border-top: 1px solid var(--border-subtle);
  }

  .stat-item:nth-child(4) {
    border-top: 1px solid var(--border-subtle);
    border-right: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 36px;
  }

  .footer-brand-col {
    grid-column: 1 / -1;
  }

  .nav-cta {
    display: none;
  }
}

/* ============================================================
   RESPONSIVE — 820px (tablet/mobile)
   ============================================================ */
@media (max-width: 820px) {
  :root {
    --header-height: 60px;
    --section-pad: 64px;
    --gutter: 20px;
  }

  /* Mobile nav */
  .nav-toggle {
    display: inline-flex;
  }

  .brand-copy small {
    display: none;
  }

  .nav-links {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    min-height: calc(100vh - var(--header-height));
    padding: 24px var(--gutter);
    background: var(--bg-dark);
    border-top: 1px solid var(--border-subtle);
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }

  .nav-links.is-open {
    transform: translateX(0);
  }

  .nav-links a {
    width: 100%;
    padding: 16px 0;
    font-size: 12px;
    border-bottom: 1px solid var(--border-faint);
    color: var(--text-secondary);
  }

  /* Hero */
  .hero {
    min-height: auto;
    padding-top: var(--header-height);
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 56px 0 56px;
  }

  h1 {
    font-size: 52px;
  }

  .hero-media-wrap {
    min-width: 0;
    width: 100%;
  }

  .hero-media-wrap .blueprint-frame {
    min-width: 0;
    width: 100%;
  }

  .hero-media-wrap::before,
  .hero-media-wrap::after {
    display: none;
  }

  /* Stats */
  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item {
    padding: 28px 20px;
  }

  .stat-number {
    font-size: 36px;
  }

  /* Intro */
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .intro-heading h2 {
    font-size: 34px;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
  }

  /* Project */
  .project-grid {
    grid-template-columns: 1fr;
  }

  .project-specs {
    border-right: 0;
    border-bottom: 1px solid var(--border-subtle);
  }

  .blueprint-frame--image {
    min-height: 240px;
  }

  /* Process — stack vertically on mobile, hide horizontal line */
  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-grid::before {
    display: none;
  }

  .process-step {
    padding: 0 0 36px 24px;
    border-left: 1px solid var(--border-subtle);
  }

  .process-step::before {
    position: absolute;
    left: -5px;
    top: 0;
    margin-bottom: 0;
  }

  .process-step::after {
    display: none;
  }

  /* Founder */
  .founder-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .founder-content h2 {
    font-size: 38px;
  }

  .blueprint-frame--tall {
    aspect-ratio: 4 / 3;
  }

  /* Testimonials */
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  /* Consultation */
  .consultation-section h2 {
    font-size: 34px;
  }

  .consultation-form {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding: 48px 0 36px;
  }

  .footer-brand-col {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 16px 0;
  }
}

/* ============================================================
   RESPONSIVE — 480px
   ============================================================ */
@media (max-width: 480px) {
  h1 {
    font-size: 42px;
  }

  .intro-heading h2,
  .founder-content h2,
  .consultation-section h2 {
    font-size: 30px;
  }

  .stat-number {
    font-size: 30px;
  }

  .stats-inner {
    grid-template-columns: 1fr 1fr;
  }

  .button {
    width: 100%;
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
