/* ============================================================
   OC Kitchen Countertops — style.css
   Color: #1a1a1a charcoal | #fafafa warm white | #c9a84c gold | #4a4a4a slate
   Fonts: Playfair Display (headings) + Inter (body)
   ============================================================ */

:root {
  --charcoal: #1a1a1a;
  --charcoal-light: #2c2c2c;
  --slate: #4a4a4a;
  --slate-light: #6b6b6b;
  --warm-white: #fafafa;
  --off-white: #f0ebe3;
  --gold: #c9a84c;
  --gold-dark: #a8893e;
  --gold-light: #e2c97a;
  --white: #ffffff;
  --border: rgba(201,168,76,.25);
  --shadow: 0 4px 24px rgba(0,0,0,.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.18);
  --radius: 4px;
  --radius-md: 8px;
  --transition: .2s ease;
  --container: 1200px;
  --nav-h: 72px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--warm-white);
  color: var(--charcoal);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
  color: var(--charcoal);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { font-size: 1rem; color: var(--slate); }

/* ── Container ── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Section spacing ── */
section { padding: 80px 0; }
.section-label {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-header { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 1.05rem; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .03em;
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--charcoal);
}
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,168,76,.35); }

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline-gold:hover { background: var(--gold); color: var(--charcoal); transform: translateY(-2px); }

.btn-white {
  background: var(--white);
  color: var(--charcoal);
}
.btn-white:hover { background: var(--off-white); transform: translateY(-2px); }

.btn-lg { padding: 17px 40px; font-size: 1.05rem; }
.btn-sm { padding: 10px 22px; font-size: .875rem; }

/* ── Navbar ── */
#navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--charcoal);
  height: var(--nav-h);
  border-bottom: 1px solid rgba(201,168,76,.2);
  transition: box-shadow var(--transition);
}
#navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.4); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 1;
}
.nav-logo .logo-main {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--warm-white);
  white-space: nowrap;
}
.nav-logo .logo-sub {
  font-size: .65rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 8px 14px;
  font-size: .875rem;
  font-weight: 500;
  color: rgba(250,250,250,.8);
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--warm-white); background: rgba(255,255,255,.08); }
.nav-links a.active { color: var(--gold); }
.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--warm-white);
  font-weight: 600;
  font-size: .9rem;
  white-space: nowrap;
}
.nav-phone:hover { color: var(--gold); }
.nav-cta { margin-left: 8px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--warm-white);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ── */
#hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  background: var(--charcoal);
  overflow: hidden;
  padding: 80px 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/countertop-quartz-veined-modern-kitchen.jpg');
  background-size: cover;
  background-position: center;
  opacity: .35;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,.15);
  border: 1px solid rgba(201,168,76,.4);
  color: var(--gold-light);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
#hero h1 { color: var(--warm-white); margin-bottom: 20px; }
#hero h1 span { color: var(--gold); }
#hero .subtitle {
  font-size: 1.15rem;
  color: rgba(250,250,250,.8);
  margin-bottom: 36px;
  max-width: 580px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  flex-wrap: wrap;
}
.hero-stat .num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.hero-stat .lbl { font-size: .8rem; color: rgba(250,250,250,.65); margin-top: 4px; }

/* ── Trust Bar ── */
#trust-bar {
  background: var(--charcoal-light);
  border-top: 1px solid rgba(201,168,76,.15);
  border-bottom: 1px solid rgba(201,168,76,.15);
  padding: 28px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--warm-white);
}
.trust-icon { font-size: 1.6rem; flex-shrink: 0; }
.trust-label { font-size: .875rem; font-weight: 600; }
.trust-sub { font-size: .75rem; color: rgba(250,250,250,.55); }

