/* ============================================================
   BLACK BANK OUTFITTERS — styles.css v1
   ============================================================ */

/* ---- Custom Properties ---- */
:root {
  --black:       #0a0c08;
  --dark:        #141810;
  --dark-alt:    #1c2118;
  --gold:        #c49a2a;
  --gold-light:  #e0b440;
  --gold-dark:   #8b6914;
  --text:        #e8e4da;
  --text-muted:  #8c8880;
  --white:       #f5f2ec;
  --border:      rgba(196,154,42,0.2);

  --font-head:  'Raleway', Georgia, sans-serif;
  --font-body:  'Lora', Georgia, serif;

  --nav-h:    72px;
  --max-w:    1400px;
  --gutter:   clamp(1.25rem, 4vw, 2.5rem);

  --ease:     cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; }

/* ---- Utilities ---- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: clamp(4rem, 10vw, 8rem);
}
.section-dark {
  background-color: var(--dark);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}
.section-black {
  background-color: var(--black);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

.section-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-style: italic;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.section-lead {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-muted);
  max-width: 640px;
  margin-bottom: 3rem;
}

.section-cta {
  text-align: center;
  margin-top: 3.5rem;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border: 2px solid transparent;
  border-radius: 5px;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

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

.btn-lg {
  font-size: 1.05rem;
  padding: 1.1rem 2.5rem;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

#site-header.scrolled {
  background: rgba(10,12,8,0.97);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 var(--border);
}
/* Removing backdrop-filter when mobile nav is open prevents it from creating
   a new containing block that traps position:fixed children to the header height */
#site-header.nav-open {
  backdrop-filter: none;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo-img {
  height: 56px;
  width: auto;
  filter: invert(1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-family: var(--font-head);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--black) !important;
  padding: 0.5rem 1.4rem;
  font-weight: 700 !important;
}
.nav-cta:hover {
  background: var(--gold-light) !important;
  color: var(--black) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 101;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero--triptych .hero-media { display: flex; }
.hero--triptych .hero-panel { flex: 1; overflow: hidden; }
.hero--triptych .hero-panel--center { flex: 2; }
.hero--triptych .hero-img { object-fit: cover; object-position: center; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(10,12,8,0.22) 0%, rgba(10,12,8,0.5) 50%, rgba(10,12,8,0.88) 100%),
    linear-gradient(155deg, rgba(196,154,42,0.1) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: var(--nav-h);
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  animation: heroFade 0.9s ease both;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 1.25rem;
  animation: heroFadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: 0.12s;
}

.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(0.82rem, 2vw, 1rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2.5rem;
  animation: heroFade 0.9s ease both;
  animation-delay: 0.35s;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  animation: heroFadeUp 0.9s ease both;
  animation-delay: 0.52s;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--text-muted);
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroFade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  max-width: 540px;
}

.about-credentials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.credential {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-head);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
}

