@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Josefin+Sans:wght@300;400;600;700&display=swap');

/* ================================================================
   DEER CREEK RECREATION CLUB
   Heritage Sportsman Aesthetic — Warm, Rustic, Timeless
   ================================================================ */

:root {
  /* Core palette — aged leather, dark walnut, camp lantern */
  --ink:          #1c1510;
  --bark:         #2e1f0e;
  --walnut:       #3d2b16;
  --leather:      #6b4423;
  --saddle:       #8b5a2b;
  --tan:          #c49a6c;
  --brass:        #b8860b;
  --brass-bright: #d4a017;
  --parchment:    #f5efe3;
  --cream:        #fdf8f0;
  --linen:        #ede5d4;
  --forest:       #2c4a1e;
  --moss:         #3d6129;
  --sage:         #5a7f3e;
  --pine:         #1e3512;

  /* Texture overlays */
  --noise: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");

  --shadow-sm:  0 2px 8px rgba(28,21,16,0.12);
  --shadow-md:  0 6px 24px rgba(28,21,16,0.18);
  --shadow-lg:  0 16px 48px rgba(28,21,16,0.25);
  --shadow-xl:  0 24px 80px rgba(28,21,16,0.35);

  --radius:     4px;
  --radius-md:  8px;
  --ease:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

body {
  font-family: 'Libre Baskerville', Georgia, serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Grain overlay on entire page */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: var(--noise);
  pointer-events: none;
  z-index: 9999;
  opacity: 0.6;
}

img { display: block; max-width: 100%; }
a { color: var(--brass); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--brass-bright); }

/* ================================================================
   TYPOGRAPHY
   ================================================================ */

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: var(--bark);
  line-height: 1.15;
  font-weight: 700;
}

h1 { font-size: clamp(3rem, 6vw, 5.5rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(2rem, 3.5vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2vw, 1.9rem); font-weight: 600; }
h4 { font-size: 1.2rem; font-weight: 600; }

.display-serif {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 7vw, 7rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}

.overline {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--brass);
}
.overline.light { color: rgba(212,160,23,0.8); }
.overline.muted { color: var(--tan); }

p { color: var(--walnut); line-height: 1.85; margin-bottom: 1.1rem; font-size: 1.02rem; }
p:last-child { margin-bottom: 0; }

/* Ornamental divider */
.ornament {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}
.ornament::before,
.ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--tan), transparent);
}
.ornament-glyph {
  color: var(--brass);
  font-size: 1rem;
  flex-shrink: 0;
}
.ornament.center { justify-content: center; }
.ornament.center::before,
.ornament.center::after { max-width: 80px; }

/* ================================================================
   LAYOUT
   ================================================================ */

.container { max-width: 1140px; margin: 0 auto; padding: 0 2.5rem; }
.container-narrow { max-width: 800px; margin: 0 auto; padding: 0 2.5rem; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 2.5rem; }

/* ================================================================
   BUTTONS
   ================================================================ */

.btn {
  display: inline-block;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.75rem 1.75rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  position: relative;
  text-align: center;
}

.btn-brass {
  background: var(--brass);
  color: var(--cream);
}
.btn-brass::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%);
}
.btn-brass:hover {
  background: var(--brass-bright);
  color: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184,134,11,0.35);
}

.btn-outline-cream {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(245,239,227,0.45);
}
.btn-outline-cream:hover {
  background: rgba(245,239,227,0.08);
  border-color: rgba(245,239,227,0.8);
  color: var(--cream);
  transform: translateY(-2px);
}

.btn-forest {
  background: var(--forest);
  color: var(--parchment);
}
.btn-forest:hover {
  background: var(--moss);
  color: var(--parchment);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(44,74,30,0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--bark);
  border: 1.5px solid var(--tan);
}
.btn-ghost:hover {
  background: var(--linen);
  border-color: var(--saddle);
  color: var(--bark);
}

.btn-block { display: block; width: 100%; }

/* ================================================================
   NAVIGATION
   ================================================================ */

#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  transition: background 0.4s var(--ease), box-shadow 0.4s;
}

