/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   DESIGN TOKENS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
:root {
  --pine:    #0e1e16;
  --forest:  #1a3326;
  --canopy:  #24513a;
  --fern:    #3b7a55;
  --sage:    #6daa87;
  --mist:    #e0ede6;
  --linen:   #faf5ee;
  --cream:   #f3eee5;
  --fire:    #c45c10;
  --ember:   #de6e18;
  --spark:   #f59012;
  --stone:   #1e1e1c;
  --rock:    #4a4845;
  --dust:    #8a8780;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --r:  6px;
  --r2: 12px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESET & BASE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  background: var(--linen);
  color: var(--stone);
  overflow-x: hidden;
}
img { display: block; }
/* Images that should fill their container */
.img-stack-main img,
.img-stack-accent img,
.rate-img img,
.gw img,
.spotlight-img img,
.page-hero-fill img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
a { color: inherit; text-decoration: none; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SCROLL REVEAL
━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: none; }
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.32s; }
.d5 { transition-delay: 0.40s; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   NAVIGATION
━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 3rem;
  transition: background 0.4s var(--ease-out), padding 0.4s var(--ease-out), box-shadow 0.4s;
}
.nav.scrolled {
  background: var(--forest);
  padding: 0.85rem 3rem;
  box-shadow: 0 2px 28px rgba(0,0,0,0.32);
}
/* Interior pages: nav always solid */
.nav.always-solid {
  background: var(--forest);
  padding: 0.85rem 3rem;
  box-shadow: 0 2px 28px rgba(0,0,0,0.32);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  text-shadow: 0 1px 10px rgba(0,0,0,0.8);
}
.nav-logo em { font-style: italic; color: var(--spark); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.95);
  padding: 0.45rem 0.75rem;
  border-radius: var(--r);
  text-shadow: 0 1px 8px rgba(0,0,0,0.8);
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: #fff; background: rgba(255,255,255,0.12); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--fire);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0.7rem 1.4rem;
  border-radius: var(--r);
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--ember); transform: translateY(-1px); }

/* ── Hamburger ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  width: 42px;
  height: 42px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile overlay ── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 850;
  background: var(--pine);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease-out);
  overflow: hidden;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 300;
  color: rgba(255,255,255,0.9);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--spark); }
.mobile-menu .mm-call {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 700;
  background: var(--fire);
  color: #fff;
  padding: 1rem 2.5rem;
  border-radius: var(--r);
  margin-top: 0.5rem;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HERO (home page only)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  max-height: 1040px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 8vh;
  background-color: var(--pine);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://campsmore.com/sites/default/files/styles/gallery_image/public/2023-06/aerial%205.JPG') center 40% / cover no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    165deg,
    rgba(8,20,13,0.52) 0%,
    rgba(8,20,13,0.65) 45%,
    rgba(8,20,13,0.92) 100%
  );
}
.hero-top-scrim {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 180px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}
.hero-content {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 3rem;
  z-index: 2;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--spark);
  margin-bottom: 1.25rem;
  text-shadow: 0 1px 8px rgba(0,0,0,0.9), 0 2px 20px rgba(0,0,0,0.7);
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 36px; height: 2px;
  background: var(--spark);
  flex-shrink: 0;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 8.5vw, 7.5rem);
  font-weight: 700;
  line-height: 1.0;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  max-width: 860px;
  text-shadow:
    0 2px 8px  rgba(0,0,0,0.95),
    0 4px 32px rgba(0,0,0,0.8),
    0 8px 80px rgba(0,0,0,0.55);
}
.hero h1 em {
  font-style: italic;
  color: #aad4b8;
}
.hero-sub {
  font-size: 1.1rem;
  font-weight: 400;
  color: rgba(255,255,255,0.92);
  line-height: 1.85;
  max-width: 460px;
  margin-bottom: 2.5rem;
  text-shadow: 0 1px 10px rgba(0,0,0,0.85), 0 2px 24px rgba(0,0,0,0.6);
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Scroll cue */
.hero-scroll {
  position: absolute;
  bottom: 3rem;
  right: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
}
.scroll-track {
  width: 1px; height: 52px;
  background: rgba(255,255,255,0.15);
  position: relative;
  overflow: hidden;
}
.scroll-thumb {
  position: absolute;
  top: -50%; left: 0;
  width: 1px; height: 50%;
  background: rgba(255,255,255,0.65);
  animation: scrollDrop 2s ease-in-out infinite;
}
@keyframes scrollDrop { to { top: 100%; } }
.scroll-label {
  font-size: 0.68rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PAGE HERO (interior pages)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.page-hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  padding: 0 3rem 4rem;
  background-color: var(--pine);
  margin-top: 0; /* nav is always-solid on interior pages */
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(8,20,13,0.92) 0%,
    rgba(8,20,13,0.55) 55%,
    rgba(8,20,13,0.30) 100%
  );
}
.page-hero-content {
  position: relative;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  z-index: 2;
  padding-top: 5rem; /* clear the solid nav */
}
.page-hero-content .tag { color: var(--spark); }
.page-hero-content .tag::before { background: var(--spark); }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  text-shadow: 0 2px 16px rgba(0,0,0,0.8);
}
.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  max-width: 520px;
  line-height: 1.78;
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SHARED BUTTONS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.btn-fire {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--fire);
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.3px;
  padding: 1.1rem 2rem;
  border-radius: var(--r);
  min-height: 54px;
  transition: background 0.2s, transform 0.15s;
}
.btn-fire:hover { background: var(--ember); transform: translateY(-1px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: #fff;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 1.1rem 2rem;
  border: 2px solid rgba(255,255,255,0.38);
  border-radius: var(--r);
  min-height: 54px;
  transition: border-color 0.2s, background 0.2s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.85); background: rgba(255,255,255,0.08); }