.credential-dot {
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.about-image img {
  width: 100%;
  height: clamp(360px, 36vw, 600px);
  object-fit: cover;
  object-position: center;
}

/* ============================================================
   LODGE PAGE
   ============================================================ */
.lodge-video-wrap {
  max-width: 860px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.lodge-video {
  width: 100%;
  max-height: 520px;
  display: block;
  border-radius: 8px;
  background: var(--black);
}

/* ============================================================
   HUNT OVERVIEW (home page feature cards)
   ============================================================ */
.hunt-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.hunt-overview-card {
  display: block;
  background: var(--dark);
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.hunt-overview-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 42px rgba(0,0,0,0.55);
}

.hunt-overview-img {
  height: clamp(240px, 22vw, 420px);
  overflow: hidden;
}
.hunt-overview-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s var(--ease);
}
.hunt-overview-card:hover .hunt-overview-img img { transform: scale(1.04); }

.hunt-overview-body {
  padding: 1.75rem;
  border-top: 2px solid var(--gold);
}

.hunt-overview-eyebrow {
  display: block;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.hunt-overview-title {
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 1.8vw, 2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.hunt-overview-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.hunt-overview-footer {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.hunt-overview-price {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}
.hunt-overview-price small {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-left: 0.25rem;
}

.hunt-overview-link {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

/* active nav link */
.nav-links a.active { color: var(--white); }

/* ============================================================
   LONG ISLAND WATERFOWL
   ============================================================ */
.hunt-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.hunt-card { position: relative; overflow: hidden; background: var(--dark); border-radius: 8px; transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease); }
.hunt-card:hover { transform: translateY(-5px); box-shadow: 0 16px 36px rgba(0,0,0,0.5); }

.hunt-card-img {
  height: clamp(200px, 18vw, 360px);
  overflow: hidden;
}
.hunt-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.hunt-card:hover .hunt-card-img img { transform: scale(1.05); }
.hunt-card:nth-child(2) .hunt-card-img img { object-position: 50% 15%; }

.hunt-card-body {
  padding: 1.75rem;
  border-top: 2px solid var(--gold);
}
.hunt-card-body h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.hunt-card-body p { color: var(--text-muted); font-size: 0.95rem; }

.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.info-card {
  background: var(--dark-alt);
  padding: 2rem 1.75rem;
  border-radius: 8px;
}

.info-title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-head);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.info-list li {
  padding-block: 0.6rem;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.5;
}
.info-list li:last-child { border-bottom: none; }
.info-list strong { color: var(--white); }
.info-list small { color: var(--text-muted); font-size: 0.8rem; }

.check-list li {
  padding-left: 1.25rem;
  position: relative;
}
.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 0.05rem;
}

.info-card-pricing { text-align: center; }

.price-callout {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1rem;
}
.price-amount {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.price-unit {
  font-family: var(--font-head);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.25rem;
}
.info-card-pricing p { color: var(--text-muted); font-size: 0.9rem; margin-top: 0.5rem; }

/* ============================================================
   HUNT INFO — Option C open layout
   ============================================================ */
.hunt-info {
  margin-top: 2.5rem;
}

.hunt-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  padding-bottom: 1.5rem;
  margin-bottom: 1.75rem;
  border-bottom: 1px solid var(--border);
}

.hunt-price-amount {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.hunt-price-per {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.hunt-info-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.hunt-info-cols--three {
  grid-template-columns: repeat(3, 1fr);
}

.hunt-info-col-head {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.hunt-info-item {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 0.3rem 0;
  line-height: 1.4;
}

.hunt-price-row--turkey {
  align-items: flex-end;
  gap: 0;
}

.turkey-pkg-opt {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  flex: 1;
}

.turkey-pkg-opt:last-child {
  text-align: right;
  align-items: flex-end;
}

.turkey-pkg-name {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.turkey-pkg-sep {
  width: 1px;
  height: 3rem;
  background: var(--border);
  margin: 0 1.5rem;
  align-self: flex-end;
}

/* ============================================================
   PA TURKEY
   ============================================================ */
.turkey-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

.turkey-img-main {
  width: 100%;
  height: clamp(320px, 32vw, 560px);
  object-fit: cover;
  object-position: top;
  display: block;
  border-radius: 6px;
}

.turkey-packages {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-block: 2rem;
}

.package {
  background: var(--dark-alt);
  border: 1px solid var(--border);
  padding: 1.5rem;
  border-radius: 6px;
}

.package-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.package-header h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
}
.package-price {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
}

.turkey-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.turkey-details span {
  font-family: var(--font-head);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.turkey-detail-icon {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin-right: 0.5rem;
  vertical-align: middle;
}

/* ============================================================
   GALLERY
   ============================================================ */
#gallery .container { margin-bottom: 2.5rem; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 22vw;
  gap: 8px;
  grid-auto-flow: dense;
}

.gallery-item { overflow: hidden; border-radius: 5px; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s var(--ease), opacity 0.5s ease;
  opacity: 0.9;
}
.gallery-item:hover img {
  transform: scale(1.04);
  opacity: 1;
}

.gallery-item--tall  { grid-row: span 2; }
.gallery-item--wide  { grid-column: span 2; }

/* Turkey gallery: 3 columns (6 tall + 6 flat = 18 row-spans / 3 = 6 rows, gap-free) */
.gallery-grid--turkey {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 8px;
}

.gallery-label {
  font-family: var(--font-head);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

/* ============================================================
   GUIDES
   ============================================================ */
.guides-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.guide-card { background: var(--dark-alt); overflow: hidden; border-radius: 10px; transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease); }
.guide-card:hover { transform: translateY(-5px); box-shadow: 0 18px 42px rgba(0,0,0,0.55); }

.guide-photo {
  height: clamp(340px, 32vw, 560px);
  overflow: hidden;
}
.guide-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s var(--ease);
}
.guide-card:hover .guide-photo img { transform: scale(1.03); }

.guide-info {
  padding: 1.5rem;
  border-top: 2px solid var(--gold);
}
.guide-info h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.2rem;
}
.guide-credential {
  display: block;
  font-family: var(--font-body);
  font-style: italic;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
}
.guide-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.guide-desc--placeholder {
  font-style: italic;
  color: rgba(140, 136, 128, 0.45);
  border: 1px dashed rgba(196, 154, 42, 0.25);
  padding: 0.65rem 0.85rem;
  border-radius: 4px;
}

/* ============================================================
   DOGS
   ============================================================ */
.dogs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.dog-card { background: var(--dark-alt); overflow: hidden; border-radius: 10px; transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease); }
.dog-card:hover { transform: translateY(-5px); box-shadow: 0 18px 42px rgba(0,0,0,0.55); }

.dog-photo { height: clamp(280px, 28vw, 500px); overflow: hidden; }
.dog-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s var(--ease);
}
.dog-card:hover .dog-photo img { transform: scale(1.04); }

.dog-info {
  padding: 1.25rem 1.5rem;
  border-top: 2px solid var(--gold);
}
.dog-info h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #050604;
  padding-top: clamp(3.5rem, 8vw, 6rem);
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid var(--border);
}