#navbar.transparent { background: linear-gradient(to bottom, rgba(49,36,19,0.85) 0%, rgba(49,36,19,0) 100%); }
#navbar.solid {
  background: #312413;
  box-shadow: 0 4px 32px rgba(28,21,16,0.4);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
  gap: 1rem;
}

.nav-brand { text-decoration: none; display: flex; flex-direction: column; flex-shrink: 0; }
.nav-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.nav-brand-sub {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(212,160,23,0.75);
  margin-top: 3px;
  white-space: nowrap;
}


/* ── NAV LOGO ─────────────────────────────────────────── */
.nav-logo {
  height: 64px;
  width: auto;
  display: block;
  flex-shrink: 0;
  transition: transform 0.2s var(--ease);
}
.nav-brand:hover .nav-logo {
  transform: scale(1.05);
}
.nav-brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  flex-shrink: 0;
}
.nav-links > li > a {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(245,239,227,0.75);
  padding: 0.5rem 0.65rem;
  display: block;
  transition: color 0.2s;
  text-decoration: none;
  white-space: nowrap;
}
.nav-links > li > a:hover,
.nav-links > li > a.active { color: var(--cream); }

.nav-links > li > a.active {
  border-bottom: 1px solid var(--brass);
  padding-bottom: calc(0.5rem - 1px);
}

.nav-cta-wrap { margin-left: 0.75rem; flex-shrink: 0; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(245,239,227,0.3);
  color: var(--cream);
  width: 40px; height: 40px;
  cursor: pointer;
  font-size: 1.2rem;
  border-radius: var(--radius);
  transition: background 0.2s;
}
.nav-toggle:hover { background: rgba(255,255,255,0.08); }

/* ================================================================
   HERO
   ================================================================ */

.hero {
  position: relative;
  height: 100dvh;
  min-height: 580px;
  max-height: 900px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.06);
  animation: heroZoom 16s var(--ease) forwards;
}
@keyframes heroZoom {
  to { transform: scale(1); }
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(28,21,16,0.88) 0%, rgba(28,21,16,0.5) 55%, rgba(28,21,16,0.2) 100%),
    linear-gradient(to top, rgba(28,21,16,0.6) 0%, transparent 40%);
}

.hero-content {
  position: relative;
  padding: 0 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  padding-top: 82px;
  padding-bottom: 90px;
}


.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.4s forwards;
}
.hero-eyebrow-line {
  width: 40px; height: 1px;
  background: var(--brass);
}

.hero-title {
  color: var(--cream);
  max-width: 1100px;
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  white-space: nowrap;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.6s forwards;
}
.hero-title em {
  font-style: italic;
  color: var(--brass-bright);
  display: inline;
}

.hero-sub {
  color: rgba(245,239,227,0.75);
  font-size: 1rem;
  max-width: 680px;
  margin: 1.25rem 0 2.25rem;
  font-style: italic;
  line-height: 1.6;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.8s forwards;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 1s forwards;
}

.hero-badge-strip {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(28,21,16,0.85);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(184,134,11,0.25);
  padding: 1.25rem 2.5rem;
}
.hero-badge-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.hero-stat {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}
.hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--brass-bright);
  line-height: 1;
}
.hero-stat-label {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,239,227,0.55);
}
.hero-stat-divider {
  width: 1px; height: 28px;
  background: rgba(245,239,227,0.12);
}

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

/* ================================================================
   PAGE HERO
   ================================================================ */

.page-hero {
  position: relative;
  height: 420px;
  display: flex;
  align-items: flex-end;
  margin-top: 82px;
  overflow: hidden;
}
.page-hero-bg { position: absolute; inset: 0; }
.page-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,21,16,0.92) 0%, rgba(28,21,16,0.4) 60%, rgba(28,21,16,0.1) 100%);
}
.page-hero-content {
  position: relative;
  width: 100%;
  padding: 0 2.5rem 3.5rem;
  max-width: 1140px;
  margin: 0 auto;
}
.page-hero-content h1 {
  color: var(--cream);
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 0.5rem;
}
.page-hero-content p {
  color: rgba(245,239,227,0.65);
  font-size: 1rem;
  font-style: italic;
  margin: 0;
}