.btn-forest {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--forest);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.95rem 1.9rem;
  border-radius: var(--r);
  min-height: 50px;
  transition: background 0.2s, transform 0.15s;
}
.btn-forest:hover { background: var(--canopy); transform: translateY(-1px); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SHARED SECTION TYPOGRAPHY
━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--fern);
  margin-bottom: 0.85rem;
}
.tag::before { content: ''; display: block; width: 20px; height: 2px; background: var(--fern); }
.tag.light { color: var(--sage); }
.tag.light::before { background: var(--sage); }
.tag.amber { color: var(--spark); }
.tag.amber::before { background: var(--spark); }

.h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--pine);
  margin-bottom: 1rem;
}
.h2 em { font-style: italic; color: var(--canopy); }
.h2.light { color: #fff; }
.h2.light em { color: var(--sage); }

.body-text {
  font-size: 1.02rem;
  font-weight: 300;
  color: var(--rock);
  line-height: 1.88;
}
.body-text.light { color: rgba(255,255,255,0.72); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TRUST BAR
━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.trust-bar {
  background: var(--forest);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.trust-item {
  flex: 1;
  min-width: 160px;
  max-width: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding: 2.2rem 1.25rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.trust-item:last-child { border-right: none; }
.trust-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--spark);
  line-height: 1;
}
.trust-label {
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PHONE RIBBON
━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.ribbon {
  background: var(--cream);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding: 1.4rem 2rem;
}
.ribbon p { font-size: 0.9rem; color: var(--rock); }
.ribbon-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--pine);
  letter-spacing: -0.01em;
  transition: color 0.2s;
}
.ribbon-phone:hover { color: var(--fire); }
.ribbon-phone-icon {
  width: 38px; height: 38px;
  background: var(--fire);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ABOUT SECTION
━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.about {
  background: var(--linen);
  padding: 7rem 3rem;
}
.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.img-stack {
  position: relative;
  height: 520px;
}
.img-stack-main {
  position: absolute;
  top: 0; left: 0;
  width: 78%; height: 86%;
  border-radius: var(--r2);
  overflow: hidden;
}
.img-stack-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 50%; height: 50%;
  border-radius: var(--r2);
  overflow: hidden;
  border: 6px solid var(--linen);
  box-shadow: 0 12px 40px rgba(0,0,0,0.14);
}
.img-stack-badge {
  position: absolute;
  right: 50%;
  bottom: 48%;
  transform: translate(50%, 50%);
  background: var(--fire);
  color: #fff;
  padding: 1.2rem 1.1rem;
  border-radius: var(--r);
  text-align: center;
  box-shadow: 0 8px 28px rgba(196,92,16,0.45);
  z-index: 2;
}
.badge-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1;
  display: block;
}
.badge-lbl {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.85;
  display: block;
  margin-top: 0.3rem;
}
.about-text { display: flex; flex-direction: column; }
.about-text .body-text { margin-bottom: 0.85rem; }
.about-text .btn-forest { margin-top: 1.5rem; align-self: flex-start; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   AMENITIES SECTION
━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.amenities {
  background: var(--pine);
  padding: 7rem 3rem;
}
.amenities-inner { max-width: 1200px; margin: 0 auto; }
.amenities-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3.5rem;
  gap: 2rem;
}
.amenities-header-left { flex: 1; }
.amenities-header-right {
  font-size: 0.93rem;
  color: rgba(255,255,255,0.45);
  max-width: 280px;
  text-align: right;
  line-height: 1.75;
}
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--r2);
  overflow: hidden;
}
.amenity-card {
  background: rgba(255,255,255,0.03);
  padding: 2.2rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: background 0.22s;
}
.amenity-card:hover { background: rgba(255,255,255,0.07); }
.amenity-icon {
  width: 50px; height: 50px;
  background: rgba(109,170,135,0.14);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.45rem;
  margin-bottom: 0.25rem;
  flex-shrink: 0;
}
.amenity-card h3 {
  font-size: 0.97rem;
  font-weight: 700;
  color: rgba(255,255,255,0.92);
}
.amenity-card p {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.72;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RATES / SITES
━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.rates {
  background: var(--cream);
  padding: 7rem 3rem;
}
.rates-inner { max-width: 1200px; margin: 0 auto; }
.rates-header { margin-bottom: 3.5rem; }
.rates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.rate-card {
  background: #fff;
  border-radius: var(--r2);
  overflow: hidden;
  box-shadow: 0 2px 18px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.28s var(--ease-out), box-shadow 0.28s;
}
.rate-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 56px rgba(14,30,22,0.13);
}
.rate-img {
  height: 220px;
  overflow: hidden;
  flex-shrink: 0;
}
.rate-img img { transition: transform 0.55s var(--ease-out); }
.rate-card:hover .rate-img img { transform: scale(1.05); }
.rate-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.rate-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--fern);
  background: rgba(59,122,85,0.1);
  padding: 0.28rem 0.7rem;
  border-radius: 3px;
  margin-bottom: 0.8rem;
}
.rate-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--pine);
  letter-spacing: -0.01em;
  margin-bottom: 0.6rem;
}
.rate-card > .rate-body > p {
  font-size: 0.93rem;
  font-weight: 300;
  color: var(--rock);
  line-height: 1.78;
  flex: 1;
}
.rate-foot {
  border-top: 1px solid rgba(0,0,0,0.07);
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.rate-note { font-size: 0.82rem; color: var(--dust); }
.rate-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 50px;
  background: var(--forest);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--r);
  transition: background 0.2s;
}
.rate-btn:hover { background: var(--canopy); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   GALLERY MOSAIC
━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.gallery { background: var(--linen); padding: 7rem 0 0; }
.gallery-head {
  max-width: 1200px;
  margin: 0 auto 3rem;
  padding: 0 3rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}
.gallery-head-right {
  font-size: 0.9rem;
  color: var(--rock);
}
.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 290px 290px 230px;
  gap: 5px;
}
.gw { overflow: hidden; }
.gw img { transition: transform 0.5s var(--ease-out), opacity 0.3s; }
.gw:hover img { transform: scale(1.05); opacity: 0.9; }
.g1 { grid-column: span 5; grid-row: span 2; }
.g2 { grid-column: span 4; }
.g3 { grid-column: span 3; }
.g4 { grid-column: span 3; }
.g5 { grid-column: span 4; }
.g6 { grid-column: span 4; position: relative; }
.g7 { grid-column: span 4; }
.g8 { grid-column: span 4; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   GALLERY PAGE (full)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.gallery-page {
  background: var(--linen);
  padding: 5rem 3rem 7rem;
}
.gallery-page-inner { max-width: 1280px; margin: 0 auto; }
.gallery-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.gallery-full-grid .gw { height: 280px; }
.gallery-full-grid .gw.tall { height: 420px; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TESTIMONIALS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.testimonials {
  background: var(--forest);
  padding: 7rem 3rem;
}
.testimonials-inner { max-width: 1200px; margin: 0 auto; }
.testimonials-head { text-align: center; margin-bottom: 4rem; }
.testimonials-head .tag { justify-content: center; }
.testimonials-head .tag::before { display: none; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.t-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r2);
  padding: 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: background 0.22s;
}
.t-card:hover { background: rgba(255,255,255,0.09); }
.t-stars { color: var(--spark); font-size: 0.95rem; letter-spacing: 2px; }
.t-quote {
  font-size: 1.02rem;
  font-weight: 300;
  color: rgba(255,255,255,0.83);
  line-height: 1.88;
  font-style: italic;
  flex: 1;
}
.t-author {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sage);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   BOOKING CTA
━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.booking {
  background: var(--linen);
  padding: 9rem 3rem;
  text-align: center;
}
.booking-inner { max-width: 680px; margin: 0 auto; }
.booking .h2 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
.booking .tag { justify-content: center; }
.booking .tag::before { display: none; }
.booking .body-text { margin: 0 auto 2.5rem; text-align: center; }
.divider {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  color: var(--sage);
  margin: 1.5rem auto;
  font-size: 1.1rem;
  opacity: 0.5;
}
.divider::before, .divider::after {
  content: '';
  flex: 1;
  max-width: 72px;
  height: 1px;
  background: var(--mist);
}
.phone-big {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--pine);
  letter-spacing: -0.02em;
  padding: 1.4rem 2.8rem;
  border: 3px solid var(--forest);
  border-radius: var(--r2);
  transition: background 0.22s, color 0.22s;
}
.phone-big:hover { background: var(--forest); color: #fff; }
.booking-note {
  margin-top: 1.75rem;
  font-size: 0.88rem;
  color: var(--dust);
  line-height: 1.75;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   INFO STRIP
━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.info-strip {
  background: var(--pine);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.info-cell {
  padding: 2.5rem 2rem;
  border-right: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.info-cell:last-child { border-right: none; }
.info-lbl {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--spark);
}
.info-val {
  font-size: 0.93rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
}
.info-val a { color: rgba(255,255,255,0.72); transition: color 0.2s; }
.info-val a:hover { color: var(--spark); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FOOTER
━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
footer {
  background: var(--pine);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.75rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}
.foot-logo {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
}
.foot-logo em { font-style: italic; color: var(--spark); }
footer p { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
footer nav { display: flex; gap: 1.5rem; flex-wrap: wrap; }
footer nav a { font-size: 0.8rem; color: rgba(255,255,255,0.45); transition: color 0.2s; }
footer nav a:hover { color: rgba(255,255,255,0.85); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   MOBILE STICKY BAR
━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.mobile-sticky {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 800;
  background: var(--pine);
  border-top: 3px solid var(--fire);
  padding: 0.75rem 1rem;
}
.mobile-sticky-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  min-height: 54px;
  background: var(--fire);
  color: #fff;
  font-weight: 700;
  font-size: 1.08rem;
  border-radius: var(--r);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   EVENTS PAGE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.events-section {
  background: var(--linen);
  padding: 6rem 3rem;
}
.events-inner { max-width: 960px; margin: 0 auto; }
.events-intro {
  max-width: 600px;
  margin-bottom: 4rem;
}
.events-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.event-card {
  background: #fff;
  border-radius: var(--r2);
  overflow: hidden;
  box-shadow: 0 2px 18px rgba(0,0,0,0.06);
  display: grid;
  grid-template-columns: 140px 1fr;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s;
}
.event-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(14,30,22,0.11);
}
.event-date {
  background: var(--forest);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-shrink: 0;
}
.event-month {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.3rem;
}
.event-day {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.event-day-range {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--spark);
  line-height: 1.2;
}
.event-body {
  padding: 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.event-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--fern);
  margin-bottom: 0.5rem;
}
.event-title {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 400;
  color: var(--pine);
  letter-spacing: -0.01em;
  margin-bottom: 0.6rem;
}
.event-desc {
  font-size: 0.93rem;
  font-weight: 300;
  color: var(--rock);
  line-height: 1.78;
}
.event-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}
.event-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: rgba(59,122,85,0.1);
  color: var(--fern);
  padding: 0.25rem 0.65rem;
  border-radius: 3px;
}
.events-note {
  margin-top: 4rem;
  background: var(--forest);
  border-radius: var(--r2);
  padding: 3rem;
  text-align: center;
  color: rgba(255,255,255,0.75);
}
.events-note .h2 { color: #fff; margin-bottom: 0.75rem; }
.events-note p { font-size: 1rem; line-height: 1.8; max-width: 480px; margin: 0 auto 1.5rem; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RULES PAGE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.rules-section {
  background: var(--linen);
  padding: 6rem 3rem 8rem;
}
.rules-inner { max-width: 1100px; margin: 0 auto; }
.rules-intro {
  max-width: 620px;
  margin-bottom: 4rem;
}
.rules-category {
  margin-bottom: 3.5rem;
}
.rules-category-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--fern);
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--mist);
  margin-bottom: 1.5rem;
}
.rules-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.rules-grid.single { grid-template-columns: 1fr; }
.rule-card {
  background: #fff;
  border-radius: var(--r2);
  padding: 1.75rem 2rem;
  border-left: 4px solid var(--fern);
  box-shadow: 0 2px 14px rgba(0,0,0,0.055);
  display: flex;
  gap: 1.25rem;
  transition: box-shadow 0.22s, transform 0.22s;
}
.rule-card:hover {
  box-shadow: 0 8px 32px rgba(14,30,22,0.1);
  transform: translateY(-2px);
}
.rule-card.fire { border-left-color: var(--fire); }
.rule-card.amber { border-left-color: var(--spark); }
.rule-icon {
  font-size: 1.9rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 0.1rem;
}
.rule-content { flex: 1; }
.rule-headline {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--pine);
  margin-bottom: 0.4rem;
  line-height: 1.25;
}
.rule-text {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--rock);
  line-height: 1.78;
}
.rule-text strong {
  font-weight: 700;
  color: var(--stone);
}
/* Sasquatch "wanted" banner on rules page */
.rules-sq-banner {
  background: var(--pine);
  border-radius: var(--r2);
  padding: 3rem;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-bottom: 4rem;
  position: relative;
  overflow: hidden;
}
.rules-sq-banner-text { flex: 1; z-index: 1; }
.rules-sq-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.6rem;
  line-height: 1.1;
}
.rules-sq-banner h2 em { font-style: italic; color: var(--spark); }
.rules-sq-banner p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  max-width: 460px;
}
.rules-sq-img {
  height: 140px;
  width: auto;
  flex-shrink: 0;
  opacity: 0.75;
  object-fit: contain;
  z-index: 1;
}
.rules-sq-bg {
  position: absolute;
  right: -2rem;
  bottom: -1rem;
  height: 120%;
  width: auto;
  opacity: 0.04;
  pointer-events: none;
  object-fit: contain;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   AMENITIES PAGE (expanded)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.amenities-page {
  background: var(--linen);
  padding: 6rem 3rem;
}
.amenities-page-inner { max-width: 1200px; margin: 0 auto; }
.amenities-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 5rem;
}
.amenity-detail-card {
  background: #fff;
  border-radius: var(--r2);
  padding: 2.25rem;
  box-shadow: 0 2px 14px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s;
}
.amenity-detail-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 44px rgba(14,30,22,0.1);
}
.amenity-detail-icon {
  width: 56px; height: 56px;
  background: rgba(59,122,85,0.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 0.25rem;
}
.amenity-detail-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--pine);
  letter-spacing: -0.01em;
}
.amenity-detail-card p {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--rock);
  line-height: 1.8;
  flex: 1;
}
.amenity-detail-note {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--fern);
  padding-top: 0.75rem;
  border-top: 1px solid var(--mist);
}

