/* rockbridgeohio.com — Warm Rust & Gold */
:root {
  --rust: #8B4513;
  --rust-dark: #6B3410;
  --gold: #D4A843;
  --gold-light: #E4C06A;
  --charcoal: #2D2D2D;
  --cream: #FFF8F0;
  --warm-tan: #F5EDE0;
  --slate: #5A5A5A;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Karla', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--rust); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold); }

/* ─── HEADER ─── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255, 248, 240, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(139, 69, 19, 0.08);
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.06); }
.header-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: space-between; height: 64px;
}
.logo { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--charcoal); }
.logo-accent { color: var(--gold); }
.desktop-nav { display: flex; align-items: center; gap: 1.5rem; }
.desktop-nav a { font-size: 0.88rem; font-weight: 500; color: var(--slate); }
.desktop-nav a:hover, .desktop-nav a.active { color: var(--rust); }
.nav-book {
  background: var(--gold) !important; color: var(--charcoal) !important;
  padding: 0.5rem 1.25rem !important; border-radius: 6px; font-weight: 600 !important; font-size: 0.85rem !important;
}
.nav-book:hover { background: var(--gold-light) !important; }

.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--charcoal); margin: 5px 0; transition: 0.3s; }
.mobile-nav {
  display: none; flex-direction: column; padding: 1rem 1.5rem 1.5rem;
  background: var(--cream); border-bottom: 1px solid var(--warm-tan);
}
.mobile-nav a { padding: 0.75rem 0; color: var(--charcoal); font-weight: 500; border-bottom: 1px solid var(--warm-tan); }
.mobile-nav .nav-book { text-align: center; margin-top: 0.75rem; border-bottom: none; border-radius: 6px; }

@media (max-width: 768px) {
  .desktop-nav { display: none; }
  .hamburger { display: block; }
  .mobile-nav.open { display: flex; }
}

/* ─── HERO ─── */
.hero, .page-hero {
  position: relative; min-height: 85vh; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(150deg, var(--rust-dark) 0%, var(--rust) 50%, #A0582A 100%);
  overflow: hidden; padding: 6rem 1.5rem 4rem;
}
.page-hero { min-height: 50vh; }
.page-hero-sm { min-height: 28vh; }
.hero-overlay {
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 20.5V18H0v-2h20v-2H0V12h20v-2H0V8h20V6H0V4h20V2H0V0h22v20h2V0h2v20h2V0h2v20h2V0h2v20h2V0h2v20.5' fill='%23ffffff' fill-opacity='0.02' fill-rule='evenodd'/%3E%3C/svg%3E");
}
.hero-content { position: relative; z-index: 2; text-align: center; max-width: 680px; }
.hero-tag {
  font-family: var(--font-body); font-size: 0.8rem; font-weight: 600;
  color: var(--gold-light); letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 1rem;
}
.hero h1 {
  font-family: var(--font-display); font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--cream); font-weight: 700; line-height: 1.08; margin-bottom: 1.25rem;
}
.hero-sub { color: rgba(255,248,240,0.85); font-size: 1.1rem; line-height: 1.6; margin: 0 auto 2rem; max-width: 540px; }
.page-hero .hero-sub { margin-bottom: 0; }
.hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-block; padding: 0.85rem 2rem; border-radius: 8px;
  font-family: var(--font-body); font-weight: 600; font-size: 0.95rem;
  transition: all 0.25s; cursor: pointer;
}
.btn-gold { background: var(--gold); color: var(--charcoal); }
.btn-gold:hover { background: var(--gold-light); color: var(--charcoal); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--cream); border: 2px solid rgba(255,248,240,0.4); }
.btn-outline:hover { border-color: var(--cream); color: var(--cream); transform: translateY(-2px); }
.btn-dark { background: var(--charcoal); color: var(--cream); }
.btn-dark:hover { background: #3D3D3D; transform: translateY(-2px); }

/* ─── SECTIONS ─── */
.section { padding: 5rem 1.5rem; }
.section-dark { background: var(--charcoal); color: var(--cream); }
.section-dark a { color: var(--gold-light); }
.section-dark h2, .section-dark h3 { color: var(--cream); }
.section-warm { background: var(--warm-tan); }
.container { max-width: 1100px; margin: 0 auto; }
.container.narrow { max-width: 760px; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-tag { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; }
.section-header h2 { font-family: var(--font-display); font-size: clamp(1.75rem, 3vw, 2.5rem); margin-bottom: 1rem; }
.section-desc { color: var(--slate); max-width: 580px; margin: 0 auto; font-size: 1.05rem; }

/* ─── VALUE GRID ─── */
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.value-card {
  background: var(--warm-tan); border-radius: 12px; padding: 2rem 1.5rem; text-align: center;
  border: 1px solid rgba(139,69,19,0.06); transition: transform 0.3s;
}
.value-card:hover { transform: translateY(-4px); }
.value-num { font-family: var(--font-display); font-size: 2.25rem; font-weight: 700; color: var(--rust); display: block; margin-bottom: 0.5rem; }
.value-card h3 { font-family: var(--font-display); font-size: 1.15rem; margin-bottom: 0.5rem; }
.value-card p { font-size: 0.9rem; color: var(--slate); }
@media (max-width: 768px) { .value-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .value-grid { grid-template-columns: 1fr; } }

/* ─── BOOKING HERO ─── */
.booking-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.booking-text h2 { font-family: var(--font-display); font-size: 2.25rem; margin-bottom: 1rem; }
.booking-text p { color: var(--slate); margin-bottom: 1rem; font-size: 1.05rem; }
.price-tiers { display: flex; gap: 1rem; margin: 1.5rem 0; flex-wrap: wrap; }
.tier { background: var(--cream); border-radius: 8px; padding: 0.75rem 1.25rem; text-align: center; flex: 1; min-width: 120px; }
.tier-price { display: block; font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--rust); }
.tier-label { font-size: 0.75rem; color: var(--slate); text-transform: uppercase; letter-spacing: 0.05em; }
.booking-map { border-radius: 12px; overflow: hidden; }
@media (max-width: 768px) { .booking-hero { grid-template-columns: 1fr; } }

/* ─── ITINERARY CARDS ─── */
.itinerary-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 2rem; }
.itin-card {
  background: var(--warm-tan); border-radius: 12px; padding: 2rem;
  border-top: 4px solid var(--gold); transition: transform 0.3s;
}
.itin-card:hover { transform: translateY(-4px); }
.itin-day { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: var(--gold); margin-bottom: 0.5rem; }
.itin-card h3 { font-family: var(--font-display); font-size: 1.25rem; margin-bottom: 0.75rem; }
.itin-card p { font-size: 0.92rem; color: var(--slate); }
.cta-center { text-align: center; }
@media (max-width: 768px) { .itinerary-cards { grid-template-columns: 1fr; } }