/* ================================================================
   INTRO / ABOUT
   ================================================================ */

.about-section {
  background: var(--cream);
  padding: 7rem 0;
}
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.about-text h2 { margin-bottom: 0; }
.about-text p { font-size: 1.05rem; }
.about-text .lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-style: italic;
  color: var(--leather);
  line-height: 1.6;
}

.about-photo-stack {
  position: relative;
  height: 520px;
}
.photo-main {
  position: absolute;
  top: 0; left: 0;
  width: 80%;
  height: 78%;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
}
.photo-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 58%;
  height: 46%;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 5px solid var(--cream);
}
.photo-label {
  position: absolute;
  bottom: 46%; right: 0;
  transform: translateY(50%);
  background: var(--brass);
  color: var(--cream);
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  white-space: nowrap;
  z-index: 2;
}

/* ================================================================
   ACTIVITIES GRID
   ================================================================ */

.activities-section {
  background: var(--bark);
  padding: 7rem 0;
  position: relative;
}
.activities-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23f5efe3' fill-opacity='0.025'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.activities-section .container { position: relative; }
.activities-section .overline { color: rgba(212,160,23,0.7); }
.activities-section h2 { color: var(--parchment); }

.activity-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5px;
  margin-top: 3rem;
  background: rgba(245,239,227,0.06);
  border: 1px solid rgba(245,239,227,0.08);
}

.activity-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  display: block;
  text-decoration: none;
}
.activity-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.7s var(--ease);
}
.activity-card:hover img { transform: scale(1.06); }
.activity-card-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,21,16,0.95) 0%, rgba(28,21,16,0.55) 40%, rgba(28,21,16,0.05) 100%);
  transition: background 0.4s;
}
.activity-card:hover .activity-card-scrim {
  background: linear-gradient(to top, rgba(28,21,16,0.97) 0%, rgba(28,21,16,0.65) 55%, rgba(28,21,16,0.1) 100%);
}
.activity-card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem 1.5rem 1.75rem;
}
.activity-card-icon {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0.6rem;
  transform: translateY(4px);
  transition: transform 0.3s var(--ease);
}
.activity-card:hover .activity-card-icon { transform: translateY(0); }

.activity-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cream);
  display: block;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.activity-card-desc {
  font-family: 'Lato', sans-serif;
  font-size: 0.82rem;
  color: rgba(245,239,227,0.75);
  line-height: 1.55;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), opacity 0.3s;
  opacity: 0;
}
.activity-card:hover .activity-card-desc { max-height: 100px; opacity: 1; }
.activity-card-arrow {
  display: inline-block;
  margin-top: 0.75rem;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass-bright);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.3s, transform 0.3s var(--ease);
}
.activity-card:hover .activity-card-arrow { opacity: 1; transform: translateX(0); }

/* ================================================================
   MEMBERSHIP SECTION
   ================================================================ */

.membership-section {
  background: var(--parchment);
  padding: 7rem 0;
}

.membership-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 5rem;
}
.membership-intro-text h2 { margin-bottom: 0; }
.membership-intro-img img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16/10;
  object-fit: cover;
}

.tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.tier {
  background: var(--cream);
  border: 1px solid #ddd0bc;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}
.tier:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.tier.featured {
  border-color: var(--brass);
  box-shadow: var(--shadow-md);
  transform: translateY(-8px);
}
.tier-header {
  background: var(--walnut);
  padding: 2rem;
  text-align: center;
  position: relative;
}
.tier.featured .tier-header { background: var(--forest); }
.tier-flag {
  position: absolute;
  top: 0; right: 1.5rem;
  background: var(--brass);
  color: var(--cream);
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
}
.tier-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.tier-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--brass-bright);
  line-height: 1;
}
.tier-amount span {
  font-size: 1rem;
  color: rgba(245,239,227,0.55);
  font-weight: 400;
}
.tier-sub {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: rgba(245,239,227,0.5);
  text-transform: uppercase;
  margin-top: 0.4rem;
}
.tier-body { padding: 2rem; }
.tier-features {
  list-style: none;
  margin-bottom: 2rem;
}
.tier-features li {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--linen);
  font-size: 0.92rem;
  color: var(--walnut);
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}
.tier-features li::before {
  content: '—';
  color: var(--brass);
  font-weight: 700;
  flex-shrink: 0;
}
.tier-features li.note { font-size: 0.82rem; color: var(--tan); font-style: italic; }
.tier-features li.note::before { content: '*'; }

