/*
Theme Name: Vineyard Valley Charcuterie
Theme URI: https://grazingtabletemecula.com
Author: Vineyard Valley Charcuterie
Author URI: https://grazingtabletemecula.com
Description: A sophisticated, elegant theme for Vineyard Valley Charcuterie — grazing table and charcuterie catering in Temecula, CA. SEO-optimized for "grazing table temecula" and "charcuterie temecula" keywords.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: vineyard-valley
Tags: catering, food, elegant, one-page, seo
*/

/* =============================================
   IMPORTS & VARIABLES
   ============================================= */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

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

:root {
  --cream: #FAF7F2;
  --warm-white: #FFFEF9;
  --stone: #E8E2D9;
  --taupe: #C4B8A8;
  --brown: #7A6652;
  --dark-brown: #3D2E22;
  --olive: #8A8C6A;
  --olive-light: #C5C7A8;
  --rose: #C4897A;
  --gold: #B8956A;
  --gold-light: #D4B490;
  --text-dark: #2A1E16;
  --text-mid: #5C4A3A;
  --text-light: #8A7A6E;
}

html { scroll-behavior: smooth; }

/* Hide WordPress admin bar on frontend */
#wpadminbar { display: none !important; }
html { margin-top: 0 !important; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* =============================================
   NAVIGATION
   ============================================= */
#main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0.4rem 4rem;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s, backdrop-filter 0.4s;
}
#main-nav.scrolled {
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--stone);
  height: 80px;
}
.nav-logo-img img {
  height: 130px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.6rem 1.5rem;
  border: 1px solid var(--dark-brown);
  color: var(--dark-brown);
  text-decoration: none;
  transition: all 0.25s;
}
.nav-cta:hover { background: var(--dark-brown); color: var(--cream); }

/* =============================================
   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: 8rem 5rem 6rem 6rem;
  position: relative;
  z-index: 2;
  background: var(--cream);
}
/* Video fills the right panel */
.hero-right .hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 2.5rem;
  height: 1px;
  background: var(--gold);
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5vw, 4.8rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--dark-brown);
  margin-bottom: 0.3em;
}
.hero-title em { font-style: italic; color: var(--gold); font-weight: 300; }
.hero-subtitle {
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--text-mid);
  max-width: 38ch;
  margin-bottom: 3rem;
  margin-top: 1.2rem;
}
.hero-actions { display: flex; gap: 1.25rem; align-items: center; flex-wrap: wrap; }
.btn-primary {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  background: var(--dark-brown);
  color: var(--cream);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s;
}
.btn-primary:hover { background: var(--gold); color: var(--cream); }
.btn-outline {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-mid);
  text-decoration: none;
  border-bottom: 1px solid var(--taupe);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-outline:hover { color: var(--gold); border-color: var(--gold); }
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--stone);
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--dark-brown);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 0.3rem;
  display: block;
}
.hero-right { position: relative; overflow: hidden; }
.hero-img-main {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9) brightness(0.97);
}
.hero-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, var(--cream) 0%, transparent 15%);
}
.hero-badge {
  position: absolute;
  bottom: 3rem; right: 3rem;
  width: 110px; height: 110px;
  background: var(--dark-brown);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--cream);
  gap: 2px;
}
.hero-badge .badge-top { font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase; opacity: 0.7; }
.hero-badge .badge-loc { font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-weight: 600; font-style: italic; }

/* =============================================
   MARQUEE
   ============================================= */
