/* ═══════════════════════════════════════════════════
   PREFABHOMES.HOUSE — MAIN STYLESHEET
   Design System: Deep forest green + warm off-white
   + aged brass accent. Playfair Display + Inter.
═══════════════════════════════════════════════════ */

/* ── TOKENS ───────────────────────────────────────── */
:root {
  /* Color */
  --forest:      #1a3a2f;
  --forest-deep: #0f2419;
  --forest-mid:  #2c5c46;
  --sage:        #4a7c59;
  --sage-light:  #6b9e78;
  --brass:       #b8914a;
  --brass-light: #d4ad72;
  --cream:       #f7f4ee;
  --cream-dark:  #ede9e0;
  --warm-white:  #fdfcf9;
  --ink:         #1c1a18;
  --ink-mid:     #3d3b38;
  --ink-light:   #6b6760;
  --border:      #ddd9d0;
  --border-dark: #c5c0b5;

  /* Type */
  --display: 'Playfair Display', Georgia, serif;
  --body:    'Inter', system-ui, sans-serif;
  --mono:    'DM Mono', 'Courier New', monospace;

  /* Scale */
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-md:   1.125rem;
  --text-lg:   1.25rem;
  --text-xl:   1.5rem;
  --text-2xl:  2rem;
  --text-3xl:  2.75rem;
  --text-4xl:  3.75rem;
  --text-5xl:  5rem;

  /* Space */
  --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;

  /* Radii */
  --r-sm:  4px;
  --r-md:  8px;
  --r-lg:  12px;
  --r-xl:  20px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-sm:   0 1px 3px rgba(15,36,25,0.08), 0 1px 2px rgba(15,36,25,0.06);
  --shadow-md:   0 4px 12px rgba(15,36,25,0.10), 0 2px 6px rgba(15,36,25,0.07);
  --shadow-lg:   0 10px 30px rgba(15,36,25,0.14), 0 4px 12px rgba(15,36,25,0.08);
  --shadow-xl:   0 20px 60px rgba(15,36,25,0.18), 0 8px 24px rgba(15,36,25,0.10);

  /* Transition */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --dur:  220ms;
}

/* ── RESET ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--warm-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
input, select, textarea { font-family: inherit; }

/* ── CONTAINER ────────────────────────────────────── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--sp-6);
}
@media (max-width: 768px) {
  .container { padding: 0 var(--sp-4); }
}

/* ── BUTTONS ──────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 0.75rem 1.5rem;
  border-radius: var(--r-md);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all var(--dur) var(--ease);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--forest);
  color: var(--cream);
  border-color: var(--forest);
}
.btn-primary:hover {
  background: var(--forest-deep);
  border-color: var(--forest-deep);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-ghost {
  background: transparent;
  color: var(--forest);
  border-color: var(--forest);
}
.btn-ghost:hover {
  background: var(--forest);
  color: var(--cream);
}
.btn-brass {
  background: var(--brass);
  color: #fff;
  border-color: var(--brass);
}
.btn-brass:hover {
  background: #a07a38;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-lg { padding: 1rem 2rem; font-size: var(--text-base); }
.btn-block { width: 100%; }
.btn-sm { padding: 0.5rem 1rem; font-size: var(--text-xs); }

/* ── EYEBROW / LABEL ──────────────────────────────── */
.eyebrow, .section-label {
  font-family: var(--mono);
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: var(--sp-3);
}

/* ── ANNOUNCEMENT BAR ─────────────────────────────── */
.announcement-bar {
  background: var(--forest-deep);
  color: rgba(247,244,238,0.9);
  text-align: center;
  padding: var(--sp-2) var(--sp-4);
  font-size: var(--text-xs);
  letter-spacing: 0.04em;
  position: relative;
  z-index: 100;
}
.announcement-bar a {
  color: var(--brass-light);
  text-decoration: underline;
}

