/* ============================================================
   Premier Cabinet Partners — style.css
   Fonts: Cormorant Garamond (serif) + Jost (sans)
   Loaded via Google Fonts in index.html
   ============================================================ */

/* ── VARIABLES ── */
:root {
  --charcoal:     #1a1a18;
  --charcoal-mid: #2c2c28;
  --charcoal-light:#3d3d38;
  --cream:        #f4f0e6;
  --cream-dark:   #e8e2d4;
  --gold:         #b8962e;
  --gold-light:   #d4ae4a;
  --gold-pale:    #f0e4b8;
  --white:        #fdfcf8;
  --text-muted:   #8a8578;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Jost', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--charcoal);
  color: var(--cream);
  overflow-x: hidden;
  font-weight: 300;
}

/* ── NOISE OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 3rem;
  background: rgba(26,26,24,0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(184,150,46,0.15);
  transition: padding 0.3s ease;
}

nav.scrolled { padding: 0.85rem 3rem; }

.nav-logo {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--cream);
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo span { color: var(--gold); }

/* Nav center links */
.nav-center {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}

.nav-center > li { position: relative; }

.nav-center > li > a,
.nav-center > li > button {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-dark);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transition: color 0.2s;
  position: relative;
}

.nav-center > li > a::after,
.nav-center > li > button::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 1.1rem; right: 1.1rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.nav-center > li > a:hover,
.nav-center > li > button:hover,
.nav-center > li > a.active,
.nav-center > li > button.active {
  color: var(--gold-light);
}

.nav-center > li > a:hover::after,
.nav-center > li > button:hover::after,
.nav-center > li > a.active::after,
.nav-center > li > button.active::after {
  transform: scaleX(1);
}

/* Dropdown chevron */
.nav-chevron {
  width: 8px; height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.25s ease;
  flex-shrink: 0;
  margin-top: 1px;
}

.nav-center > li.open .nav-chevron {
  transform: rotate(-135deg) translateY(-2px);
}

/* Dropdown panel */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--charcoal-mid);
  border: 1px solid rgba(184,150,46,0.2);
  min-width: 240px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.nav-center > li.open .nav-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-header {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 1rem 1.4rem 0.5rem;
  border-bottom: 1px solid rgba(184,150,46,0.12);
}

.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.85rem 1.4rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--cream-dark);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background 0.15s, color 0.15s, padding-left 0.15s;
}

.nav-dropdown a:last-child { border-bottom: none; }

.nav-dropdown a:hover {
  background: rgba(184,150,46,0.08);
  color: var(--gold-light);
  padding-left: 1.9rem;
}

.nav-dropdown-tag {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(255,255,255,0.05);
  padding: 0.15rem 0.45rem;
  flex-shrink: 0;
  margin-left: auto;
}

/* Scroll progress bar */
.nav-progress {
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  width: 0%;
  transition: width 0.1s linear;
}

/* Nav right */
.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.nav-cta {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--charcoal);
  background: var(--gold);
  padding: 0.6rem 1.4rem;
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
}

.nav-cta:hover { background: var(--gold-light); }

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

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--cream);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

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

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--charcoal);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 3rem;
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
  transform: translateX(0);
}

.mobile-menu-section { margin-bottom: 2.5rem; }

.mobile-menu-label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.mobile-menu a {
  display: block;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--cream);
  text-decoration: none;
  line-height: 1.6;
  transition: color 0.2s, padding-left 0.2s;
}

.mobile-menu a:hover { color: var(--gold-light); padding-left: 0.5rem; }

.mobile-menu-sub a {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 2.2;
}

.mobile-menu-sub a:hover { color: var(--gold-light); }

.mobile-cta {
  margin-top: 2rem;
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--charcoal);
  background: var(--gold);
  padding: 0.9rem 2rem;
  text-decoration: none;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10rem 5rem 6rem 6rem;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.8rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 2.5rem;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 2rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 38ch;
  margin-bottom: 3rem;
}

.hero-actions {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}

.hero-right {
  position: relative;
  overflow: hidden;
}

.hero-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, var(--charcoal) 0%, transparent 30%);
  z-index: 1;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.65) saturate(0.7);
}

.hero-stats {
  position: absolute;
  bottom: 3rem;
  left: 6rem;
  display: flex;
  gap: 3rem;
  z-index: 3;
}

.stat { text-align: left; }

.stat-num {
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
}

.stat-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

.hero-gold-line {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
  opacity: 0.25;
  z-index: 3;
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-bar {
  background: var(--gold);
  overflow: hidden;
  padding: 0.75rem 0;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  animation: marquee 22s linear infinite;
}

.marquee-item {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--charcoal);
  padding: 0 2.5rem;
}

