:root {
  --ink: #111815;
  --ink-2: #25302b;
  --pine: #234139;
  --moss: #5f7c62;
  --clay: #a15f42;
  --brass: #c7a85f;
  --stone: #f3f0e8;
  --paper: #fffdf7;
  --muted: #738078;
  --line: rgba(17, 24, 21, 0.14);
  --shadow: 0 24px 80px rgba(17, 24, 21, 0.18);
  --max: 1180px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-140%);
  background: var(--paper);
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  padding: 0.7rem 1rem;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 253, 247, 0.95);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 12px 34px rgba(17, 24, 21, 0.08);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(var(--max), calc(100vw - 32px));
  height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 52px;
  height: 44px;
  border: 1px solid rgba(255, 253, 247, 0.34);
  border-radius: 50%;
  background: rgba(17, 24, 21, 0.72);
  color: var(--brass);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.site-header.is-scrolled .brand-mark {
  border-color: rgba(17, 24, 21, 0.12);
  background: var(--ink);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--paper);
  font-size: 0.98rem;
}

.brand small {
  color: rgba(255, 253, 247, 0.7);
  font-size: 0.74rem;
}

.site-header.is-scrolled .brand strong {
  color: var(--ink);
}

.site-header.is-scrolled .brand small {
  color: var(--muted);
}

.site-menu {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  color: rgba(255, 253, 247, 0.86);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-header.is-scrolled .site-menu {
  color: var(--ink-2);
}

.site-menu a {
  position: relative;
}

.site-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.42rem;
  height: 2px;
  transform: scaleX(0);
  background: var(--brass);
  transform-origin: left;
  transition: transform 160ms ease;
}

.site-menu a:hover::after,
.site-menu a:focus-visible::after {
  transform: scaleX(1);
}

.nav-phone {
  border: 1px solid rgba(255, 253, 247, 0.28);
  border-radius: 999px;
  padding: 0.72rem 1rem;
}

.site-header.is-scrolled .nav-phone {
  border-color: var(--line);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 253, 247, 0.24);
  border-radius: 50%;
  background: rgba(17, 24, 21, 0.64);
  color: var(--paper);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  padding: 118px 0 42px;
  overflow: hidden;
  color: var(--paper);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background:
    image-set(
      url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1600&q=82") 1x,
      url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=2400&q=80") 2x
    )
    center / cover no-repeat;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(11, 16, 14, 0.88) 0%, rgba(11, 16, 14, 0.62) 44%, rgba(11, 16, 14, 0.12) 100%),
    linear-gradient(0deg, rgba(11, 16, 14, 0.78), rgba(11, 16, 14, 0.18) 55%, rgba(11, 16, 14, 0.54));
}

.hero-content,
.hero-panel,
.hero-trophy {
  position: relative;
  width: min(var(--max), calc(100vw - 32px));
  margin: 0 auto;
}

.hero-content {
  max-width: 760px;
  margin-bottom: 52px;
  margin-left: max(16px, calc((100vw - var(--max)) / 2));
}

.hero-trophy {
  position: absolute;
  right: max(16px, calc((100vw - var(--max)) / 2));
  top: 136px;
  width: min(32vw, 430px);
  height: min(52vh, 520px);
  min-height: 390px;
  border: 1px solid rgba(255, 253, 247, 0.2);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 34px 90px rgba(17, 24, 21, 0.32);
}

.hero-trophy img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-trophy::after {
  content: "Featured trophy species";
  position: absolute;
  left: 0.9rem;
  bottom: 0.9rem;
  border: 1px solid rgba(255, 253, 247, 0.28);
  border-radius: 999px;
  background: rgba(17, 24, 21, 0.72);
  color: var(--paper);
  padding: 0.42rem 0.68rem;
  font-size: 0.76rem;
  font-weight: 850;
}

.eyebrow,
.section-kicker {
  margin: 0 0 0.75rem;
  color: var(--brass);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 740px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 6.6vw, 5.7rem);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 680px;
  margin: 1.35rem 0 0;
  color: rgba(255, 253, 247, 0.84);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.82rem 1.18rem;
  font-weight: 850;
  line-height: 1;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--brass);
  color: #151410;
}

.button-ghost {
  border-color: rgba(255, 253, 247, 0.34);
  color: var(--paper);
  background: rgba(255, 253, 247, 0.08);
}

.hero-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(255, 253, 247, 0.16);
  background: rgba(17, 24, 21, 0.58);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero-panel div {
  padding: 1.25rem;
}

.hero-panel div + div {
  border-left: 1px solid rgba(255, 253, 247, 0.14);
}

