/*
Theme Name: Top Place Moonbah
Theme URI: https://topplacemoonbah.com.au
Author: Top Place
Author URI: https://topplacemoonbah.com.au
Description: A sophisticated eco-tourism theme for Top Place — a 10-hectare riverside sanctuary in Moonbah Valley, Snowy Mountains. Features fly fishing, skiing, and eco-tourism content.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: top-place
Tags: one-column, custom-menu, featured-images, theme-options, translation-ready
*/

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

:root {
  --sage: #7A8B6F;
  --sage-light: #A3B197;
  --forest: #3B4A3A;
  --forest-deep: #2A352A;
  --stone: #C4B9A8;
  --stone-light: #E8E0D4;
  --cream: #F5F1EB;
  --cream-warm: #FAF7F2;
  --charcoal: #2C2C2C;
  --ink: #1A1A1A;
  --river: #5B7E8A;
  --river-deep: #3D5A63;
  --gold: #B8963E;
  --gold-muted: #C4A85C;
  --white: #FFFFFF;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Libre Franklin', 'Helvetica Neue', sans-serif;
}

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

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--cream-warm);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ─── PRELOADER ─── */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--forest-deep);
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-text {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4rem);
  color: var(--stone-light);
  font-weight: 300;
  letter-spacing: 0.3em;
  animation: fadeInUp 1s ease forwards;
}
.preloader-sub {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--sage-light);
  letter-spacing: 0.5em;
  text-transform: uppercase;
  margin-top: 1rem;
  animation: fadeInUp 1s ease 0.3s forwards;
  opacity: 0;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ─── NAV ─── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.5rem 3rem;
  display: flex; justify-content: space-between; align-items: center;
  transition: background 0.5s ease, padding 0.3s ease;
}
.site-header.scrolled {
  background: rgba(42, 53, 42, 0.95);
  backdrop-filter: blur(12px);
  padding: 1rem 3rem;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.15em;
}
.main-navigation ul {
  display: flex; gap: 2.5rem; list-style: none;
}
.main-navigation a {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}
.main-navigation a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold-muted);
  transition: width 0.3s ease;
}
.main-navigation a:hover { color: var(--white); }
.main-navigation a:hover::after { width: 100%; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 5px;
}
.nav-toggle span {
  width: 24px; height: 1.5px; background: white;
  transition: all 0.3s ease; display: block;
}

/* ─── HERO ─── */
.hero-section {
  position: relative;
  height: 100vh; min-height: 700px;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.1);
  animation: heroZoom 20s ease-out forwards;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(26,26,26,0.15) 0%,
    rgba(26,26,26,0.05) 40%,
    rgba(26,26,26,0.3) 70%,
    rgba(42,53,42,0.85) 100%
  );
}
@keyframes heroZoom { to { transform: scale(1); } }

.hero-content {
  position: relative; z-index: 2;
  padding: 0 clamp(2rem, 5vw, 6rem) clamp(4rem, 8vh, 8rem);
  max-width: 900px;
}
.hero-tag {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: 1.5rem;
  opacity: 0; animation: fadeInUp 0.8s ease 1.5s forwards;
}
.hero-section h1 {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  margin-bottom: 1.5rem;
  opacity: 0; animation: fadeInUp 0.8s ease 1.8s forwards;
}
.hero-section h1 em { font-style: italic; font-weight: 300; color: var(--stone-light); }
.hero-desc {
  font-size: 1rem; font-weight: 300;
  color: rgba(255,255,255,0.8);
  line-height: 1.8; max-width: 520px;
  margin-bottom: 2.5rem;
  opacity: 0; animation: fadeInUp 0.8s ease 2.1s forwards;
}
.hero-cta {
  display: inline-flex; align-items: center; gap: 1rem;
  padding: 1rem 2.5rem;
  border: 1px solid var(--gold-muted);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  transition: all 0.4s ease;
  opacity: 0; animation: fadeInUp 0.8s ease 2.4s forwards;
}
.hero-cta:hover { background: var(--gold-muted); color: var(--forest-deep); }
.hero-cta svg { transition: transform 0.3s; }
.hero-cta:hover svg { transform: translateX(4px); }