/* ── HEADER ───────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(253,252,249,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--dur) var(--ease);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  padding: var(--sp-4) var(--sp-6);
  max-width: 1280px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  text-decoration: none;
  flex-shrink: 0;
}
.logo-mark {
  width: 40px; height: 40px;
  background: var(--forest);
  color: var(--cream);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.logo-primary {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--forest);
}
.logo-dot {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--brass);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  margin-left: auto;
}
.nav-link {
  padding: var(--sp-2) var(--sp-3);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--ink-mid);
  border-radius: var(--r-sm);
  transition: color var(--dur), background var(--dur);
}
.nav-link:hover {
  color: var(--forest);
  background: var(--cream);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-shrink: 0;
}
.search-toggle, .cart-btn, .mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: var(--r-sm);
  color: var(--ink-mid);
  transition: background var(--dur), color var(--dur);
}
.search-toggle:hover, .cart-btn:hover {
  background: var(--cream);
  color: var(--forest);
}
.cart-btn { position: relative; }
.cart-count {
  position: absolute;
  top: 3px; right: 3px;
  width: 18px; height: 18px;
  background: var(--brass);
  color: #fff;
  border-radius: var(--r-full);
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity var(--dur), transform var(--dur);
}
.cart-count.visible {
  opacity: 1;
  transform: scale(1);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 4px;
  width: 40px; height: 40px;
  padding: 10px;
}
.mobile-menu-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ink-mid);
  border-radius: 2px;
  transition: transform var(--dur);
}

/* Search expanded */
.search-expanded {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s var(--ease);
  border-top: 1px solid transparent;
}
.search-expanded.open {
  max-height: 80px;
  border-top-color: var(--border);
}
.search-inner {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-6);
  max-width: 1280px;
  margin: 0 auto;
}
.search-inner input {
  flex: 1;
  padding: var(--sp-3) var(--sp-4);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  font-size: var(--text-base);
  color: var(--ink);
  background: var(--warm-white);
  transition: border-color var(--dur);
}
.search-inner input:focus {
  outline: none;
  border-color: var(--sage);
}
.search-close {
  padding: var(--sp-2) var(--sp-3);
  color: var(--ink-light);
  font-size: var(--text-lg);
  transition: color var(--dur);
}
.search-close:hover { color: var(--forest); }

/* Mobile nav */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--forest-deep);
  z-index: 200;
  padding: var(--sp-8);
  flex-direction: column;
}
.mobile-nav-overlay.open { display: flex; }
.mobile-nav-overlay nav {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  margin-top: var(--sp-12);
}
.mobile-nav-overlay nav a {
  font-family: var(--display);
  font-size: var(--text-2xl);
  color: var(--cream);
  border-bottom: 1px solid rgba(247,244,238,0.1);
  padding-bottom: var(--sp-4);
}
.mobile-nav-close {
  align-self: flex-end;
  color: var(--cream);
  font-size: var(--text-xl);
  padding: var(--sp-2);
}

/* ── HERO ─────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: min(90vh, 800px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--forest-deep);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, var(--forest-deep) 0%, var(--forest) 50%, var(--forest-mid) 100%);
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(184,145,74,0.07) 0%, transparent 60%),
    radial-gradient(circle at 80% 20%, rgba(106,158,120,0.08) 0%, transparent 50%),
    radial-gradient(circle at 60% 80%, rgba(184,145,74,0.05) 0%, transparent 40%);
  background-size: 100% 100%;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--sp-24) var(--sp-6) var(--sp-20);
  width: 100%;
}
.hero-eyebrow {
  font-family: var(--mono);
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass-light);
  margin-bottom: var(--sp-5);
}
.hero-headline {
  font-family: var(--display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--cream);
  margin-bottom: var(--sp-6);
  max-width: 700px;
}
.hero-headline em {
  font-style: italic;
  color: var(--brass-light);
}
.hero-sub {
  font-size: var(--text-lg);
  color: rgba(247,244,238,0.8);
  max-width: 600px;
  margin-bottom: var(--sp-10);
  line-height: 1.7;
}
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  margin-bottom: var(--sp-16);
}
.hero-cta-row .btn-ghost {
  color: var(--cream);
  border-color: rgba(247,244,238,0.4);
}
.hero-cta-row .btn-ghost:hover {
  background: rgba(247,244,238,0.1);
  border-color: var(--cream);
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-n {
  font-family: var(--display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--cream);
}
.stat-l {
  font-size: var(--text-xs);
  color: rgba(247,244,238,0.6);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(247,244,238,0.15);
}
.hero-scroll-hint {
  position: absolute;
  bottom: var(--sp-8);
  left: var(--sp-6);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--sp-2);
  color: rgba(247,244,238,0.5);
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
}
.scroll-arrow {
  width: 20px; height: 20px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  animation: bounce 1.5s infinite;
}
@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(4px); }
}

/* ── HOME TYPE STRIP ──────────────────────────────── */
.types-strip {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: var(--sp-6) 0;
  position: sticky;
  top: 69px;
  z-index: 50;
}
.types-strip .section-label { display: none; }
.type-pills {
  display: flex;
  gap: var(--sp-2);
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 2px;
}
.type-pills::-webkit-scrollbar { display: none; }
.type-pill {
  flex-shrink: 0;
  padding: var(--sp-2) var(--sp-5);
  border-radius: var(--r-full);
  font-size: var(--text-sm);
  font-weight: 500;
  border: 1.5px solid var(--border);
  background: var(--warm-white);
  color: var(--ink-mid);
  transition: all var(--dur) var(--ease);
}
.type-pill:hover {
  border-color: var(--sage);
  color: var(--forest);
  background: white;
}
.type-pill.active {
  background: var(--forest);
  color: var(--cream);
  border-color: var(--forest);
}