.hero-panel strong,
.hero-panel span {
  display: block;
}

.hero-panel strong {
  margin-bottom: 0.35rem;
  font-size: 1rem;
}

.hero-panel span {
  color: rgba(255, 253, 247, 0.72);
  font-size: 0.92rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(var(--max), calc(100vw - 32px));
  margin: -24px auto 0;
  position: relative;
  z-index: 2;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 22px 60px rgba(17, 24, 21, 0.1);
}

.trust-item {
  padding: 1.25rem;
}

.trust-item + .trust-item {
  border-left: 1px solid var(--line);
}

.trust-item strong,
.trust-item span {
  display: block;
}

.trust-item span {
  margin-top: 0.28rem;
  color: var(--muted);
  font-size: 0.94rem;
}

.section {
  width: min(var(--max), calc(100vw - 32px));
  margin: 0 auto;
  padding: 96px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.48fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 2.25rem;
}

.section h2,
.feature-copy h2 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.section-heading p,
.split-layout p,
.feature-copy p,
.lodge-copy p,
.quote-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.92fr);
  gap: 3rem;
  align-items: start;
}

.split-layout h2 {
  margin-bottom: 1.1rem;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.proof-card,
.hunt-card,
.destination-card,
.contact-card,
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffaf0;
}

.proof-card {
  min-height: 230px;
  padding: 1.05rem;
}

.proof-card span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 1.4rem;
  border-radius: 50%;
  background: var(--pine);
  color: var(--paper);
  font-size: 0.78rem;
  font-weight: 850;
}

.proof-card strong,
.hunt-card strong,
.destination-card strong {
  display: block;
  color: var(--ink);
  font-size: 1rem;
}

.proof-card p {
  margin: 0.55rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}

.tab {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--ink-2);
  padding: 0.68rem 0.92rem;
  font-size: 0.9rem;
  font-weight: 800;
  cursor: pointer;
}

.tab.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}

.hunt-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.hunt-card {
  overflow: hidden;
}

.card-click {
  display: block;
  height: 100%;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease;
}

.card-click:hover,
.card-click:focus-visible {
  border-color: rgba(161, 95, 66, 0.45);
  box-shadow: 0 18px 46px rgba(17, 24, 21, 0.12);
  transform: translateY(-3px);
}

.hunt-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.hunt-body {
  padding: 1.05rem;
}

.hunt-meta,
.destination-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0.8rem 0;
}

.pill {
  border: 1px solid rgba(35, 65, 57, 0.14);
  border-radius: 999px;
  background: rgba(95, 124, 98, 0.11);
  color: var(--pine);
  padding: 0.32rem 0.58rem;
  font-size: 0.74rem;
  font-weight: 850;
}

.hunt-card p,
.destination-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.card-link {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--clay);
  font-weight: 850;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  min-height: 620px;
  background: var(--stone);
}

.feature-image {
  min-height: 520px;
  background:
    linear-gradient(0deg, rgba(17, 24, 21, 0.08), rgba(17, 24, 21, 0.08)),
    url("https://upload.wikimedia.org/wikipedia/commons/thumb/3/3c/Axis_deer_and_blackbucks_in_ZooParc_de_Beauval_-_452.jpg/1280px-Axis_deer_and_blackbucks_in_ZooParc_de_Beauval_-_452.jpg") center / cover no-repeat;
}

.feature-copy {
  align-self: center;
  padding: 4rem clamp(1.5rem, 5vw, 5rem);
}

.feature-copy h2 {
  margin-bottom: 1rem;
}

.check-list {
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--ink-2);
  margin: 0.74rem 0;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clay);
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.destination-card {
  overflow: hidden;
  min-height: 348px;
}

.destination-card img {
  height: 170px;
  width: 100%;
  object-fit: cover;
}

.destination-body {
  padding: 1rem;
}

.lodge-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 0.78fr);
  gap: 3rem;
  align-items: center;
}

.lodge-copy h2,
.quote-copy h2 {
  margin-bottom: 1rem;
}

.amenities {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.amenities div {
  min-height: 150px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  background: var(--stone);
}

.amenities strong,
.amenities span {
  display: block;
}

.amenities span {
  margin-top: 0.5rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.lodge-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.lodge-gallery img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius);
}

.lodge-gallery img:first-child {
  grid-column: 1 / -1;
  height: 300px;
}

.index-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.index-shell {
  display: grid;
  grid-template-columns: minmax(240px, 0.34fr) minmax(0, 1fr);
  gap: 1rem;
}