.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  opacity: 0; animation: fadeInUp 0.8s ease 2.8s forwards;
}
.hero-scroll span { font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

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

/* ─── INTRO BAND ─── */
.intro-band {
  background: var(--forest-deep);
  padding: clamp(4rem, 8vw, 8rem) clamp(2rem, 5vw, 6rem);
  text-align: center;
}
.intro-eyebrow {
  font-family: var(--font-body);
  font-size: 0.65rem; letter-spacing: 0.45em;
  text-transform: uppercase; color: var(--gold-muted);
  margin-bottom: 2rem;
}
.intro-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 300; color: var(--stone-light);
  line-height: 1.4; max-width: 700px;
  margin: 0 auto 2rem;
}
.intro-band p {
  font-size: 0.9rem; font-weight: 300;
  color: rgba(163,177,151,0.8);
  line-height: 1.9; max-width: 600px;
  margin: 0 auto;
}
.gold-rule {
  width: 60px; height: 1px;
  background: var(--gold-muted);
  margin: 2rem auto; opacity: 0.6;
}

/* ─── PROPERTY SECTION ─── */
.property-section {
  padding: clamp(5rem, 10vw, 10rem) clamp(2rem, 5vw, 6rem);
  background: var(--cream-warm);
}
.property-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 5vw, 6rem);
  max-width: 1200px; margin: 0 auto; align-items: center;
}
.property-image-stack { position: relative; aspect-ratio: 4/5; }
.property-image-stack .img-main {
  width: 85%; height: 100%;
  object-fit: cover; border-radius: 2px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.property-image-stack .img-accent {
  position: absolute; bottom: -2rem; right: 0;
  width: 55%; aspect-ratio: 3/2;
  object-fit: cover; border-radius: 2px;
  border: 4px solid var(--cream-warm);
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
}
.prop-eyebrow {
  font-size: 0.65rem; letter-spacing: 0.45em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.5rem;
}
.property-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300; color: var(--forest-deep);
  line-height: 1.2; margin-bottom: 2rem;
}
.property-text h2 em { font-style: italic; color: var(--sage); }
.property-text p {
  font-size: 0.92rem; font-weight: 300;
  line-height: 1.9; color: var(--charcoal);
  margin-bottom: 1.5rem; max-width: 480px;
}

.features {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem; margin-top: 2.5rem; max-width: 560px;
}
.feature { display: flex; align-items: flex-start; gap: 0.75rem; }
.feature-icon {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: var(--stone-light); border-radius: 50%; flex-shrink: 0;
}
.feature-icon svg { width: 16px; height: 16px; stroke: var(--forest); }
.feature-label { font-size: 0.78rem; font-weight: 400; color: var(--forest); line-height: 1.4; }
.feature-sub { font-size: 0.7rem; color: var(--sage); font-weight: 300; }

/* ─── EXPERIENCE CARDS ─── */
.experiences-section {
  padding: clamp(5rem, 10vw, 10rem) clamp(2rem, 5vw, 6rem);
  background: var(--forest-deep);
}
.section-header { text-align: center; margin-bottom: clamp(3rem, 6vw, 5rem); }
.section-header .eyebrow {
  font-size: 0.65rem; letter-spacing: 0.45em;
  text-transform: uppercase; color: var(--gold-muted); margin-bottom: 1.5rem;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300; line-height: 1.2;
}
.section-header.dark h2 { color: var(--stone-light); }
.section-header.light h2 { color: var(--forest-deep); }

.exp-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem; max-width: 1200px; margin: 0 auto;
}
.exp-card {
  position: relative; overflow: hidden;
  border-radius: 3px; aspect-ratio: 3/4;
}
.exp-card-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.8s ease;
}
.exp-card:hover .exp-card-bg { transform: scale(1.08); }
.exp-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(42,53,42,0.9) 100%);
}
.exp-card-content {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 2rem;
  transform: translateY(10px); transition: transform 0.5s ease;
}
.exp-card:hover .exp-card-content { transform: translateY(0); }
.exp-card-season {
  font-size: 0.6rem; letter-spacing: 0.35em;
  text-transform: uppercase; color: var(--gold-muted); margin-bottom: 0.5rem;
}
.exp-card-content h3 {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 400;
  color: var(--white); margin-bottom: 0.75rem;
}
.exp-card-content p {
  font-size: 0.8rem; font-weight: 300;
  color: rgba(255,255,255,0.75); line-height: 1.7;
  opacity: 0; max-height: 0;
  transition: opacity 0.5s ease 0.1s, max-height 0.5s ease;
}
.exp-card:hover .exp-card-content p { opacity: 1; max-height: 100px; }

