:root {
  --ink: #17261f;
  --muted: #65726b;
  --paper: #f6f3ea;
  --cream: #fffdf7;
  --forest: #244c3b;
  --forest-dark: #163429;
  --moss: #dce8d8;
  --orange: #ed6a2c;
  --orange-light: #f9d7c4;
  --line: rgba(23, 38, 31, .14);
  --white: #fff;
  --shadow: 0 24px 70px rgba(26, 45, 36, .14);
  --radius: 22px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: "DM Sans", system-ui, sans-serif; line-height: 1.6; -webkit-font-smoothing: antialiased; }
body.locked { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input { font: inherit; }
.container { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }
.skip-link { position: fixed; left: 12px; top: -60px; z-index: 200; padding: 10px 14px; background: var(--ink); color: white; border-radius: 8px; }
.skip-link:focus { top: 12px; }

.site-nav { position: absolute; z-index: 50; top: 0; left: 0; right: 0; color: white; }
.site-nav.solid { position: sticky; background: rgba(246, 243, 234, .94); color: var(--ink); border-bottom: 1px solid var(--line); backdrop-filter: blur(16px); }
.nav-inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 11px; font-weight: 800; letter-spacing: -.02em; }
.brand-mark { position: relative; width: 34px; height: 28px; }
.brand-mark::before, .brand-mark::after { content: ""; position: absolute; bottom: 2px; width: 22px; height: 22px; border-left: 3px solid currentColor; border-top: 3px solid currentColor; transform: rotate(45deg); border-radius: 2px; }
.brand-mark::before { left: 1px; }
.brand-mark::after { right: 0; width: 15px; height: 15px; opacity: .72; }
.brand small { display: block; font-size: 9px; line-height: 1; letter-spacing: .14em; text-transform: uppercase; opacity: .7; margin-top: 2px; }
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a { padding: 9px 11px; font-size: 14px; font-weight: 650; border-radius: 999px; }
.nav-links .lang-switch { padding: 7px 5px; font-size: 18px; line-height: 1; opacity: .9; filter: saturate(.8); }
.nav-links a:hover, .nav-links a:focus-visible { background: rgba(255,255,255,.13); outline: none; }
.solid .nav-links a:hover, .solid .nav-links a:focus-visible { background: rgba(36,76,59,.09); }
.nav-links .nav-cta { padding: 10px 17px; background: var(--orange); color: white; }
.nav-toggle { display: none; border: 0; background: transparent; color: inherit; padding: 8px; cursor: pointer; }
.nav-toggle span { display: block; width: 24px; height: 2px; margin: 5px 0; background: currentColor; }

.hero { position: relative; min-height: 760px; display: grid; align-items: end; overflow: hidden; color: white; background: var(--forest-dark); }
.hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(14,35,27,.86) 0%, rgba(14,35,27,.48) 55%, rgba(14,35,27,.18) 100%), linear-gradient(0deg, rgba(14,35,27,.7), transparent 55%), url("images/20251231_114829.jpg") 58% center / cover; }
.hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 70px; background: var(--paper); clip-path: polygon(0 58%, 23% 75%, 48% 45%, 72% 72%, 100% 36%, 100% 100%, 0 100%); }
.hero-content { position: relative; z-index: 2; padding: 170px 0 125px; }
.invite-pill { display: inline-flex; align-items: center; gap: 9px; border: 1px solid rgba(255,255,255,.35); background: rgba(255,255,255,.1); backdrop-filter: blur(8px); padding: 8px 13px; border-radius: 999px; font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.invite-pill::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #f6ad72; box-shadow: 0 0 0 4px rgba(246,173,114,.16); }
.hero h1 { max-width: 780px; margin: 24px 0 20px; font-family: "DM Serif Display", Georgia, serif; font-weight: 400; font-size: clamp(56px, 8.5vw, 108px); line-height: .92; letter-spacing: -.045em; }
.hero-lead { max-width: 650px; margin: 0; font-size: clamp(18px, 2vw, 22px); color: rgba(255,255,255,.82); }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: 34px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 48px; padding: 0 20px; border: 1px solid transparent; border-radius: 999px; font-weight: 750; cursor: pointer; transition: transform .2s, background .2s, border .2s; }
.button:hover { transform: translateY(-2px); }
.button.primary { background: var(--orange); color: white; box-shadow: 0 10px 30px rgba(237,106,44,.26); }
.button.ghost { border-color: rgba(255,255,255,.45); color: white; background: rgba(255,255,255,.08); }
.button.light { background: white; color: var(--forest-dark); }
.button.outline { border-color: var(--line); background: transparent; color: var(--ink); }
.hero-note { margin-top: 17px; font-size: 13px; color: rgba(255,255,255,.63); }