/* ── Service Cards ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,.07);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.service-icon { font-size: 2.2rem; margin-bottom: 16px; }
.service-card h3 { margin-bottom: 10px; }
.service-card p { font-size: .9rem; margin-bottom: 16px; }
.card-link {
  color: var(--gold);
  font-size: .875rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--transition);
}
.card-link:hover { gap: 8px; }

/* ── Why Choose Us ── */
#why-us { background: var(--charcoal); color: var(--warm-white); }
#why-us h2 { color: var(--warm-white); }
#why-us p { color: rgba(250,250,250,.75); }
#why-us .section-label { color: var(--gold); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-list { display: flex; flex-direction: column; gap: 24px; }
.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-check {
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: rgba(201,168,76,.15);
  border: 1px solid rgba(201,168,76,.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: .9rem;
  margin-top: 2px;
}
.why-item h4 { color: var(--warm-white); margin-bottom: 4px; }
.why-item p { font-size: .9rem; }
.why-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.why-stats--4col { grid-template-columns: repeat(4, 1fr); }
.why-stat-box {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
}
.why-stat-box .big {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}
.why-stat-box span:last-child { font-size: .85rem; color: rgba(250,250,250,.6); }

/* ── Materials ── */
#materials { background: var(--off-white); }
.materials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}
.material-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.07);
  transition: transform var(--transition), box-shadow var(--transition);
}
.material-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.material-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.material-body { padding: 20px; }
.material-body h3 { font-size: 1.1rem; margin-bottom: 8px; }
.material-body p { font-size: .85rem; }

/* ── Gallery Preview ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-thumb {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.gallery-thumb:hover img { transform: scale(1.07); }
.gallery-thumb .overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,26,26,.5);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2rem;
}
.gallery-thumb:hover .overlay { opacity: 1; }

/* ── Full Gallery ── */
.full-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 4/3;
  cursor: pointer;
  background: #ddd;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,26,.8) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .3s;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.gallery-item:hover .overlay { opacity: 1; }
.gallery-item .overlay span { color: var(--white); font-size: .85rem; font-weight: 500; }

/* ── Lightbox ── */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,.9);
  align-items: center;
  justify-content: center;
}
#lightbox.open { display: flex; }
#lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
}
.lb-close {
  position: fixed;
  top: 24px;
  right: 32px;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  opacity: .8;
  transition: opacity var(--transition);
}
.lb-close:hover { opacity: 1; }
.lb-prev, .lb-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  color: var(--white);
  font-size: 2.5rem;
  cursor: pointer;
  padding: 16px;
  opacity: .7;
  transition: opacity var(--transition);
  background: rgba(255,255,255,.1);
  border-radius: var(--radius);
}
.lb-prev:hover, .lb-next:hover { opacity: 1; background: rgba(255,255,255,.2); }
.lb-prev { left: 16px; }
.lb-next { right: 16px; }

/* ── Service Area Strip ── */
#service-area { background: var(--charcoal); padding: 60px 0; }
#service-area h2 { color: var(--warm-white); text-align: center; margin-bottom: 40px; }
.area-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.area-col h3 { color: var(--gold); font-size: 1rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 16px; }
.area-col ul { display: flex; flex-direction: column; gap: 6px; }
.area-col li { color: rgba(250,250,250,.7); font-size: .875rem; }

/* ── Testimonials ── */
#testimonials { background: var(--off-white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  border: 1px solid rgba(0,0,0,.07);
  box-shadow: var(--shadow);
}
.stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; margin-bottom: 16px; }
.testimonial-text { font-style: italic; font-size: .95rem; margin-bottom: 20px; color: var(--slate); }
.testimonial-author { font-weight: 700; font-size: .875rem; color: var(--charcoal); }
.testimonial-meta { font-size: .8rem; color: var(--slate-light); }