/* ─── SEASON SPLIT ─── */
.season-split { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.season-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px; padding: 2.5rem; text-align: center;
}
.season-emoji { font-size: 2.5rem; margin-bottom: 1rem; }
.season-card h3 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 0.75rem; }
.season-card p { color: rgba(255,248,240,0.75); margin-bottom: 1rem; }
.season-link { color: var(--gold-light); font-weight: 600; font-size: 0.9rem; }
@media (max-width: 768px) { .season-split { grid-template-columns: 1fr; } }

/* ─── NETWORK GRID ─── */
.network-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.net-card {
  display: block; background: var(--warm-tan); border-radius: 12px; padding: 2rem;
  border: 1px solid rgba(139,69,19,0.06); transition: all 0.3s; color: var(--charcoal);
}
.net-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,0.06); color: var(--charcoal); }
.net-card h3 { font-family: var(--font-display); font-size: 1.15rem; color: var(--rust); margin-bottom: 0.5rem; }
.net-card p { font-size: 0.9rem; color: var(--slate); }
@media (max-width: 768px) { .network-grid { grid-template-columns: 1fr; } }

/* ─── PROSE ─── */
.prose h2 { font-family: var(--font-display); font-size: 1.75rem; margin: 2.5rem 0 1rem; color: var(--rust-dark); }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-family: var(--font-display); font-size: 1.3rem; margin: 2rem 0 0.75rem; color: var(--rust); }
.prose p { margin-bottom: 1.1rem; color: var(--slate); font-size: 1.05rem; }
.prose ul { margin: 0 0 1.25rem 1.5rem; color: var(--slate); }
.prose li { margin-bottom: 0.5rem; font-size: 1.05rem; }
.prose strong { color: var(--charcoal); }