/* Spotlight rows (like Sunrise Summit) */
.spotlight {
  background: var(--linen);
  padding: 0 3rem 7rem;
}
.spotlight:nth-child(even) { background: var(--cream); }
.spotlight-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.spotlight:nth-child(even) .spotlight-inner { direction: rtl; }
.spotlight:nth-child(even) .spotlight-body { direction: ltr; }
.spotlight-img {
  height: 480px;
  border-radius: var(--r2);
  overflow: hidden;
}
.spotlight-body { display: flex; flex-direction: column; }
.spotlight-body h3 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 400;
  color: var(--pine);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  line-height: 1.1;
}
.spotlight-body p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--rock);
  line-height: 1.85;
  margin-bottom: 1.5rem;
}
.spotlight-details {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.75rem;
}
.spot-detail {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--fern);
  background: rgba(59,122,85,0.1);
  padding: 0.35rem 0.8rem;
  border-radius: 20px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ABOUT PAGE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.about-page {
  background: var(--linen);
  padding: 6rem 3rem;
}
.about-page-inner { max-width: 1200px; margin: 0 auto; }
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
  margin-bottom: 6rem;
}
.about-story-text { }
.about-story-text .body-text { margin-bottom: 1rem; }
.about-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.sidebar-card {
  background: #fff;
  border-radius: var(--r2);
  padding: 1.75rem 2rem;
  box-shadow: 0 2px 14px rgba(0,0,0,0.06);
}
.sidebar-card h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--fern);
  margin-bottom: 1rem;
}
.sidebar-card p, .sidebar-card a {
  font-size: 0.93rem;
  color: var(--rock);
  line-height: 1.7;
}
.sidebar-card a { color: var(--fire); }
.sidebar-card a:hover { text-decoration: underline; }
.directions-section {
  background: var(--forest);
  border-radius: var(--r2);
  padding: 3.5rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 3rem;
}
.directions-section h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.directions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.direction-item h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--spark);
  margin-bottom: 0.5rem;
}
.direction-item p {
  font-size: 0.93rem;
  line-height: 1.72;
  color: rgba(255,255,255,0.65);
}
.map-embed {
  border-radius: var(--r2);
  overflow: hidden;
  height: 380px;
  background: var(--mist);
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SASQUATCH PLACEMENTS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.sq-logo-icon {
  height: 34px;
  width: auto;
  object-fit: contain;
  display: inline-block;
  margin-right: 7px;
  border-radius: 4px;
  flex-shrink: 0;
  transition: transform 0.4s var(--ease-out);
}
.nav-logo:hover .sq-logo-icon { transform: translateX(5px) rotate(6deg); }

.hero-sq {
  position: absolute;
  bottom: 0;
  right: 3%;
  height: 72%;
  max-height: 520px;
  width: auto;
  object-fit: contain;
  opacity: 0.08;
  pointer-events: none;
  z-index: 1;
}

.sq-trails-icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 4px;
}