.marquee-bar {
  background: var(--dark-brown);
  color: var(--gold-light);
  padding: 0.85rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-inner {
  display: inline-block;
  animation: marquee 30s linear infinite;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.marquee-inner span { margin: 0 2rem; }
.marquee-inner .dot { color: var(--rose); margin: 0 0.5rem; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* =============================================
   SECTIONS & CONTAINERS
   ============================================= */
section { padding: 6rem 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

.section-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.section-eyebrow::before { content: ''; width: 2rem; height: 1px; background: var(--gold); display: block; }
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  color: var(--dark-brown);
  line-height: 1.15;
}
.section-title em { font-style: italic; color: var(--gold); }
.ornament { text-align: center; margin: 1.5rem 0 3rem; color: var(--taupe); letter-spacing: 0.5em; font-size: 0.8rem; }

/* =============================================
   ABOUT
   ============================================= */
.about-section { background: var(--warm-white); padding: 7rem 0; }
.about-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 5rem; align-items: center; }
.about-images { position: relative; height: 520px; }
.about-img-a { position: absolute; top: 0; left: 0; width: 75%; height: 80%; object-fit: cover; filter: saturate(0.88); }
.about-img-b {
  position: absolute; bottom: 0; right: 0; width: 55%; height: 55%;
  object-fit: cover; filter: saturate(0.88);
  outline: 8px solid var(--cream); outline-offset: -8px;
  box-shadow: -20px -20px 0 0 var(--stone);
}
.about-text .section-title { margin-bottom: 1.5rem; }
.about-text p { color: var(--text-mid); font-size: 0.95rem; line-height: 1.85; margin-bottom: 1.25rem; }
.about-text p strong { color: var(--dark-brown); font-weight: 500; }

/* =============================================
   SERVICES
   ============================================= */
.services-section { background: var(--dark-brown); padding: 6rem 0; }
.services-section .section-eyebrow { color: var(--gold-light); }
.services-section .section-eyebrow::before { background: var(--gold-light); }
.services-section .section-title { color: var(--cream); }
.services-section .section-title em { color: var(--gold-light); }
.services-header { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: end; margin-bottom: 4rem; }
.services-header p { color: var(--taupe); font-size: 0.92rem; line-height: 1.85; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5px; }
.service-card {
  background: rgba(255,255,255,0.04);
  padding: 3rem 2.5rem;
  border: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s;
}
.service-card:hover { background: rgba(255,255,255,0.08); }
.service-icon { width: 2.5rem; height: 2.5rem; margin-bottom: 1.5rem; opacity: 0.7; }
.service-name { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 400; color: var(--cream); margin-bottom: 0.75rem; line-height: 1.2; }
.service-desc { font-size: 0.85rem; color: var(--taupe); line-height: 1.8; }
.service-tag {
  display: inline-block; margin-top: 1.5rem;
  font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid rgba(184,149,106,0.35);
  padding: 0.3rem 0.75rem;
}

/* =============================================
   GALLERY
   ============================================= */
.gallery-section { background: var(--cream); padding: 6rem 0; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 260px 260px;
  gap: 8px;
  margin-top: 3rem;
}
.gal-item { overflow: hidden; position: relative; }
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; filter: saturate(0.85); }
.gal-item:hover img { transform: scale(1.05); filter: saturate(1); }
.gi-1 { grid-column: 1 / 6; grid-row: 1; }
.gi-2 { grid-column: 6 / 9; grid-row: 1; }
.gi-3 { grid-column: 9 / 13; grid-row: 1; }
.gi-4 { grid-column: 1 / 4; grid-row: 2; }
.gi-5 { grid-column: 4 / 8; grid-row: 2; }
.gi-6 { grid-column: 8 / 13; grid-row: 2; }

/* =============================================
   PROCESS
   ============================================= */
.process-section { background: var(--warm-white); padding: 6rem 0; }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2.5rem; margin-top: 4rem; }
.step { position: relative; }
.step-num { font-family: 'Cormorant Garamond', serif; font-size: 4rem; font-weight: 300; color: var(--stone); line-height: 1; margin-bottom: 1rem; }
.step-title { font-size: 0.85rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--dark-brown); margin-bottom: 0.75rem; }
.step-desc { font-size: 0.87rem; color: var(--text-mid); line-height: 1.8; }
.step::after { content: ''; position: absolute; top: 2rem; right: -1.25rem; width: 1.5rem; height: 1px; background: var(--taupe); }
.step:last-child::after { display: none; }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-section { background: var(--cream); padding: 6rem 0; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3.5rem; }
.testimonial-card {
  padding: 2.5rem;
  background: var(--warm-white);
  border: 1px solid var(--stone);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem; color: var(--stone);
  position: absolute; top: 1rem; left: 1.75rem; line-height: 1;
}
.testimonial-text { font-size: 0.9rem; color: var(--text-mid); line-height: 1.85; margin-bottom: 1.5rem; position: relative; z-index: 1; }
.testimonial-author { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); font-weight: 500; }
.testimonial-event { font-size: 0.72rem; color: var(--text-light); margin-top: 0.2rem; }
.stars { display: flex; gap: 3px; margin-bottom: 1.25rem; }
.star { width: 10px; height: 10px; background: var(--gold); clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%); }

/* =============================================
   AREAS
   ============================================= */
.areas-section { background: var(--stone); padding: 6rem 0; }
.areas-section .section-title em { color: var(--brown); }
.areas-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3rem; }
.area-item { padding: 1.5rem; background: var(--cream); border-left: 2px solid var(--gold); }
.area-city { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--dark-brown); font-weight: 400; }
.area-desc { font-size: 0.78rem; color: var(--text-light); margin-top: 0.3rem; }

/* =============================================
   FAQ
   ============================================= */
