/* ===========================
   ROOSTER RUN VENUE - STYLES
   Multi-page creekside theme
   =========================== */

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

:root {
  --green-dark: #1a3a2a;
  --green-mid: #2d5a3f;
  --green-light: #3d7a55;
  --green-accent: #4a8c62;
  --green-pale: #e8f0eb;
  --cream: #f5f0e8;
  --cream-light: #faf7f2;
  --cream-dark: #e8e0d0;
  --text-dark: #1a1a1a;
  --text-mid: #4a4a4a;
  --text-light: #7a7a7a;
  --white: #ffffff;
  --gold: #c8a45a;
  --gold-light: #d4b76e;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-dark);
  background: var(--cream-light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

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

/* --- HEADER --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 58, 42, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  background: rgba(26, 58, 42, 0.98);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.5px;
}

.main-nav {
  display: flex;
  gap: 32px;
}

.main-nav a {
  color: rgba(245, 240, 232, 0.8);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color var(--transition);
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--cream);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.header-phones {
  display: flex;
  gap: 12px;
  align-items: center;
}

.header-contact-label {
  color: var(--cream);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.mobile-contact-info {
  display: none;
}

.header-phone-link {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.3px;
  transition: color var(--transition);
  white-space: nowrap;
}

.header-phone-link:hover {
  color: var(--gold-light);
}

.header-cta {
  background: var(--gold);
  color: var(--green-dark);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  transition: background var(--transition), transform var(--transition);
}

.header-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: var(--transition);
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===========================
   HERO - HOME PAGE
   =========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg-layers {
  position: absolute;
  inset: 0;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  background:
    url('images/hero-forest.jpg')
    center center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(13, 31, 21, 0.7) 0%,
    rgba(26, 58, 42, 0.55) 40%,
    rgba(13, 31, 21, 0.8) 100%
  );
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 24px 80px;
  max-width: 900px;
}

.hero-location {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 700;
}

.hero-title-big {
  font-size: clamp(3.5rem, 10vw, 7rem);
  color: var(--white);
  margin-bottom: 16px;
  font-weight: 900;
  letter-spacing: 6px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.4);
  line-height: 1;
}

.hero-tagline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: rgba(255,255,255,0.9);
  margin-bottom: 24px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.4;
}

.hero-sub {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  font-weight: 400;
  line-height: 1.7;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-phone {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
}

.hero-phone a {
  color: var(--gold);
  font-weight: 700;
  font-size: 1.15rem;
  transition: color var(--transition);
}

.hero-phone a:hover {
  color: var(--gold-light);
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 3;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(255,255,255,0.4);
  border-bottom: 2px solid rgba(255,255,255,0.4);
  transform: rotate(45deg);
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translate(0, 0); opacity: 0.4; }
  50% { transform: rotate(45deg) translate(4px, 4px); opacity: 1; }
}

/* ===========================
   PAGE HEROES (sub-pages)
   =========================== */
.page-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 24px 80px;
  max-width: 800px;
}

.page-hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.page-hero-content p {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255,255,255,0.88);
  font-weight: 400;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

.page-hero-content .section-label {
  margin-bottom: 16px;
}

/* Fishing hero */
.page-hero-fishing {
  background:
    linear-gradient(135deg, rgba(13,31,21,0.85), rgba(26,58,42,0.75)),
    url('images/fishing-hero.jpg')
    center center / cover no-repeat;
}

.page-hero-fishing .page-hero-overlay {
  background:
    radial-gradient(ellipse at 30% 80%, rgba(45,90,63,0.3) 0%, transparent 60%),
    linear-gradient(180deg, rgba(13,31,21,0.3) 0%, rgba(13,31,21,0.6) 100%);
}

/* Weddings hero */
.page-hero-weddings {
  background:
    linear-gradient(135deg, rgba(26,36,30,0.85), rgba(45,60,50,0.75)),
    url('images/weddings-hero.jpg')
    center center / cover no-repeat;
}

.page-hero-weddings .page-hero-overlay {
  background:
    radial-gradient(ellipse at 70% 30%, rgba(200,164,90,0.1) 0%, transparent 50%),
    linear-gradient(180deg, rgba(13,31,21,0.2) 0%, rgba(13,31,21,0.5) 100%);
}

/* Events hero */
.page-hero-events {
  background:
    linear-gradient(135deg, rgba(26,40,32,0.85), rgba(40,70,50,0.75)),
    url('images/events-hero.jpg')
    center center / cover no-repeat;
}

.page-hero-events .page-hero-overlay {
  background:
    radial-gradient(ellipse at 50% 60%, rgba(200,164,90,0.08) 0%, transparent 50%),
    linear-gradient(180deg, rgba(13,31,21,0.2) 0%, rgba(13,31,21,0.5) 100%);
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--gold);
  color: var(--green-dark);
  border-color: var(--gold);
}

