/* =========================================
   WINE COUNTRY WEEKENDS — Main Stylesheet
   Theme: Deep Red / Burgundy / Gold
   ========================================= */

/* --- GOOGLE FONTS --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

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

:root {
  --wine:        #6b1a2a;
  --wine-dark:   #3d0d17;
  --wine-mid:    #8b2535;
  --wine-light:  #b54a5a;
  --gold:        #c9a84c;
  --gold-light:  #e8cc80;
  --cream:       #faf5ee;
  --text-dark:   #1e0a0d;
  --text-mid:    #4a2030;
  --text-light:  #f5ede8;
  --white:       #ffffff;
  --shadow:      0 4px 24px rgba(60,10,20,0.18);
  --radius:      12px;
  --transition:  0.28s ease;
  --font-head:   'Inter', system-ui, sans-serif;
  --font-body:   'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
}

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

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- HEADER --- */
.site-header {
  background: var(--wine-dark);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.35);
}

.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-icon { font-size: 1.7rem; }
.logo-text {
  font-family: var(--font-head);
  font-size: 1.25rem;
  color: var(--gold-light);
  letter-spacing: 0.03em;
  font-weight: 700;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
}
.main-nav a {
  color: var(--text-light);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.85;
  transition: var(--transition);
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
}
.main-nav a:hover,
.main-nav a.active {
  opacity: 1;
  color: var(--gold-light);
  border-bottom-color: var(--gold);
}

/* --- HERO --- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('../images/mclaren-vale-vineyard.jpg');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

/* darkening overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(40, 10, 15, 0.7);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--cream));
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 760px;
  padding: 60px 24px;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.26em;
  color: var(--gold);
  margin-bottom: 18px;
  font-weight: 700;
}

.hero-content h1 {
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 7vw, 5rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.4);
  font-weight: 800;
}

.hero-sub {
  font-size: 1.1rem;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  max-width: 580px;
  margin: 0 auto 38px;
  line-height: 1.75;
}

.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--wine-dark);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 16px 40px;
  border-radius: 50px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(201,168,76,0.35);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,0.45);
}

/* --- INTRO --- */
.intro {
  padding: 90px 0 80px;
  background: var(--cream);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.intro-text h2 {
  font-family: var(--font-head);
  font-size: 2.2rem;
  color: var(--wine-dark);
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 700;
}

.intro-text p {
  color: var(--text-mid);
  margin-bottom: 16px;
  font-size: 1rem;
}

.intro-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat-card {
  background: var(--wine-dark);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: var(--transition);
}
.stat-card:hover { transform: translateY(-3px); }

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

.stat-label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* --- SECTION HEADER --- */
.section-header {
  text-align: center;
  margin-bottom: 52px;
}
.section-header h2 {
  font-family: var(--font-head);
  font-size: 2.3rem;
  color: var(--wine-dark);
  margin-bottom: 14px;
  font-weight: 700;
}
.section-header p {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 560px;
  margin: 0 auto;
}
.section-header.light h2 { color: var(--gold-light); }
.section-header.light p  { color: rgba(255,255,255,0.75); }

/* --- REGIONS --- */
.regions {
  padding: 80px 0 100px;
  background: #f3ebe0;
}

.regions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.region-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.region-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(60,10,20,0.22);
}

/* Region card hero images — rich gradients representing each region */
.region-card-img {
  height: 180px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 14px 16px;
}