/* ─── FLY FISHING ─── */
.fly-fishing-section {
  padding: clamp(5rem, 10vw, 10rem) clamp(2rem, 5vw, 6rem);
  background: var(--cream);
  position: relative; overflow: hidden;
}
.fly-fishing-section::before {
  content: ''; position: absolute;
  bottom: -100px; left: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(91,126,138,0.06) 0%, transparent 70%);
}
.fly-fishing-grid {
  display: grid; grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(3rem, 5vw, 6rem);
  max-width: 1200px; margin: 0 auto; align-items: center;
}
.fly-fishing-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300; color: var(--forest-deep);
  line-height: 1.2; margin-bottom: 2rem;
}
.fly-fishing-text h2 em { font-style: italic; color: var(--sage); }
.fly-fishing-text p {
  font-size: 0.92rem; font-weight: 300;
  line-height: 1.9; color: var(--charcoal); margin-bottom: 1.5rem;
}
.fishing-details {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.5rem; margin-top: 2.5rem;
}
.fishing-detail { display: flex; gap: 0.75rem; align-items: flex-start; }
.fishing-detail-icon {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: var(--stone-light); border-radius: 50%; flex-shrink: 0;
}
.fishing-detail strong { font-size: 0.82rem; color: var(--forest); }
.fishing-detail span { display: block; font-size: 0.78rem; color: var(--sage); font-weight: 300; }
.fishing-image-container {
  width: 100%; aspect-ratio: 3/4;
  border-radius: 3px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}
.fishing-image-container img { width: 100%; height: 100%; object-fit: cover; }
.fishing-image-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, #5B7E8A 0%, #3B5E6A 40%, #2A352A 100%);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; padding: 2rem;
}

/* ─── SKI SECTION ─── */
.ski-section {
  padding: clamp(5rem, 10vw, 10rem) clamp(2rem, 5vw, 6rem);
  background: var(--forest-deep);
  position: relative; overflow: hidden;
}
.ski-section::after {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.08), transparent);
}
.ski-inner { max-width: 1200px; margin: 0 auto; }
.ski-resorts {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06); margin-bottom: 3rem;
}
.ski-resort {
  background: var(--forest-deep);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  transition: background 0.3s;
}
.ski-resort:hover { background: rgba(59,74,58,0.5); }
.ski-resort-name {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400; color: var(--stone-light); margin-bottom: 1rem;
}
.ski-resort-detail {
  font-size: 0.82rem; font-weight: 300;
  color: rgba(163,177,151,0.7); line-height: 1.8; margin-bottom: 1.5rem;
}
.ski-resort-time {
  font-family: var(--font-display);
  font-size: 1.8rem; font-weight: 300;
  color: var(--gold-muted); line-height: 1;
}
.ski-resort-time::after {
  content: ' drive'; font-family: var(--font-body);
  font-size: 0.6rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(196,168,92,0.5); vertical-align: middle;
}
.ski-note { text-align: center; max-width: 700px; margin: 0 auto; }
.ski-note p {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-style: italic; font-weight: 300;
  color: rgba(232,224,212,0.6); line-height: 1.8;
}

