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

:root {
  --bg: #F5EFE0;
  --bg-alt: #EDE5D0;
  --fg: #1A1A14;
  --fg-muted: #5C5C4A;
  --green: #2D5016;
  --green-light: #E8F0E0;
  --green-mid: #4A7A2A;
  --terracotta: #C4622D;
  --terracotta-light: #F0DDD0;
  --cream: #FAF7F0;
  --white: #FFFFFF;
  --border: rgba(45, 80, 22, 0.15);
  --shadow: 0 4px 24px rgba(26, 26, 20, 0.08);
  --radius: 12px;
  --radius-sm: 6px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.15;
  font-weight: 700;
}

/* ── Nav ── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 239, 224, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--fg);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.3px;
}

.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 500;
  letter-spacing: 0.3px;
}

.nav-directory-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 100px;
  background: var(--green-light);
  transition: all 0.2s;
}
.nav-directory-link:hover {
  background: var(--green);
  color: var(--cream);
}

/* ── Hero ── */
.hero {
  background: var(--green);
  color: var(--cream);
  position: relative;
  overflow: hidden;
  padding-bottom: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 20%, rgba(74, 122, 42, 0.6) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 10% 80%, rgba(196, 98, 45, 0.3) 0%, transparent 60%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 60px,
      rgba(245, 239, 224, 0.04) 60px,
      rgba(245, 239, 224, 0.04) 61px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 60px,
      rgba(245, 239, 224, 0.04) 60px,
      rgba(245, 239, 224, 0.04) 61px
    );
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(245, 239, 224, 0.65);
  margin-bottom: 20px;
}

.hero-headline {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  color: var(--cream);
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero-headline em {
  font-style: italic;
  color: #F0D9B5;
}

.hero-lede {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(245, 239, 224, 0.85);
  max-width: 480px;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero-stat { display: flex; flex-direction: column; }
.hero-stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
}
.hero-stat-label {
  font-size: 12px;
  color: rgba(245, 239, 224, 0.6);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}
.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(245, 239, 224, 0.2);
}

/* Hero Visual */
.hero-visual { position: relative; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 239, 224, 0.12);
  border: 1px solid rgba(245, 239, 224, 0.25);
  border-radius: 100px;
  padding: 8px 16px 8px 10px;
  margin-bottom: 24px;
}

.hero-badge-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.3px;
}

.hero-card-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 8px 32px rgba(26, 26, 20, 0.2);
  transform: translateX(0);
  transition: transform 0.3s ease;
}

.hero-card-1 { transform: translateX(0); }
.hero-card-2 { transform: translateX(12px); }
.hero-card-3 { transform: translateX(24px); }

.card-suburb {
  font-weight: 700;
  font-size: 15px;
  color: var(--fg);
}

.card-check {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  background: var(--green-light);
  padding: 4px 10px;
  border-radius: 100px;
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
}

.hero-wave svg { display: block; width: 100%; height: 80px; }

/* ── Directory Section ── */
.directory-section {
  background: var(--bg);
  padding: 80px 24px;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 12px;
}

.section-heading {
  font-size: clamp(28px, 4vw, 48px);
  color: var(--fg);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-body {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 560px;
  margin-bottom: 48px;
  line-height: 1.65;
}

.venue-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.venue-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.venue-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.venue-card-header {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 12px;
}

.venue-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
}

.venue-suburb {
  font-size: 12px;
  font-weight: 600;
  color: var(--terracotta);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.venue-desc {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.venue-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.venue-tag {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.3px;
}

.venue-tag--outdoor { background: #FFF4E0; color: #8B5E1A; }
.venue-tag--indoor { background: var(--green-light); color: var(--green); }
.venue-tag--water { background: #E8F4F8; color: #1A6B8B; }
.venue-tag--menu { background: var(--terracotta-light); color: var(--terracotta); }

.venue-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  text-decoration: none;
  transition: gap 0.2s ease;
}

.venue-link:hover { gap: 10px; }

/* ── How Section ── */
.how-section {
  background: var(--bg-alt);
  padding: 80px 24px;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 48px;
}

.how-step { position: relative; }

.how-step-num {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 800;
  color: rgba(45, 80, 22, 0.12);
  line-height: 1;
  margin-bottom: 16px;
}

.how-step-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
}

.how-step-body {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ── Suburbs Section ── */
.suburbs-section {
  background: var(--bg);
  padding: 80px 24px;
}

.suburb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 40px;
}

.suburb-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--green-light);
}

.suburb-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.suburb-list li {
  font-size: 16px;
  font-weight: 500;
  color: var(--fg);
  padding-left: 16px;
  position: relative;
}

.suburb-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--terracotta);
  opacity: 0.7;
}

/* ── Vibes Section ── */
.vibes-section {
  background: var(--green);
  color: var(--cream);
  padding: 80px 24px;
  text-align: center;
}

.vibes-quote {
  max-width: 680px;
  margin: 0 auto 48px;
}

.vibes-quote p {
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 3vw, 28px);
  font-style: italic;
  line-height: 1.55;
  color: var(--cream);
  margin-bottom: 20px;
}

.vibes-quote cite {
  font-size: 14px;
  font-style: normal;
  color: rgba(245, 239, 224, 0.6);
}

.vibes-pill-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.vibes-pill {
  background: rgba(245, 239, 224, 0.1);
  border: 1px solid rgba(245, 239, 224, 0.2);
  color: var(--cream);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 100px;
  letter-spacing: 0.3px;
}

/* ── Footer ── */
.site-footer {
  background: #1A1A14;
  color: rgba(245, 239, 224, 0.5);
  padding: 48px 24px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand {
  margin-bottom: 24px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(245, 239, 224, 0.45);
}

.footer-note {
  font-size: 13px;
  color: rgba(245, 239, 224, 0.35);
  max-width: 480px;
  margin-bottom: 32px;
  line-height: 1.6;
}

.footer-copy {
  font-size: 12px;
  color: rgba(245, 239, 224, 0.25);
  border-top: 1px solid rgba(245, 239, 224, 0.1);
  padding-top: 24px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}
.footer-nav a {
  font-size: 13px;
  font-weight: 600;
  color: rgba(245, 239, 224, 0.5);
  text-decoration: none;
}
.footer-nav a:hover { color: var(--cream); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .venue-cards { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr; }
  .suburb-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 600px) {
  .hero-headline { font-size: 36px; }
  .hero-lede { font-size: 16px; }
  .hero-stats { gap: 16px; }
  .hero-stat-number { font-size: 24px; }
  .section-heading { font-size: 28px; }
  .venue-card { padding: 20px; }
}