/* ================================================================
   EVENTS BANNER
   ================================================================ */

.events-section {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
}
.events-bg {
  position: absolute; inset: 0;
}
.events-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 60%;
}
.events-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(28,21,16,0.92) 0%, rgba(28,21,16,0.7) 50%, rgba(44,74,30,0.75) 100%);
}
.events-content {
  position: relative;
  max-width: 640px;
}
.events-content h2 { color: var(--cream); margin-bottom: 0; }
.events-content p { color: rgba(245,239,227,0.75); font-style: italic; }
.events-list {
  margin: 2.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.event-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(245,239,227,0.1);
}
.event-item:first-child { border-top: 1px solid rgba(245,239,227,0.1); }
.event-date-badge {
  background: rgba(184,134,11,0.15);
  border: 1px solid rgba(184,134,11,0.35);
  border-radius: var(--radius);
  padding: 0.6rem 0.75rem;
  text-align: center;
  min-width: 56px;
  flex-shrink: 0;
}
.event-month {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brass-bright);
  display: block;
}
.event-day {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
  display: block;
}
.event-info h4 {
  color: var(--cream);
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}
.event-info p {
  color: rgba(245,239,227,0.6);
  font-size: 0.85rem;
  margin: 0;
  font-style: italic;
}

/* ================================================================
   FACILITY SECTIONS
   ================================================================ */

.facility {
  padding: 7rem 0;
}
.facility:nth-child(even) { background: var(--linen); }
.facility-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.facility-layout.flip .facility-visual { order: -1; }

.facility-visual {
  position: relative;
}
.facility-visual img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  display: block;
}
.facility-num {
  position: absolute;
  top: -1rem;
  right: -1rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 8rem;
  font-weight: 700;
  color: rgba(184,134,11,0.08);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.facility-text h2 { margin-bottom: 0; }
.facility-text p { font-size: 1.02rem; }

.feature-list {
  list-style: none;
  margin: 1.5rem 0;
  border-top: 1px solid var(--linen);
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--linen);
  font-size: 0.95rem;
  color: var(--walnut);
}
.feature-list li::before {
  content: '✦';
  color: var(--brass);
  font-size: 0.6rem;
  flex-shrink: 0;
  margin-top: 6px;
}

.callout-box {
  background: var(--walnut);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.75rem;
  margin-top: 1.75rem;
}
.callout-box h4 {
  color: var(--brass-bright);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  font-family: 'Josefin Sans', sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.callout-box p {
  color: rgba(245,239,227,0.75);
  font-size: 0.88rem;
  margin: 0;
  line-height: 1.7;
}

/* ================================================================
   HOW IT WORKS (Membership steps)
   ================================================================ */

.steps-section {
  background: var(--cream);
  padding: 7rem 0;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 3rem;
  border: 1px solid var(--linen);
}
.step {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--linen);
  transition: background 0.3s;
}
.step:last-child { border-right: none; }
.step:hover { background: var(--parchment); }
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--linen);
  line-height: 1;
  margin-bottom: 1rem;
}
.step h3 { font-size: 1.15rem; margin-bottom: 0.75rem; }
.step p { font-size: 0.88rem; color: var(--saddle); }

.note-panel {
  background: var(--parchment);
  border: 1px solid #d4b896;
  border-left: 4px solid var(--brass);
  padding: 1.5rem 2rem;
  margin-top: 2.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.92rem;
  color: var(--walnut);
}

