/* ============================================================
   /the-shooting/ — page-specific styles
   Inherits tokens + components from /style.css
   ============================================================ */

/* ---------- PULL QUOTE ------------------------------------ */
.pull-quote {
  padding: clamp(3rem, 8%, 7rem) clamp(2rem, 10%, 8rem);
  max-width: 90ch;
  margin-inline: auto;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  line-height: 1.7;
  color: var(--ink-700);
}

/* ---------- LODGE INTRO COLS (gamebird section) ----------- */
.lodge-intro-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 5vw, 4rem);
}

@media (min-width: 768px) {
  .lodge-intro-cols {
    grid-template-columns: 1.1fr 1fr;
    align-items: start;
    gap: clamp(3rem, 6vw, 6rem);
  }
}

.lodge-intro-cols .intro-head h2 {
  max-width: none;
}

.lodge-intro-cols .intro-body .lodge-prose p {
  font-weight: 300;
}

/* ---------- LODGE FACTS (gamebird stats row) -------------- */
.lodge-facts {
  list-style: none;
  margin: var(--space-4, 32px) 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
}

.lodge-facts li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 0;
  font-family: var(--font-body, "Open Sans", sans-serif);
  font-size: var(--fs-eyebrow, 0.8125rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--copper-500, #8a4f29);
  white-space: nowrap;
}

.lodge-facts li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-500, #c9a227);
  flex-shrink: 0;
}

/* ---------- GAMEBIRD SLIDER ------------------------------- */
.rooms-slider-wrap {
  margin-top: var(--space-8, 64px);
  position: relative;
}

#gamebird-gallery .rooms-slider-wrap {
  margin-top: 0;
}

.rooms-track {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.rooms-track::-webkit-scrollbar {
  display: none;
}

.rooms-track button {
  flex: 0 0 clamp(280px, 30vw, 480px);
  height: clamp(240px, 28vw, 340px);
  position: relative;
  padding: 0;
  border: none;
  cursor: pointer;
  overflow: hidden;
  background: var(--ink-900, #0f0d0a);
  scroll-snap-align: start;
  flex-shrink: 0;
}

.rooms-track button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--duration-slow, 600ms) var(--ease-luxury, cubic-bezier(0.25,0.1,0.1,1));
}

.rooms-track button:hover img {
  transform: scale(1.05);
}

.rooms-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 0.75rem;
  pointer-events: none;
  z-index: 2;
}

.rooms-nav .rec-arrow {
  pointer-events: auto;
}

.rec-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--bone-50, #faf7f1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 200ms, border-color 200ms;
}

.rec-arrow:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.65);
}

.rooms-nav-dark {
  border-color: rgba(255, 255, 255, 0.35) !important;
  color: rgba(255, 255, 255, 0.85) !important;
  background: rgba(15, 13, 10, 0.28) !important;
  backdrop-filter: blur(4px);
}

.rooms-nav-dark:hover {
  background: rgba(15, 13, 10, 0.6) !important;
  border-color: rgba(255, 255, 255, 0.65) !important;
  color: #fff !important;
}

.pg-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  border: none;
  background: none;
  display: block;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-xs, 3px);
}

.pg-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--duration-slow, 600ms) var(--ease-luxury, cubic-bezier(0.25,0.1,0.1,1));
}

.pg-item:hover img {
  transform: scale(1.05);
}

#gamebird-gallery .rooms-track .pg-item {
  aspect-ratio: unset;
  height: clamp(240px, 28vw, 380px);
  border-radius: 0;
  flex: 0 0 clamp(300px, 33vw, 520px);
}

/* ---------- LIGHTBOX MODAL -------------------------------- */
.photo-modal {
  border: none;
  padding: 0;
  background: rgba(8, 6, 3, 0.97);
  width: 100vw;
  max-width: 100vw;
  height: 100dvh;
  max-height: 100dvh;
  margin: 0;
  position: fixed;
  inset: 0;
  outline: none;
}

.photo-modal::backdrop {
  background: transparent;
}

.photo-modal[open] {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.pm-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(250, 247, 241, 0.1);
  border: 1px solid rgba(250, 247, 241, 0.22);
  color: var(--bone-50, #faf7f1);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.pm-stage {
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 2vw, 1.5rem);
  width: 100%;
  padding: 0 clamp(0.5rem, 2vw, 2rem);
  flex: 1;
  min-height: 0;
}

