/* ══════════════════════════════════════════════════
   Cooker's Restoration & Fabrication — Site Styles
   ══════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:         #F5F0E8;
  --cream-dark:    #E8E0CC;
  --vw-blue:       #2D5F8A;
  --vw-blue-light: #4A7FA8;
  --vw-blue-dark:  #1A3F5C;
  --red:           #C0392B;
  --red-light:     #E74C3C;
  --charcoal:      #2C2C2C;
  --mid-gray:      #6B6B6B;
  --light-gray:    #A8A8A8;
  --white:         #FFFFFF;
  --header-h:      64px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; }

/* ── HEADER ── */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--vw-blue-dark);
  border-bottom: 3px solid var(--red);
  padding: 0 2rem;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: box-shadow 0.3s;
}

header.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.35);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-badge {
  width: 42px; height: 42px;
  background: var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  color: white;
  letter-spacing: 1px;
  flex-shrink: 0;
}

.logo-text { color: var(--cream); line-height: 1.1; }

.logo-text strong {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 2px;
  color: white;
}

.logo-text span {
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--cream-dark);
  opacity: 0.8;
}

/* desktop nav */
nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

nav a {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.45rem 0.65rem;
  border-radius: 3px;
  transition: background 0.2s, color 0.2s;
  opacity: 0.85;
  white-space: nowrap;
}

nav a:hover, nav a.active { background: rgba(255,255,255,0.1); opacity: 1; }
nav a.active { opacity: 1; }

nav a.cta {
  background: var(--red);
  color: white;
  opacity: 1;
  margin-left: 0.35rem;
}
nav a.cta:hover { background: var(--red-light); }

/* ── Nav dropdown ── */
.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}
.nav-item > a {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-caret {
  font-size: 0.55rem;
  opacity: 0.6;
  transition: transform 0.2s;
  margin-top: 1px;
}
.nav-item:hover .nav-caret,
.nav-item.open .nav-caret { transform: rotate(180deg); }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  min-width: 210px;
  background: var(--vw-blue-dark);
  border-radius: 4px;
  padding: 0.4rem 0;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s, visibility 0.18s 0s, transform 0.18s;
  z-index: 300;
}

/* Bridge area - invisible zone between nav item and dropdown */
.nav-dropdown::before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  height: 10px;
  background: transparent;
}

.nav-item:hover .nav-dropdown,
.nav-item.open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition: opacity 0.18s, visibility 0.18s 0s, transform 0.18s;
}

/* Add delay when hiding (on mouse leave) */
.nav-item .nav-dropdown {
  transition: opacity 0.18s, visibility 0s 0.25s, transform 0.18s;
}
.nav-dropdown a {
  display: block;
  padding: 0.42rem 1.1rem;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: rgba(245,240,232,0.78);
  text-decoration: none;
  text-transform: none;
  white-space: nowrap;
  transition: color 0.15s, background 0.15s;
  background: none;
  opacity: 1;
  border-radius: 0;
}
.nav-dropdown a:hover {
  color: white;
  background: rgba(255,255,255,0.09);
}
.dropdown-divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 0.3rem 0;
}

/* mobile nav sub-items */
.mobile-nav .mobile-sub {
  display: none;
  flex-direction: column;
  padding-left: 1rem;
  gap: 0;
  background: rgba(0,0,0,0.15);
  border-radius: 3px;
  margin-bottom: 0.25rem;
}
.mobile-nav .mobile-sub.open { display: flex; }
.mobile-nav .mobile-sub a {
  font-size: 0.76rem;
  letter-spacing: 1px;
  padding: 0.45rem 0.5rem;
  border-bottom: none;
  opacity: 0.8;
}
.mobile-nav .mobile-sub a:hover { opacity: 1; }
.mobile-nav .has-sub > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile-nav .has-sub > a .nav-caret {
  font-size: 0.6rem;
  opacity: 0.6;
}

/* hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: var(--vw-blue-dark);
  border-bottom: 3px solid var(--red);
  z-index: 199;
  padding: 1rem 2rem 1.5rem;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.2s;
}

.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: white; }
.mobile-nav a.cta {
  color: var(--red-light);
  font-weight: 600;
  border-bottom: none;
  margin-top: 0.5rem;
}

/* ── HOME HERO ── */
.hero {
  margin-top: var(--header-h);
  position: relative;
  height: calc(100vh - var(--header-h));
  min-height: 520px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 35%;
  filter: saturate(0.85);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26,63,92,0.93) 0%,
    rgba(26,63,92,0.5) 40%,
    rgba(26,63,92,0.12) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 3rem 4rem;
  max-width: 800px;
  animation: fadeUp 0.9s ease both;
}

.hero-eyebrow {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red-light);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px; height: 2px;
  background: var(--red);
}

h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 0.95;
  color: white;
  letter-spacing: 2px;
  margin-bottom: 1.25rem;
}

h1 em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--cream-dark);
  font-size: 0.85em;
  letter-spacing: 1px;
}

.hero-sub {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(245,240,232,0.85);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 2rem;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-phone {
  position: absolute;
  top: 1.75rem; right: 4rem;
  z-index: 2;
  color: white;
  text-align: right;
  animation: fadeIn 1.1s ease 0.3s both;
}

.hero-phone a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 3px;
  color: white;
  text-decoration: none;
}

.hero-phone a:hover { color: var(--cream-dark); }

.hero-phone span {
  display: block;
  font-size: 0.58rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 0.2rem;
}

/* ── PAGE BANNER (inner pages) ── */
.page-banner {
  margin-top: var(--header-h);
  position: relative;
  height: 260px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.page-banner-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: saturate(0.75) brightness(0.7);
}

.page-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26,63,92,0.9) 0%,
    rgba(26,63,92,0.45) 60%,
    rgba(26,63,92,0.15) 100%
  );
}

.page-banner-content {
  position: relative;
  z-index: 2;
  padding: 2rem 4rem;
}

.page-banner h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 0;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 3px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.btn-primary { background: var(--red); color: white; }
.btn-primary:hover { background: var(--red-light); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-outline:hover { border-color: white; background: rgba(255,255,255,0.08); }

.btn-blue { background: var(--vw-blue); color: white; }
.btn-blue:hover { background: var(--vw-blue-light); transform: translateY(-1px); }

/* ── TICKER ── */
.ticker {
  background: var(--vw-blue);
  padding: 0.6rem 0;
  overflow: hidden;
  white-space: nowrap;
  border-bottom: 2px solid var(--vw-blue-dark);
}

.ticker-inner {
  display: inline-flex;
  gap: 3rem;
  animation: ticker 32s linear infinite;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.9;
}

.ticker-inner span { flex-shrink: 0; }
.ticker-inner .dot { color: var(--red-light); }

/* ── SECTION LABELS / H2 ── */
.section-label {
  font-size: 0.63rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--vw-blue);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 24px; height: 2px;
  background: var(--red);
}

.section-label.center { justify-content: center; }
.section-label.center::before { display: none; }

h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 2px;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 1rem;
}

/* ── SECTION WRAPPER ── */
.section { padding: 5rem 4rem; }
.section-cream { background: var(--cream); }
.section-white { background: white; }
.section-cream-dark { background: var(--cream-dark); }

/* ── LATEST BUILDS ── */
.latest { padding: 5rem 4rem; background: var(--cream); }

.section-header-split {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.section-header-split p {
  font-size: 0.9rem;
  color: var(--mid-gray);
  font-weight: 300;
  max-width: 380px;
  line-height: 1.65;
}

/* ── CARDS ── */
.builds-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.build-card {
  background: white;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  transition: transform 0.25s, box-shadow 0.25s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}

.build-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.13);
}

.build-card.featured { grid-column: span 2; }

.card-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  background: var(--cream-dark);
}

.build-card.featured .card-img { aspect-ratio: 16/9; }

.card-body { padding: 1.25rem 1.5rem 1.5rem; }

.card-status {
  display: inline-block;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.22rem 0.55rem;
  border-radius: 2px;
  margin-bottom: 0.65rem;
}