/* ── SHOP SECTION ─────────────────────────────────── */
.shop-section {
  padding: var(--sp-16) 0 var(--sp-24);
}
.shop-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--sp-4);
  margin-bottom: var(--sp-8);
  flex-wrap: wrap;
}
.shop-title {
  font-family: var(--display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--forest);
}
.shop-subtitle {
  font-size: var(--text-sm);
  color: var(--ink-light);
  margin-top: var(--sp-1);
}
.shop-controls {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.sort-select {
  padding: var(--sp-2) var(--sp-3);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  font-size: var(--text-sm);
  color: var(--ink);
  background: white;
  cursor: pointer;
}
.sort-select:focus { outline: none; border-color: var(--sage); }
.view-toggle { display: flex; gap: 2px; }
.view-btn {
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--r-sm);
  color: var(--ink-light);
  font-size: 1.1rem;
  border: 1.5px solid var(--border);
  transition: all var(--dur);
}
.view-btn.active {
  background: var(--forest);
  color: var(--cream);
  border-color: var(--forest);
}

.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: var(--sp-8);
  align-items: start;
}
@media (max-width: 960px) {
  .shop-layout { grid-template-columns: 1fr; }
  .filter-sidebar { position: relative !important; }
}

/* ── FILTER SIDEBAR ───────────────────────────────── */
.filter-sidebar {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  position: sticky;
  top: 140px;
}
.filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--sp-6);
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid var(--border);
}
.filter-header h3 {
  font-family: var(--display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--forest);
}
.filter-reset {
  font-size: var(--text-xs);
  color: var(--brass);
  font-weight: 500;
  transition: color var(--dur);
}
.filter-reset:hover { color: var(--forest); text-decoration: underline; }

.filter-group {
  margin-bottom: var(--sp-6);
  padding-bottom: var(--sp-6);
  border-bottom: 1px solid var(--cream-dark);
}
.filter-group:last-of-type { border-bottom: none; margin-bottom: 0; }
.filter-title {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: var(--sp-3);
  letter-spacing: 0.01em;
}
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.checkbox-group label {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  color: var(--ink-mid);
  cursor: pointer;
  transition: color var(--dur);
}
.checkbox-group label:hover { color: var(--forest); }
.checkbox-group input[type="checkbox"] {
  width: 16px; height: 16px;
  accent-color: var(--forest);
  cursor: pointer;
}

.price-inputs {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  margin-bottom: var(--sp-3);
}
.price-inputs input {
  flex: 1;
  padding: var(--sp-2) var(--sp-3);
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  font-size: var(--text-sm);
  color: var(--ink);
  width: 0;
}
.price-inputs input:focus { outline: none; border-color: var(--sage); }
.price-inputs span { color: var(--ink-light); flex-shrink: 0; }
.range-slider {
  width: 100%;
  accent-color: var(--forest);
  height: 4px;
  margin-bottom: var(--sp-2);
}
.range-labels {
  display: flex;
  justify-content: space-between;
  font-size: var(--text-xs);
  color: var(--ink-light);
}
.filter-apply { margin-top: var(--sp-6); }

/* ── WHY US ───────────────────────────────────────── */
.why-us {
  background: var(--forest);
  padding: var(--sp-24) 0;
  color: var(--cream);
}
.why-us-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--sp-16);
}
.why-us .eyebrow { color: var(--brass-light); }
.why-us-header h2 {
  font-family: var(--display);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: var(--sp-4);
}
.why-us-header p {
  font-size: var(--text-lg);
  color: rgba(247,244,238,0.8);
  line-height: 1.7;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--sp-6);
}
.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
  transition: background var(--dur);
}
.why-card:hover { background: rgba(255,255,255,0.08); }
.why-icon { font-size: 2rem; margin-bottom: var(--sp-4); }
.why-card h3 {
  font-family: var(--display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--cream);
  margin-bottom: var(--sp-3);
}
.why-card p {
  font-size: var(--text-sm);
  color: rgba(247,244,238,0.75);
  line-height: 1.7;
}