.footer-logo-img {
  height: 110px;
  width: auto;
  filter: invert(1);
  margin-bottom: 0.75rem;
  display: block;
}
.footer-tagline {
  font-family: var(--font-head);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.footer-brand p:last-child {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.footer h4 {
  font-family: var(--font-head);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-phone {
  display: block;
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}
.footer-phone:hover { color: var(--gold); }
.footer-email {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  transition: color 0.2s;
}
.footer-email:hover { color: var(--gold); }
.footer-note { font-size: 0.85rem; color: var(--text-muted); }

.footer-links ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }

.social-links { display: flex; flex-direction: column; gap: 1rem; }
.social-links a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-head);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
}
.social-links a:hover { color: var(--gold); }
.social-links svg { flex-shrink: 0; }

.footer-bottom {
  padding-block: 1.5rem;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

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

/* Tablet — 1024px
   Keep gallery at 4 columns (28 row-spans / 4 = 7 rows, gap-free).
   A 3-column grid breaks the math (28 / 3 ≠ integer → blank cells).
   ------------------------------------------------------------ */
@media (max-width: 1024px) {
  .info-grid   { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

/* Tablet / narrow desktop — 1024px
   ------------------------------------------------------------ */
@media (max-width: 1024px) {

  /* — Nav — */
  .nav-links { gap: 1.1rem; }

  /* — Footer: 2×2 instead of 4 columns — */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }

  /* — Info grid: 2-col instead of 4 — */
  .info-grid { grid-template-columns: repeat(2, 1fr); }

  /* — Guides / Dogs: 2-col instead of 3 — */
  .guides-grid { grid-template-columns: repeat(2, 1fr); }
  .dogs-grid   { grid-template-columns: repeat(2, 1fr); }

  /* — Hunt cards: 2-col — */
  .hunt-cards { grid-template-columns: repeat(2, 1fr); }

  /* — Turkey grid: stack — */
  .turkey-grid { grid-template-columns: 1fr; }
  .turkey-img-main { height: clamp(280px, 40vw, 480px); }

  /* — About: stack — */
  .about-grid { grid-template-columns: 1fr; }
  .about-image { order: -1; }
  .about-image img { height: clamp(280px, 40vw, 400px); }

  /* — Hunt overview: stack — */
  .hunt-overview-grid { grid-template-columns: 1fr; }
}

/* Nav hamburger — 900px
   ------------------------------------------------------------ */
@media (max-width: 900px) {

  /* — Nav — */
  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 2.5rem;
    background: var(--black);
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    z-index: 99;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a    { font-size: 1.5rem; }
  .nav-cta        { padding: 0.75rem 2rem !important; }
}

/* Mobile — 768px
   ------------------------------------------------------------ */
@media (max-width: 768px) {

  .hero--triptych .hero-panel--side { display: none; }

  /* — Hero — */
  .hero-actions             { flex-direction: row; justify-content: center; gap: 0.5rem; }
  .hero-actions .btn        { flex: 1 1 0; min-width: 0; justify-content: center; padding: 0.6rem 0.75rem; font-size: 0.78rem; }

  /* — Hunt overview — */
  .hunt-overview-grid      { grid-template-columns: 1fr; }
  .hunt-overview-img       { height: 240px; }

  /* — About — */
  .about-grid              { grid-template-columns: 1fr; }
  .about-image             { order: -1; }
  .about-image img         { height: 300px; }
  .about-credentials       { grid-template-columns: 1fr; }

  /* — Hunts — */
  .hunt-cards              { grid-template-columns: 1fr; }
  .hunt-card-img           { height: 220px; }
  .hunt-card-body          { padding: 1.25rem; }

  /* — Info cards — */
  .info-grid               { grid-template-columns: 1fr; }
  .info-card               { padding: 1.5rem 1.25rem; }

  /* — Hunt info (Option C) — */
  .hunt-info-cols,
  .hunt-info-cols--three   { grid-template-columns: 1fr; gap: 1.5rem; }
  .hunt-price-amount       { font-size: 2.75rem; }
  .turkey-pkg-sep          { display: none; }
  .hunt-price-row--turkey  { gap: 1.5rem; }
  .turkey-pkg-opt:last-child { text-align: left; align-items: flex-start; }

  /* — Section CTA — */
  .section-cta {
    display: flex;
    justify-content: center;
  }
  .section-cta .btn {
    display: inline-flex;
    justify-content: center;
    white-space: normal;
    max-width: calc(100% - 2rem);
  }

  /* — Turkey — */
  .turkey-grid             { grid-template-columns: 1fr; }
  .turkey-images           { display: block; }
  .turkey-img-main         { height: auto; }
  .turkey-packages         { grid-template-columns: 1fr; }
  .turkey-content .btn     { display: flex; justify-content: center; white-space: normal; width: 100%; }

  /* — Gallery: 2-col preserves tall/flat masonry (18 spans / 2 cols = 9 rows) — */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 33vw;
    gap: 4px;
  }
  .gallery-item--wide { grid-column: span 1; }

  /* — Guides — */
  .guides-grid             { grid-template-columns: 1fr; }
  .guide-photo             { height: auto; aspect-ratio: 3/4; }
  .guide-info              { text-align: center; }
  .guide-card:nth-child(1) .guide-photo img  { object-position: 50% 25%; }
  .guide-card:nth-child(2) .guide-photo img,
  .guide-card:nth-child(3) .guide-photo img  { object-position: 50% 45%; }

  /* — Dogs — */
  .dogs-grid               { grid-template-columns: 1fr; }
  .dog-photo               { height: auto; aspect-ratio: 3/4; }

  /* — Lodge — */
  .lodge-video             { max-height: 280px; }

  /* — Turkey dual-button — */
  .turkey-content .btn-group { flex-direction: column; }

  /* — Footer — */
  .footer-grid             { grid-template-columns: 1fr; gap: 2rem; }
}

/* Small phones — 480px
   ------------------------------------------------------------ */
@media (max-width: 480px) {
  .hero-title { font-size: 2.75rem; }

  /* Tighten row height on small phones — tall items still span 2 rows */
  .gallery-grid { grid-auto-rows: 33vw; }

  .guide-photo  { aspect-ratio: 3/4; }
  .dog-photo    { aspect-ratio: 3/4; }

  .package       { padding: 1.1rem; }
  .package-price { font-size: 1.2rem; }
}

/* Accessibility — reduced motion
   ------------------------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero-title,
  .hero-eyebrow,
  .hero-sub,
  .hero-actions { animation: none; opacity: 1; transform: none; }
  .hero-scroll  { animation: none; }
}