/* ── Quote Form ── */
#quote, .quote-page { background: var(--warm-white); }
.quote-wrap { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: start; }
.quote-info h2 { margin-bottom: 16px; }
.quote-info p { margin-bottom: 28px; }
.contact-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .95rem;
  font-weight: 500;
}
.contact-item-icon {
  width: 40px;
  height: 40px;
  background: rgba(201,168,76,.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.form-box {
  background: var(--white);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow);
}
.form-box h3 { margin-bottom: 8px; }
.form-box .form-sub { font-size: .875rem; color: var(--slate-light); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: .85rem; font-weight: 600; color: var(--charcoal); }
.form-group input, .form-group select, .form-group textarea {
  padding: 11px 14px;
  border: 1.5px solid rgba(0,0,0,.12);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  color: var(--charcoal);
  background: var(--warm-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,.15);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.honeypot-wrap { position: absolute; left: -9999px; top: -9999px; height: 0; overflow: hidden; }
.form-msg {
  display: none;
  padding: 14px 18px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .9rem;
  margin-bottom: 16px;
}
.form-msg.success { display: block; background: #d1fae5; color: #065f46; }
.form-msg.error   { display: block; background: #fee2e2; color: #991b1b; }
.form-privacy { font-size: .78rem; color: var(--slate-light); margin-top: 12px; text-align: center; }

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: var(--charcoal);
  padding: 64px 0 56px;
  text-align: center;
}
.page-hero h1 { color: var(--warm-white); margin-bottom: 12px; }
.page-hero p { color: rgba(250,250,250,.7); max-width: 560px; margin: 0 auto; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  font-size: .8rem;
  color: rgba(250,250,250,.5);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: rgba(250,250,250,.4); }

/* ── Services Page ── */
.services-list-wrap { max-width: 820px; margin: 0 auto; }
.service-section {
  padding: 48px 0;
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.service-section:last-child { border-bottom: none; }
.service-section h2 { margin-bottom: 12px; }
.service-section p { margin-bottom: 20px; }

/* ── About ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-img { border-radius: var(--radius-md); overflow: hidden; }
.about-img img { width: 100%; height: 480px; object-fit: cover; }

/* ── Locations Hub ── */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.location-card {
  display: block;
  background: var(--white);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.location-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--gold);
}
.location-card .city-name { font-weight: 700; font-size: .95rem; color: var(--charcoal); display: block; margin-bottom: 4px; }
.location-card .county { font-size: .78rem; color: var(--gold); }
.county-header {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--charcoal);
  margin: 48px 0 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
}
.county-header:first-child { margin-top: 0; }

/* ── City page unique intro ── */
.city-intro {
  background: var(--off-white);
  padding: 48px 0;
}
.city-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.city-intro-text h2 { margin-bottom: 16px; }

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--charcoal) 0%, #2c2c2c 100%);
  border-top: 3px solid var(--gold);
  padding: 64px 0;
  text-align: center;
}
.cta-banner h2 { color: var(--warm-white); margin-bottom: 12px; }
.cta-banner p { color: rgba(250,250,250,.7); margin-bottom: 32px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Mobile Sticky CTA ── */
#sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--charcoal);
  border-top: 2px solid var(--gold);
  padding: 12px 20px;
  gap: 12px;
}
#sticky-cta a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .875rem;
}
#sticky-cta .sticky-call { background: var(--charcoal); color: var(--warm-white); border: 1px solid rgba(255,255,255,.15); }
#sticky-cta .sticky-quote { background: var(--gold); color: var(--charcoal); }

/* ── Footer ── */
footer {
  background: #111;
  color: rgba(250,250,250,.7);
  padding: 60px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .f-logo { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; color: var(--warm-white); display: block; margin-bottom: 4px; }
.footer-brand .f-logo-sub { font-size: .65rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); }
.footer-brand p { font-size: .875rem; margin-top: 16px; line-height: 1.7; }
.footer-nap { margin-top: 16px; font-size: .875rem; }
.footer-nap a { color: var(--gold); }
.footer-col h4 { color: var(--warm-white); font-size: .875rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col a { font-size: .875rem; color: rgba(250,250,250,.6); transition: color var(--transition); }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  flex-wrap: wrap;
  gap: 12px;
}

/* ── Reveal animation ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .quote-wrap { grid-template-columns: 1fr; gap: 40px; }
  .about-grid { grid-template-columns: 1fr; }
  .city-intro-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  section { padding: 56px 0; }
  h1 { font-size: 2rem; }

  .nav-links, .nav-phone, .nav-cta { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--charcoal);
    padding: 24px;
    gap: 4px;
    border-bottom: 1px solid rgba(201,168,76,.2);
    box-shadow: 0 8px 24px rgba(0,0,0,.3);
  }
  .nav-links.open a { padding: 12px 16px; font-size: 1rem; }
  .nav-toggle { display: flex; }

  .trust-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .full-gallery-grid { grid-template-columns: 1fr 1fr; }
  .area-grid { grid-template-columns: 1fr; gap: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .form-box { padding: 28px 20px; }
  .hero-stats { gap: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  #sticky-cta { display: flex; }
  body { padding-bottom: 68px; }
  .cta-btns { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .trust-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .full-gallery-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .materials-grid { grid-template-columns: 1fr 1fr; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .why-stats { grid-template-columns: 1fr; }
  .why-stats--4col { grid-template-columns: 1fr 1fr; }
}
