/* ============================================================
   Barossa Web Design — Global Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=Inter:wght@300;400;500;600;700&family=DM+Mono:wght@400;500&display=swap');

:root {
  --wine:    #722F37;
  --wine-dk: #4E1F25;
  --wine-lt: #F5EAEB;
  --gold:    #C9A84C;
  --gold-lt: #FDF6E3;
  --dark:    #1A1A1A;
  --body:    #F8F4EE;
  --card:    #F2EBE1;
  --muted:   #6B6057;
  --border:  #E0D4C3;
  --white:   #FFFFFF;
  --serif:   'Playfair Display', Georgia, serif;
  --sans:    'Inter', system-ui, sans-serif;
  --mono:    'DM Mono', monospace;
  --radius:  10px;
  --shadow:  0 4px 24px rgba(114,47,55,0.08);
  --shadow-lg: 0 12px 48px rgba(114,47,55,0.14);
}

/* ── RESET & BASE ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--body);
  color: var(--dark);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--wine); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--wine-dk); }
ul, ol { padding-left: 1.4em; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: var(--serif);
  line-height: 1.15;
  color: var(--dark);
}
h1 { font-size: clamp(36px, 5vw, 60px); font-weight: 900; }
h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 700; }
h3 { font-size: clamp(20px, 2.5vw, 26px); font-weight: 700; }
h4 { font-size: 18px; font-weight: 600; }
p  { margin-bottom: 1em; color: var(--muted); }
p:last-child { margin-bottom: 0; }
strong { color: var(--dark); font-weight: 600; }

/* ── LAYOUT ── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 820px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }

/* ── TOP BAR (license/trust bar) ── */
.trust-bar {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  font-family: var(--mono);
  font-size: 12px;
  padding: 10px 0;
  letter-spacing: 0.04em;
}
.trust-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.trust-bar span { color: var(--gold); font-weight: 500; }
.trust-bar a { color: rgba(255,255,255,0.75); }
.trust-bar a:hover { color: var(--gold); }

/* ── HEADER / NAV ── */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1140px;
  margin: 0 auto;
}
.logo {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 900;
  color: var(--wine);
  letter-spacing: -0.02em;
  line-height: 1;
}
.logo span { color: var(--gold); }
.logo small {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 2px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  padding: 0;
}
.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  transition: color 0.2s;
}
.nav a:hover { color: var(--wine); }
.nav .btn-nav {
  background: var(--wine);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.2s, transform 0.1s;
}
.nav .btn-nav:hover { background: var(--wine-dk); transform: translateY(-1px); }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--dark);
}
.nav-toggle svg { display: block; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--wine);
  color: var(--white);
  border-color: var(--wine);
}
.btn-primary:hover { background: var(--wine-dk); border-color: var(--wine-dk); color: var(--white); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(114,47,55,0.3); }
.btn-outline {
  background: transparent;
  color: var(--wine);
  border-color: var(--wine);
}
.btn-outline:hover { background: var(--wine); color: var(--white); transform: translateY(-2px); }
.btn-gold {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.btn-gold:hover { background: #b8962a; color: var(--dark); transform: translateY(-2px); }
.btn-lg { padding: 18px 36px; font-size: 17px; }
.btn-sm { padding: 10px 20px; font-size: 13px; }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--wine-dk) 0%, var(--wine) 60%, #9B4A54 100%);
  color: var(--white);
  padding: 96px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -150px; right: -150px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
}
.hero h1 em { color: var(--gold); font-style: italic; }
.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust {
  display: flex;
  gap: 28px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}
.hero-trust-item svg { color: var(--gold); flex-shrink: 0; }
.hero-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow-lg);
}
.hero-card-title {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
}
.hero-review-stars { color: var(--gold); font-size: 20px; margin-bottom: 8px; }
.hero-review-text {
  font-size: 14px;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 12px;
  line-height: 1.6;
}
.hero-review-author { font-size: 13px; font-weight: 600; color: var(--dark); }
.hero-review-biz { font-size: 12px; color: var(--muted); }
.hero-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.hero-stat-num {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 900;
  color: var(--wine);
  display: block;
  line-height: 1;
}
.hero-stat-label { font-size: 12px; color: var(--muted); margin-top: 4px; }