.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(200, 164, 90, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.btn-secondary-dark {
  background: transparent;
  color: var(--cream);
  border-color: rgba(245, 240, 232, 0.35);
}

.btn-secondary-dark:hover {
  border-color: var(--cream);
  background: rgba(245, 240, 232, 0.1);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--green-mid);
  border-color: var(--green-mid);
}

.btn-outline:hover {
  background: var(--green-mid);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
  text-align: center;
}

/* ===========================
   SECTIONS (shared)
   =========================== */
.section {
  padding: 100px 0;
}

.section h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--green-dark);
  margin-bottom: 16px;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 12px;
  background: rgba(200, 164, 90, 0.12);
  padding: 6px 16px;
  border-radius: 4px;
}

.section-label.center {
  display: block;
  text-align: center;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 12px;
}

.section-tagline {
  color: var(--text-mid);
  font-size: 1.1rem;
  margin-bottom: 40px;
  max-width: 640px;
  line-height: 1.6;
}

.center-tagline {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section h2 + .section-tagline {
  margin-bottom: 48px;
}

/* ===========================
   INTRO SECTION
   =========================== */
.intro-section {
  padding: 80px 0;
  background: var(--white);
  border-bottom: 1px solid var(--cream-dark);
}

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

.intro-card {
  text-align: center;
  padding: 32px 24px;
}

.intro-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  color: var(--green-mid);
}

.intro-icon svg {
  width: 100%;
  height: 100%;
}

.intro-card h3 {
  font-size: 1.25rem;
  color: var(--green-dark);
  margin-bottom: 12px;
}

.intro-card p {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===========================
   OFFERINGS CARDS (home page)
   =========================== */
.offerings-section {
  padding: 100px 0;
  background: var(--cream);
}

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

.offering-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
  text-decoration: none;
}

.offering-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.offering-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.6s ease;
}

.offering-card:hover .offering-bg {
  transform: scale(1.05);
}

.offering-fishing .offering-bg {
  background:
    linear-gradient(180deg, rgba(13,31,21,0.2) 0%, rgba(13,31,21,0.85) 70%),
    url('images/fishing-hero.jpg')
    center center / cover no-repeat;
}

.offering-weddings .offering-bg {
  background:
    linear-gradient(180deg, rgba(13,31,21,0.15) 0%, rgba(26,36,30,0.88) 70%),
    url('images/weddings-hero.jpg')
    center center / cover no-repeat;
}

.offering-events .offering-bg {
  background:
    linear-gradient(180deg, rgba(13,31,21,0.15) 0%, rgba(26,40,32,0.88) 70%),
    url('images/events-hero.jpg')
    center center / cover no-repeat;
}

.offering-content {
  position: relative;
  z-index: 2;
  padding: 36px 28px;
}

.offering-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 12px;
}

.offering-card h2 {
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}

.offering-card p {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.offering-link {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color var(--transition);
}

.offering-card:hover .offering-link {
  color: var(--gold-light);
}

/* ===========================
   SPLIT LAYOUT
   =========================== */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.split-layout.reverse .split-text {
  order: 2;
}

.split-layout.reverse .split-image {
  order: 1;
}

.split-text p {
  color: var(--text-mid);
  font-size: 1.08rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

.feature-list {
  list-style: none;
  margin: 24px 0 32px;
}

.feature-list li {
  padding: 10px 0 10px 32px;
  position: relative;
  color: var(--text-mid);
  font-size: 1rem;
}

.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 20px;
  height: 20px;
  background: var(--green-accent);
  border-radius: 50%;
  opacity: 0.15;
}

.feature-list li::after {
  content: '\2713';
  position: absolute;
  left: 4px;
  top: 10px;
  color: var(--green-accent);
  font-weight: 700;
  font-size: 0.85rem;
}

/* ===========================
   SCENIC PANELS (image placeholders with icons)
   =========================== */
.scenic-panel {
  border-radius: var(--radius);
  width: 100%;
  height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: relative;
  overflow: hidden;
}

.cabin-panel {
  background:
    linear-gradient(135deg, rgba(26,58,42,0.9), rgba(45,90,63,0.75)),
    repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(255,255,255,0.02) 20px, rgba(255,255,255,0.02) 40px);
  border: 2px solid rgba(255,255,255,0.08);
}