.quick-facts { position: relative; z-index: 5; margin-top: -55px; }
.fact-grid { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--cream); border: 1px solid rgba(23,38,31,.09); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.fact { padding: 26px 28px; border-right: 1px solid var(--line); }
.fact:last-child { border: 0; }
.fact-label { font-size: 11px; text-transform: uppercase; letter-spacing: .12em; font-weight: 800; color: var(--orange); }
.fact strong { display: block; margin-top: 4px; font-family: "DM Serif Display", Georgia, serif; font-size: 25px; font-weight: 400; line-height: 1.2; }
.fact span { display: block; margin-top: 4px; font-size: 13px; color: var(--muted); }

.section { padding: 105px 0; }
.section.compact { padding: 78px 0; }
.section.green { background: var(--forest); color: white; }
.section.cream { background: var(--cream); }
.eyebrow { margin-bottom: 12px; font-size: 12px; font-weight: 800; color: var(--orange); text-transform: uppercase; letter-spacing: .14em; }
.section h2, .page-head h1, .gate-card h1 { margin: 0; max-width: 760px; font-family: "DM Serif Display", Georgia, serif; font-weight: 400; font-size: clamp(42px, 5.5vw, 67px); line-height: 1; letter-spacing: -.035em; }
.section-intro { max-width: 660px; color: var(--muted); font-size: 18px; margin: 20px 0 0; }
.green .section-intro { color: rgba(255,255,255,.72); }
.split { display: grid; grid-template-columns: .82fr 1.18fr; gap: 84px; align-items: center; }
.split.reverse { grid-template-columns: 1.1fr .9fr; }
.prose p { color: var(--muted); font-size: 17px; }
.prose .pull { color: var(--ink); font-family: "DM Serif Display", Georgia, serif; font-size: 28px; line-height: 1.25; }
.photo-frame { position: relative; }
.photo-frame img { width: 100%; height: 570px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.photo-frame.tilt img { transform: rotate(1.5deg); }
.photo-caption { position: absolute; left: -22px; bottom: 26px; max-width: 260px; padding: 16px 18px; background: var(--cream); color: var(--ink); border-radius: 14px; box-shadow: 0 12px 35px rgba(0,0,0,.17); font-size: 14px; font-weight: 650; transform: rotate(-2deg); }

.rhythm-grid { margin-top: 52px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.rhythm-card { min-height: 305px; padding: 30px; border-radius: var(--radius); background: var(--cream); border: 1px solid var(--line); }
.rhythm-card:nth-child(2) { background: var(--moss); }
.rhythm-card:nth-child(3) { color: white; background: var(--forest-dark); }
.rhythm-num { display: flex; align-items: center; justify-content: space-between; color: var(--orange); font-size: 12px; text-transform: uppercase; letter-spacing: .12em; font-weight: 800; }
.rhythm-icon { font-size: 30px; }
.rhythm-card h3 { font-family: "DM Serif Display", Georgia, serif; font-size: 30px; font-weight: 400; line-height: 1.1; margin: 58px 0 12px; }
.rhythm-card p { color: var(--muted); margin: 0; }
.rhythm-card:nth-child(3) p { color: rgba(255,255,255,.7); }

.collage { display: grid; grid-template-columns: 1.3fr .7fr; grid-template-rows: 290px 290px; gap: 14px; margin-top: 48px; }
.collage a { position: relative; overflow: hidden; border-radius: var(--radius); }
.collage a:first-child { grid-row: 1 / 3; }
.collage img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s; }
.collage a:hover img { transform: scale(1.035); }
.collage-label { position: absolute; left: 18px; bottom: 18px; padding: 8px 12px; border-radius: 999px; background: rgba(255,255,255,.9); font-size: 12px; font-weight: 800; }

.location-panel { display: grid; grid-template-columns: 1.05fr .95fr; background: var(--forest-dark); color: white; border-radius: 30px; overflow: hidden; box-shadow: var(--shadow); }
.location-copy { padding: 64px; }
.location-copy p { color: rgba(255,255,255,.72); font-size: 17px; }
.location-copy h2 { font-size: clamp(42px, 5vw, 64px); }
.location-image { min-height: 560px; position: relative; }
.location-image img { width: 100%; height: 100%; object-fit: cover; }
.mini-facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin: 28px 0 32px; }
.mini-fact { padding: 14px 0; border-top: 1px solid rgba(255,255,255,.18); font-size: 14px; color: rgba(255,255,255,.65); }
.mini-fact strong { display: block; color: white; font-size: 17px; }
.kingcard-link { transition: color .2s; }
.kingcard-link:hover strong, .kingcard-link:focus-visible strong { color: #f2bd36; }
.kingcard-link:focus-visible { outline: 2px solid #f2bd36; outline-offset: 5px; }

.activity-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 45px; }
.activity { min-height: 240px; padding: 26px; border: 1px solid var(--line); border-radius: 18px; background: var(--cream); }
.activity span { font-size: 31px; }
.activity h3 { margin: 35px 0 8px; font-size: 19px; }
.activity p { margin: 0; color: var(--muted); font-size: 14px; }

.adventure-heading { display: grid; grid-template-columns: 1fr 390px; gap: 50px; align-items: end; }
.adventure-heading p { margin: 0 0 5px; color: var(--muted); font-size: 17px; }
.adventure-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 46px; }
.adventure-card { min-height: 330px; display: flex; flex-direction: column; padding: 30px; border-radius: var(--radius); border: 1px solid var(--line); background: var(--cream); transition: transform .25s, box-shadow .25s, border-color .25s; }
.adventure-card:hover, .adventure-card:focus-visible { transform: translateY(-5px); border-color: rgba(36,76,59,.3); box-shadow: 0 18px 45px rgba(26,45,36,.12); outline: none; }
.adventure-card.featured { background: var(--forest); color: white; border-color: transparent; }
.adventure-card.relaxed { background: var(--moss); }
.adventure-top { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.adventure-number { font-family: "DM Serif Display", Georgia, serif; font-size: 26px; color: var(--orange); }
.adventure-type { padding: 6px 10px; border-radius: 999px; background: rgba(36,76,59,.09); color: var(--forest); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.featured .adventure-type { color: white; background: rgba(255,255,255,.13); }
.adventure-card h3 { margin: 48px 0 10px; font-family: "DM Serif Display", Georgia, serif; font-size: 32px; font-weight: 400; line-height: 1.05; }
.adventure-card p { margin: 0; color: var(--muted); }
.featured p { color: rgba(255,255,255,.7); }
.adventure-meta { display: flex; flex-wrap: wrap; gap: 7px; margin-top: auto; padding-top: 24px; }
.adventure-meta span { padding: 6px 9px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: 11px; font-weight: 750; }
.featured .adventure-meta span { color: rgba(255,255,255,.8); border-color: rgba(255,255,255,.2); }
.adventure-open { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 18px; padding-top: 15px; border-top: 1px solid var(--line); color: var(--forest); font-size: 13px; font-weight: 800; }
.adventure-open span { font-size: 20px; transition: transform .2s; }
.adventure-card:hover .adventure-open span { transform: translateX(4px); }
.featured .adventure-open { color: white; border-color: rgba(255,255,255,.18); }
.adventure-note { max-width: 760px; margin: 22px 0 0; color: var(--muted); font-size: 12px; }

.adventure-page { background: var(--paper); }
.adventure-hero { position: relative; min-height: 590px; display: grid; align-items: end; color: white; background: var(--forest-dark); overflow: hidden; }
.adventure-hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(12,31,24,.9), rgba(12,31,24,.48) 58%, rgba(12,31,24,.18)), var(--adventure-image) center / cover; }
.adventure-hero::after { content: ""; position: absolute; inset: auto 0 -1px; height: 52px; background: var(--paper); clip-path: polygon(0 68%, 25% 42%, 51% 70%, 76% 40%, 100% 62%, 100% 100%, 0 100%); }
.adventure-hero-inner { position: relative; z-index: 1; padding: 160px 0 105px; }
.back-link { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 24px; color: rgba(255,255,255,.76); font-size: 13px; font-weight: 750; }
.back-link:hover { color: white; }
.adventure-hero h1 { max-width: 800px; margin: 10px 0 18px; font-family: "DM Serif Display", Georgia, serif; font-size: clamp(54px, 8vw, 94px); font-weight: 400; line-height: .94; letter-spacing: -.04em; }
.adventure-hero .lead { max-width: 680px; margin: 0; color: rgba(255,255,255,.8); font-size: clamp(18px, 2vw, 22px); }
.adventure-stats { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 28px; }
.adventure-stats span { padding: 7px 11px; border: 1px solid rgba(255,255,255,.24); border-radius: 999px; background: rgba(255,255,255,.08); backdrop-filter: blur(8px); font-size: 12px; font-weight: 750; }
.adventure-layout { display: grid; grid-template-columns: 1.15fr .85fr; gap: 80px; align-items: start; }
.adventure-copy h2 { margin: 0 0 18px; font-family: "DM Serif Display", Georgia, serif; font-size: clamp(38px, 4vw, 56px); font-weight: 400; line-height: 1; }
.adventure-copy p { color: var(--muted); font-size: 17px; }
.adventure-copy .pull { color: var(--ink); font-family: "DM Serif Display", Georgia, serif; font-size: 26px; line-height: 1.28; }
.planning-note { margin-top: 30px; padding: 22px 24px; border-left: 4px solid var(--orange); border-radius: 0 14px 14px 0; background: var(--cream); color: var(--muted); }
.planning-note strong { display: block; margin-bottom: 4px; color: var(--ink); }
.source-panel { padding: 30px; border-radius: var(--radius); background: var(--moss); }
.source-panel h2 { margin: 0 0 8px; font-family: "DM Serif Display", Georgia, serif; font-size: 32px; font-weight: 400; }
.source-panel > p { margin: 0 0 18px; color: var(--muted); font-size: 14px; }
.source-link { display: block; padding: 16px 0; border-top: 1px solid rgba(23,38,31,.13); }
.source-link strong { display: flex; justify-content: space-between; gap: 15px; color: var(--forest-dark); }
.source-link span { display: block; margin-top: 2px; color: var(--muted); font-size: 12px; }
.source-link:hover strong { color: var(--orange); }
.adventure-next { display: flex; align-items: center; justify-content: space-between; gap: 25px; padding: 38px 42px; border-radius: var(--radius); background: var(--forest); color: white; }
.adventure-next p { margin: 0; color: rgba(255,255,255,.66); font-size: 13px; }
.adventure-next h2 { margin: 3px 0 0; font-family: "DM Serif Display", Georgia, serif; font-size: 31px; font-weight: 400; }