/* ─── ECO SECTION ─── */
.eco-section {
  padding: clamp(5rem, 10vw, 10rem) clamp(2rem, 5vw, 6rem);
  background: var(--cream-warm);
  position: relative; overflow: hidden;
}
.eco-section::before {
  content: ''; position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(122,139,111,0.06) 0%, transparent 70%);
}
.eco-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 5vw, 6rem);
  max-width: 1200px; margin: 0 auto; align-items: center;
}
.eco-pillars { display: flex; flex-direction: column; gap: 2.5rem; }
.eco-pillar { display: flex; gap: 1.5rem; align-items: flex-start; }
.eco-number {
  font-family: var(--font-display);
  font-size: 2.5rem; font-weight: 300;
  color: var(--sage-light); line-height: 1;
  flex-shrink: 0; width: 40px;
}
.eco-pillar h3 {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 400;
  color: var(--forest); margin-bottom: 0.5rem;
}
.eco-pillar p {
  font-size: 0.85rem; font-weight: 300;
  color: var(--charcoal); line-height: 1.8;
}
.eco-visual {
  position: relative; display: flex;
  align-items: center; justify-content: center;
}
.eco-circle {
  width: clamp(280px, 30vw, 420px);
  height: clamp(280px, 30vw, 420px);
  border-radius: 50%;
  background: linear-gradient(160deg, var(--sage) 0%, var(--forest) 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.eco-circle-inner { text-align: center; color: var(--white); z-index: 2; padding: 2rem; }
.eco-stat {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 300; line-height: 1; margin-bottom: 0.5rem;
}
.eco-stat-label { font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase; opacity: 0.8; }
.eco-circle::after {
  content: ''; position: absolute; inset: 8px;
  border-radius: 50%; border: 1px solid rgba(255,255,255,0.15);
}
.eco-ring {
  position: absolute;
  width: calc(100% + 60px); height: calc(100% + 60px);
  border-radius: 50%; border: 1px dashed var(--sage-light);
  opacity: 0.3; animation: spinSlow 60s linear infinite;
}
@keyframes spinSlow { to { transform: rotate(360deg); } }

/* ─── GALLERY STRIP ─── */
.gallery-strip { display: flex; overflow: hidden; height: 400px; background: var(--forest-deep); }
.gallery-img {
  flex: 1; min-width: 25%; position: relative;
  transition: flex 0.6s ease; overflow: hidden;
}
.gallery-img img { width: 100%; height: 100%; object-fit: cover; }
.gallery-img:hover { flex: 2; }
.gallery-img::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(42,53,42,0.2); transition: background 0.4s;
}
.gallery-img:hover::after { background: rgba(42,53,42,0); }
.gallery-label {
  position: absolute; bottom: 1.5rem; left: 1.5rem; z-index: 2;
  font-family: var(--font-display); font-size: 1.1rem; color: var(--white);
  opacity: 0; transform: translateY(10px); transition: all 0.4s ease 0.1s;
}
.gallery-img:hover .gallery-label { opacity: 1; transform: translateY(0); }
.gallery-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}

/* ─── AREA GUIDE ─── */
.area-guide-section {
  padding: clamp(5rem, 10vw, 10rem) clamp(2rem, 5vw, 6rem);
  background: var(--stone-light);
}
.area-items {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px; background: rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.08);
}
.area-item {
  background: var(--stone-light);
  padding: clamp(2rem, 3vw, 3rem);
  display: flex; gap: 1.5rem; align-items: flex-start;
  transition: background 0.3s;
}
.area-item:hover { background: var(--cream); }
.area-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--forest-deep); border-radius: 50%; flex-shrink: 0;
}
.area-icon svg { width: 18px; height: 18px; stroke: var(--stone-light); fill: none; }
.area-item h3 {
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 400;
  color: var(--forest-deep); margin-bottom: 0.25rem;
}
.area-distance {
  font-size: 0.65rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--sage); margin-bottom: 0.5rem;
}
.area-item p {
  font-size: 0.82rem; font-weight: 300;
  line-height: 1.7; color: var(--charcoal);
}

/* ─── TESTIMONIAL ─── */
.testimonial-section {
  padding: clamp(5rem, 10vw, 8rem) clamp(2rem, 5vw, 6rem);
  background: var(--forest-deep); text-align: center;
}
.testimonial-section blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 300; font-style: italic;
  color: var(--stone-light); line-height: 1.5;
  max-width: 800px; margin: 0 auto 2rem;
  border: none; padding: 0;
}
.testimonial-section cite {
  font-family: var(--font-body);
  font-size: 0.75rem; font-style: normal;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--sage-light);
}
.quote-mark {
  font-family: var(--font-display);
  font-size: 5rem; color: var(--gold-muted);
  opacity: 0.4; line-height: 1; margin-bottom: -1rem;
}