.pm-img {
  flex: 1;
  min-width: 0;
  max-width: 100%;
  max-height: calc(100dvh - 90px);
  object-fit: contain;
  display: block;
}

.pm-arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--bone-50, #faf7f1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Variante sobre oscuro plano: el hover faltaba aca y estaba en los
   lodges. Mismos valores que .rec-arrow y .pm-arrow del resto. */
.pm-arrow:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.65);
}

.pm-counter {
  font-size: var(--fs-eyebrow, 0.8125rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250, 247, 241, 0.45);
  padding-bottom: 0.75rem;
}

/* ---------- THE SEASON ------------------------------------ */
#the-season {
  background: var(--surface);
  padding-block: clamp(3rem, 8vw, 7rem);
}

.season-intro {
  margin-block: var(--space-5);
  max-width: 70ch;
  color: var(--bone-600, #4f4636);
  font-size: 1.1rem;
  line-height: 1.7;
}

.season-grid {
  display: grid;
  gap: var(--space-5);
  margin-top: var(--space-8);
}

@media (min-width: 55rem) {
  .season-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.season-card {
  padding: var(--space-6);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 2px;
}

@media (min-width: 55rem) {
  .season-card--wide {
    grid-column: 1 / -1;
  }
}

.season-badge {
  /* Cuarta variante de la etiqueta del sistema: misma base que
     .hero-pill / .lodge-badge / .shooting-stat, composición de color
     propia (bone-200 sobre claro, texto dorado). Antes era cuadrada de
     2px, 12px y peso 700 — la única que no seguía la regla. */
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body, "Open Sans", sans-serif);
  font-size: var(--fs-eyebrow, 0.8125rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3em 0.9em;
  border-radius: var(--radius-pill, 9999px);
  border: 1px solid var(--bone-300, #c9bea7);
  white-space: nowrap;
  color: var(--gold-700, #7e6207);
  background: var(--bone-100, #f3ece0);
  margin-bottom: var(--space-3, 24px);
}

.season-card h3 {
  margin-bottom: var(--space-3);
  font-size: var(--fs-h4);
  color: var(--ink-900);
}

.season-card p {
  color: var(--bone-600, #4f4636);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ---------- DAY-IN-FIELD OVERLAY (wide-section) ----------- */
.day-overlay {
  position: relative;
  z-index: 1;
  max-width: 38rem;
  padding: var(--space-6);
  margin-inline: auto 0;
  text-align: right;
}

@media (min-width: 55rem) {
  /* Override wide-section shadow DOM place-content: center so content goes right */
  #a-day-in-the-field {
    justify-content: end;
  }
  .day-overlay {
    justify-self: end;
    margin-inline: auto 0;
    padding: 0;
    text-align: right;
  }
}

.day-overlay h2 {
  color: #fff;
  margin-block: var(--space-4);
}

.day-overlay .eyebrow {
  color: var(--gold-300);
}

.day-overlay p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--space-5);
  line-height: 1.7;
}

/* ---------- DAY SCHEDULE ---------------------------------- */
.day-schedule {
  display: grid;
  gap: var(--space-6);
  padding-block: var(--space-4);
}

@media (min-width: 55rem) {
  .day-schedule {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
  }
}

.schedule-item {
  border-top: 2px solid var(--gold-500);
  padding-top: var(--space-4);
}

.schedule-time {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-700);
  margin-bottom: var(--space-2);
}

.schedule-item h3 {
  font-size: var(--fs-h4);
  margin-bottom: var(--space-3);
  color: var(--ink-900);
}

.schedule-item p {
  color: var(--bone-600, #4f4636);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ---------- TWO-GUN SYSTEM (hunt-split pattern) ----------- */
.hunt-split {
  background: var(--bone-50, #faf7f1);
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .hunt-split {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    min-height: 78vh;
  }
}

.hunt-media {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 56vh;
}

.hunt-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--duration-slow, 600ms) var(--ease-luxury, cubic-bezier(0.25,0.1,0.1,1));
}

.hunt-media:hover img {
  transform: scale(1.05);
}

.hunt-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 6vw, 5.5rem) clamp(2.5rem, 4vw, 4rem) clamp(3rem, 6vw, 5.5rem) clamp(1.5rem, 4.5vw, 4.5rem);
}

.lodge-head {
  max-width: 56ch;
  margin-bottom: var(--space-3, 24px);
}

.lodge-head h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.625rem, 2.2vw, 2.5rem);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-heading);
  margin: 0.75rem 0 0;
}