/* ================================================================
   CONTACT PAGE
   ================================================================ */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
}
.contact-info h2 { margin-bottom: 0; }
.contact-info p { font-size: 1.02rem; }

.contact-items { margin: 2rem 0; }
.contact-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--linen);
}
.contact-item:first-child { border-top: 1px solid var(--linen); }
.contact-item-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 3px;
  width: 32px;
  text-align: center;
}
.contact-item strong {
  display: block;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: 0.3rem;
}
.contact-item span,
.contact-item a {
  font-size: 0.95rem;
  color: var(--walnut);
  line-height: 1.6;
}
.contact-item a:hover { color: var(--brass); }

.directions-panel {
  background: var(--parchment);
  border: 1px solid #ddd0bc;
  border-radius: var(--radius-md);
  padding: 2rem;
  margin-top: 1.5rem;
}
.directions-panel h4 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 1.25rem;
}
.directions-panel p { font-size: 0.88rem; line-height: 1.75; }
.directions-panel strong { color: var(--bark); }

.contact-form-wrap {
  background: var(--cream);
  border: 1px solid #ddd0bc;
  border-radius: var(--radius-md);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
}
.contact-form-wrap h3 { font-size: 1.75rem; margin-bottom: 0.4rem; }
.contact-form-wrap > p { font-size: 0.9rem; color: var(--saddle); font-style: italic; margin-bottom: 2rem; }

.form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--saddle);
}
.field input,
.field select,
.field textarea {
  background: var(--parchment);
  border: 1px solid #cfc0a9;
  border-radius: var(--radius);
  padding: 0.85rem 1.1rem;
  font-family: 'Libre Baskerville', serif;
  font-size: 0.9rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--brass);
  background: #fff;
}
.field textarea { resize: vertical; min-height: 130px; }
.form-legal {
  font-size: 0.78rem;
  color: var(--tan);
  font-style: italic;
  text-align: center;
}

.form-success {
  display: none;
  text-align: center;
  padding: 3rem 0;
}
.success-mark {
  width: 64px; height: 64px;
  background: var(--forest);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
}
.form-success h3 { color: var(--forest); margin-bottom: 0.5rem; }
.form-success p { color: var(--saddle); font-style: italic; }

/* ================================================================
   CTA SECTION
   ================================================================ */

.cta-section {
  background: var(--pine);
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23f5efe3' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-section > * { position: relative; }
.cta-section h2 { color: var(--cream); margin-bottom: 0; }
.cta-section p { color: rgba(245,239,227,0.7); font-style: italic; max-width: 500px; margin: 1rem auto 2.5rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ================================================================
   FOOTER
   ================================================================ */

footer {
  background: var(--ink);
  padding: 4rem 0 2.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(245,239,227,0.08);
}
.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.3rem;
}
.footer-brand-sub {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(184,134,11,0.6);
  margin-bottom: 1rem;
}
.footer-about {
  font-size: 0.88rem;
  color: rgba(245,239,227,0.4);
  line-height: 1.7;
  font-style: italic;
}
.footer-col h4 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(184,134,11,0.65);
  margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a {
  color: rgba(245,239,227,0.45);
  font-size: 0.88rem;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--cream); }