/* ─── BOOKING CTA ─── */
.booking-section {
  padding: clamp(5rem, 10vw, 10rem) clamp(2rem, 5vw, 6rem);
  background: var(--cream-warm); text-align: center;
}
.booking-inner { max-width: 700px; margin: 0 auto; }
.booking-section .eyebrow {
  font-size: 0.65rem; letter-spacing: 0.45em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem;
}
.booking-section h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300; color: var(--forest-deep);
  line-height: 1.2; margin-bottom: 1.5rem;
}
.booking-section p {
  font-size: 0.9rem; font-weight: 300;
  color: var(--charcoal); line-height: 1.8; margin-bottom: 3rem;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.75rem;
  padding: 1.2rem 3rem;
  background: var(--forest-deep); color: var(--white);
  font-family: var(--font-body); font-size: 0.72rem;
  letter-spacing: 0.25em; text-transform: uppercase;
  border: none; cursor: pointer; transition: all 0.4s ease;
}
.btn-primary:hover {
  background: var(--forest);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(42,53,42,0.3);
}
.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.75rem;
  padding: 1rem 2rem;
  border: 1px solid var(--forest); color: var(--forest);
  font-family: var(--font-body); font-size: 0.7rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  margin-left: 1rem; transition: all 0.3s;
}
.btn-secondary:hover { background: var(--forest); color: var(--white); }

/* ─── FOOTER ─── */
.site-footer {
  background: var(--ink);
  padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 5vw, 6rem) 2rem;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr;
  gap: 3rem; max-width: 1200px; margin: 0 auto 3rem;
}
.footer-brand h3 {
  font-family: var(--font-display);
  font-size: 1.8rem; font-weight: 300;
  color: var(--stone-light); margin-bottom: 1rem;
}
.footer-brand p {
  font-size: 0.82rem; font-weight: 300;
  color: rgba(163,177,151,0.6); line-height: 1.7; max-width: 320px;
}
.footer-col h4 {
  font-size: 0.65rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold-muted); margin-bottom: 1.5rem;
}
.footer-col ul { list-style: none; }
.footer-col a {
  display: block; font-size: 0.82rem; font-weight: 300;
  color: rgba(255,255,255,0.5); margin-bottom: 0.75rem;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 2rem; max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.72rem; color: rgba(255,255,255,0.3);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .main-navigation ul { display: none; }
  .main-navigation ul.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(42,53,42,0.97);
    padding: 2rem 3rem; gap: 1.5rem;
  }
  .nav-toggle { display: flex; }
  .property-grid, .eco-grid, .fly-fishing-grid { grid-template-columns: 1fr; }
  .property-image-stack { max-width: 500px; margin: 0 auto; }
  .eco-visual { order: -1; }
  .exp-grid { grid-template-columns: 1fr; }
  .exp-card { aspect-ratio: 16/9; }
  .area-items { grid-template-columns: 1fr; }
  .gallery-strip { height: 250px; }
  .gallery-img { min-width: 50%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .btn-secondary { margin-left: 0; margin-top: 1rem; display: inline-flex; }
  .fly-fishing-visual { max-width: 400px; margin: 0 auto; }
  .fishing-details { grid-template-columns: 1fr; }
  .ski-resorts { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .site-header { padding: 1rem 1.5rem; }
  .features { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .prop-features-grid { grid-template-columns: 1fr !important; }
  .prop-desc-grid { grid-template-columns: 1fr !important; }
}

/* ═══════════════════════════════════════════
   PROPERTY SUB-PAGES (Lodge & Hut)
   ═══════════════════════════════════════════ */

/* Hero — shorter than front page */
.prop-page-hero {
  position: relative;
  height: 80vh; min-height: 550px;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.prop-page-hero .hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(26,26,26,0.1) 0%,
    rgba(26,26,26,0.05) 30%,
    rgba(26,26,26,0.35) 65%,
    rgba(42,53,42,0.9) 100%
  );
}
.prop-page-hero-content {
  position: relative; z-index: 2;
  padding: 0 clamp(2rem, 5vw, 6rem) clamp(4rem, 8vh, 7rem);
  max-width: 800px;
}
.prop-page-hero-content .hero-tag {
  opacity: 0; animation: fadeInUp 0.8s ease 0.8s forwards;
}
.prop-page-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300; color: var(--white);
  line-height: 1; margin-bottom: 1.5rem;
  opacity: 0; animation: fadeInUp 0.8s ease 1.1s forwards;
}
.prop-page-hero-content h1 em {
  font-style: italic; font-weight: 300; color: var(--stone-light);
}
.prop-page-hero-content .hero-desc {
  opacity: 0; animation: fadeInUp 0.8s ease 1.4s forwards;
}
.prop-page-hero-content .hero-cta {
  opacity: 0; animation: fadeInUp 0.8s ease 1.7s forwards;
}