.barossa-img  { background: linear-gradient(135deg, #6b1a2a 0%, #8b4513 60%, #a0522d 100%); }
.mclaren-img  { background: linear-gradient(135deg, #3d0d17 0%, #7b2d3e 55%, #c06060 100%); }
.yarra-img    { background: linear-gradient(135deg, #1a3d1a 0%, #2e5e2e 55%, #6b8e3e 100%); }
.hunter-img   { background: linear-gradient(135deg, #3d2200 0%, #7a4810 55%, #c8860a 100%); }
.margaret-img { background: linear-gradient(135deg, #0d3060 0%, #1a5276 55%, #2e86ab 100%); }
.clare-img    { background: linear-gradient(135deg, #4a1030 0%, #7a2848 55%, #9b4060 100%); }

/* grape cluster decorative shapes */
.region-card-img::before {
  content: '🍇';
  position: absolute;
  top: 16px;
  right: 18px;
  font-size: 2.2rem;
  opacity: 0.55;
}

.region-state {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.9);
  background: rgba(0,0,0,0.35);
  padding: 4px 10px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}

.region-card-body {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.region-card-body h3 {
  font-family: var(--font-head);
  font-size: 1.35rem;
  color: var(--wine-dark);
  margin-bottom: 10px;
  font-weight: 700;
}

.region-card-body p {
  font-size: 0.95rem;
  color: #555;
  flex: 1;
  margin-bottom: 16px;
  line-height: 1.65;
}

.region-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.tag {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: #f2e8e0;
  color: var(--wine-mid);
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(107,26,42,0.15);
}

.region-link {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--wine);
  letter-spacing: 0.04em;
  transition: var(--transition);
}
.region-card:hover .region-link {
  color: var(--gold);
}

/* --- TIPS --- */
.tips {
  padding: 90px 0;
  background: linear-gradient(160deg, var(--wine-dark) 0%, var(--wine) 100%);
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.tip-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  backdrop-filter: blur(6px);
}
.tip-card:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-3px);
}

.tip-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.tip-card h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  color: var(--gold-light);
  margin-bottom: 12px;
  font-weight: 700;
}

.tip-card p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
}

/* --- FOOTER --- */
.site-footer {
  background: var(--wine-dark);
  padding: 52px 0 32px;
  border-top: 3px solid var(--gold);
}

.footer-inner {
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-tagline {
  font-style: italic;
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  margin-bottom: 28px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;
  margin-bottom: 28px;
}

.footer-nav a {
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  font-weight: 500;
  transition: var(--transition);
}
.footer-nav a:hover { color: var(--gold-light); }

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* ===== ABOUT PAGE ===== */

.about-hero {
  background: linear-gradient(160deg, var(--wine-dark) 0%, var(--wine) 55%, #2a0810 100%);
  padding: 90px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(201,168,76,0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(201,168,76,0.10) 0%, transparent 45%);
  pointer-events: none;
}
.about-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--cream));
}
.about-hero-content {
  position: relative;
  z-index: 2;
}
.about-hero .hero-eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 700;
}
.about-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 18px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.4);
  font-weight: 800;
}
.about-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.75;
}

/* --- ABOUT SECTION --- */
.about-section {
  padding: 80px 0 100px;
  background: var(--cream);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}
.about-text h2 {
  font-family: var(--font-head);
  font-size: 2.2rem;
  color: var(--wine-dark);
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 700;
}
.about-text p {
  color: var(--text-mid);
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.75;
}
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* --- MISSION CARDS --- */
.about-mission {
  background: #f3ebe0;
  border-radius: var(--radius);
  padding: 60px 48px;
  margin-bottom: 60px;
}
.about-mission h2 {
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--wine-dark);
  margin-bottom: 16px;
  text-align: center;
  font-weight: 700;
}
.about-mission > p {
  text-align: center;
  color: var(--text-mid);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.75;
}
.mission-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.mission-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--wine);
  transition: var(--transition);
}
.mission-card:hover { transform: translateY(-4px); }
.mission-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
}
.mission-card h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: var(--wine-dark);
  margin-bottom: 10px;
  font-weight: 700;
}
.mission-card p {
  font-size: 0.93rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* --- CTA --- */
.about-cta {
  text-align: center;
  padding: 20px 0;
}
.about-cta h2 {
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--wine-dark);
  margin-bottom: 14px;
  font-weight: 700;
}
.about-cta p {
  color: var(--text-mid);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto 28px;
  line-height: 1.75;
}
.btn-dark {
  display: inline-block;
  background: var(--wine-dark);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 16px 40px;
  border-radius: 50px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(61,13,23,0.35);
}
.btn-dark:hover {
  background: var(--wine-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(61,13,23,0.45);
  color: var(--white);
}

/* ===== CONTACT PAGE ===== */

.contact-hero {
  background: linear-gradient(160deg, var(--wine-dark) 0%, var(--wine) 55%, #2a0810 100%);
  padding: 90px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(201,168,76,0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(201,168,76,0.10) 0%, transparent 45%);
  pointer-events: none;
}
.contact-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--cream));
}
.contact-hero-content {
  position: relative;
  z-index: 2;
}
.contact-hero .hero-eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 700;
}
.contact-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 18px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.4);
  font-weight: 800;
}
.contact-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.75;
}

/* --- CONTACT SECTION --- */
.contact-section {
  padding: 80px 0 100px;
  background: var(--cream);
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
}

/* Info panel */
.contact-info h2 {
  font-family: var(--font-head);
  font-size: 1.8rem;
  color: var(--wine-dark);
  margin-bottom: 16px;
  font-weight: 700;
}
.contact-info p {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 36px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 2px 12px rgba(60,10,20,0.08);
}
.contact-detail-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-detail-text strong {
  display: block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--wine);
  margin-bottom: 4px;
}
.contact-detail-text span {
  font-size: 0.93rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* Form panel */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 44px 40px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--wine);
}
.contact-form-wrap h2 {
  font-family: var(--font-head);
  font-size: 1.7rem;
  color: var(--wine-dark);
  margin-bottom: 28px;
  font-weight: 700;
}