/* ── EDITORIAL ────────────────────────────────────── */
.editorial {
  padding: var(--sp-20) 0;
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
}
@media (max-width: 768px) { .editorial-grid { grid-template-columns: 1fr; gap: var(--sp-10); } }
.editorial-block h2 {
  font-family: var(--display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--forest);
  margin-bottom: var(--sp-4);
}
.editorial-block p {
  font-size: var(--text-base);
  color: var(--ink-mid);
  line-height: 1.8;
  margin-bottom: var(--sp-4);
}
.editorial-block p:last-child { margin-bottom: 0; }
.editorial-block strong { color: var(--forest); font-weight: 600; }

/* ── FAQ ──────────────────────────────────────────── */
.faq-section {
  padding: var(--sp-24) 0;
}
.section-heading { text-align: center; margin-bottom: var(--sp-12); }
.section-heading h2 {
  font-family: var(--display);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--forest);
  margin-bottom: var(--sp-3);
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color var(--dur);
}
.faq-item:hover { border-color: var(--sage-light); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-6);
  text-align: left;
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--ink);
  background: white;
  transition: background var(--dur);
}
.faq-q:hover { background: var(--cream); }
.faq-q[aria-expanded="true"] {
  background: var(--cream);
  color: var(--forest);
}
.faq-icon {
  font-size: 1.4rem;
  color: var(--sage);
  flex-shrink: 0;
  transition: transform var(--dur);
  font-weight: 300;
}
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}
.faq-a.open { max-height: 300px; }
.faq-a > div {
  padding: 0 var(--sp-6) var(--sp-5);
  background: var(--cream);
}
.faq-a p {
  font-size: var(--text-sm);
  color: var(--ink-mid);
  line-height: 1.8;
}

/* ── CONTACT ──────────────────────────────────────── */
.contact-section {
  background: var(--cream);
  padding: var(--sp-24) 0;
  border-top: 1px solid var(--border);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--sp-16);
  align-items: start;
}
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; gap: var(--sp-10); } }
.contact-info .eyebrow { margin-bottom: var(--sp-3); }
.contact-info h2 {
  font-family: var(--display);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--forest);
  margin-bottom: var(--sp-4);
}
.contact-info > p {
  font-size: var(--text-base);
  color: var(--ink-mid);
  line-height: 1.7;
  margin-bottom: var(--sp-8);
}
.contact-details { display: flex; flex-direction: column; gap: var(--sp-5); }
.contact-row {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
}
.contact-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.contact-row strong {
  display: block;
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 2px;
}
.contact-row a, .contact-row span {
  font-size: var(--text-base);
  color: var(--ink-mid);
}
.contact-row a { color: var(--forest); font-weight: 500; }

.contact-form-wrap {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  box-shadow: var(--shadow-md);
}
.contact-form h3 {
  font-family: var(--display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--forest);
  margin-bottom: var(--sp-6);
}