/* ── SECTION HEADERS ── */
.section-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wine);
  display: block;
  margin-bottom: 12px;
}
.section-title { margin-bottom: 16px; }
.section-desc { color: var(--muted); font-size: 17px; max-width: 600px; }
.section-header { margin-bottom: 48px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-desc { margin: 0 auto; }
.divider { height: 1px; background: var(--border); margin: 40px 0; }

/* ── SERVICES GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
  transition: all 0.25s;
  position: relative;
}
.service-card:hover {
  border-color: var(--wine);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.service-icon {
  width: 52px;
  height: 52px;
  background: var(--wine-lt);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--wine);
}
.service-card h3 { font-size: 18px; margin-bottom: 10px; }
.service-card p { font-size: 14px; margin-bottom: 16px; }
.service-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--wine);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-link:hover { gap: 10px; }

/* ── FEATURES / WHY US ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.feature {
  text-align: center;
  padding: 32px 24px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.feature-icon {
  width: 64px;
  height: 64px;
  background: var(--wine-lt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--wine);
  font-size: 28px;
}
.feature h3 { font-size: 18px; margin-bottom: 10px; }

/* ── STATS / METRICS ── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  background: var(--wine);
  border-radius: 16px;
  padding: 40px;
}
.stat { text-align: center; }
.stat-num {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  display: block;
}
.stat-num sup { font-size: 22px; color: var(--gold); }
.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin-top: 6px;
  line-height: 1.4;
}

/* ── PRICING ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.price-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 28px;
  border: 2px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: all 0.25s;
}
.price-card:hover { border-color: var(--wine); box-shadow: var(--shadow); }
.price-card.featured {
  border-color: var(--wine);
  background: var(--wine);
  color: var(--white);
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}
.price-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.price-card.featured .price-label { color: rgba(255,255,255,0.6); }
.price-card h3 { font-size: 22px; margin-bottom: 4px; }
.price-card.featured h3 { color: var(--white); }
.price-amount {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 900;
  color: var(--wine);
  line-height: 1;
  margin: 16px 0 4px;
}
.price-card.featured .price-amount { color: var(--gold); }
.price-amount sup { font-size: 24px; vertical-align: top; margin-top: 12px; }
.price-note { font-size: 13px; color: var(--muted); margin-bottom: 24px; }
.price-card.featured .price-note { color: rgba(255,255,255,0.6); }
.price-features {
  list-style: none;
  padding: 0;
  margin-bottom: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.price-features li {
  font-size: 14px;
  color: var(--muted);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}
.price-card.featured .price-features li { color: rgba(255,255,255,0.8); }
.price-features li::before {
  content: '✓';
  color: var(--wine);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.price-card.featured .price-features li::before { color: var(--gold); }

/* ── REVIEWS ── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
}
.review-stars { color: var(--gold); font-size: 16px; margin-bottom: 12px; letter-spacing: 2px; }
.review-text {
  font-size: 14px;
  font-style: italic;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 16px;
}
.review-author { font-size: 13px; font-weight: 600; color: var(--dark); }
.review-biz { font-size: 12px; color: var(--muted); }
.review-source {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--border);
  margin-top: 12px;
}

/* ── LOCATIONS ── */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.location-chip {
  display: block;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 16px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  transition: all 0.2s;
}
.location-chip:hover {
  border-color: var(--wine);
  color: var(--wine);
  background: var(--wine-lt);
  transform: translateY(-2px);
}

/* ── PROCESS STEPS ── */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  padding-left: 40px;
}
.process-steps::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: var(--border);
}
.process-step {
  position: relative;
  padding: 0 0 36px 32px;
}
.process-step:last-child { padding-bottom: 0; }
.step-num {
  position: absolute;
  left: -40px;
  top: 4px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--wine);
  color: var(--white);
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.process-step h3 { font-size: 18px; margin-bottom: 8px; }
.process-step p { font-size: 14px; }

/* ── CALLOUT / CTA BOXES ── */
.callout-box {
  border-radius: 16px;
  padding: 48px;
  text-align: center;
}
.callout-wine { background: var(--wine); color: var(--white); }
.callout-wine h2 { color: var(--white); }
.callout-wine p { color: rgba(255,255,255,0.75); }
.callout-gold { background: var(--gold-lt); border: 2px solid var(--gold); }
.callout-cream { background: var(--card); border: 1px solid var(--border); }
.callout-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--wine-dk) 0%, var(--wine) 100%);
  color: var(--white);
  padding: 64px 0 56px;
}
.page-hero .breadcrumb {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
  display: flex;
  gap: 8px;
  align-items: center;
}
.page-hero .breadcrumb a { color: rgba(255,255,255,0.55); }
.page-hero .breadcrumb a:hover { color: var(--gold); }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 18px; max-width: 640px; }
.page-hero .page-meta {
  display: flex;
  gap: 24px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.page-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}