/* ─── ITINERARY BLOCKS (prose) ─── */
.itin-block { background: var(--warm-tan); border-radius: 12px; padding: 1.75rem; margin: 1.5rem 0; border-left: 4px solid var(--gold); }
.itin-block h3 { margin-top: 0 !important; }
.itin-block p:last-child { margin-bottom: 0; }

/* ─── CTA BOX ─── */
.cta-box { text-align: center; padding: 3rem; }
.cta-box h3 { font-family: var(--font-display); font-size: 1.75rem; color: var(--cream); margin-bottom: 0.75rem; }
.cta-box p { color: rgba(255,248,240,0.7); font-size: 1.05rem; margin-bottom: 1.5rem; }
.cta-box-inline { background: var(--rust); color: var(--cream); border-radius: 12px; padding: 2.5rem; text-align: center; margin: 2rem 0; }
.cta-box-inline h3 { font-family: var(--font-display); font-size: 1.5rem; color: var(--cream); margin: 0 0 0.5rem; }
.cta-box-inline p { color: rgba(255,248,240,0.8); margin-bottom: 1rem; }
.cta-inline { margin-top: 2rem; padding: 1.5rem; background: var(--rust); color: var(--cream); border-radius: 12px; text-align: center; }
.cta-inline a { color: var(--gold-light); }

/* ─── STAY MAP ─── */
.stay-map-full { border-radius: 12px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.08); }

/* ─── PRICE GRID ─── */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: 1.5rem 0 2rem; }
.price-block { background: var(--cream); border-radius: 10px; padding: 1.5rem; border: 1px solid rgba(139,69,19,0.06); }
.price-block h3 { font-family: var(--font-display); font-size: 1.2rem; color: var(--rust); margin-bottom: 0.5rem; }
.price-block p { font-size: 0.9rem; color: var(--slate); margin: 0; }
@media (max-width: 768px) { .price-grid { grid-template-columns: 1fr; } }

/* ─── ACTIVITY LIST ─── */
.activity-list { margin: 1rem 0 1.5rem; }
.activity { padding: 1rem; border-bottom: 1px solid var(--warm-tan); font-size: 0.95rem; color: var(--slate); }
.activity:last-child { border-bottom: none; }
.activity strong { color: var(--charcoal); }

/* ─── PET GRID ─── */
.pet-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 1rem 0 2rem; }
.pet-card { border-radius: 10px; padding: 1.25rem; }
.pet-card h3 { font-family: var(--font-display); font-size: 1.1rem; margin-bottom: 0.25rem; }
.pet-card p { font-size: 0.9rem; margin: 0; }
.pet-yes { background: #E8F5E8; border: 1px solid #C3E6C3; }
.pet-yes h3 { color: #2D5016; }
.pet-yes p { color: #3D6B22; }
.pet-no { background: #FDE8E8; border: 1px solid #F5C6C6; }
.pet-no h3 { color: #8B1A1A; }
.pet-no p { color: #A04040; }
@media (max-width: 768px) { .pet-grid { grid-template-columns: 1fr; } }

/* ─── FOOTER ─── */
.site-footer { background: var(--charcoal); color: rgba(255,248,240,0.6); padding: 4rem 1.5rem 2rem; }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1.5fr 1fr; gap: 2rem; margin-bottom: 3rem; }
.footer-col h4 { font-family: var(--font-display); color: var(--cream); font-size: 1rem; margin-bottom: 1rem; }
.footer-col p { font-size: 0.9rem; }
.footer-col a { display: block; color: rgba(255,248,240,0.5); font-size: 0.9rem; margin-bottom: 0.5rem; }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.5rem; text-align: center; font-size: 0.85rem; }
.footer-bottom a { color: var(--gold-light); }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

/* ─── REVEAL ─── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