/* ── FORM FIELDS ──────────────────────────────────── */
.form-group {
  margin-bottom: var(--sp-4);
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}
.form-group label {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--ink-mid);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: var(--sp-3) var(--sp-4);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  font-size: var(--text-sm);
  color: var(--ink);
  background: var(--warm-white);
  transition: border-color var(--dur), box-shadow var(--dur);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(74,124,89,0.12);
}
.form-group input.error,
.form-group textarea.error { border-color: #c0392b; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}
@media (max-width: 580px) { .form-row { grid-template-columns: 1fr; } }
.form-note {
  text-align: center;
  font-size: var(--text-xs);
  color: var(--ink-light);
  margin-top: var(--sp-3);
}

/* ── FOOTER ───────────────────────────────────────── */
.site-footer {
  background: var(--forest-deep);
  color: rgba(247,244,238,0.8);
  padding: var(--sp-20) 0 var(--sp-12);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-10);
  margin-bottom: var(--sp-12);
  padding-bottom: var(--sp-12);
  border-bottom: 1px solid rgba(247,244,238,0.1);
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
  .footer-brand { grid-column: span 2; }
}
@media (max-width: 580px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
}
.footer-brand .logo .logo-primary,
.footer-brand .logo .logo-dot { color: var(--cream); }
.footer-brand .logo .logo-dot { color: var(--brass-light); }
.footer-brand p {
  margin-top: var(--sp-4);
  font-size: var(--text-sm);
  line-height: 1.7;
  color: rgba(247,244,238,0.6);
}
.footer-social {
  display: flex;
  gap: var(--sp-3);
  margin-top: var(--sp-5);
}
.footer-social a {
  width: 36px; height: 36px;
  border-radius: var(--r-sm);
  border: 1px solid rgba(247,244,238,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-sm);
  font-weight: 700;
  color: rgba(247,244,238,0.6);
  transition: all var(--dur);
}
.footer-social a:hover {
  border-color: var(--brass);
  color: var(--brass-light);
}
.footer-col h4 {
  font-family: var(--mono);
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brass-light);
  margin-bottom: var(--sp-4);
}
.footer-col ul { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer-col a {
  font-size: var(--text-sm);
  color: rgba(247,244,238,0.6);
  transition: color var(--dur);
}
.footer-col a:hover { color: var(--cream); }
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  text-align: center;
}
.footer-bottom p { font-size: var(--text-xs); color: rgba(247,244,238,0.4); }
.footer-bottom a { color: rgba(247,244,238,0.5); }
.footer-disclaimer {
  font-style: italic;
  color: rgba(247,244,238,0.3) !important;
}

/* ── TOAST ────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: var(--sp-6);
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--forest-deep);
  color: var(--cream);
  padding: var(--sp-3) var(--sp-6);
  border-radius: var(--r-full);
  font-size: var(--text-sm);
  font-weight: 500;
  z-index: 1000;
  transition: transform 0.35s var(--ease), opacity 0.35s;
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  box-shadow: var(--shadow-lg);
}
.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ── UTILITIES ────────────────────────────────────── */
.hidden { display: none !important; }
.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;
}

/* ── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 960px) {
  .main-nav { display: none; }
  .mobile-menu-btn { display: flex; }
}
@media (max-width: 768px) {
  .hero-headline { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-stats { gap: var(--sp-5); }
  .stat-divider { display: none; }
  .why-grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ═══════════════════════════════════════════════════
   HERO v2 — FULL-BLEED SLIDESHOW
═══════════════════════════════════════════════════ */

.hero {
  position: relative;
  min-height: min(92vh, 860px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--forest-deep);
}

/* Slide layers */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.1s ease, transform 7s ease;
  will-change: opacity, transform;
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

/* Multi-stop cinematic gradient */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      to right,
      rgba(10,24,17,0.88) 0%,
      rgba(10,24,17,0.65) 45%,
      rgba(10,24,17,0.20) 100%
    ),
    linear-gradient(
      to top,
      rgba(10,24,17,0.75) 0%,
      transparent 40%
    );
}

/* Floating badge (top-right) */
.hero-floating-badge {
  position: absolute;
  top: var(--sp-10);
  right: var(--sp-10);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 110px; height: 110px;
  border-radius: var(--r-full);
  background: var(--brass);
  color: white;
  text-align: center;
  padding: var(--sp-3);
  box-shadow: 0 8px 24px rgba(184,145,74,0.4);
  animation: badgeSpin 20s linear infinite;
}
.hfb-line1 { font-family: var(--mono); font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.85; }
.hfb-line2 { font-family: var(--display); font-size: 1.1rem; font-weight: 700; line-height: 1; margin: 2px 0; }
.hfb-line3 { font-family: var(--mono); font-size: 9px; letter-spacing: 0.06em; opacity: 0.85; }
@keyframes badgeSpin {
  0%   { box-shadow: 0 8px 24px rgba(184,145,74,0.4); }
  50%  { box-shadow: 0 8px 40px rgba(184,145,74,0.7); }
  100% { box-shadow: 0 8px 24px rgba(184,145,74,0.4); }
}
@media (max-width: 768px) { .hero-floating-badge { display: none; } }

/* Hero content */
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--sp-24) var(--sp-6) var(--sp-32);
  width: 100%;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-family: var(--mono);
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass-light);
  margin-bottom: var(--sp-6);
}
.eyebrow-dot {
  display: inline-block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--brass);
  flex-shrink: 0;
}