.lodge-prose p {
  font-family: var(--font-body);
  font-size: var(--fs-body-lg, 1.05rem);
  line-height: var(--lh-body, 1.7);
  font-weight: 400;
  color: var(--bone-600, #4f4636);
  max-width: 62ch;
}

.lodge-prose p + p {
  margin-top: 1.25rem;
}

/* ---------- ALL SKILL LEVELS HERO ------------------------- */
.skills-hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-content: center;
  overflow: hidden;
  padding: clamp(4rem, 10vw, 8rem) clamp(1.5rem, 6vw, 5rem);
}

.skills-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.skills-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 40%, rgba(0, 0, 0, 0.65) 100%);
  z-index: 1;
}

.skills-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  animation: skills-kenburns 20s cubic-bezier(0.76, 0, 0.24, 1) infinite alternate;
}

@keyframes skills-kenburns {
  from { transform: scale(1.02) translate(0, 0); }
  to   { transform: scale(1.12) translate(-1%, -2%); }
}

.skills-hero .skill-overlay {
  position: relative;
  z-index: 2;
}

/* ---------- EQUIPMENT GRID -------------------------------- */
.equipment-grid {
  display: grid;
  gap: var(--space-6);
  margin-top: var(--space-8);
}

@media (min-width: 55rem) {
  .equipment-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
  }
}

.equipment-item {
  padding-top: var(--space-4);
  border-top: 1px solid var(--border);
}

.equipment-item h3 {
  font-size: var(--fs-h4);
  color: var(--ink-900);
  margin-bottom: var(--space-3);
}

.equipment-item p {
  color: var(--bone-600, #4f4636);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ---------- PHOTO SPLIT ----------------------------------- */
.photo-split {
  display: grid;
  height: 60vh;
}

@media (min-width: 55rem) {
  .photo-split {
    grid-template-columns: 2fr 1fr;
    height: 100vh;
  }
}

.photo-split-main {
  overflow: hidden;
}

.photo-split-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-split-stack {
  display: grid;
  grid-template-rows: 1fr 1fr;
}

.photo-split-stack picture {
  overflow: hidden;
}

.photo-split-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---------- SKILL LEVELS OVERLAY ------------------------- */
.skill-overlay {
  position: relative;
  z-index: 1;
  padding: clamp(2.5rem, 6vw, 5rem);
  max-width: 80rem;
  width: 100%;
}

.skill-overlay h2 {
  color: #fff;
  margin-block: var(--space-4);
}

.skill-overlay .eyebrow {
  color: var(--gold-300);
}

.skill-overlay .lodge-rule {
  background: var(--gold-500);
  opacity: 0.5;
}

.skill-cols {
  display: grid;
  gap: var(--space-8);
  margin-top: var(--space-8);
}

@media (min-width: 55rem) {
  .skill-cols {
    grid-template-columns: 1fr 1fr;
  }
}

.skill-cols h3 {
  color: var(--gold-300);
  font-size: var(--fs-h4);
  margin-bottom: var(--space-3);
}

.skill-cols p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.75;
  font-size: 0.95rem;
}

/* ---------- GALLERY SECTION ------------------------------- */
.gallery-section {
  padding-block: var(--space-8);
  background: var(--bone-100);
  text-align: center;
}

.gallery-section snap-carousel {
  height: 80vh;
  height: 80svh;
  margin-top: var(--space-4);
}

.gallery-section details summary {
  list-style: none;
  cursor: pointer;
}

.gallery-section details summary::-webkit-details-marker {
  display: none;
}

/* ---------- FAQs ----------------------------------------- */
#faqs {
  background: var(--ink-900, #0f0d0a);
  color: var(--bone-50, #faf7f1);
  padding-block: clamp(4rem, 9vw, 8rem);
}

#faqs .eyebrow {
  color: var(--gold-300);
}

#faqs h2 {
  color: var(--bone-50, #faf7f1);
}

#faqs .lodge-rule {
  background: var(--gold-500);
  opacity: 0.5;
}