.faq-section { background: var(--warm-white); padding: 6rem 0; }
.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; max-width: 1100px; margin: 0 auto; }
.faq-item { padding: 2rem; background: var(--cream); border-top: 2px solid var(--gold); }
.faq-q { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 400; color: var(--dark-brown); margin-bottom: 0.75rem; line-height: 1.3; }
.faq-a { font-size: 0.88rem; color: var(--text-mid); line-height: 1.85; }

/* =============================================
   CTA BANNER
   ============================================= */
.cta-section { background: var(--cream); text-align: center; padding: 7rem 2rem; }
.cta-section .section-title { font-size: clamp(2.2rem, 4vw, 4rem); margin-bottom: 1.5rem; }
.cta-section p { color: var(--text-mid); font-size: 0.95rem; max-width: 50ch; margin: 0 auto 3rem; line-height: 1.85; }
.cta-actions { display: flex; gap: 1.5rem; justify-content: center; align-items: center; }
.cta-phone {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; color: var(--dark-brown);
  text-decoration: none; font-style: italic;
  border-bottom: 1px solid var(--taupe); padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.cta-phone:hover { color: var(--gold); border-color: var(--gold); }

/* =============================================
   CONTACT FORM 7 STYLING
   ============================================= */
.wpcf7 { width: 100%; }
.wpcf7 .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-bottom: 1.25rem; }
.wpcf7 p { margin-bottom: 1.25rem; }
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="number"],
.wpcf7 input[type="date"],
.wpcf7 select,
.wpcf7 textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-top: none; border-left: none; border-right: none;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  color: var(--cream);
  padding: 0.85rem 1rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.88rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  -webkit-appearance: none;
  background: rgba(255,255,255,0.04);
  box-sizing: border-box;
}
.wpcf7 input[type="text"]::placeholder,
.wpcf7 input[type="email"]::placeholder,
.wpcf7 input[type="tel"]::placeholder,
.wpcf7 input[type="number"]::placeholder,
.wpcf7 textarea::placeholder { color: rgba(196,184,168,0.5); }
.wpcf7 input:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus { border-bottom-color: var(--gold); background: rgba(255,255,255,0.07); outline: none; }
.wpcf7 select { color: rgba(196,184,168,0.7); }
.wpcf7 select option { background: var(--dark-brown); color: var(--cream); }
.wpcf7 textarea { min-height: 130px; resize: vertical; }
.wpcf7 input[type="submit"] {
  width: 100%;
  padding: 1rem;
  background: var(--gold);
  color: var(--dark-brown);
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
  margin-top: 0.75rem;
}
.wpcf7 input[type="submit"]:hover { background: var(--cream); }
.wpcf7 .wpcf7-not-valid-tip { color: #e8a090; font-size: 0.75rem; margin-top: 0.3rem; display: block; }
.wpcf7 .wpcf7-response-output {
  margin-top: 1.5rem;
  padding: 0.85rem 1rem;
  font-size: 0.82rem;
  border: none !important;
  color: var(--cream);
}
.wpcf7 .wpcf7-mail-sent-ok { background: rgba(138,140,106,0.3); color: var(--olive-light); }
.wpcf7 .wpcf7-validation-errors,
.wpcf7 .wpcf7-mail-sent-ng { background: rgba(196,137,122,0.2); color: #e8a090; }
.wpcf7 span.wpcf7-form-control-wrap { display: block; }

/* =============================================
   CONTACT FORM
   ============================================= */
.contact-section { background: var(--dark-brown); padding: 6rem 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 6rem; align-items: start; }
.contact-info .section-title { color: var(--cream); margin-bottom: 1.5rem; }
.contact-info .section-title em { color: var(--gold-light); }
.contact-info p { color: var(--taupe); font-size: 0.9rem; line-height: 1.85; margin-bottom: 2rem; }
.contact-detail { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.25rem; }
.contact-detail-label { font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold-light); min-width: 5rem; padding-top: 2px; }
.contact-detail-value { font-size: 0.9rem; color: var(--cream); }
.contact-detail-value a { color: inherit; text-decoration: none; }
.contact-detail-value a:hover { color: var(--gold-light); }
.contact-form { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); padding: 3rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { margin-bottom: 1.5rem; }
.form-group.full { grid-column: 1 / -1; }
.form-label { display: block; font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--taupe); margin-bottom: 0.5rem; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--cream);
  padding: 0.75rem 1rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.88rem; font-weight: 300;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(196,184,168,0.4); }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--gold); }
.form-select option { background: var(--dark-brown); color: var(--cream); }
.form-textarea { resize: vertical; min-height: 120px; }
.btn-submit {
  width: 100%; padding: 1rem;
  background: var(--gold); color: var(--dark-brown);
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500;
  border: none; cursor: pointer;
  transition: background 0.25s, color 0.25s; margin-top: 0.5rem;
}
.btn-submit:hover { background: var(--cream); }