/* Features Grid */
.prop-page-features {
  padding: clamp(4rem, 8vw, 7rem) clamp(2rem, 5vw, 6rem);
  background: var(--cream);
}
.prop-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 1000px; margin: 0 auto;
  background: rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.06);
}
.prop-feature-card {
  background: var(--cream);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  text-align: center;
  transition: background 0.3s;
}
.prop-feature-card:hover { background: var(--cream-warm); }
.prop-feature-icon {
  width: 48px; height: 48px;
  margin: 0 auto 1rem;
  display: flex; align-items: center; justify-content: center;
  background: var(--stone-light); border-radius: 50%;
}
.prop-feature-icon svg {
  width: 20px; height: 20px; stroke: var(--forest);
}
.prop-feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 400;
  color: var(--forest-deep); margin-bottom: 0.35rem;
}
.prop-feature-card p {
  font-size: 0.78rem; font-weight: 300;
  color: var(--sage); line-height: 1.5;
}

/* Description + Gallery */
.prop-page-description {
  padding: clamp(5rem, 10vw, 9rem) clamp(2rem, 5vw, 6rem);
  background: var(--cream-warm);
}
.prop-desc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 5vw, 6rem);
  max-width: 1200px; margin: 0 auto;
  align-items: start;
}
.prop-desc-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 300; color: var(--forest-deep);
  line-height: 1.2; margin-bottom: 2rem;
}
.prop-desc-text h2 em { font-style: italic; color: var(--sage); }
.prop-desc-text p {
  font-size: 0.92rem; font-weight: 300;
  line-height: 1.9; color: var(--charcoal);
  margin-bottom: 1.5rem;
}
.prop-desc-text .btn-primary { margin-top: 1rem; }

.prop-desc-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.prop-gallery-item {
  border-radius: 3px; overflow: hidden;
  aspect-ratio: 4/3;
}
.prop-gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.prop-gallery-item:hover img { transform: scale(1.05); }
.prop-gallery-item:first-child {
  grid-column: span 2;
  aspect-ratio: 16/9;
}
.prop-gallery-placeholder {
  grid-column: span 2;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--sage) 0%, var(--forest) 100%);
  border-radius: 3px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
}

/* Cross-link banner */
.prop-page-crosslink {
  padding: clamp(5rem, 8vw, 8rem) clamp(2rem, 5vw, 6rem);
  background: var(--forest-deep);
}
.prop-page-crosslink .prop-eyebrow {
  color: var(--gold-muted);
}

/* Responsive for property pages */
@media (max-width: 900px) {
  .prop-features-grid { grid-template-columns: 1fr 1fr; }
  .prop-desc-grid { grid-template-columns: 1fr; }
  .prop-desc-gallery { max-width: 500px; }
}

/* ═══════════════════════════════════════════
   PROPERTY SUB-PAGES (Lodge & Hut)
   Append this to the end of your style.css
   ═══════════════════════════════════════════ */

/* Hero — shorter than front page */
.prop-page-hero {
  position: relative;
  height: 80vh; min-height: 550px;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.prop-page-hero .hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(26,26,26,0.1) 0%,
    rgba(26,26,26,0.05) 30%,
    rgba(26,26,26,0.35) 65%,
    rgba(42,53,42,0.9) 100%
  );
}
.prop-page-hero-content {
  position: relative; z-index: 2;
  padding: 0 clamp(2rem, 5vw, 6rem) clamp(4rem, 8vh, 7rem);
  max-width: 800px;
}
.prop-page-hero-content .hero-tag {
  opacity: 0; animation: fadeInUp 0.8s ease 0.8s forwards;
}
.prop-page-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300; color: var(--white);
  line-height: 1; margin-bottom: 1.5rem;
  opacity: 0; animation: fadeInUp 0.8s ease 1.1s forwards;
}
.prop-page-hero-content h1 em {
  font-style: italic; font-weight: 300; color: var(--stone-light);
}
.prop-page-hero-content .hero-desc {
  opacity: 0; animation: fadeInUp 0.8s ease 1.4s forwards;
}
.prop-page-hero-content .hero-cta {
  opacity: 0; animation: fadeInUp 0.8s ease 1.7s forwards;
}