.footer-col p {
  font-size: 0.88rem;
  color: rgba(245,239,227,0.45);
  line-height: 1.7;
}
.footer-col a {
  color: rgba(245,239,227,0.45);
  font-size: 0.88rem;
}
.footer-col a:hover { color: var(--brass-bright); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy {
  font-size: 0.78rem;
  color: rgba(245,239,227,0.25);
}
.footer-legal {
  font-size: 0.72rem;
  color: rgba(245,239,227,0.2);
  font-style: italic;
}

/* ================================================================
   REVEAL ANIMATIONS
   ================================================================ */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ================================================================
   RESPONSIVE
   ================================================================ */

/* ================================================================
   RESPONSIVE — TABLET (≤1024px)
   ================================================================ */
@media (max-width: 1024px) {
  .about-layout,
  .membership-intro { grid-template-columns: 1fr; gap: 3rem; }
  .about-photo-stack { height: 360px; }
  .activity-cards { grid-template-columns: repeat(2, 1fr); }
  .facility-layout,
  .facility-layout.flip { grid-template-columns: 1fr; gap: 2.5rem; }
  .facility-layout.flip .facility-visual { order: 0; }
  .facility-num { font-size: 5rem; top: -0.5rem; right: -0.5rem; }
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .tiers-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .tier-amount { font-size: 2.2rem; }
  .hero-badge-inner { gap: 0.5rem; flex-wrap: wrap; justify-content: center; }
  .hero-stat-num { font-size: 1.6rem; }
}

/* ================================================================
   RESPONSIVE — MOBILE (≤768px)
   ================================================================ */
@media (max-width: 768px) {
  /* Nav */
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 82px; left: 0; right: 0;
    background: #312413;
    padding: 1rem 1.5rem 1.5rem;
    gap: 0;
    box-shadow: 0 8px 32px rgba(28,21,16,0.4);
    z-index: 499;
  }
  .nav-links.open { display: flex; }
  .nav-links > li > a {
    padding: 0.85rem 0.5rem;
    font-size: 0.75rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav-cta-wrap { display: none; }
  .nav-toggle { display: block; }
  .nav-inner { gap: 0.5rem; }
  .nav-logo { height: 44px; }
  .nav-brand-name { font-size: 1rem; }
  .nav-brand-sub { display: none; }

  /* Hero */
  .hero { height: 100dvh; min-height: 520px; max-height: 800px; }
  .hero-content { padding: 0 1.5rem; }
  .hero-title { font-size: clamp(1.6rem, 6vw, 2.2rem); max-width: 100%; white-space: normal; }
  .hero-sub { font-size: 0.95rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .hero-badge-strip { padding: 1rem 1.5rem; }
  .hero-badge-inner { flex-wrap: wrap; justify-content: center; gap: 0.5rem 1.5rem; }
  .hero-stat-divider { display: none; }
  .hero-stat { flex-direction: row; align-items: baseline; gap: 0.4rem; }
  .hero-stat-num { font-size: 1.5rem; }

  /* Page hero */
  .page-hero { height: 260px; }
  .page-hero-content { padding: 0 1.5rem 2.5rem; }
  .page-hero-content h1 { font-size: 2rem; }

  /* Sections */
  .about-section,
  .activities-section,
  .membership-section,
  .steps-section,
  .facility,
  .events-section,
  .cta-section { padding: 4rem 0; }

  .about-photo-stack { height: 260px; }
  .photo-accent { display: none; }
  .photo-label { display: none; }

  /* Activities */
  .activity-cards { grid-template-columns: 1fr 1fr; gap: 1px; }
  .activity-card { aspect-ratio: 4/5; }
  .activity-card-title { font-size: 1.2rem; }

  /* Tiers */
  .tiers-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .tier.featured { transform: none; }
  .tier-amount { font-size: 2.5rem; }

  /* Steps */
  .steps-grid { grid-template-columns: 1fr 1fr; border: none; gap: 1px; background: var(--linen); }
  .step { border-right: none; padding: 1.75rem 1.25rem; }
  .step-num { font-size: 2.5rem; }

  /* Events */
  .events-section { padding: 5rem 1.5rem; }
  .event-item { gap: 1rem; }

  /* Contact */
  .contact-form-wrap { padding: 2rem 1.5rem; }
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 0.5rem; }

  /* Facility galleries */
  [style*="grid-template-columns: repeat(3,1fr)"] {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
  }
  [style*="grid-template-columns: repeat(2,1fr)"] {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  /* Ornament */
  .ornament { margin: 1rem 0 1.5rem; }

  /* Membership intro image */
  .membership-intro-img img { aspect-ratio: 16/9; }

  /* Contact entrance sign section */
  [style*="grid-template-columns:1fr 1fr"] {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  /* Facility visual large number */
  .facility-num { display: none; }
}

/* ================================================================
   RESPONSIVE — SMALL MOBILE (≤480px)
   ================================================================ */
@media (max-width: 480px) {
  .container, .container-narrow, .container-wide { padding: 0 1.25rem; }

  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.7rem; }

  .activity-cards { grid-template-columns: 1fr; }
  .activity-card { aspect-ratio: 3/2; }

  .steps-grid { grid-template-columns: 1fr; }
  .step { padding: 1.5rem 1.25rem; }

  .hero-title { font-size: 1.6rem; max-width: 100%; white-space: normal; }
  .hero-sub { display: none; }

  .page-hero { height: 220px; }
  .page-hero-content h1 { font-size: 1.7rem; }

  .tier-body { padding: 1.5rem 1.25rem; }
  .tier-header { padding: 1.5rem 1.25rem; }

  .btn { padding: 0.7rem 1.4rem; font-size: 0.65rem; }

  .events-section { padding: 4rem 1.25rem; }
  .event-day { font-size: 1.4rem; }

  .cta-actions { flex-direction: column; }
  .cta-actions .btn { width: 100%; text-align: center; }

  .contact-form-wrap { padding: 1.5rem 1.25rem; }

  /* Facility galleries go single column */
  [style*="grid-template-columns: repeat(3,1fr)"] {
    grid-template-columns: 1fr !important;
  }
  [style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  .footer-grid { gap: 1.5rem; }
  .footer-brand-name { font-size: 1.2rem; }

  /* Members page coming soon */
  .success-mark { width: 52px; height: 52px; font-size: 1.2rem; }
}

/* ================================================================
   RESPONSIVE — VERY SMALL (≤360px)
   ================================================================ */
@media (max-width: 360px) {
  .container, .container-narrow { padding: 0 1rem; }
  .nav-inner { padding: 0 1rem; }
  .hero-title { font-size: 1.5rem; white-space: normal; }
  .tier-amount { font-size: 2rem; }
  .display-serif { font-size: 2.5rem; }
}

/* ================================================================
   CLUB INFORMATION SECTION
   ================================================================ */

.info-nav-card {
  background: var(--cream);
  border: 1px solid #ddd0bc;
  border-radius: var(--radius-md);
  padding: 2rem;
  display: block;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
  text-decoration: none;
}
.info-nav-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brass);
}
.info-nav-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.info-nav-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--bark);
  margin-bottom: 0.6rem;
}
.info-nav-card p {
  font-family: 'Lato', sans-serif;
  font-size: 0.88rem;
  color: var(--walnut);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.info-nav-link {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brass);
}