.g6-sq {
  position: absolute;
  bottom: 5%;
  right: 8%;
  height: 46%;
  width: auto;
  object-fit: contain;
  opacity: 0.42;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 2;
  transition: opacity 0.3s;
}
.g6:hover .g6-sq { opacity: 0.72; }
.g6-sq-label {
  position: absolute;
  bottom: 3%;
  right: 5%;
  background: rgba(0,0,0,0.75);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  pointer-events: none;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.3s;
  white-space: nowrap;
}
.g6:hover .g6-sq-label { opacity: 1; }

.divider-sq {
  height: 42px;
  width: auto;
  object-fit: contain;
  opacity: 0.32;
  display: inline-block;
  vertical-align: middle;
}

.mm-sq {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  height: 65%;
  max-height: 420px;
  width: auto;
  object-fit: contain;
  opacity: 0.05;
  pointer-events: none;
}

.footer-sq {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 44px;
  width: auto;
  object-fit: contain;
  opacity: 0.14;
  pointer-events: none;
  animation: sq-walk 26s linear infinite;
  z-index: 0;
}
@keyframes sq-walk {
  from { transform: translateX(-60px); }
  to   { transform: translateX(calc(100vw + 60px)); }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE: TABLET ≤ 960px
━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 960px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .about-inner { grid-template-columns: 1fr; gap: 3.5rem; }
  .img-stack { height: 360px; }

  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .amenities-header { flex-direction: column; align-items: flex-start; }
  .amenities-header-right { text-align: left; max-width: none; }
  .amenities-page-grid { grid-template-columns: repeat(2, 1fr); }

  .rates-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .info-strip { grid-template-columns: repeat(3, 1fr); }
  .info-cell { border-bottom: 1px solid rgba(255,255,255,0.06); }

  .spotlight-inner { grid-template-columns: 1fr; gap: 3rem; }
  .spotlight:nth-child(even) .spotlight-inner { direction: ltr; }
  .spotlight-img { height: 320px; }

  .about-story { grid-template-columns: 1fr; gap: 3rem; }
  .directions-grid { grid-template-columns: 1fr; }

  .event-card { grid-template-columns: 120px 1fr; }

  .rules-sq-banner { flex-direction: column; text-align: center; }
  .rules-sq-img { height: 100px; }
  .rules-sq-banner p { margin: 0 auto; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE: MOBILE ≤ 640px
━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 640px) {
  body { padding-bottom: 78px; }

  .nav { padding: 0.9rem 1.25rem; }
  .nav.scrolled,
  .nav.always-solid { padding: 0.7rem 1.25rem; }

  .hero { align-items: center; padding-bottom: 0; }
  .hero-content { padding: 0 1.5rem; }
  .hero h1 { font-size: clamp(3rem, 11vw, 4.5rem); }
  .hero-actions { flex-direction: column; }
  .btn-fire, .btn-ghost { width: 100%; justify-content: center; }
  .hero-scroll { display: none; }

  .trust-item { flex: 0 0 50%; max-width: none; }
  .trust-item:nth-child(even) { border-right: none; }
  .trust-item { border-bottom: 1px solid rgba(255,255,255,0.08); }

  .ribbon { gap: 0.8rem; padding: 1.2rem 1.25rem; flex-direction: column; }
  .ribbon-phone { font-size: 1.5rem; }

  .about { padding: 5rem 1.5rem; }
  .img-stack { height: 280px; }
  .img-stack-badge { display: none; }

  .amenities { padding: 5rem 1.5rem; }
  .amenities-grid { grid-template-columns: 1fr; }
  .amenity-card { flex-direction: row; align-items: flex-start; padding: 1.4rem; }
  .amenity-icon { flex-shrink: 0; margin-bottom: 0; margin-right: 0.2rem; }
  .amenities-page { padding: 4rem 1.5rem; }
  .amenities-page-grid { grid-template-columns: 1fr; }

  .rates { padding: 5rem 1.5rem; }
  .rates-grid { grid-template-columns: 1fr; }

  .gallery { padding: 5rem 0 0; }
  .gallery-head { padding: 0 1.5rem; flex-direction: column; align-items: flex-start; }
  .gallery-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
    gap: 3px;
  }
  .g1, .g2, .g3, .g4, .g5, .g6, .g7, .g8 {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
    height: 155px;
  }
  .g1 { grid-column: span 2 !important; height: 210px; }
  .gallery-full-grid { grid-template-columns: 1fr 1fr; }
  .gallery-full-grid .gw.tall { height: 280px; }
  .gallery-page { padding: 4rem 1.5rem 6rem; }

  .testimonials { padding: 5rem 1.5rem; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .booking { padding: 6rem 1.5rem; }
  .phone-big {
    width: 100%;
    justify-content: center;
    font-size: clamp(1.6rem, 7vw, 2.4rem);
    padding: 1.25rem 1.25rem;
  }

  .info-strip { grid-template-columns: 1fr 1fr; }
  footer { flex-direction: column; align-items: flex-start; padding: 1.5rem; }
  footer nav { gap: 0.75rem; }

  .events-section { padding: 4rem 1.5rem; }
  .event-card { grid-template-columns: 1fr; }
  .event-date { padding: 1.5rem; flex-direction: row; gap: 1rem; justify-content: flex-start; }
  .event-body { padding: 1.5rem; }

  .rules-section { padding: 4rem 1.5rem 6rem; }
  .rules-grid { grid-template-columns: 1fr; }
  .rule-card { padding: 1.5rem; }

  .about-page { padding: 4rem 1.5rem; }
  .directions-section { padding: 2rem 1.5rem; }

  .page-hero { padding: 0 1.5rem 3rem; min-height: 300px; }

  .spotlight { padding: 0 1.5rem 5rem; }

  .mobile-sticky { display: block; }
}

@media (max-width: 380px) {
  .trust-item { flex: 0 0 100%; border-right: none; }
  .info-strip { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(2.6rem, 12vw, 3.8rem); }
}