.quote { max-width: 920px; margin: 0 auto; text-align: center; }
.quote-mark { color: var(--orange); font-family: Georgia, serif; font-size: 70px; height: 55px; }
.quote blockquote { margin: 0; font-family: "DM Serif Display", Georgia, serif; font-size: clamp(32px, 5vw, 55px); line-height: 1.08; }
.quote p { color: rgba(255,255,255,.65); margin-top: 24px; }
.final-cta { text-align: center; }
.final-cta .section-intro { margin-left: auto; margin-right: auto; }
.final-cta .button { margin-top: 28px; }

.page-head { position: relative; padding: 155px 0 85px; background: var(--forest-dark); color: white; overflow: hidden; }
.page-head::after { content: ""; position: absolute; inset: 0 0 auto auto; width: 43%; height: 100%; opacity: .22; background: url("images/20251228_083111.jpg") center / cover; mask-image: linear-gradient(90deg, transparent, #000); }
.page-head p { max-width: 650px; color: rgba(255,255,255,.72); font-size: 18px; }
.details-summary { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 36px; }
.summary-card { padding: 20px; background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.14); border-radius: 14px; }
.summary-card span { display: block; color: rgba(255,255,255,.58); font-size: 11px; text-transform: uppercase; letter-spacing: .1em; }
.summary-card strong { font-size: 17px; }

.gate { position: fixed; inset: 0; z-index: 150; display: grid; place-items: center; padding: 24px; background: linear-gradient(rgba(15,38,29,.67), rgba(15,38,29,.86)), url("images/IMG20251231235930.jpg") center / cover; transition: opacity .35s, visibility .35s; }
.gate.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.gate-card { width: min(100%, 470px); background: var(--cream); border-radius: 26px; padding: 42px; box-shadow: 0 30px 90px rgba(0,0,0,.35); }
.gate-card h1 { font-size: 46px; }
.gate-card p { color: var(--muted); }
.gate-form { display: flex; gap: 8px; margin-top: 24px; }
.gate-form input { width: 100%; min-width: 0; border: 1px solid var(--line); background: white; border-radius: 999px; padding: 13px 17px; outline: none; }
.gate-form input:focus { border-color: var(--forest); box-shadow: 0 0 0 3px rgba(36,76,59,.12); }
.gate-error { min-height: 22px; color: #b53c26; font-size: 13px; margin: 8px 0 0; }
.gate-back { font-size: 13px; color: var(--muted); }

.people-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 42px; }
.person { padding: 18px; border-radius: 18px; background: var(--cream); border: 1px solid var(--line); }
.person img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 13px; filter: saturate(.9); }
.person h3 { margin: 14px 0 0; font-size: 18px; }
.person p { color: var(--muted); font-size: 13px; margin: 2px 0 10px; }
.person a { color: var(--forest); font-size: 13px; font-weight: 750; }
.participant-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.participant { display: flex; align-items: center; gap: 10px; background: var(--cream); border: 1px solid var(--line); padding: 8px 14px 8px 8px; border-radius: 999px; font-weight: 700; font-size: 14px; }
.participant img { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; }
.participant small { color: var(--forest); font-weight: 600; }