/* Director cards */
.director-card {
  background: #fff;
  border: 1px solid #ddd0bc;
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: box-shadow 0.2s var(--ease);
}
.director-card:hover { box-shadow: var(--shadow-md); }
.director-role {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: 0.4rem;
}
.director-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--bark);
  margin-bottom: 0.6rem;
}
.director-email {
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  color: var(--brass);
  text-decoration: none;
  display: block;
  word-break: break-all;
}
.director-email:hover { color: var(--brass-bright); }

/* Document list rows */
.doc-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid #ddd0bc;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
}
.doc-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--linen);
}
.doc-row:last-child { border-bottom: none; }
.doc-row:nth-child(even) { background: var(--parchment); }
.doc-icon { font-size: 1.5rem; flex-shrink: 0; }
.doc-info { flex: 1; min-width: 0; }
.doc-title {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--bark);
  margin-bottom: 0.2rem;
}
.doc-desc {
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  color: var(--tan);
  line-height: 1.5;
}
.doc-action { flex-shrink: 0; }

@media (max-width: 768px) {
  .doc-row { flex-wrap: wrap; gap: 0.75rem; }
  .doc-action { width: 100%; }
}
@media (max-width: 768px) {
  [style*="grid-template-columns: repeat(3,1fr)"].info-cards-grid,
  .info-nav-card ~ .info-nav-card { margin-top: 0; }
}

/* ================================================================
   MOBILE OPTIMISATION PASS
   ================================================================ */

/* ── Touch targets ─────────────────────────────────────────────── */
.nav-toggle {
  width: 44px;
  height: 44px;
  font-size: 1.4rem;
}