/* =============================================
   FOOTER
   ============================================= */
.site-footer { background: #1E160F; padding: 3rem 0; text-align: center; }
.footer-logo { margin-bottom: 1.5rem; }
.footer-logo img { height: 160px; width: auto; opacity: 0.85; }
.footer-links { display: flex; justify-content: center; gap: 2.5rem; margin-bottom: 1.5rem; list-style: none; flex-wrap: wrap; }
.footer-links a { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-light); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-light); }
.footer-legal { font-size: 0.72rem; color: #4A3A2E; line-height: 1.6; }
.footer-legal a { color: #5A4A3C; text-decoration: none; }

/* =============================================
   ANIMATIONS
   ============================================= */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  #main-nav { padding: 1rem 1.5rem; }
  .nav-links, .nav-cta { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 7rem 1.5rem 3rem; }
  .hero-right { height: 60vw; min-height: 280px; }
  .faq-grid { grid-template-columns: 1fr; }
  .about-grid, .services-header, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-images { height: 300px; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gi-1,.gi-2,.gi-3,.gi-4,.gi-5,.gi-6 { grid-column: auto; grid-row: auto; height: 200px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 1.5rem; }
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
}

/* =============================================
   VIDEO HERO (split layout — video right panel)
   ============================================= */

/* STATS BAR */
.stats-bar { background: var(--dark-brown); padding: 2rem 0; }
.stats-inner { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: rgba(255,255,255,.08); }
.stat-item { background: var(--dark-brown); padding: 1.5rem 2rem; text-align: center; }
.stat-num { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 300; color: var(--gold-light); line-height: 1; display: block; }
.stat-label { font-size: .68rem; letter-spacing: .15em; text-transform: uppercase; color: var(--taupe); margin-top: .4rem; display: block; }

/* GALLERY section override */
.gallery-section { background: var(--warm-white); padding: 5rem 0; }
.gallery-intro-row { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: end; margin-bottom: 3rem; }
.gallery-intro-row p { color: var(--text-mid); font-size: .95rem; line-height: 1.85; }
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.gal-item { overflow: hidden; position: relative; cursor: pointer; height: 320px; }
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease, filter .4s; }
.gal-item:hover img { transform: scale(1.06); filter: brightness(1.05); }
.gal-caption { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(61,46,34,.7)); padding: 1.5rem 1.25rem .9rem; color: #fff; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; opacity: 0; transition: opacity .3s, transform .3s; transform: translateY(6px); }
.gal-item:hover .gal-caption { opacity: 1; transform: translateY(0); }

/* LIGHTBOX */
.lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.92); z-index: 9999; align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; }
.lightbox-close { position: absolute; top: 1.5rem; right: 2rem; font-size: 2.5rem; color: #fff; cursor: pointer; opacity: .7; transition: opacity .2s; background: none; border: none; line-height: 1; }
.lightbox-close:hover { opacity: 1; }

/* AREAS override for dark bg */
.areas-section { background: var(--dark-brown); padding: 6rem 0; }
.areas-section .section-eyebrow { color: var(--gold-light); }
.areas-section .section-eyebrow::before { background: var(--gold-light); }
.areas-section .section-title { color: var(--cream); }
.areas-section .section-title em { color: var(--gold-light); }
.areas-section .area-item { background: rgba(255,255,255,.05); border-left: 2px solid var(--gold); }
.areas-section .area-city { color: var(--cream); }

/* CTA section */
.cta-section { background: var(--warm-white); text-align: center; padding: 7rem 2rem; }
.cta-section .section-eyebrow { justify-content: center; }
.cta-section .section-title { text-align: center; font-size: clamp(2.2rem,4vw,4rem); margin-bottom: 1.5rem; }
.cta-section p { color: var(--text-mid); font-size: .95rem; max-width: 50ch; margin: 0 auto 3rem; line-height: 1.85; }
.cta-actions { display: flex; gap: 1.5rem; justify-content: center; align-items: center; }
.cta-phone { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; color: var(--dark-brown); text-decoration: none; font-style: italic; border-bottom: 1px solid var(--taupe); padding-bottom: 2px; transition: all .2s; }
.cta-phone:hover { color: var(--gold); border-color: var(--gold); }

@media (max-width: 900px) {
  .hero-content { padding: 0 1.5rem; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .gallery-intro-row { grid-template-columns: 1fr; gap: 1.5rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gal-item.tall, .gal-item.wide { grid-row: auto; grid-column: auto; }
  .gal-item { height: 220px; }
}