.status-complete { background: #e8f5e9; color: #2e7d32; }
.status-progress { background: #fff3e0; color: #e65100; }
.status-new      { background: #e3f2fd; color: #1565c0; }
.status-personal { background: #f3e5f5; color: #6a1b9a; }

.card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.25rem;
  letter-spacing: 1.5px;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
}

.card-desc {
  font-size: 0.82rem;
  color: var(--mid-gray);
  font-weight: 300;
  line-height: 1.55;
}

/* ── GALLERY GRID (Our Work, Open Houses) ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  aspect-ratio: 4/3;
  background: var(--cream-dark);
  cursor: pointer;
}

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img { transform: scale(1.05); }

.gallery-item-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(26,63,92,0.9), transparent);
  color: white;
  padding: 1.5rem 0.75rem 0.75rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 1.5px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-item-caption { transform: translateY(0); }

.gallery-item.wide { grid-column: span 2; }
.gallery-item.tall { grid-row: span 2; }

/* ── ABOUT STRIP ── */
.about-strip {
  background: var(--vw-blue-dark);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 440px;
}

.about-img-wrap {
  position: relative;
  overflow: hidden;
}

.about-img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.7) brightness(0.85);
  transition: transform 0.6s ease;
}

.about-img-wrap:hover .about-img { transform: scale(1.03); }

.about-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 55%, var(--vw-blue-dark));
}

.about-content {
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-content .section-label { color: rgba(245,240,232,0.6); }
.about-content .section-label::before { background: var(--red); }
.about-content h2 { color: white; }

.about-content p {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(245,240,232,0.8);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  max-width: 440px;
}

.about-content p:last-of-type { margin-bottom: 1.75rem; }

.npr-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 3px;
  padding: 0.6rem 1rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  width: fit-content;
  transition: background 0.2s;
}

.npr-badge:hover { background: rgba(255,255,255,0.14); }

/* ── STATS ── */
.stats {
  background: var(--cream-dark);
  padding: 3rem 4rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  border-top: 3px solid var(--vw-blue);
  border-bottom: 3px solid var(--vw-blue);
}

.stat { text-align: center; }

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  color: var(--vw-blue);
  letter-spacing: 2px;
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-top: 0.3rem;
}

/* ── TESTIMONIALS ── */
.testimonials { padding: 5rem 4rem; background: var(--cream); }

.testimonials-header { text-align: center; margin-bottom: 3rem; }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testi-card {
  background: white;
  border-radius: 4px;
  padding: 2rem 2rem 1.75rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}

.testi-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
}

.testi-card::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--vw-blue);
  opacity: 0.12;
  position: absolute;
  top: 0.5rem; left: 1.25rem;
  line-height: 1;
}

.testi-text {
  font-size: 0.87rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--charcoal);
  margin-bottom: 1.25rem;
  position: relative;
}

.testi-author {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--vw-blue);
}

.testi-car {
  font-size: 0.68rem;
  font-weight: 300;
  color: var(--light-gray);
  letter-spacing: 1px;
  margin-top: 0.15rem;
}

/* ── FULL TESTIMONIAL (testimonials page) ── */
.testi-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}

.testi-card.full {
  padding: 2.25rem;
}

/* ── IN MEMORIAM ── */
.memoriam {
  background: var(--vw-blue-dark);
  padding: 3rem 4rem;
  display: flex;
  gap: 3rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.memoriam-label {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(245,240,232,0.4);
  margin-bottom: 2rem;
  text-align: center;
  width: 100%;
}

.memoriam-card { text-align: center; max-width: 280px; }

.memoriam-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 2px;
  color: white;
  margin-bottom: 0.3rem;
}

.memoriam-dates {
  font-size: 0.7rem;
  color: rgba(245,240,232,0.5);
  letter-spacing: 1.5px;
  font-weight: 300;
}

.memoriam-divider {
  width: 1px; height: 80px;
  background: rgba(255,255,255,0.15);
}

/* ── SERVICES LIST ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.service-item {
  background: white;
  border-radius: 4px;
  padding: 1.5rem;
  border-left: 3px solid var(--vw-blue);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--charcoal);
}

.service-item strong {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.05rem;
  letter-spacing: 1.5px;
  color: var(--vw-blue);
  margin-bottom: 0.35rem;
}

/* ── ABOUT PAGE LAYOUT ── */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-layout img {
  width: 100%;
  border-radius: 4px;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.about-body p {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--mid-gray);
  margin-bottom: 1.25rem;
}