/* ── Prevent iOS auto-zoom on form focus (needs 16px min) ──────── */
.field input,
.field select,
.field textarea {
  font-size: max(16px, 0.9rem);
}

/* ── FAQ accordion ─────────────────────────────────────────────── */
details summary { user-select: none; -webkit-user-select: none; }
details summary::-webkit-details-marker { display: none; }
details[open] summary span:last-child { content: "−"; transform: rotate(45deg); display: inline-block; }
details[open] > summary > span:last-child::before { content: "−"; }
details[open] > summary > span.faq-icon::before { content: "×"; }
details > summary > .faq-icon { transition: transform 0.2s; }
details[open] > summary > .faq-icon { transform: rotate(45deg); }

/* ── Universal inline-grid mobile collapse ─────────────────────── */
/* Covers all the inline style grids in facilities.html */
@media (max-width: 768px) {
  /* 2-col inline grids → single column */
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr"],
  [style*="grid-template-columns:1fr 1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr 1fr"],
  [style*="grid-template-columns: repeat(3"] {
    grid-template-columns: 1fr !important;
  }

  /* Keep fishing/camping/beach 2-col portrait galleries as 2-col — they look fine */
  /* Target only the ones inside facility sections explicitly */

  /* Nav toggle larger hit area */
  .nav-toggle { display: flex; align-items: center; justify-content: center; min-width: 44px; min-height: 44px; }

  /* Fix btn font size — 0.65rem is too small */
  .btn { font-size: 0.75rem; padding: 0.75rem 1.5rem; }

  /* FAQ tap target */
  details summary {
    padding: 1.25rem 0;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }

  /* Grounds 3-col section title */
  .facility-intro-text { text-align: center; }

  /* Hero — prevent over-clipping on tall phones */
  .hero { max-height: none; }

  /* Membership photo strip */
  [style*="grid-template-columns:1fr 1fr"][style*="gap:2rem"] {
    grid-template-columns: 1fr !important;
  }

  /* Contact entrance section */
  .contact-entrance-grid {
    grid-template-columns: 1fr !important;
  }

  /* Page sections horizontal padding */
  .facility, section[style*="padding:5rem"], section[style*="padding: 5rem"],
  section[style*="padding:4rem"], section[style*="padding: 4rem"] {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* Table of contents cards */
  [style*="grid-template-columns: repeat(3,1fr)"],
  [style*="grid-template-columns:repeat(3,1fr)"] {
    grid-template-columns: 1fr 1fr !important;
  }
}

@media (max-width: 480px) {
  /* Single col for everything on small phones */
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr"],
  [style*="grid-template-columns:1fr 1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr 1fr"],
  [style*="grid-template-columns: repeat(3"],
  [style*="grid-template-columns: repeat(2"] {
    grid-template-columns: 1fr !important;
  }

  /* FAQ font size */
  details summary { font-size: 1.05rem !important; }

  /* CTA button stack */
  .cta-actions { gap: 0.75rem; }

  /* Footer nav links */
  .footer-links { flex-direction: column; gap: 0.5rem; }
}

/* ── Dropdown nav — make it work on mobile touch ───────────────── */
@media (max-width: 768px) {
  .has-dropdown > .dropdown {
    position: static;
    display: none;
    box-shadow: none;
    background: rgba(0,0,0,0.15);
    border-radius: 0;
    padding: 0;
  }
  .has-dropdown.open > .dropdown { display: block; }
  .has-dropdown > a::after { content: ' ▾'; font-size: 0.7em; }
}

/* ── Tap highlight removal ─────────────────────────────────────── */
a, button, [role="button"], summary {
  -webkit-tap-highlight-color: transparent;
}

/* ── Smooth momentum scrolling on iOS ──────────────────────────── */
html { -webkit-overflow-scrolling: touch; scroll-behavior: smooth; }

/* ── Prevent horizontal overflow ──────────────────────────────────*/
body { overflow-x: hidden; }
img { max-width: 100%; }

