:root {
  --ink: #111310;
  --ink-soft: #20231e;
  --paper: #f2efe6;
  --paper-warm: #e8e2d4;
  --line: rgba(17, 19, 16, 0.18);
  --orange: #ff5a1f;
  --acid: #d9f36d;
  --ice: #d8e7e8;
  --white: #fffdf7;
  --max: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Arial, "Helvetica Neue", Helvetica, system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

.ps-cover-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.admin-bar .site-header {
  top: 32px;
}

.ps-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.consent {
  display: flex !important;
  grid-column: 1 / -1;
  grid-template-columns: auto 1fr !important;
  align-items: flex-start;
  gap: 0.7rem !important;
  font-size: 0.72rem;
  line-height: 1.45;
}

.consent input {
  width: auto;
  margin-top: 0.2rem;
}

.form-message.success {
  color: var(--acid);
}

.form-message.error {
  color: #ffad91;
}

.ps-departures {
  display: grid;
  gap: 1px;
  margin-top: 2rem;
  background: rgba(255, 255, 255, 0.24);
}

.ps-departure {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 2rem;
  align-items: center;
  padding: 1.4rem;
  background: var(--ink-soft);
}

.ps-departure h3 {
  margin: 0.3rem 0 0;
  font-size: 1.2rem;
  text-transform: uppercase;
}

.ps-departure__format,
.ps-departure__status {
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ps-departure__format {
  color: rgba(255, 255, 255, 0.55);
}

.ps-departure__status {
  padding: 0.45rem 0.6rem;
  background: var(--acid);
  color: var(--ink);
}

.ps-departure__facts {
  display: grid;
  gap: 0.25rem;
  text-align: right;
  font-size: 0.78rem;
}

.ps-fallback {
  max-width: 900px;
  min-height: 80vh;
  margin: 0 auto;
  padding: 8rem 1.5rem;
}

@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }

  .ps-departure {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .ps-departure__facts {
    text-align: left;
  }
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

img {
  display: block;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 100;
  padding: 0.8rem 1rem;
  background: var(--acid);
  color: var(--ink);
  font-weight: 700;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  min-height: 104px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  padding: 1.25rem clamp(1.25rem, 4vw, 4.5rem);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  width: max-content;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  line-height: 0.82;
}

.brand-mark {
  display: grid;
  grid-template-columns: repeat(3, 0.62rem);
  align-items: end;
  gap: 0.18rem;
  width: 2.22rem;
  height: 2.25rem;
}

.brand-mark i {
  display: block;
  background: var(--orange);
}

.brand-mark i:nth-child(1) {
  height: 0.72rem;
}

.brand-mark i:nth-child(2) {
  height: 1.42rem;
}

.brand-mark i:nth-child(3) {
  height: 2.12rem;
}

.brand-name {
  font-size: 1rem;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2.5vw, 2.7rem);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.desktop-nav a {
  position: relative;
  padding: 0.75rem 0;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0.35rem;
  height: 2px;
  background: var(--orange);
  transition: right 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  right: 0;
}

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 48px;
  padding: 0.65rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.42);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--white);
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: 870px;
  display: grid;
  grid-template-columns: minmax(0, 55%) minmax(0, 45%);
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 45% 0 0;
  opacity: 0.22;
  background:
    repeating-radial-gradient(
      ellipse at 20% 70%,
      transparent 0 30px,
      rgba(255, 255, 255, 0.09) 31px 32px
    );
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: end;
  padding: 12rem clamp(1.25rem, 4vw, 4.5rem) 5.5rem;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 2rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  min-height: 2rem;
  padding: 0.25rem;
  background: var(--orange);
  color: var(--ink);
  letter-spacing: 0;
}

.eyebrow-dark {
  color: rgba(17, 19, 16, 0.58);
}