/* Features Grid */
.prop-page-features {
  padding: clamp(4rem, 8vw, 7rem) clamp(2rem, 5vw, 6rem);
  background: var(--cream);
}
.prop-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 1000px; margin: 0 auto;
  background: rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.06);
}
.prop-feature-card {
  background: var(--cream);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  text-align: center;
  transition: background 0.3s;
}
.prop-feature-card:hover { background: var(--cream-warm); }
.prop-feature-icon {
  width: 48px; height: 48px;
  margin: 0 auto 1rem;
  display: flex; align-items: center; justify-content: center;
  background: var(--stone-light); border-radius: 50%;
}
.prop-feature-icon svg {
  width: 20px; height: 20px; stroke: var(--forest);
}
.prop-feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 400;
  color: var(--forest-deep); margin-bottom: 0.35rem;
}
.prop-feature-card p {
  font-size: 0.78rem; font-weight: 300;
  color: var(--sage); line-height: 1.5;
}

/* Heritage Story Band (Hut only) */
.prop-page-heritage {
  padding: clamp(4rem, 8vw, 6rem) clamp(2rem, 5vw, 6rem);
  background: var(--forest-deep);
}

/* Description + Gallery */
.prop-page-description {
  padding: clamp(5rem, 10vw, 9rem) clamp(2rem, 5vw, 6rem);
  background: var(--cream-warm);
}
.prop-desc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 5vw, 6rem);
  max-width: 1200px; margin: 0 auto;
  align-items: start;
}
.prop-desc-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 300; color: var(--forest-deep);
  line-height: 1.2; margin-bottom: 2rem;
}
.prop-desc-text h2 em { font-style: italic; color: var(--sage); }
.prop-desc-text p {
  font-size: 0.92rem; font-weight: 300;
  line-height: 1.9; color: var(--charcoal);
  margin-bottom: 1.5rem;
}
.prop-desc-text .btn-primary { margin-top: 1rem; }

.prop-desc-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.prop-gallery-item {
  border-radius: 3px; overflow: hidden;
  aspect-ratio: 4/3;
}
.prop-gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.prop-gallery-item:hover img { transform: scale(1.05); }
.prop-gallery-item:first-child {
  grid-column: span 2;
  aspect-ratio: 16/9;
}
.prop-gallery-placeholder {
  grid-column: span 2;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--sage) 0%, var(--forest) 100%);
  border-radius: 3px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
}

/* Fly Fishing Callout Band */
.prop-page-callout {
  padding: clamp(4rem, 6vw, 6rem) clamp(2rem, 5vw, 6rem);
  background: var(--cream);
  border-top: 1px solid rgba(0,0,0,0.04);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.prop-callout-inner {
  max-width: 700px; margin: 0 auto;
  text-align: center;
}
.prop-callout-icon { margin-bottom: 1.5rem; }
.prop-callout-inner h3 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 400; color: var(--forest-deep);
  margin-bottom: 1rem;
}
.prop-callout-inner p {
  font-size: 0.88rem; font-weight: 300;
  color: var(--charcoal); line-height: 1.8;
  margin-bottom: 2rem;
}

/* Cross-link banner */
.prop-page-crosslink {
  padding: clamp(5rem, 8vw, 8rem) clamp(2rem, 5vw, 6rem);
  background: var(--forest-deep);
}
.prop-page-crosslink .prop-eyebrow {
  color: var(--gold-muted);
}

/* Responsive for property pages */
@media (max-width: 900px) {
  .prop-features-grid { grid-template-columns: 1fr 1fr; }
  .prop-desc-grid { grid-template-columns: 1fr; }
  .prop-desc-gallery { max-width: 500px; }
}
@media (max-width: 600px) {
  .prop-features-grid { grid-template-columns: 1fr; }
}