.page-meta-item svg { color: var(--gold); }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 16px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-q {
  padding: 20px 24px;
  font-weight: 600;
  font-size: 15px;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
}
.faq-q::after {
  content: '+';
  font-size: 22px;
  color: var(--wine);
  flex-shrink: 0;
  font-weight: 300;
}
.faq-item.open .faq-q::after { content: '−'; }
.faq-a {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  display: none;
}
.faq-item.open .faq-a { display: block; }

/* ── CONTACT FORM ── */
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--dark); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--dark);
  background: var(--white);
  transition: border-color 0.2s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--wine);
}
.form-group textarea { min-height: 120px; resize: vertical; }

/* ── SIDEBAR LAYOUT ── */
.page-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: flex-start;
}
.sidebar { position: sticky; top: 100px; }
.sidebar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 20px;
}
.sidebar-card h4 { font-size: 16px; margin-bottom: 16px; color: var(--dark); }
.sidebar-phone {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--wine);
  display: block;
  margin-bottom: 4px;
}
.sidebar-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sidebar-list li a {
  font-size: 14px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.sidebar-list li a:hover { color: var(--wine); }
.sidebar-list li a::before { content: '→'; color: var(--border); }

/* ── BREADCRUMB ── */
.breadcrumb-bar {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  background: var(--white);
}
.breadcrumb-bar nav {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  gap: 8px;
  align-items: center;
}
.breadcrumb-bar a { color: var(--muted); }
.breadcrumb-bar a:hover { color: var(--wine); }

/* ── TAGS / BADGES ── */
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
}
.badge-wine { background: var(--wine-lt); color: var(--wine); }
.badge-gold { background: var(--gold-lt); color: #8a6d10; }
.badge-dark { background: var(--dark); color: var(--white); }

/* ── BLOG / ARTICLES ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.25s;
}
.blog-card:hover { border-color: var(--wine); box-shadow: var(--shadow); transform: translateY(-3px); }
.blog-card-img {
  height: 180px;
  background: linear-gradient(135deg, var(--wine-lt), var(--gold-lt));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
}
.blog-card-body { padding: 20px; }
.blog-meta { font-size: 12px; color: var(--muted); margin-bottom: 8px; }
.blog-card h3 { font-size: 17px; margin-bottom: 10px; line-height: 1.3; }
.blog-card p { font-size: 13px; margin-bottom: 14px; }
.blog-read-more { font-size: 13px; font-weight: 600; color: var(--wine); }

/* ── MAP EMBED ── */
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 300px;
  background: var(--card);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 14px;
}
.map-wrap iframe { width: 100%; height: 100%; border: none; display: block; }

/* ── FOOTER ── */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.6);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo { color: var(--gold); }
.footer-brand .logo small { color: rgba(255,255,255,0.4); }
.footer-brand p { font-size: 14px; margin-top: 16px; line-height: 1.65; color: rgba(255,255,255,0.5); }
.footer-col h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: var(--mono);
  margin-bottom: 16px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom a { color: rgba(255,255,255,0.35); }
.footer-bottom a:hover { color: var(--gold); }
.footer-nap {
  margin-top: 16px;
  font-family: var(--mono);
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  line-height: 1.8;
}
.footer-nap strong { color: rgba(255,255,255,0.65); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-grid .price-card.featured { transform: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .page-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
}
@media (max-width: 768px) {
  .nav { display: none; }
  .nav-toggle { display: block; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px;
    gap: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  }
  .site-header { position: relative; }
  .nav-wrap { flex-wrap: wrap; position: relative; }
  .services-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: 1fr 1fr; padding: 28px; }
  .section { padding: 56px 0; }
  .hero { padding: 64px 0 56px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .callout-box { padding: 32px 24px; }
  .blog-grid { grid-template-columns: 1fr; }
}

/* ── UTILITIES ── */
.text-center { text-align: center; }
.text-wine { color: var(--wine); }
.text-gold { color: var(--gold); }
.text-muted { color: var(--muted); }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }
.bg-cream { background: var(--card); }
.bg-dark { background: var(--dark); }
.inline-flex { display: inline-flex; align-items: center; gap: 8px; }

/* ── PRINT ── */
@media print {
  .site-header, .site-footer, .nav-toggle { display: none !important; }
  .hero { background: var(--wine) !important; -webkit-print-color-adjust: exact; }
}