.marquee-dot {
  color: rgba(26,26,24,0.4);
  padding: 0 0.5rem;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   SHARED SECTION STYLES
   ============================================================ */
section { padding: 7rem 6rem; }

.section-eyebrow {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 1.8rem;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.section-title em { font-style: italic; color: var(--gold-light); }

.section-body {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-muted);
  max-width: 60ch;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--charcoal);
  background: var(--gold);
  padding: 0.9rem 2rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  display: inline-block;
  border: none;
  cursor: pointer;
}

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

.btn-ghost {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream-dark);
  border: 1px solid rgba(244,240,230,0.3);
  padding: 0.9rem 2rem;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
}

.btn-ghost:hover { border-color: var(--gold); color: var(--gold-light); }

.btn-dark {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--charcoal);
  padding: 1.1rem 2.4rem;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
  display: inline-block;
}

.btn-dark:hover { background: var(--charcoal-mid); }

/* ============================================================
   GOLD DIVIDER
   ============================================================ */
.gold-rule {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.gold-rule::before, .gold-rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184,150,46,0.4));
}

.gold-rule::after {
  background: linear-gradient(90deg, rgba(184,150,46,0.4), transparent);
}

.gold-rule-diamond {
  width: 6px; height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ============================================================
   WHO WE SERVE
   ============================================================ */
.serve-section {
  background: var(--charcoal-mid);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.serve-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.serve-card {
  background: var(--charcoal);
  border: 1px solid rgba(184,150,46,0.12);
  padding: 2rem 1.8rem;
  transition: border-color 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
}

.serve-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 0;
  background: var(--gold);
  transition: height 0.4s ease;
}

.serve-card:hover { border-color: rgba(184,150,46,0.4); transform: translateY(-3px); }
.serve-card:hover::before { height: 100%; }

.serve-card-icon { font-size: 1.8rem; margin-bottom: 1rem; }

.serve-card-title {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.6rem;
}

.serve-card-body {
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-muted);
}

/* ============================================================
   CABINET LINES
   ============================================================ */
.lines-section { background: var(--charcoal); }

.lines-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 5rem;
}

.lines-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5px;
  background: rgba(184,150,46,0.1);
}

.line-card {
  background: var(--charcoal-mid);
  padding: 2.8rem 2rem;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
  cursor: default;
}

.line-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.line-card:hover { background: var(--charcoal-light); }
.line-card:hover::after { transform: scaleX(1); }

.line-tag {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(184,150,46,0.12);
  padding: 0.3rem 0.7rem;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.line-name {
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.15;
}

.line-name em { font-style: italic; color: var(--gold-light); }

.line-desc {
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.line-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.line-features li {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--cream-dark);
  padding-left: 1rem;
  position: relative;
}

.line-features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
}
.line-btn {
  display: block;
  width: fit-content;
  margin: 1rem auto 0;
  padding: 0.5rem 1.4rem;
  background-color: #8B6914; /* swap in your brand color */
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: background-color 0.2s ease;
}

.line-btn:hover {
  background-color: #6e5210; /* slightly darker on hover */
}
/* ============================================================
   VALUE / WHY CHOOSE US
   ============================================================ */