.index-meter {
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--paper);
  padding: 1.2rem;
}

.index-meter span {
  display: block;
  color: var(--brass);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4rem;
  line-height: 1;
}

.index-meter strong {
  display: block;
  margin-top: 0.35rem;
}

.index-meter p {
  margin: 1rem 0 0;
  color: rgba(255, 253, 247, 0.68);
  font-size: 0.92rem;
}

.index-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.index-link {
  display: grid;
  gap: 0.25rem;
  min-height: 92px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffaf0;
  padding: 0.85rem;
}

.index-link strong {
  font-size: 0.94rem;
}

.index-link span {
  color: var(--muted);
  font-size: 0.78rem;
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(430px, 0.82fr);
  gap: 3rem;
  align-items: start;
}

.contact-card {
  display: grid;
  gap: 0.35rem;
  margin-top: 1.5rem;
  padding: 1rem;
}

.contact-card a {
  color: var(--clay);
  font-weight: 850;
}

.hunt-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--stone);
  padding: 1rem;
}

.hunt-form label {
  display: grid;
  gap: 0.35rem;
  color: var(--ink-2);
  font-size: 0.87rem;
  font-weight: 850;
}

.hunt-form input,
.hunt-form select,
.hunt-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(17, 24, 21, 0.16);
  border-radius: 6px;
  background: var(--paper);
  color: var(--ink);
  padding: 0.78rem 0.82rem;
  font-weight: 500;
}

.hunt-form textarea {
  resize: vertical;
}

.span-2 {
  grid-column: 1 / -1;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--pine);
  font-weight: 800;
}

.form-status[data-state="error"] {
  color: #9b3d2d;
}

.form-status[data-state="loading"] {
  color: var(--muted);
}

.hunt-form button:disabled {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}

.hunt-form .form-trap {
  position: absolute;
  width: 1px;
  min-height: 1px;
  height: 1px;
  margin: 0;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
}

.faq-list {
  display: grid;
  gap: 0.7rem;
}

.faq-item {
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--ink);
  padding: 1rem;
  text-align: left;
  font-weight: 850;
  cursor: pointer;
}

.faq-question span {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--stone);
  color: var(--clay);
}

.faq-answer {
  display: none;
  padding: 0 1rem 1rem;
  color: var(--muted);
}

.faq-item.is-open .faq-answer {
  display: block;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  width: min(var(--max), calc(100vw - 32px));
  margin: 0 auto;
  padding: 2.4rem 0;
  border-top: 1px solid var(--line);
}

.brand-footer .brand-mark {
  border-color: rgba(17, 24, 21, 0.12);
  background: var(--ink);
}

.brand-footer strong {
  color: var(--ink);
}

.brand-footer small {
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--ink-2);
  font-weight: 800;
}

.page-header {
  position: sticky;
}

.page-header .brand strong {
  color: var(--ink);
}

.page-header .brand small {
  color: var(--muted);
}

.page-header .site-menu {
  color: var(--ink-2);
}

.page-main {
  background: var(--paper);
}

.page-hero {
  position: relative;
  min-height: 660px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--paper);
  padding: 160px 0 72px;
}

.page-hero-bg,
.page-hero-shade {
  position: absolute;
  inset: 0;
}