.price-panel { display: grid; grid-template-columns: .75fr 1.25fr; gap: 55px; padding: 55px; background: var(--moss); border-radius: 26px; }
.price { font-family: "DM Serif Display", Georgia, serif; font-size: 82px; line-height: 1; letter-spacing: -.04em; }
.price small { display: block; margin-top: 8px; font-family: "DM Sans", sans-serif; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.included-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 24px; }
.included-list div { padding: 12px 0; border-bottom: 1px solid rgba(23,38,31,.13); }
.included-list strong { display: block; }
.included-list span { color: var(--muted); font-size: 13px; }

.faq { max-width: 820px; margin-top: 38px; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { display: flex; align-items: center; justify-content: space-between; cursor: pointer; list-style: none; padding: 22px 0; font-weight: 750; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 24px; font-weight: 400; color: var(--orange); }
.faq details[open] summary::after { content: "−"; }
.faq details p { color: var(--muted); margin: -5px 0 22px; max-width: 710px; }

.gallery-head { padding-bottom: 54px; }
.gallery-grid { columns: 3 280px; column-gap: 14px; }
.gallery-item { width: 100%; display: block; break-inside: avoid; margin: 0 0 14px; padding: 0; border: 0; border-radius: 16px; overflow: hidden; background: var(--moss); cursor: zoom-in; }
.gallery-item img { width: 100%; height: auto; transition: transform .35s, filter .35s; }
.gallery-item:hover img { transform: scale(1.02); filter: brightness(.94); }
.lightbox { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; padding: 64px; background: rgba(9,20,15,.96); }
.lightbox.active { display: flex; }
.lightbox img { max-width: 90vw; max-height: 86vh; object-fit: contain; border-radius: 8px; }
.lightbox button { position: absolute; border: 0; background: rgba(255,255,255,.12); color: white; cursor: pointer; border-radius: 50%; width: 46px; height: 46px; font-size: 26px; }
.lightbox-close { top: 20px; right: 20px; }
.lightbox-prev { left: 20px; top: 50%; }
.lightbox-next { right: 20px; top: 50%; }

footer { padding: 48px 0; background: #10291f; color: rgba(255,255,255,.68); }
.footer-inner { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; }
.footer-inner .brand { color: white; }
.footer-copy { max-width: 420px; font-size: 13px; margin-top: 15px; }
.footer-links { display: flex; gap: 20px; font-size: 13px; font-weight: 700; }
.footer-links a:hover { color: white; }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-links { display: none; position: absolute; top: 68px; left: 20px; right: 20px; padding: 12px; border-radius: 16px; background: var(--cream); color: var(--ink); box-shadow: var(--shadow); flex-direction: column; align-items: stretch; }
  .nav-links.open { display: flex; }
  .nav-links a { text-align: center; }
  .fact-grid { grid-template-columns: repeat(2, 1fr); }
  .fact:nth-child(2) { border-right: 0; }
  .fact:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .split, .split.reverse { grid-template-columns: 1fr; gap: 48px; }
  .rhythm-grid { grid-template-columns: 1fr; }
  .rhythm-card { min-height: 230px; }
  .rhythm-card h3 { margin-top: 35px; }
  .location-panel { grid-template-columns: 1fr; }
  .location-image { min-height: 430px; }
  .activity-list, .details-summary { grid-template-columns: repeat(2, 1fr); }
  .adventure-heading { grid-template-columns: 1fr; gap: 18px; }
  .adventure-layout { grid-template-columns: 1fr; gap: 45px; }
  .people-grid { grid-template-columns: repeat(2, 1fr); }
  .price-panel { grid-template-columns: 1fr; gap: 35px; }
}

@media (max-width: 600px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .hero { min-height: 700px; }
  .hero::before { background: linear-gradient(0deg, rgba(14,35,27,.88), rgba(14,35,27,.22)), url("images/20251231_114829.jpg") 60% center / cover; }
  .hero-content { padding: 145px 0 118px; }
  .hero h1 { font-size: clamp(49px, 16vw, 68px); }
  .hero-actions .button { width: 100%; }
  .quick-facts { margin-top: -38px; }
  .fact { padding: 20px 17px; }
  .fact strong { font-size: 20px; }
  .section { padding: 78px 0; }
  .photo-frame img { height: 430px; }
  .photo-caption { left: 12px; }
  .collage { grid-template-columns: 1fr; grid-template-rows: 410px 240px 240px; }
  .collage a:first-child { grid-row: auto; }
  .location-copy { padding: 38px 26px; }
  .activity-list { grid-template-columns: 1fr; }
  .adventure-grid { grid-template-columns: 1fr; }
  .adventure-card { min-height: 285px; }
  .adventure-hero { min-height: 610px; }
  .adventure-hero::before { background: linear-gradient(0deg, rgba(12,31,24,.9), rgba(12,31,24,.2)), var(--adventure-image) center / cover; }
  .adventure-hero-inner { padding: 130px 0 100px; }
  .adventure-next { align-items: flex-start; flex-direction: column; padding: 30px 26px; }
  .page-head { padding: 130px 0 65px; }
  .details-summary { grid-template-columns: 1fr 1fr; }
  .gate-card { padding: 30px 24px; }
  .gate-form { flex-direction: column; }
  .people-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .person { padding: 10px; }
  .price-panel { padding: 34px 24px; }
  .price { font-size: 66px; }
  .included-list { grid-template-columns: 1fr; }
  .gallery-grid { columns: 2 150px; column-gap: 8px; }
  .gallery-item { margin-bottom: 8px; border-radius: 10px; }
  .lightbox { padding: 55px 12px; }
  .lightbox-prev, .lightbox-next { top: auto; bottom: 16px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-links { flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