.about-body h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 2px;
  color: var(--charcoal);
  margin: 2rem 0 1rem;
}

.info-box {
  background: var(--vw-blue-dark);
  border-radius: 4px;
  padding: 2rem 2.5rem;
  color: rgba(245,240,232,0.85);
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 2;
  margin-top: 1.5rem;
}

.info-box strong {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 2px;
  color: white;
  display: block;
  margin-bottom: 0.75rem;
}

.info-box a { color: rgba(245,240,232,0.7); text-decoration: none; }
.info-box a:hover { color: white; }

/* ── VIDEO GRID ── */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.video-card {
  background: white;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
}

.video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: var(--charcoal);
}

.video-embed iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

/* ── CONTACT ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-form {
  background: white;
  border-radius: 4px;
  padding: 2.5rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1.5px solid var(--cream-dark);
  border-radius: 3px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--charcoal);
  background: var(--cream);
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--vw-blue);
  background: white;
}

.form-group textarea { min-height: 140px; resize: vertical; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.contact-info h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 2px;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--cream-dark);
}

.contact-info-item:last-of-type { border-bottom: none; }

.contact-info-icon {
  width: 40px; height: 40px;
  background: var(--vw-blue-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.contact-info-text strong {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 0.25rem;
}

.contact-info-text span, .contact-info-text a {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.7;
  text-decoration: none;
}

.contact-info-text a:hover { color: var(--vw-blue); }

/* ── OPEN HOUSE SECTIONS ── */
.open-house-year {
  padding: 4rem 4rem 3rem;
}

.open-house-year h2 { margin-bottom: 0.5rem; }
.open-house-year .meta {
  font-size: 0.75rem;
  color: var(--mid-gray);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

/* ── FOOTER ── */
footer {
  background: var(--charcoal);
  padding: 3rem 4rem 2rem;
  color: rgba(255,255,255,0.6);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.footer-brand strong {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.35rem;
  letter-spacing: 3px;
  color: white;
  display: block;
  margin-bottom: 0.5rem;
}

.footer-brand p {
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 1rem;
}

.footer-address {
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.9;
}

.footer-address a { color: rgba(255,255,255,0.6); text-decoration: none; }
.footer-address a:hover { color: white; }

.footer-col h4 {
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: white;
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}

.footer-col a:hover { color: white; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.7rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-disclaimer {
  font-size: 0.63rem;
  font-weight: 300;
  color: rgba(255,255,255,0.28);
  max-width: 640px;
  line-height: 1.65;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .builds-grid { grid-template-columns: repeat(2, 1fr); }
  .build-card.featured { grid-column: span 2; }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-full-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .section, .latest, .testimonials { padding: 3.5rem 2rem; }
  .page-banner-content { padding: 1.75rem 2rem; }
  .hero-content { padding: 2.5rem 2rem; }
  .hero-phone { right: 2rem; }
  .about-strip { grid-template-columns: 1fr; }
  .about-img-wrap { height: 260px; }
  .about-img-overlay { background: linear-gradient(to top, var(--vw-blue-dark) 0%, transparent 60%); }
  .about-content { padding: 2.5rem 2rem; }
  .about-layout { grid-template-columns: 1fr; gap: 2rem; }
  .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .open-house-year { padding: 3rem 2rem 2rem; }
}

@media (max-width: 720px) {
  nav { display: none; }
  .hamburger { display: flex; }
  .hero-phone { display: none; }
  .builds-grid { grid-template-columns: 1fr; }
  .build-card.featured { grid-column: span 1; }
  .testi-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); padding: 2rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .services-grid { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .page-banner { height: 200px; }
  .form-row { grid-template-columns: 1fr; }
  .memoriam { flex-direction: column; gap: 1.5rem; }
  .memoriam-divider { width: 60px; height: 1px; }
}

@media (max-width: 480px) {
  header { padding: 0 1rem; }
  .logo-text span { display: none; }
  .gallery-grid { grid-template-columns: 1fr; }
  h2 { font-size: 2rem; }
}