.value-section {
  background: var(--cream);
  color: var(--charcoal);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.value-section .section-title { color: var(--charcoal); }
.value-section .section-eyebrow { color: var(--gold); }
.value-section .section-body { color: #5a5550; }

.value-list { display: flex; flex-direction: column; gap: 0; }

.value-item {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.2rem;
  align-items: start;
  padding: 1.8rem 0;
  border-bottom: 1px solid rgba(26,26,24,0.1);
}

.value-num {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 300;
  color: var(--gold);
  padding-top: 0.1rem;
}

.value-text-title {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
}

.value-text-body {
  font-size: 0.83rem;
  font-weight: 300;
  line-height: 1.7;
  color: #5a5550;
}

/* ============================================================
   NORTHVILLE
   ============================================================ */
.northville-section {
  background: var(--charcoal-light);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.northville-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(184,150,46,0.1);
  border: 1px solid rgba(184,150,46,0.25);
  padding: 0.8rem 1.5rem;
  margin-bottom: 2rem;
}

.northville-badge span {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.northville-logo-box {
  background: var(--charcoal);
  border: 1px solid rgba(184,150,46,0.15);
  padding: 3rem;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.northville-logo-text {
  text-align: center;
}

.northville-logo-name {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1.1;
  margin-bottom: 0.5rem;
  font-style: italic;
}

.northville-logo-sub {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 2rem;
}

.pill {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--cream-dark);
  border: 1px solid rgba(244,240,230,0.2);
  padding: 0.45rem 1rem;
  transition: border-color 0.2s, color 0.2s;
}

.pill:hover { border-color: var(--gold); color: var(--gold-light); }

/* ============================================================
   TERRITORY
   ============================================================ */
.territory-section {
  background: var(--charcoal-mid);
  text-align: center;
}

.territory-section .section-eyebrow { justify-content: center; }
.territory-section .section-eyebrow::before { display: none; }
.territory-section .section-body { margin: 0 auto 4rem; text-align: center; max-width: 55ch; }

.territory-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(184,150,46,0.1);
  max-width: 900px;
  margin: 0 auto;
}

.territory-card {
  background: var(--charcoal);
  padding: 2.5rem 2rem;
  text-align: center;
}

.territory-state {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold-light);
  margin-bottom: 1rem;
}

.territory-cities {
  font-size: 0.78rem;
  font-weight: 300;
  line-height: 2;
  color: var(--text-muted);
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-section { background: var(--charcoal); overflow: hidden; }

.reviews-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.review-card {
  background: var(--charcoal-mid);
  border: 1px solid rgba(184,150,46,0.1);
  padding: 2.5rem 2.2rem;
  position: relative;
}

.review-card::before {
  content: '\201C';
  font-family: var(--serif);
  font-size: 6rem;
  color: rgba(184,150,46,0.12);
  position: absolute;
  top: -1rem;
  left: 1.5rem;
  line-height: 1;
}

.review-stars {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  margin-bottom: 1.2rem;
}

.review-text {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.7;
  color: var(--cream-dark);
  margin-bottom: 1.5rem;
}

.review-author {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.review-company {
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-section {
  background: var(--gold);
  padding: 7rem 6rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
}

.cta-section .section-title {
  color: var(--charcoal);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
}

.cta-section .section-body { color: rgba(26,26,24,0.65); max-width: 55ch; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section {
  background: var(--charcoal-mid);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

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

.form-group { display: flex; flex-direction: column; gap: 0.5rem; }

.form-group label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--charcoal);
  border: 1px solid rgba(244,240,230,0.12);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 300;
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(184,150,46,0.6);
}

.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--charcoal-mid); }

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding-top: 1rem;
}

.contact-item { display: flex; gap: 1.2rem; align-items: flex-start; }

.contact-icon {
  font-size: 1.2rem;
  color: var(--gold);
  flex-shrink: 0;
  padding-top: 0.1rem;
}

.contact-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.contact-value {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--cream-dark);
  line-height: 1.7;
}

.contact-value a {
  color: var(--cream-dark);
  text-decoration: none;
}

.contact-value a:hover { color: var(--gold-light); }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--charcoal);
  border-top: 1px solid rgba(184,150,46,0.12);
  padding: 3rem 6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.06em;
}

.footer-logo span { color: var(--gold); }

.footer-copy {
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-links a {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold-light); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  section { padding: 5rem 3rem; }

  nav { padding: 1.2rem 2rem; }
  nav.scrolled { padding: 0.85rem 2rem; }
  .nav-center { display: none; }
  .hamburger { display: flex; }

  .hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-gold-line { display: none; }
  .hero-left { padding: 10rem 3rem 6rem; }
  .hero-stats { left: 3rem; gap: 2rem; }

  .serve-section,
  .value-section,
  .northville-section,
  .contact-section { grid-template-columns: 1fr; gap: 3rem; }

  .lines-header { grid-template-columns: 1fr; gap: 1.5rem; }
  .lines-grid { grid-template-columns: 1fr 1fr; }

  .reviews-track { grid-template-columns: 1fr; }
  .territory-grid { grid-template-columns: 1fr; }

  .cta-section { grid-template-columns: 1fr; gap: 2rem; padding: 5rem 3rem; }

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

  footer { flex-direction: column; gap: 1.5rem; text-align: center; padding: 3rem 2rem; }
}

@media (max-width: 600px) {
  section { padding: 4rem 1.5rem; }
  .hero-left { padding: 8rem 1.5rem 5rem; }
  .hero-stats { left: 1.5rem; flex-wrap: wrap; gap: 1.5rem; }
  .serve-cards { grid-template-columns: 1fr; }
  .lines-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .cta-section { padding: 4rem 1.5rem; }
  footer { padding: 2rem 1.5rem; }
  nav { padding: 1rem 1.5rem; }
}