.eyebrow-light {
  color: rgba(255, 253, 247, 0.62);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

h1 {
  max-width: 900px;
  margin-bottom: 2.2rem;
  font-size: clamp(4rem, 7.3vw, 8rem);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.83;
  text-transform: uppercase;
}

h1 em {
  color: var(--orange);
  font-style: normal;
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 2.5rem;
  color: rgba(255, 253, 247, 0.72);
  font-size: clamp(1.08rem, 1.45vw, 1.35rem);
  line-height: 1.45;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.2rem;
  min-height: 58px;
  padding: 0.85rem 1.15rem;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

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

.button-primary {
  background: var(--orange);
  color: var(--ink);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #ff7545;
}

.text-link {
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  color: rgba(255, 253, 247, 0.9);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  min-height: 870px;
  overflow: hidden;
}

.hero-visual img {
  object-fit: cover;
  object-position: 50% 42%;
  filter: saturate(0.82) contrast(1.05);
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 19, 16, 0.68), transparent 28%),
    linear-gradient(0deg, rgba(17, 19, 16, 0.58), transparent 45%);
}

.altitude {
  position: absolute;
  right: clamp(1.25rem, 4vw, 4.5rem);
  top: 13.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  color: var(--white);
}

.altitude strong {
  font-size: clamp(3rem, 5vw, 5.8rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.85;
}

.altitude span {
  margin-top: 0.7rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-caption {
  position: absolute;
  right: clamp(1.25rem, 4vw, 4.5rem);
  bottom: 2rem;
  left: 2rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-index {
  position: absolute;
  left: clamp(1.25rem, 4vw, 4.5rem);
  bottom: 1rem;
  color: rgba(255, 255, 255, 0.16);
  font-size: clamp(4rem, 8vw, 9rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 1;
  pointer-events: none;
}

.principles {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.principle {
  min-height: 170px;
  display: grid;
  grid-template-columns: 2.3rem 1fr;
  gap: 1.2rem;
  align-items: end;
  padding: 2rem;
  border-right: 1px solid var(--line);
}

.principle:last-child {
  border-right: 0;
}

.principle span {
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 900;
}

.principle p {
  max-width: 240px;
  margin-bottom: 0;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.25;
}

.section,
.section-wide {
  max-width: var(--max);
  margin: 0 auto;
}

.section {
  padding-right: clamp(1.25rem, 6vw, 7rem);
  padding-left: clamp(1.25rem, 6vw, 7rem);
}

.section-wide {
  padding-right: clamp(1.25rem, 4vw, 4.5rem);
  padding-left: clamp(1.25rem, 4vw, 4.5rem);
}

.intro {
  min-height: 590px;
  display: grid;
  grid-template-columns: 0.34fr 1fr;
  gap: 4rem;
  align-items: start;
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.section-label {
  padding-top: 0.6rem;
  color: rgba(17, 19, 16, 0.55);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.intro-copy h2,
.program-heading h2,
.faq-heading h2,
.guide-copy h2 {
  margin-bottom: 2.2rem;
  font-size: clamp(2.9rem, 5.5vw, 6.4rem);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.93;
  text-transform: uppercase;
}

.intro-copy h2 span {
  color: var(--orange);
}

.intro-copy > p {
  max-width: 610px;
  margin-left: auto;
  color: rgba(17, 19, 16, 0.68);
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  line-height: 1.55;
}

.stay-section {
  padding-top: 2rem;
  padding-bottom: 8rem;
}

.stay-heading {
  display: grid;
  grid-template-columns: 1fr 0.45fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 3rem;
}

.stay-heading h2,
.price-copy h2,
.safety-content h2,
.dates-copy h2 {
  margin-bottom: 0;
  font-size: clamp(2.9rem, 5vw, 5.8rem);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.93;
  text-transform: uppercase;
}

.stay-heading > p {
  margin-bottom: 0.35rem;
  color: rgba(17, 19, 16, 0.62);
  font-size: 1.05rem;
}

.stay-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--ink);
  border: 1px solid var(--ink);
}

.stay-card {
  min-width: 0;
  background: var(--paper);
  transition:
    background 180ms ease,
    color 180ms ease;
}

.stay-card.selected {
  background: var(--white);
}

.stay-image {
  position: relative;
  min-height: 360px;
  overflow: hidden;
}

.stay-image img {
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.stay-card:hover .stay-image img {
  transform: scale(1.025);
}

.card-number {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  background: var(--orange);
  font-size: 0.75rem;
  font-weight: 900;
}

.stay-body {
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.stay-title-row {
  min-height: 77px;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: start;
}

.micro {
  margin-bottom: 0.45rem;
  color: rgba(17, 19, 16, 0.5);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.stay-body h3 {
  margin-bottom: 0;
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.95;
  text-transform: uppercase;
}

.selected-badge {
  flex: none;
  padding: 0.4rem 0.55rem;
  background: var(--acid);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.stay-body > p {
  max-width: 520px;
  margin: 1.4rem 0 1.6rem;
  color: rgba(17, 19, 16, 0.64);
}

.stay-body ul {
  display: grid;
  gap: 0.65rem;
  margin: 0 0 2.4rem;
  padding: 0;
  list-style: none;
  font-size: 0.9rem;
  font-weight: 700;
}

.stay-body li {
  display: flex;
  gap: 0.7rem;
}

.stay-body li::before {
  content: "→";
  color: var(--orange);
}

.stay-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
}

.price-placeholder {
  display: flex;
  flex-direction: column;
}

.price-placeholder span {
  margin-bottom: 0.25rem;
  color: rgba(17, 19, 16, 0.5);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.price-placeholder strong {
  font-size: 0.95rem;
  text-transform: uppercase;
}

.choose-button {
  min-height: 48px;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--ink);
  border-radius: 0;
  background: transparent;
  cursor: pointer;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.choose-button:hover,
.choose-button:focus-visible,
.selected .choose-button {
  background: var(--ink);
  color: var(--white);
}

.price-section {
  max-width: none;
  min-height: 750px;
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: clamp(3rem, 8vw, 9rem);
  align-items: center;
  padding-top: 8rem;
  padding-bottom: 8rem;
  background:
    linear-gradient(115deg, rgba(255, 90, 31, 0.12), transparent 38%),
    var(--ink-soft);
  color: var(--white);
}

.price-copy > p:not(.eyebrow) {
  max-width: 570px;
  margin: 2rem 0 2.4rem;
  color: rgba(255, 253, 247, 0.66);
  font-size: 1.08rem;
}

.gear-switch {
  display: inline-flex;
  gap: 1px;
  padding: 1px;
  background: rgba(255, 255, 255, 0.25);
}

.gear-switch button {
  min-height: 50px;
  padding: 0.75rem 1rem;
  border: 0;
  border-radius: 0;
  background: var(--ink-soft);
  color: rgba(255, 255, 255, 0.62);
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.gear-switch button.active {
  background: var(--acid);
  color: var(--ink);
}

.estimate-card {
  position: relative;
  padding: clamp(1.4rem, 3vw, 2.7rem);
  background: var(--white);
  color: var(--ink);
  box-shadow: 1.2rem 1.2rem 0 var(--orange);
}

.estimate-card::before {
  content: "";
  position: absolute;
  inset: 0.8rem;
  border: 1px solid rgba(17, 19, 16, 0.08);
  pointer-events: none;
}

.estimate-top,
.estimate-lines,
.estimate-total,
.estimate-card > p {
  position: relative;
  z-index: 1;
}

.estimate-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: start;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--ink);
}

.estimate-top > div {
  display: flex;
  flex-direction: column;
}

.estimate-top span,
.estimate-total span {
  color: rgba(17, 19, 16, 0.52);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.estimate-top strong {
  margin-top: 0.35rem;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  text-transform: uppercase;
}

.estimate-status {
  padding: 0.38rem 0.5rem;
  background: var(--paper-warm);
}

.estimate-lines {
  display: grid;
  padding: 1rem 0;
}

.estimate-lines > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.88rem;
}

.estimate-lines strong {
  text-align: right;
}

.estimate-total {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1.5rem 0 1rem;
}

.estimate-total strong {
  font-size: clamp(1.45rem, 2.7vw, 2.5rem);
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.estimate-card > p {
  margin: 1rem 0 0;
  padding: 1rem;
  background: var(--acid);
  font-size: 0.75rem;
  font-weight: 800;
}

.program-section {
  padding-top: 9rem;
  padding-bottom: 9rem;
}

.program-heading {
  display: grid;
  grid-template-columns: 0.22fr 1fr 0.38fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 5rem;
}

.program-heading h2 {
  font-size: clamp(2.7rem, 4.8vw, 5.5rem);
}

.program-heading > p {
  padding-top: 0.5rem;
  color: rgba(17, 19, 16, 0.6);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.phase {
  min-height: 285px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.6rem;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  transition:
    background 180ms ease,
    color 180ms ease;
}

.phase:hover {
  background: var(--ink);
  color: var(--white);
}

.phase-number {
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 900;
}

.phase h3 {
  margin-bottom: 0.9rem;
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.phase p {
  margin-bottom: 0;
  color: rgba(17, 19, 16, 0.62);
  font-size: 0.9rem;
}

.phase:hover p {
  color: rgba(255, 253, 247, 0.66);
}

.safety-section {
  min-height: 800px;
  display: grid;
  grid-template-columns: 0.46fr 0.54fr;
  background: var(--ice);
}

.safety-photo {
  position: relative;
  min-height: 760px;
  overflow: hidden;
}

.safety-photo img {
  object-fit: cover;
  object-position: 52% 50%;
}

.safety-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(17, 19, 16, 0.72), transparent 50%);
}

.safety-photo-label {
  position: absolute;
  z-index: 2;
  right: 2rem;
  bottom: 2rem;
  left: 2rem;
  display: flex;
  flex-direction: column;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
}

.safety-photo-label span {
  margin-bottom: 0.4rem;
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.safety-photo-label strong {
  font-size: clamp(1.7rem, 3vw, 3.2rem);
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.safety-content {
  align-self: center;
  padding: 6rem clamp(1.25rem, 6vw, 7rem);
}

.safety-content h2 {
  font-size: clamp(2.8rem, 4.8vw, 5.4rem);
}

.safety-list {
  display: grid;
  margin: 3rem 0 2rem;
  border-top: 1px solid var(--ink);
}

.safety-list > div {
  display: grid;
  grid-template-columns: 2.2rem 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(17, 19, 16, 0.22);
}

.safety-list span {
  color: var(--orange);
  font-size: 0.68rem;
  font-weight: 900;
}

.safety-list p {
  margin-bottom: 0;
  font-weight: 750;
}

.safety-note {
  max-width: 580px;
  margin-bottom: 0;
  color: rgba(17, 19, 16, 0.58);
  font-size: 0.82rem;
}

.guide-section {
  min-height: 540px;
  display: grid;
  grid-template-columns: 0.22fr 1fr 0.38fr;
  gap: 3rem;
  align-items: start;
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.guide-tag {
  padding-top: 0.6rem;
  color: rgba(17, 19, 16, 0.55);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.guide-copy h2 {
  font-size: clamp(2.7rem, 4.6vw, 5.3rem);
}

.guide-copy p {
  max-width: 590px;
  margin-left: auto;
  color: rgba(17, 19, 16, 0.62);
  font-size: 1.05rem;
}

.guide-placeholder {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.4rem;
  background: var(--orange);
  color: var(--ink);
}

.guide-placeholder span {
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.guide-placeholder strong {
  max-width: 220px;
  font-size: 1.5rem;
  line-height: 1.05;
  text-transform: uppercase;
}

.guide-placeholder i {
  align-self: end;
  font-size: 2rem;
  font-style: normal;
}

.dates-section {
  position: relative;
  min-height: 700px;
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: clamp(3rem, 9vw, 10rem);
  align-items: center;
  padding: 7rem clamp(1.25rem, 6vw, 7rem);
  background: var(--orange);
  color: var(--ink);
  overflow: hidden;
}

.dates-section::after {
  content: "01";
  position: absolute;
  right: -1rem;
  bottom: -4rem;
  color: rgba(17, 19, 16, 0.09);
  font-size: clamp(15rem, 34vw, 38rem);
  font-weight: 900;
  letter-spacing: -0.1em;
  line-height: 0.8;
  pointer-events: none;
}

.dates-copy,
.interest-form {
  position: relative;
  z-index: 1;
}

.dates-copy .eyebrow-light {
  color: rgba(17, 19, 16, 0.54);
}

.dates-copy > p:not(.eyebrow) {
  max-width: 610px;
  margin: 2rem 0 0;
  font-size: 1.08rem;
}

.interest-form {
  display: grid;
  gap: 1.2rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--ink);
  color: var(--white);
}

.interest-form label {
  display: grid;
  gap: 0.45rem;
}

.interest-form label span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.interest-form input {
  width: 100%;
  min-height: 58px;
  padding: 0.8rem 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 0;
  outline: none;
  background: transparent;
  color: var(--white);
  font-size: 1.15rem;
}

.interest-form input::placeholder {
  color: rgba(255, 255, 255, 0.28);
}

.interest-form input:focus {
  border-bottom-color: var(--acid);
}

.button-light {
  width: 100%;
  margin-top: 0.8rem;
  background: var(--acid);
  color: var(--ink);
}

.button-light:hover,
.button-light:focus-visible {
  background: var(--white);
}

.form-note,
.form-message {
  margin: 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.72rem;
}

.form-message {
  padding: 0.8rem;
  background: rgba(217, 243, 109, 0.14);
  color: var(--acid);
}

.faq-section {
  display: grid;
  grid-template-columns: 0.52fr 1fr;
  gap: clamp(3rem, 8vw, 9rem);
  align-items: start;
  padding-top: 9rem;
  padding-bottom: 9rem;
}

.faq-heading {
  position: sticky;
  top: 2rem;
}

.faq-heading h2 {
  margin-top: 1.2rem;
  font-size: clamp(2.7rem, 4.4vw, 5rem);
}

.faq-list {
  border-top: 1px solid var(--ink);
}

.faq-list details {
  border-bottom: 1px solid var(--ink);
}

.faq-list summary {
  min-height: 94px;
  display: grid;
  grid-template-columns: 2rem 1fr 2rem;
  gap: 1rem;
  align-items: center;
  padding: 1rem 0;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary > span {
  color: var(--orange);
  font-size: 0.68rem;
  font-weight: 900;
}

.faq-list summary strong {
  font-size: 1rem;
  text-transform: uppercase;
}

.faq-list summary i {
  justify-self: end;
  font-size: 1.6rem;
  font-style: normal;
  transition: transform 180ms ease;
}

.faq-list details[open] summary i {
  transform: rotate(45deg);
}

.faq-list details > p {
  max-width: 680px;
  margin: 0 2rem 1.6rem 3rem;
  color: rgba(17, 19, 16, 0.64);
}

footer {
  padding: 4rem clamp(1.25rem, 4vw, 4.5rem) 1.2rem;
  background: var(--ink);
  color: var(--white);
}

.footer-top {
  min-height: 260px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

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

.footer-top > p {
  color: rgba(255, 255, 255, 0.62);
}

.footer-up {
  justify-self: end;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.62rem;
  line-height: 1.5;
  text-transform: uppercase;
}

:focus-visible {
  outline: 3px solid var(--acid);
  outline-offset: 3px;
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr 45%;
  }

  .program-heading,
  .guide-section {
    grid-template-columns: 0.18fr 1fr;
  }

  .program-heading > p,
  .guide-placeholder {
    grid-column: 2;
  }

  .guide-placeholder {
    min-height: 160px;
  }
}

@media (max-width: 800px) {
  .site-header {
    min-height: 84px;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .header-cta {
    min-height: 44px;
    padding: 0.55rem 0.75rem;
    font-size: 0.65rem;
  }

  .header-cta span {
    display: none;
  }

  .hero {
    min-height: auto;
    display: flex;
    flex-direction: column;
  }

  .hero::before {
    inset: 0;
  }

  .hero-copy {
    order: 2;
    padding-top: 3.5rem;
    padding-bottom: 5.5rem;
  }

  h1 {
    font-size: clamp(3.7rem, 15vw, 6.5rem);
  }

  .hero-visual {
    order: 1;
    min-height: 630px;
  }

  .hero-visual::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 18%;
    background: linear-gradient(transparent, var(--ink));
  }

  .hero-gradient {
    background: linear-gradient(0deg, rgba(17, 19, 16, 0.45), transparent 48%);
  }

  .altitude {
    top: auto;
    right: 1.25rem;
    bottom: 4rem;
  }

  .hero-caption {
    right: 1.25rem;
    bottom: 1rem;
    left: 1.25rem;
  }

  .hero-index {
    z-index: 3;
    bottom: 0.5rem;
  }

  .principles,
  .stay-grid,
  .price-section,
  .safety-section,
  .dates-section,
  .faq-section {
    grid-template-columns: 1fr;
  }

  .principles {
    margin: 0;
  }

  .principle {
    min-height: 120px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .intro {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .intro-copy > p {
    margin-left: 0;
  }

  .stay-heading {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .stay-image {
    min-height: 300px;
  }

  .price-section {
    gap: 4.5rem;
  }

  .estimate-card {
    box-shadow: 0.7rem 0.7rem 0 var(--orange);
  }

  .program-heading,
  .guide-section {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .program-heading > p,
  .guide-placeholder {
    grid-column: auto;
  }

  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .safety-photo {
    min-height: 620px;
  }

  .guide-section {
    min-height: auto;
  }

  .guide-copy p {
    margin-left: 0;
  }

  .guide-placeholder {
    min-height: 190px;
  }

  .dates-section {
    gap: 4rem;
  }

  .faq-heading {
    position: static;
  }

  .footer-top,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-top {
    min-height: 330px;
  }

  .footer-up {
    justify-self: start;
  }
}

@media (max-width: 520px) {
  .brand-mark {
    transform: scale(0.86);
    transform-origin: left center;
  }

  .brand {
    gap: 0.5rem;
  }

  .brand-name {
    font-size: 0.85rem;
  }

  .header-cta {
    max-width: 115px;
    text-align: center;
  }

  .hero-visual {
    min-height: 560px;
  }

  .hero-actions,
  .gear-switch,
  .stay-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .text-link {
    width: 100%;
  }

  .text-link {
    text-align: center;
  }

  .gear-switch {
    display: flex;
  }

  .stay-image {
    min-height: 260px;
  }

  .stay-title-row {
    min-height: auto;
    flex-direction: column;
  }

  .selected-badge {
    order: -1;
  }

  .choose-button {
    width: 100%;
  }

  .estimate-lines > div {
    flex-direction: column;
    gap: 0.35rem;
  }

  .estimate-lines strong {
    text-align: left;
  }

  .timeline {
    grid-template-columns: 1fr;
  }

  .phase {
    min-height: 235px;
  }

  .safety-photo {
    min-height: 540px;
  }

  .safety-content {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .dates-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .faq-list summary {
    grid-template-columns: 1.6rem 1fr 1.2rem;
  }

  .faq-list details > p {
    margin-left: 2.6rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

.stay-card:not(.selected) .selected-badge {
  display: none;
}

.interest-form .consent {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.7rem;
}

.interest-form .consent input {
  width: auto;
  min-height: 0;
  margin-top: 0.2rem;
}

.interest-form .consent span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.45;
  text-transform: none;
}

.interest-form .consent a {
  border-bottom: 1px solid currentColor;
}

.ps-departure {
  color: var(--white);
}