.fishing-creek-panel {
  background:
    linear-gradient(135deg, rgba(20,50,60,0.9), rgba(30,80,70,0.75)),
    repeating-linear-gradient(-45deg, transparent, transparent 15px, rgba(255,255,255,0.02) 15px, rgba(255,255,255,0.02) 30px);
  border: 2px solid rgba(255,255,255,0.08);
}

.trout-panel {
  background:
    linear-gradient(135deg, rgba(26,58,42,0.88), rgba(60,100,70,0.72));
  border: 2px solid rgba(255,255,255,0.08);
}

.wedding-panel {
  background:
    linear-gradient(135deg, rgba(40,30,25,0.9), rgba(80,60,45,0.7));
  border: 2px solid rgba(200,164,90,0.15);
}

.events-panel {
  background:
    linear-gradient(135deg, rgba(26,58,42,0.88), rgba(45,90,63,0.72));
  border: 2px solid rgba(255,255,255,0.08);
}

.scenic-icon {
  width: 80px;
  height: 80px;
  color: rgba(245,240,232,0.4);
}

.scenic-icon svg {
  width: 100%;
  height: 100%;
}

.scenic-caption {
  color: rgba(245,240,232,0.4);
  font-size: 0.85rem;
  font-style: italic;
}

/* ===========================
   CABIN SECTION
   =========================== */
.cabin-section {
  background: var(--cream);
}

.cabin-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0 36px;
}

.cabin-feature {
  background: var(--white);
  padding: 20px;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--gold);
}

.cabin-feature strong {
  display: block;
  color: var(--green-dark);
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.cabin-feature span {
  color: var(--text-light);
  font-size: 0.85rem;
}

/* ===========================
   PRICING TABLE
   =========================== */
.pricing-table {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  margin: 32px 0;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--cream-dark);
}

.pricing-table h3 {
  color: var(--green-dark);
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.pricing-subtitle {
  color: var(--text-light);
  font-size: 0.85rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}

.pricing-rows {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--cream-dark);
}

.pricing-row:last-child {
  border-bottom: none;
}

.pricing-label {
  color: var(--text-dark);
  font-size: 1rem;
  font-weight: 400;
}

.pricing-label small {
  color: var(--text-light);
  font-size: 0.85rem;
}

.pricing-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--green-dark);
}

.pricing-row.featured-price {
  background: rgba(200, 164, 90, 0.08);
  margin: 0 -32px;
  padding: 14px 32px;
  border-bottom: none;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.pricing-row.featured-price .pricing-price {
  color: var(--gold);
  font-size: 1.5rem;
}

.pricing-note {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--cream-dark);
  color: var(--text-mid);
  font-size: 0.9rem;
  font-weight: 700;
}

/* ===========================
   AMENITIES
   =========================== */
.amenities-section {
  background: var(--cream-light);
  text-align: center;
}

.amenities-section .section-tagline {
  margin-left: auto;
  margin-right: auto;
}

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

.amenity-card {
  background: var(--white);
  padding: 40px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  border-top: 3px solid transparent;
}

.amenity-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-top-color: var(--green-accent);
}

.amenity-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  color: var(--green-mid);
}

.amenity-icon svg {
  width: 100%;
  height: 100%;
}

.amenity-card h3 {
  font-size: 1.15rem;
  color: var(--green-dark);
  margin-bottom: 12px;
}

.amenity-card p {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* ===========================
   AREA HIGHLIGHTS
   =========================== */
.area-section {
  background: var(--green-dark);
  color: var(--cream);
  text-align: center;
}

.area-section h2 {
  color: var(--cream);
}

.area-section .section-tagline {
  color: rgba(245,240,232,0.7);
}

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

.area-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: left;
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}

.area-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 164, 90, 0.4);
  background: rgba(255,255,255,0.1);
}

