/* Valley Venue — shared stylesheet for subpages */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ivory:    #F9F6F0;
  --warm:     #EDE5D8;
  --sage:     #8A9E85;
  --charcoal: #2C2C2C;
  --mid:      #6B6259;
  --gold:     #B89C6E;
  --white:    #FFFFFF;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  background: var(--ivory);
  color: var(--charcoal);
  font-size: 17px;
  line-height: 1.7;
}

.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 48px;
  background: rgba(249,246,240,0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(184,156,110,0.18);
}
.nav-logo img { height: 56px; width: auto; }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  text-decoration: none;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 2px;
  letter-spacing: 0.1em;
  font-size: 12px !important;
}
.nav-cta:hover { background: var(--charcoal) !important; }

.subpage-hero {
  padding: 170px 0 80px;
  background: var(--charcoal);
  text-align: center;
}
.subpage-hero .hero-eyebrow {
  font-size: 11px; font-weight: 400;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px;
}
.subpage-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.05;
  color: var(--ivory);
  margin-bottom: 20px;
}
.subpage-hero h1 em { font-style: italic; color: #E8D9BB; }
.subpage-hero p.sub {
  color: rgba(249,246,240,0.72);
  font-size: 16px;
  letter-spacing: 0.04em;
  max-width: 560px;
  margin: 0 auto 36px;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.btn-primary {
  display: inline-block;
  padding: 14px 36px;
  background: var(--gold);
  color: var(--white);
  text-decoration: none;
  font-weight: 400; font-size: 12px;
  letter-spacing: 0.15em; text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.2s;
}
.btn-primary:hover { background: #a3885d; }
.btn-outline {
  display: inline-block;
  padding: 14px 36px;
  border: 1px solid rgba(255,255,255,0.55);
  color: var(--white);
  text-decoration: none;
  font-weight: 400; font-size: 12px;
  letter-spacing: 0.15em; text-transform: uppercase;
  border-radius: 2px;
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

section { padding: 90px 0; }
.container { max-width: 1000px; margin: 0 auto; padding: 0 40px; }

.section-label {
  font-size: 11px; font-weight: 400;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold);
  display: block; margin-bottom: 14px;
}
h2.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(32px, 4.5vw, 48px);
  line-height: 1.08;
  color: var(--charcoal);
  margin-bottom: 20px;
}
h2.section-heading em { font-style: italic; color: var(--sage); }
.rule { width: 48px; height: 1px; background: var(--gold); margin: 24px 0; }
p.body { color: var(--mid); line-height: 1.8; font-size: 16px; margin-bottom: 18px; }

.feature-list {
  list-style: none;
  margin: 24px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 32px;
}
.feature-list li {
  color: var(--mid); font-size: 15px;
  padding-left: 22px; position: relative;
}
.feature-list li::before {
  content: '·';
  color: var(--gold);
  font-size: 28px; line-height: 1;
  position: absolute; left: 0; top: 0;
}

.pricing-band { background: var(--warm); }
.price-row {
  display: flex; flex-wrap: wrap; gap: 16px;
  margin-top: 32px;
}
.price-chip {
  background: var(--white);
  border: 1px solid rgba(184,156,110,0.3);
  border-radius: 2px;
  padding: 18px 24px;
  text-align: center;
  flex: 1 1 150px;
}
.price-chip .day {
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--mid); margin-bottom: 4px;
}
.price-chip .price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px; color: var(--gold);
}
.price-note { font-size: 13px; color: var(--mid); margin-top: 18px; }

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 36px;
}
.gallery-strip img {
  width: 100%; height: 220px; object-fit: cover; border-radius: 2px;
}

.cta-band {
  background: var(--charcoal);
  text-align: center;
}
.cta-band h2.section-heading { color: var(--ivory); }
.cta-band h2.section-heading em { color: var(--gold); }
.cta-band p.body { color: rgba(249,246,240,0.65); max-width: 520px; margin: 0 auto 32px; }

footer {
  background: var(--charcoal);
  padding: 48px 0 32px;
  text-align: center;
  border-top: 1px solid rgba(184,156,110,0.15);
}
.footer-links {
  display: flex; gap: 24px; justify-content: center; flex-wrap: wrap;
  list-style: none;
  margin-bottom: 24px;
}
.footer-links a {
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(249,246,240,0.45);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-copy { font-size: 12px; color: rgba(249,246,240,0.3); letter-spacing: 0.06em; }
.footer-copy a { color: rgba(249,246,240,0.4); text-decoration: none; }

@media (max-width: 900px) {
  .site-nav { padding: 16px 24px; }
  .nav-links { display: none; }
  section { padding: 60px 0; }
  .container { padding: 0 24px; }
  .feature-list { grid-template-columns: 1fr; }
  .gallery-strip { grid-template-columns: 1fr; }
  .gallery-strip img { height: 240px; }
}