.hero-headline {
  font-family: var(--display);
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  font-weight: 700;
  line-height: 1.06;
  color: var(--cream);
  margin-bottom: var(--sp-6);
  max-width: 660px;
}
.hero-headline em {
  font-style: italic;
  color: var(--brass-light);
}
.hero-headline-sub {
  display: block;
  font-weight: 400;
  font-style: italic;
  font-size: 0.8em;
  color: rgba(247,244,238,0.7);
}

.hero-sub {
  font-size: var(--text-lg);
  color: rgba(247,244,238,0.78);
  max-width: 560px;
  margin-bottom: var(--sp-10);
  line-height: 1.7;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  margin-bottom: var(--sp-16);
}
.btn-hero-primary {
  background: var(--brass);
  color: white;
  border: 2px solid var(--brass);
  border-radius: var(--r-md);
  font-size: var(--text-base);
  font-weight: 600;
  padding: 1rem 2rem;
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  transition: all var(--dur) var(--ease);
  box-shadow: 0 4px 20px rgba(184,145,74,0.3);
}
.btn-hero-primary:hover {
  background: #a07a38;
  border-color: #a07a38;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(184,145,74,0.45);
}
.btn-hero-ghost {
  background: rgba(255,255,255,0.08);
  color: var(--cream);
  border: 2px solid rgba(247,244,238,0.35);
  border-radius: var(--r-md);
  font-size: var(--text-base);
  font-weight: 500;
  padding: 1rem 2rem;
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  backdrop-filter: blur(8px);
  transition: all var(--dur) var(--ease);
}
.btn-hero-ghost:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(247,244,238,0.6);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; gap: 3px; }
.stat-n {
  font-family: var(--display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--cream);
}
.stat-l {
  font-size: var(--text-xs);
  color: rgba(247,244,238,0.55);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(247,244,238,0.15);
  flex-shrink: 0;
}

/* Slide indicators */
.hero-indicators {
  position: absolute;
  bottom: 140px;
  left: var(--sp-6);
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.hero-dot {
  width: 3px;
  height: 24px;
  border-radius: 2px;
  background: rgba(247,244,238,0.3);
  transition: background var(--dur), height var(--dur);
  border: none;
}
.hero-dot.active {
  background: var(--brass);
  height: 40px;
}

/* Scroll cue */
.hero-scroll-cue {
  position: absolute;
  bottom: var(--sp-6);
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  color: rgba(247,244,238,0.5);
  font-family: var(--mono);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color var(--dur);
}
.hero-scroll-cue:hover { color: var(--brass-light); }
.scroll-chevron {
  animation: bounce 1.8s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

/* Thumbnail strip */
.hero-thumb-strip {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-5);
  background: rgba(10,24,17,0.75);
  backdrop-filter: blur(12px);
  border-top-left-radius: var(--r-lg);
}
.hts-label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247,244,238,0.45);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.hts-items {
  display: flex;
  gap: var(--sp-2);
}
.hts-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
  opacity: 0.55;
  transition: opacity var(--dur);
}
.hts-item.active, .hts-item:hover { opacity: 1; }
.hts-item img {
  width: 56px;
  height: 40px;
  object-fit: cover;
  border-radius: var(--r-sm);
  border: 2px solid transparent;
  transition: border-color var(--dur);
}
.hts-item.active img { border-color: var(--brass); }
.hts-item span {
  font-size: 9px;
  color: rgba(247,244,238,0.6);
  letter-spacing: 0.06em;
  white-space: nowrap;
}
@media (max-width: 768px) { .hero-thumb-strip { display: none; } }

/* ── INTERIOR STRIP ────────────────────────────────── */
.interior-strip {
  background: var(--forest-deep);
  padding: var(--sp-5) 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.interior-strip-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--sp-6);
  display: flex;
  align-items: center;
  gap: var(--sp-5);
}
.is-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brass-light);
  white-space: nowrap;
  flex-shrink: 0;
}
.is-items {
  display: flex;
  gap: var(--sp-3);
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.is-items::-webkit-scrollbar { display: none; }
.is-item {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-1);
  cursor: pointer;
  transition: opacity var(--dur);
}
.is-item:hover { opacity: 0.85; }
.is-item img {
  width: 100px;
  height: 66px;
  object-fit: cover;
  border-radius: var(--r-sm);
  border: 1.5px solid rgba(255,255,255,0.08);
}
.is-item span {
  font-size: 9px;
  color: rgba(247,244,238,0.5);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
@media (max-width: 580px) {
  .interior-strip { display: none; }
}

/* Override old hero styles that conflict */
.hero-bg, .hero-bg-pattern { display: none; }