.area-card h3 {
  color: var(--gold);
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.area-card p {
  color: rgba(245, 240, 232, 0.7);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* ===========================
   BOOKING STEPS
   =========================== */
.steps-section {
  background: var(--cream);
  text-align: center;
}

.steps-section .section-tagline {
  margin-left: auto;
  margin-right: auto;
}

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

.step-card {
  padding: 40px 24px;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--green-mid);
  color: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 24px;
  box-shadow: 0 4px 12px rgba(45, 90, 63, 0.3);
}

.step-card h3 {
  color: var(--green-dark);
  margin-bottom: 12px;
  font-size: 1.15rem;
}

.step-card p {
  color: var(--text-mid);
  font-size: 0.95rem;
}

/* ===========================
   LOCATION
   =========================== */
.location-section {
  background: var(--cream-light);
  text-align: center;
}

.location-section .section-tagline {
  margin-left: auto;
  margin-right: auto;
}

.directions-row {
  margin-bottom: 28px;
}

.map-container {
  margin-top: 16px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* ===========================
   CONTACT
   =========================== */
.contact-section {
  background: var(--green-dark);
  color: var(--cream);
}

.contact-section h2 {
  color: var(--cream);
  text-align: center;
  margin-bottom: 12px;
}

.contact-intro {
  text-align: center;
  color: rgba(245, 240, 232, 0.7);
  margin-bottom: 48px;
  font-size: 1.1rem;
}

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

.contact-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  transition: transform var(--transition), border-color var(--transition);
}

.contact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 164, 90, 0.4);
}

.contact-card h3 {
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.contact-card p {
  color: rgba(245, 240, 232, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-top: 12px;
}

.contact-address {
  color: rgba(245, 240, 232, 0.85);
  line-height: 1.7;
  margin-bottom: 16px;
}

.contact-phone {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 8px;
  font-family: 'Playfair Display', serif;
  transition: color var(--transition);
}

.contact-phone:hover {
  color: var(--gold);
}

.contact-email {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 4px;
  transition: color var(--transition);
  word-break: break-word;
}

.contact-email:hover {
  color: var(--gold);
}

.contact-section .btn-outline {
  color: var(--cream);
  border-color: rgba(245, 240, 232, 0.3);
  margin-top: 16px;
}

.contact-section .btn-outline:hover {
  background: rgba(245, 240, 232, 0.1);
  border-color: var(--cream);
  color: var(--cream);
}


/* ===========================
   CTA SECTION (bottom of sub-pages)
   =========================== */
.cta-section {
  background: var(--green-dark);
  text-align: center;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  color: var(--cream);
  margin-bottom: 16px;
}

.cta-content p {
  color: rgba(245,240,232,0.75);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===========================
   FISHING SCHEDULE
   =========================== */
.fishing-schedule-section {
  background: var(--green-dark);
  color: var(--cream);
  text-align: center;
}

.fishing-schedule-section h2 {
  color: var(--cream);
}

.fishing-schedule-section .section-tagline {
  color: rgba(245,240,232,0.7);
}

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

.schedule-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: left;
  transition: transform var(--transition), border-color var(--transition);
}

.schedule-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200,164,90,0.4);
}

.schedule-season {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 4px;
}

.schedule-months {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(245,240,232,0.5);
  margin-bottom: 16px;
}

.schedule-card p {
  color: rgba(245,240,232,0.7);
  font-size: 0.9rem;
  line-height: 1.6;
}

.schedule-note {
  color: rgba(245,240,232,0.5);
  font-size: 0.85rem;
  line-height: 1.5;
  max-width: 600px;
  margin: 0 auto;
}

.schedule-note a {
  color: var(--gold);
  text-decoration: underline;
}

.schedule-note a:hover {
  color: var(--gold-light);
}

.fishing-disclaimer {
  margin-top: 28px;
  padding: 20px 24px;
  background: rgba(200, 164, 90, 0.12);
  border: 1px solid rgba(200, 164, 90, 0.25);
  border-radius: var(--radius-sm);
  color: rgba(245,240,232,0.85);
  font-size: 0.85rem;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.fishing-disclaimer strong {
  color: var(--gold);
}

.fishing-disclaimer a {
  color: var(--gold);
  text-decoration: underline;
}

.fishing-disclaimer a:hover {
  color: var(--gold-light);
}

/* ===========================
   FISHING RULES
   =========================== */
.rules-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.rule-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--green-accent);
}