.form-group {
  margin-bottom: 22px;
}
.form-group label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--wine-dark);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-dark);
  background: #fdfaf7;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--wine);
  box-shadow: 0 0 0 3px rgba(107,26,42,0.12);
  background: #fff;
}
.form-group textarea {
  min-height: 160px;
  resize: vertical;
}

.btn-submit {
  display: inline-block;
  width: 100%;
  background: var(--wine);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 16px 32px;
  border-radius: 50px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(107,26,42,0.3);
  margin-top: 6px;
}
.btn-submit:hover {
  background: var(--wine-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(107,26,42,0.4);
}
.btn-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

/* Feedback messages — hidden by default */
.form-feedback {
  display: none;
  border-radius: 8px;
  padding: 16px 20px;
  font-size: 0.97rem;
  margin-top: 20px;
  line-height: 1.6;
}
.form-feedback.success {
  background: #f0faf2;
  border: 1.5px solid #4caf80;
  color: #1d6e42;
}
.form-feedback.error {
  background: #fff0f2;
  border: 1.5px solid var(--wine-light);
  color: var(--wine-dark);
}

/* Honeypot */
.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

/* ===== REGION PAGES ===== */

.region-hero {
  background: linear-gradient(160deg, var(--wine-dark) 0%, #7b2d3e 55%, #c06060 100%);
  padding: 100px 0 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.region-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(201,168,76,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(201,168,76,0.12) 0%, transparent 45%);
  pointer-events: none;
}
.region-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--cream));
}
.region-hero-content {
  position: relative;
  z-index: 2;
}
.region-hero .hero-eyebrow {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  color: var(--gold-light);
  margin-bottom: 16px;
  font-weight: 700;
}
.region-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 6vw, 4rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.3);
  font-weight: 800;
}
.region-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* --- REGION CONTENT --- */
.region-section {
  padding: 60px 0 100px;
  background: var(--cream);
}

.intro-block {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}
.intro-block h2 {
  font-family: var(--font-head);
  font-size: 2.2rem;
  color: var(--wine-dark);
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}
.intro-block p {
  color: var(--text-mid);
  margin-bottom: 18px;
  font-size: 1.05rem;
  line-height: 1.75;
}

.region-facts {
  background: #f3ebe0;
  border-radius: var(--radius);
  padding: 40px;
  border-left: 5px solid var(--wine);
}
.region-facts h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  color: var(--wine-dark);
  margin-bottom: 20px;
  font-weight: 700;
}
.fact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.fact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-mid);
}
.fact-icon {
  font-size: 1.4rem;
  line-height: 1;
}

/* --- HIGHLIGHTS / CELLAR DOORS --- */
.highlights-title {
  text-align: center;
  font-family: var(--font-head);
  font-size: 2.2rem;
  color: var(--wine-dark);
  margin-bottom: 40px;
  font-weight: 700;
}
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 80px;
}
.highlight-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
  border-top: 4px solid var(--gold);
}
.highlight-card:hover { transform: translateY(-5px); }
.highlight-card h4 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: var(--wine-dark);
  margin-bottom: 12px;
  font-weight: 700;
}
.highlight-card p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* --- REGION CTA --- */
.region-cta {
  background: var(--wine-dark);
  border-radius: var(--radius);
  padding: 60px 40px;
  text-align: center;
  color: var(--white);
}
.region-cta h2 {
  font-family: var(--font-head);
  font-size: 2rem;
  margin-bottom: 16px;
  font-weight: 700;
  color: var(--gold-light);
}
.region-cta p {
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 30px;
  opacity: 0.9;
  line-height: 1.6;
}

/* --- RESPONSIVE --- */
@media (max-width: 960px) {
  .regions-grid { grid-template-columns: repeat(2, 1fr); }
  .tips-grid    { grid-template-columns: repeat(2, 1fr); }
  .intro-grid   { grid-template-columns: 1fr; gap: 40px; }
  .about-grid   { grid-template-columns: 1fr; gap: 40px; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .intro-block  { grid-template-columns: 1fr; gap: 40px; }
  .mission-cards { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .contact-form-wrap { padding: 32px 24px; }
  .about-mission { padding: 40px 24px; }
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .regions-grid { grid-template-columns: 1fr; }
  .tips-grid    { grid-template-columns: 1fr; }
  .intro-stats  { grid-template-columns: 1fr 1fr; }
  .about-stats  { grid-template-columns: 1fr 1fr; }
  .main-nav ul  { gap: 18px; }
  .logo-text    { font-size: 1rem; }
  .hero { min-height: 70vh; }
  .highlights-grid { grid-template-columns: 1fr; }
}