.page-hero-bg {
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.page-hero-shade {
  background:
    linear-gradient(90deg, rgba(11, 16, 14, 0.9), rgba(11, 16, 14, 0.58) 52%, rgba(11, 16, 14, 0.2)),
    linear-gradient(0deg, rgba(11, 16, 14, 0.76), rgba(11, 16, 14, 0.18));
}

.page-hero-inner {
  position: relative;
  width: min(var(--max), calc(100vw - 32px));
  margin: 0 auto;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1.6rem;
  border: 1px solid rgba(255, 253, 247, 0.24);
  border-radius: 999px;
  background: rgba(255, 253, 247, 0.08);
  color: rgba(255, 253, 247, 0.82);
  padding: 0.54rem 0.76rem;
  font-size: 0.82rem;
  font-weight: 850;
}

.page-hero h1 {
  max-width: 900px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 6.2rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.page-lede {
  max-width: 760px;
  margin: 1.3rem 0 0;
  color: rgba(255, 253, 247, 0.84);
  font-size: clamp(1.04rem, 1.6vw, 1.28rem);
}

.page-section {
  width: min(var(--max), calc(100vw - 32px));
  margin: 0 auto;
  padding: 74px 0;
}

.page-section + .page-section {
  border-top: 1px solid var(--line);
}

.page-section h2 {
  max-width: 860px;
  margin: 0 0 1rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4.4vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.page-copy,
.page-section > p {
  max-width: 780px;
  margin: 0 0 1.4rem;
  color: var(--muted);
  font-size: 1.06rem;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.detail-card,
.mini-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffaf0;
  padding: 1.05rem;
}

.detail-card {
  min-height: 280px;
}

.detail-card span {
  display: block;
  margin-bottom: 1.2rem;
  color: var(--clay);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.detail-card strong,
.mini-card strong {
  display: block;
  color: var(--ink);
  font-size: 1.02rem;
}

.detail-card p,
.mini-card span {
  display: block;
  margin-top: 0.55rem;
  color: var(--muted);
  font-size: 0.94rem;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.mini-card {
  min-height: 132px;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease;
}

.mini-card:hover,
.mini-card:focus-visible {
  border-color: rgba(161, 95, 66, 0.45);
  box-shadow: 0 18px 46px rgba(17, 24, 21, 0.1);
  transform: translateY(-3px);
}

.page-list {
  display: grid;
  gap: 0.7rem;
  max-width: 820px;
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}

.page-list li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--ink-2);
}

.page-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clay);
}

.source-section {
  background: var(--stone);
  width: 100%;
  max-width: none;
  padding-left: max(16px, calc((100vw - var(--max)) / 2));
  padding-right: max(16px, calc((100vw - var(--max)) / 2));
}

.source-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.2rem;
}

.source-list a {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink-2);
  padding: 0.55rem 0.75rem;
  font-size: 0.84rem;
  font-weight: 800;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
    position: fixed;
    left: min(calc(100vw - 60px), 330px);
    right: auto;
    top: 17px;
    z-index: 32;
    border-color: rgba(255, 253, 247, 0.64);
    background: rgba(17, 24, 21, 0.86);
  }

  .site-menu {
    position: fixed;
    top: 78px;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    color: var(--ink);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      opacity 160ms ease,
      transform 160ms ease;
  }

  .site-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-menu a {
    padding: 0.95rem 1rem;
  }

  .site-menu a + a {
    border-top: 1px solid var(--line);
  }

  .site-menu a::after {
    display: none;
  }

  .nav-phone {
    border: 0;
    border-radius: 0;
  }

  .hero {
    min-height: 880px;
  }

  .hero-content {
    margin-bottom: 2rem;
  }

  .hero-panel,
  .trust-strip,
  .section-heading,
  .split-layout,
  .feature-band,
  .lodge-section,
  .index-shell,
  .quote-section {
    grid-template-columns: 1fr;
  }

  .hero-panel div + div,
  .trust-item + .trust-item {
    border-left: 0;
    border-top: 1px solid rgba(17, 24, 21, 0.12);
  }

  .hero-panel div + div {
    border-top-color: rgba(255, 253, 247, 0.14);
  }

  .proof-grid,
  .hunt-grid,
  .destination-grid,
  .index-list,
  .detail-grid,
  .mini-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-copy {
    padding: 3rem 16px;
  }

  .hero-trophy {
    display: none;
  }
}

@media (max-width: 640px) {
  .nav-shell {
    height: 70px;
  }

  .brand small {
    display: none;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .site-menu {
    top: 70px;
  }

  .hero {
    min-height: 900px;
    padding-top: 100px;
  }

  .hero h1 {
    max-width: min(330px, 100%);
    font-size: clamp(2.05rem, 9vw, 2.55rem);
    line-height: 0.98;
  }

  .hero-copy {
    max-width: min(330px, 100%);
    font-size: 0.98rem;
  }

  .eyebrow {
    max-width: 320px;
    font-size: 0.68rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-panel,
  .trust-strip,
  .proof-grid,
  .hunt-grid,
  .destination-grid,
  .amenities,
  .lodge-gallery,
  .index-list,
  .detail-grid,
  .mini-grid,
  .hunt-form {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 70px 0;
  }

  .hunt-card img {
    height: 200px;
  }

  .destination-card {
    min-height: auto;
  }

  .feature-image {
    min-height: 360px;
  }

  .lodge-gallery img,
  .lodge-gallery img:first-child {
    grid-column: auto;
    height: 220px;
  }

  .span-2 {
    grid-column: auto;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .page-hero {
    min-height: 620px;
    padding: 120px 0 56px;
  }

  .page-hero h1 {
    font-size: clamp(2.4rem, 12vw, 3.5rem);
  }

  .page-section {
    padding: 58px 0;
  }

  .detail-card {
    min-height: auto;
  }
}