.rule-card h3 {
  color: var(--green-dark);
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.rule-card p {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.6;
}

.rule-card a {
  color: var(--green-mid);
  text-decoration: underline;
}

/* ===========================
   LAKE STATS
   =========================== */
.lake-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 28px;
}

.lake-stat {
  background: var(--white);
  padding: 32px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.lake-stat strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--green-mid);
  margin-bottom: 6px;
}

.lake-stat span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
}

.lake-species {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

/* ===========================
   WEDDING VALUE
   =========================== */
.wedding-value-section {
  background: var(--cream-light);
  text-align: center;
}

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

.value-card {
  background: var(--white);
  padding: 40px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.value-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  color: var(--gold);
}

.value-icon svg {
  width: 100%;
  height: 100%;
}

.value-card h3 {
  color: var(--green-dark);
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.value-card p {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===========================
   WEDDING FEATURES
   =========================== */
.wedding-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.wedding-feature {
  background: var(--white);
  padding: 32px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--gold);
}

.wedding-feature h3 {
  color: var(--green-dark);
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.wedding-feature p {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===========================
   WEDDING TIMELINE
   =========================== */
.wedding-timeline-section {
  background: var(--cream-light);
}

.wedding-timeline-section h2 {
  text-align: center;
  margin-bottom: 48px;
}

.timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  padding-left: 60px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--green-accent);
  opacity: 0.25;
}

.timeline-item {
  position: relative;
  margin-bottom: 48px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -42px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--cream-light);
  box-shadow: 0 0 0 2px var(--gold);
}

.timeline-time {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 8px;
}

.timeline-desc h3 {
  color: var(--green-dark);
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.timeline-desc p {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===========================
   FAQ
   =========================== */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.faq-item {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.faq-item h3 {
  color: var(--green-dark);
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.faq-item p {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===========================
   EVENTS SHOWCASE
   =========================== */
.events-types-section {
  background: var(--white);
}

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

.event-showcase-card {
  background: var(--cream-light);
  padding: 40px 28px;
  border-radius: var(--radius);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
  border-bottom: 3px solid transparent;
}

.event-showcase-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--gold);
}

.event-showcase-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  color: var(--green-mid);
}

.event-showcase-icon svg {
  width: 100%;
  height: 100%;
}

.event-showcase-card h3 {
  color: var(--green-dark);
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.event-showcase-card p {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===========================
   EVENT AMENITIES
   =========================== */
.event-amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.event-amenity {
  background: var(--white);
  padding: 32px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--green-accent);
}

.event-amenity h3 {
  color: var(--green-dark);
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.event-amenity p {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===========================
   WHY OUTSIDE
   =========================== */
.why-outside-section {
  background: var(--cream-light);
}

/* ===========================
   FOOTER
   =========================== */
.site-footer {
  background: #0d1f15;
  padding: 48px 0 32px;
  border-top: 1px solid rgba(245, 240, 232, 0.08);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--cream);
}

.footer-brand p {
  color: rgba(245, 240, 232, 0.5);
  font-size: 0.9rem;
  margin-top: 4px;
}

.footer-brand a {
  color: var(--gold);
  transition: color var(--transition);
}

.footer-brand a:hover {
  color: var(--gold-light);
}

.footer-links {
  display: flex;
  gap: 24px;
  margin: 8px 0;
}

.footer-links a {
  color: rgba(245, 240, 232, 0.6);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-legal {
  color: rgba(245, 240, 232, 0.4);
  font-size: 0.82rem;
  max-width: 600px;
  line-height: 1.5;
  margin-top: 12px;
}

.footer-copy {
  color: rgba(245, 240, 232, 0.3);
  font-size: 0.78rem;
  margin-top: 4px;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .area-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .offerings-grid {
    grid-template-columns: 1fr;
  }

  .offering-card {
    min-height: 360px;
  }

  .schedule-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .wedding-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .events-showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .event-amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-row.featured-price {
    margin: 0 -24px;
    padding: 14px 24px;
  }

  .value-grid {
    grid-template-columns: 1fr;
  }

  .lake-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--green-dark);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-top: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  }

  .main-nav.open {
    display: flex;
  }

  .mobile-toggle {
    display: flex;
  }

  .header-cta {
    display: none;
  }

  .header-phones {
    display: none;
  }

  .mobile-contact-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 16px;
    margin-top: 8px;
  }

  .mobile-contact-info span {
    color: var(--cream);
    font-weight: 700;
    font-size: 0.9rem;
  }

  .mobile-contact-info a {
    color: var(--gold);
    font-size: 0.95rem;
    font-weight: 600;
  }

  .hero-content {
    padding: 100px 20px 60px;
  }

  .hero-title-big {
    font-size: clamp(2.5rem, 12vw, 4.5rem);
    letter-spacing: 3px;
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .split-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .split-layout.reverse .split-text {
    order: 1;
  }

  .split-layout.reverse .split-image {
    order: 2;
  }

  .cabin-features {
    grid-template-columns: 1fr;
  }

  .area-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .contact-cards {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .section {
    padding: 64px 0;
  }

  .offerings-grid {
    grid-template-columns: 1fr;
  }

  .schedule-grid {
    grid-template-columns: 1fr;
  }

  .rules-grid {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .wedding-features-grid {
    grid-template-columns: 1fr;
  }

  .events-showcase-grid {
    grid-template-columns: 1fr;
  }

  .event-amenities-grid {
    grid-template-columns: 1fr;
  }

  .photo-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-card.featured {
    grid-column: span 2;
    grid-row: span 1;
    aspect-ratio: 2/1;
  }

  .photo-slot {
    height: 280px;
  }

  .page-hero {
    min-height: 50vh;
  }

  .page-hero-content {
    padding: 100px 20px 60px;
  }

  .scenic-panel {
    height: 280px;
  }
}

@media (max-width: 480px) {
  .hero-title-big {
    font-size: 2.5rem;
    letter-spacing: 2px;
  }

  .hero-tagline {
    font-size: 1rem;
  }

  .hero-sub {
    font-size: 0.9rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 280px;
  }

  .amenities-grid {
    grid-template-columns: 1fr;
  }

  .lake-features {
    grid-template-columns: 1fr;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ===========================
   VIDEO SECTIONS (ready for when videos are added)
   =========================== */
.video-section {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  margin: 32px 0;
}

.video-section video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}

.video-inline {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

/* ===========================
   PHOTO GALLERY & PLACEHOLDERS
   =========================== */

/* Photo placeholder - replaces scenic panels when real photos are ready */
.photo-slot {
  border-radius: var(--radius);
  width: 100%;
  height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(26,58,42,0.06), rgba(45,90,63,0.12));
  border: 2px dashed rgba(45,90,63,0.2);
}

.photo-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  display: none;
}

.photo-slot.has-photo {
  border: none;
  background: none;
}

.photo-slot.has-photo img {
  display: block;
}

.photo-slot.has-photo .photo-slot-placeholder {
  display: none;
}

.photo-slot-placeholder {
  text-align: center;
  color: var(--text-light);
}

.photo-slot-placeholder svg {
  width: 48px;
  height: 48px;
  color: rgba(45,90,63,0.25);
  margin-bottom: 8px;
}

.photo-slot-placeholder span {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(45,90,63,0.35);
  font-weight: 700;
}

/* Photo Gallery Grid */
.photo-gallery-section {
  text-align: center;
}

.photo-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-card {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(26,58,42,0.06), rgba(45,90,63,0.10));
  border: 2px dashed rgba(45,90,63,0.15);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}

.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

.gallery-card.has-photo {
  border: none;
  background: none;
}

.gallery-card.has-photo img {
  display: block;
}

.gallery-card.has-photo .gallery-placeholder {
  display: none;
}

.gallery-placeholder {
  text-align: center;
  color: var(--text-light);
}

.gallery-placeholder svg {
  width: 36px;
  height: 36px;
  color: rgba(45,90,63,0.2);
  margin-bottom: 4px;
}

.gallery-placeholder span {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(45,90,63,0.3);
  font-weight: 700;
}

/* Gallery caption overlay for photos with captions */
.gallery-card .gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px;
  background: linear-gradient(transparent, rgba(0,0,0,0.65));
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  text-align: left;
  opacity: 0;
  transition: opacity var(--transition);
  display: none;
}

.gallery-card.has-photo .gallery-caption {
  display: block;
}

.gallery-card.has-photo:hover .gallery-caption {
  opacity: 1;
}

/* Featured photo (spans 2 columns) */
.gallery-card.featured {
  grid-column: span 2;
  grid-row: span 2;
}

/* Gallery intro text */
.gallery-intro {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===========================
   SCROLL ANIMATIONS
   =========================== */
.animate-ready {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-in {
  opacity: 1;
  transform: translateY(0);
}
