/* ==========================================================================
   JIUZE TOURS — A Portland-rooted tour operator
   Real Oregon photography, forest tones, and clear travel information
   ========================================================================== */

:root {
  /* Palette */
  --forest:        #254F43;
  --forest-deep:   #172F29;
  --forest-soft:   #4D6B5F;
  --rose:          #9B4F36;
  --rose-soft:     #E3BB99;
  --moss:          #5C7A4F;
  --fog:           #ECEEE7;
  --cream:         #F7F7F2;
  --paper:         #FFFFFF;
  --rain:          #59635D;
  --ink:           #23342C;
  --line:          #CDD5CD;
  --line-soft:     #DEE4DB;

  /* Type */
  --font-serif: 'Cormorant Garamond', 'Source Han Serif SC', 'Songti SC', Georgia, serif;
  --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Helvetica Neue', sans-serif;
  --font-mono:  var(--font-sans);

  /* Sizing */
  --container:   1280px;
  --container-narrow: 880px;
  --gutter:      clamp(1.25rem, 3vw, 2rem);

  /* Radii / shadow */
  --radius:      4px;
  --shadow-sm:   0 1px 2px rgba(24,37,24,0.06), 0 1px 3px rgba(24,37,24,0.04);
  --shadow-md:   0 6px 16px rgba(24,37,24,0.08), 0 2px 6px rgba(24,37,24,0.06);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

:focus-visible {
  outline: 3px solid rgba(182, 70, 63, 0.42);
  outline-offset: 3px;
}

body {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; height: auto; }

a { color: var(--forest); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--rose); }

/* ---------- Typography ---------- */

h1, h2, h3, h4, .display, .heading-serif {
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--forest-deep);
  letter-spacing: -0.01em;
  line-height: 1.18;
}

h1 { font-size: clamp(2.5rem, 5.5vw, 4.5rem); font-weight: 500; }
h2 { font-size: clamp(2rem, 3.6vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.2vw, 1.85rem); }
h4 { font-size: 1.25rem; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1.1rem;
  display: inline-block;
}

.lede {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 1.35vw, 1.15rem);
  line-height: 1.75;
  color: var(--rain);
  font-style: normal;
  font-weight: 400;
}

p { margin-bottom: 1.1rem; color: var(--rain); }
p:last-child { margin-bottom: 0; }

ul, ol { color: var(--rain); padding-left: 1.25rem; margin-bottom: 1.1rem; }
li { margin-bottom: 0.35rem; }

::selection { background: var(--rose); color: var(--paper); }

/* ---------- Layout primitives ---------- */

.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 var(--gutter); }

.section {
  padding: clamp(4rem, 9vw, 7rem) 0;
}

.section--cream { background: var(--cream); }
.section--fog   { background: var(--fog); }
.section--paper { background: var(--paper); }
.section--forest { background: var(--forest-deep); color: var(--fog); }
.section--forest h1, .section--forest h2, .section--forest h3 { color: var(--paper); }
.section--forest p { color: rgba(242, 235, 223, 0.78); }
.section--forest .eyebrow { color: var(--rose-soft); }

.divider {
  border: 0;
  height: 1px;
  background: var(--line);
  margin: 4rem 0;
}

.divider--ornament {
  height: 14px;
  width: 100%;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 3rem 0;
  position: relative;
}
.divider--ornament::before,
.divider--ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
}
.divider--ornament span {
  padding: 0 1.25rem;
  color: var(--rose);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: none;
  padding: 0.95rem 1.85rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.22s ease;
  white-space: nowrap;
  min-height: 48px;
}

.btn--primary {
  background: var(--forest);
  color: var(--paper);
  border-color: var(--forest);
}
.btn--primary:hover { background: var(--forest-deep); color: var(--paper); border-color: var(--forest-deep); }

.btn--rose {
  background: var(--rose);
  color: var(--paper);
  border-color: var(--rose);
}
.btn--rose:hover { background: #9C3A33; color: var(--paper); border-color: #9C3A33; }

.btn--outline {
  background: transparent;
  color: var(--forest);
  border-color: var(--forest);
}
.btn--outline:hover { background: var(--forest); color: var(--paper); }

.btn--ghost {
  background: transparent;
  color: var(--forest);
  border-color: transparent;
  padding-left: 0;
  padding-right: 0;
}
.btn--ghost:hover { color: var(--rose); }

.btn .arrow { transition: transform 0.22s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Header / Nav ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 247, 242, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-soft);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.55rem 0;
  gap: clamp(1rem, 3vw, 2rem);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--forest-deep);
  letter-spacing: 0.02em;
  line-height: 1.2;
}
.brand .brand-mark {
  width: auto;
  height: 58px;
  object-fit: contain;
  flex-shrink: 0;
}
.brand span.tld { color: var(--rose); font-style: italic; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--forest-deep);
  position: relative;
  padding: 0.4rem 0;
}
.nav-links a.active::after,
.nav-links a:hover::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--rose);
}

.nav-cta { margin-left: 0.5rem; }

/* Language switch */
.lang-switch {
  display: inline-flex;
  align-items: stretch;
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  border: 1px solid var(--line);
  border-radius: 2px;
  overflow: hidden;
  background: var(--paper);
}
.lang-switch a {
  padding: 0.45rem 0.85rem;
  color: var(--rain);
  line-height: 1;
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease;
  min-height: 44px;
}
.lang-switch a + a { border-left: 1px solid var(--line); }
.lang-switch a.active {
  background: var(--forest-deep);
  color: var(--paper);
}
.lang-switch a:hover:not(.active) {
  color: var(--rose);
  background: var(--fog);
}

@media (max-width: 880px) {
  .lang-switch {
    position: absolute;
    right: calc(var(--gutter) + 44px);
    top: 50%;
    transform: translateY(-50%);
  }
}
@media (max-width: 480px) {
  .lang-switch { font-size: 0.62rem; }
  .lang-switch a { padding: 0.35rem 0.6rem; }
  .brand .brand-mark { height: 48px; }
  .brand { font-size: 0.95rem; gap: 0.45rem; }
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0.55rem;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.nav-toggle svg { width: 26px; height: 26px; stroke: var(--forest-deep); }

@media (max-width: 880px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--line-soft);
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    display: block;
    padding: 0.95rem var(--gutter);
    border-bottom: 1px solid var(--line-soft);
  }
  .nav-links a:last-child { border-bottom: 0; }
  .nav-toggle { display: inline-flex; margin-left: auto; }
  .nav-cta { display: none; }
}

/* ---------- Tour cards ---------- */

.tour-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.tour-card {
  background: transparent;
  border: 0;
  transition: none;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.tour-card:hover { box-shadow: none; }
.tour-card-art img { transition: transform .6s ease; }
.tour-card:hover .tour-card-art img { transform: scale(1.035); }
.tour-card h3 a:hover { text-decoration: underline; text-underline-offset: 4px; }
.tours-page .tour-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (max-width: 640px) {
  .tours-page .tour-grid { grid-template-columns: 1fr; }
}

.tour-card-art {
  aspect-ratio: 4/3;
  background: var(--fog);
  position: relative;
  overflow: hidden;
}
.tour-card-art svg { width: 100%; height: 100%; }

.tour-card-badge {
  position: absolute;
  z-index: 1;
  top: 1rem;
  left: 1rem;
  background: var(--paper);
  color: var(--forest);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 0.75rem;
  border: 1px solid var(--line);
}

.tour-card-body {
  padding: 1.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.tour-card-meta {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 0.7rem;
}

.tour-card-proof {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest);
  margin: -0.25rem 0 0.85rem;
}

.tour-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.55rem;
  line-height: 1.25;
}

.tour-card p {
  font-size: 0.95rem;
  color: var(--rain);
  margin-bottom: 1.5rem;
  flex: 1;
}

.tour-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}
.tour-card-price {
  font-family: var(--font-sans);
  font-size: .95rem;
  color: var(--forest);
  font-style: normal;
}
.tour-card-link {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rose);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* ---------- Why-us / Feature columns ---------- */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.feature {
  text-align: left;
}
.feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--rose);
}
.feature-icon svg { width: 38px; height: 38px; }
.feature h3 {
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
}
.feature p {
  font-size: 0.95rem;
}

/* ---------- Section header ---------- */

.section-head {
  max-width: 760px;
  margin-bottom: 1rem;
}
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head h2 { margin-bottom: 1rem; }

/* ---------- Page header (interior pages) ---------- */

.page-head {
  background: var(--forest-deep);
  color: var(--fog);
  padding: clamp(5rem, 10vw, 8rem) 0 clamp(3.5rem, 7vw, 5.5rem);
  position: relative;
  overflow: hidden;
}
.page-head::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11,33,27,.89), rgba(11,33,27,.65)), url('/assets/img/home/portland-mount-hood-2400.webp') center 52% / cover;
  pointer-events: none;
}
.page-head .container, .page-head .container-narrow { position: relative; }
.page-head .eyebrow { color: var(--rose-soft); }
.page-head h1 { color: var(--paper); margin-bottom: 1.25rem; }
.page-head .lede { color: rgba(242, 235, 223, 0.82); max-width: 640px; }

/* ---------- About story ---------- */

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
@media (max-width: 880px) { .story-grid { grid-template-columns: 1fr; } }

.story-aside {
  position: sticky;
  top: 100px;
  padding: 2rem;
  border: 1px solid var(--line);
  background: var(--paper);
}
.story-aside h4 {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1.25rem;
}
.story-aside dl { display: grid; grid-template-columns: 1fr 1.6fr; gap: 0.75rem 1rem; font-size: 0.9rem; }
.story-aside dt { color: var(--rain); font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; padding-top: 0.18rem; }
.story-aside dd { color: var(--ink); }

.story-body p { margin-bottom: 1.4rem; font-size: 1.02rem; }
.story-body .pull {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.6rem;
  line-height: 1.4;
  color: var(--forest);
  padding: 1.5rem 0 1.5rem 1.5rem;
  border-left: 3px solid var(--rose);
  margin: 2rem 0;
}

/* ---------- Contact ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-grid > form { order: 1; }
  .contact-grid > .contact-info { order: 2; }
}

.contact-info dl { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.contact-info dt {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 0.35rem;
}
.contact-info dd { font-size: 1.05rem; color: var(--ink); }

.form-field { margin-bottom: 1.4rem; }
.form-field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 0.5rem;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  border-radius: var(--radius);
  transition: border-color 0.2s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 3px solid rgba(92, 122, 79, 0.2);
  outline-offset: 1px;
  border-color: var(--forest);
}
.form-field input[aria-invalid="true"],
.form-field select[aria-invalid="true"],
.form-field textarea[aria-invalid="true"] {
  border-color: var(--rose);
  background: rgba(182, 70, 63, 0.035);
}
.field-hint {
  display: block;
  margin-top: 0.45rem;
  color: var(--rain);
  font-size: 0.82rem;
  line-height: 1.45;
}
.form-field textarea { min-height: 140px; resize: vertical; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 540px) { .form-row { grid-template-columns: 1fr; } }

/* Honeypot — render at -9999px so screen readers AND humans don't reach it,
   but bots that auto-fill all inputs still fill it. */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* Turnstile widget container — temporarily hidden while disabled.
   When re-enabling Turnstile, change `display: none` back to `margin: 1.25rem 0`. */
.cf-turnstile { display: none; margin: 1.25rem 0; min-height: 65px; }

/* Form status box (loading / success / error) */
.form-status {
  margin: 1rem 0;
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
  line-height: 1.5;
}
.form-status[data-state="idle"]    { display: none; }
.form-status[data-state="loading"] {
  background: rgba(91, 91, 88, 0.06);
  border: 1px solid var(--line);
  color: var(--rain);
}
.form-status[data-state="success"] {
  background: rgba(92, 122, 79, 0.10);
  border: 1px solid var(--moss);
  color: var(--forest-deep);
}
.form-status[data-state="error"]   {
  background: rgba(182, 70, 63, 0.08);
  border: 1px solid var(--rose);
  color: var(--rose);
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--forest-deep);
  color: var(--fog);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }

.site-footer h4 {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose-soft);
  margin-bottom: 1.2rem;
}

.site-footer .brand {
  color: var(--paper);
  font-size: 0;
  line-height: 0;
  margin-bottom: 1rem;
}
.site-footer .brand .brand-mark { height: 90px; }
.site-footer p { color: rgba(242, 235, 223, 0.72); font-size: 0.95rem; }

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.55rem; }
.footer-links a {
  color: rgba(242, 235, 223, 0.78);
  font-size: 0.95rem;
}
.footer-links a:hover { color: var(--rose-soft); }

.footer-bottom {
  border-top: 1px solid rgba(242, 235, 223, 0.15);
  padding-top: 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(242, 235, 223, 0.5);
}

/* ---------- Utility ---------- */

.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mt-4 { margin-top: 4rem; }
.mb-2 { margin-bottom: 2rem; }

/* ---------- Product detail page ---------- */

.product-hero {
  background: var(--cream);
  padding-top: 0;
}

.product-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 6px;
  height: 520px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.product-gallery .pg-cell {
  position: relative;
  overflow: hidden;
  background: var(--fog);
  border: 1px solid var(--line-soft);
}
.product-gallery .pg-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.product-gallery .pg-cell:hover img { transform: scale(1.04); }
.product-gallery .pg-main { grid-column: 1; grid-row: 1 / span 2; }

.product-gallery .pg-more {
  position: absolute;
  right: 12px;
  bottom: 12px;
  background: rgba(24, 37, 24, 0.85);
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.5rem 0.8rem;
  border-radius: 2px;
}

@media (max-width: 760px) {
  .product-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 280px 140px 140px;
    height: auto;
  }
  .product-gallery .pg-main { grid-column: 1 / span 2; grid-row: 1; }
}

.product-head {
  padding-top: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: 1.5rem;
}
.product-breadcrumb {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rain);
  margin-bottom: 1.2rem;
}
.product-breadcrumb a { color: var(--rain); }
.product-breadcrumb a:hover { color: var(--rose); }

.product-head h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 0.6rem;
}
.product-head .lede { margin-bottom: 1.5rem; }

.product-quick-cta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin: 0 0 1.5rem;
  padding: 1rem 0 1.35rem;
  border-bottom: 1px solid var(--line);
}
.product-quick-cta .btn { justify-content: center; }
.product-quick-cta-note {
  flex-basis: 100%;
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  color: var(--rain);
}

#gallery,
#inquiry-form { scroll-margin-top: 110px; }

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  margin: 0 0 2rem;
}
.product-meta-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  min-width: 0;
}
.product-meta-item svg {
  width: 22px;
  height: 22px;
  color: var(--rose);
  flex-shrink: 0;
  margin-top: 2px;
}
.product-meta-item dt {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rain);
  margin-bottom: 0.2rem;
}
.product-meta-item dd {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--ink);
  font-style: italic;
  line-height: 1.3;
}

.platform-proof {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 1rem 1.25rem;
  margin: 0 0 1.5rem;
}
.platform-proof-mark {
  background: var(--forest);
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.45rem 0.7rem;
}
.platform-proof p {
  margin: 0;
  color: var(--ink);
  font-size: 0.96rem;
  line-height: 1.55;
}
.platform-proof-code {
  font-family: var(--font-mono);
  font-size: 0.88em;
}
.platform-proof a {
  color: var(--rose);
  font-weight: 600;
  white-space: nowrap;
}

.product-trust-note {
  margin: 0 0 1.5rem;
  padding: 1rem 1.15rem;
  border-left: 3px solid var(--moss);
  background: rgba(92, 122, 79, 0.08);
  color: var(--ink);
  font-size: 0.92rem;
  line-height: 1.6;
}

@media (max-width: 760px) {
  .platform-proof { grid-template-columns: 1fr; }
  .platform-proof a { white-space: normal; }
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.product-layout > * { min-width: 0; }
@media (max-width: 980px) {
  .product-layout { grid-template-columns: minmax(0, 1fr); }
  .product-layout > aside { grid-row: 1; }
  .booking-aside { position: static; }
}

.product-section { padding: 2rem 0; border-top: 1px solid var(--line); }
.product-section:first-child { border-top: 0; padding-top: 0; }
.product-section h2 {
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  margin-bottom: 1.2rem;
}
.product-section p { font-size: 1.02rem; }

.highlights {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}
.highlights li {
  position: relative;
  padding-left: 1.8rem;
  color: var(--ink);
  font-size: 1rem;
  margin: 0;
}
.highlights li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rose);
}

/* Itinerary */
.itinerary { position: relative; }
.itinerary-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.5rem;
  padding-bottom: 2.5rem;
  position: relative;
}
.itinerary-item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 22px;
  top: 50px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--rose) 0, var(--rose) 8px, transparent 8px, transparent 16px);
  background-size: 100% 16px;
  background-repeat: repeat-y;
  opacity: 0.4;
}
.itinerary-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  position: relative;
  z-index: 1;
}
.itinerary-num.optional {
  background: var(--paper);
  color: var(--rose);
  border: 2px dashed var(--rose);
}
.itinerary-body h3 {
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.itinerary-body .stop-tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose);
  padding: 0.15rem 0.55rem;
  border: 1px solid var(--rose);
  border-radius: 2px;
}
.itinerary-body .stop-tag.optional {
  color: var(--rain);
  border-color: var(--rain);
}
.itinerary-body .stop-meta {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rain);
  margin-bottom: 0.7rem;
}
.itinerary-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-top: 1rem;
}
.itinerary-images img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border: 1px solid var(--line-soft);
  background: var(--fog);
}
@media (max-width: 540px) {
  .itinerary-item { grid-template-columns: 44px 1fr; gap: 1rem; }
  .itinerary-item:not(:last-child)::before { left: 21px; }
}

/* Included / not included */
.inclusion-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 660px) { .inclusion-grid { grid-template-columns: 1fr; } }
.inclusion h4 {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 0.85rem;
}
.inclusion ul { list-style: none; padding: 0; }
.inclusion li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.5rem;
  color: var(--ink);
  font-size: 0.98rem;
}
.inclusion li::before {
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--font-mono);
  font-weight: 600;
}
.inclusion--yes li::before { content: '✓'; color: var(--moss); }
.inclusion--no  li::before { content: '✗'; color: var(--rose); }

/* Sidebar */
.booking-aside {
  position: sticky;
  top: 90px;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 1.75rem;
}
.booking-price {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rain);
  margin-bottom: 0.4rem;
}
.booking-price-amount {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  color: var(--forest);
  font-weight: 500;
  line-height: 1;
}
.booking-price-amount span { font-size: 1rem; color: var(--rain); font-style: italic; }
.booking-aside hr.divider { margin: 1.5rem 0; }
.booking-aside .booking-line {
  display: flex;
  justify-content: space-between;
  font-size: 0.93rem;
  margin-bottom: 0.6rem;
}
.booking-aside .booking-line .label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rain);
}
.booking-aside .booking-line .value { color: var(--ink); font-weight: 500; }
.booking-aside .btn { width: 100%; justify-content: center; margin-top: 0.5rem; }
.booking-aside .booking-note {
  font-size: 0.82rem;
  color: var(--rain);
  text-align: center;
  margin-top: 1rem;
  line-height: 1.5;
}

/* Mobile conversion bar: only rendered on the flagship product pages. */
.mobile-booking-bar { display: none; }

@media (max-width: 980px) {
  body[data-product-id="gorge-half-day"] {
    padding-bottom: calc(78px + env(safe-area-inset-bottom));
  }
  .product-layout .booking-aside { position: static; }
  .mobile-booking-bar {
    position: fixed;
    z-index: 80;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    min-height: 78px;
    padding: 0.65rem max(var(--gutter), env(safe-area-inset-right)) calc(0.65rem + env(safe-area-inset-bottom)) max(var(--gutter), env(safe-area-inset-left));
    background: rgba(255, 254, 251, 0.97);
    border-top: 1px solid var(--line);
    box-shadow: 0 -8px 24px rgba(24, 37, 24, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
  .mobile-booking-copy {
    min-width: 0;
    color: var(--forest-deep);
    font-family: var(--font-serif);
    font-size: 1.15rem;
    line-height: 1.15;
  }
  .mobile-booking-copy small {
    display: block;
    margin-top: 0.2rem;
    color: var(--rain);
    font-family: var(--font-sans);
    font-size: 0.7rem;
    line-height: 1.2;
  }
  .mobile-booking-bar .btn {
    flex: 0 0 auto;
    min-height: 50px;
    padding: 0.75rem 1rem;
    font-size: 0.78rem;
  }
}

@media (max-width: 420px) {
  .product-quick-cta .btn { width: 100%; }
  .booking-aside .btn {
    padding-inline: 1rem;
    white-space: normal;
    text-align: center;
  }
  .mobile-booking-copy { font-size: 1rem; }
  .mobile-booking-bar .btn { letter-spacing: 0.04em; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Image lightbox-like figure */
.figure-block {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  padding: 0;
  margin: 1.5rem 0;
}
.figure-block img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.figure-block figcaption {
  padding: 1rem 1.25rem;
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--rain);
  font-size: 0.98rem;
}

/* ---------- Lightbox ---------- */

.is-zoomable { cursor: zoom-in; }

body.lightbox-lock { overflow: hidden; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 4vw, 3.5rem);
  background: rgba(24, 37, 24, 0.94);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.22s ease;
}
.lightbox.is-open { opacity: 1; }
.lightbox[hidden] { display: none; }

.lightbox-figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: 100%;
  max-height: 100%;
}

.lightbox-img {
  display: block;
  max-width: min(100%, 1200px);
  max-height: calc(100vh - 11rem);
  width: auto;
  height: auto;
  object-fit: contain;
  cursor: zoom-out;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
  opacity: 0;
  transform: scale(0.985);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.lightbox-img.is-in { opacity: 1; transform: none; }

.lightbox-caption {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  max-width: 46rem;
  text-align: center;
  color: var(--fog);
}
.lightbox-count {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose-soft);
}
.lightbox-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.02rem;
  line-height: 1.5;
  opacity: 0.85;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  display: grid;
  place-items: center;
  background: rgba(255, 254, 251, 0.08);
  border: 1px solid rgba(242, 235, 223, 0.24);
  color: var(--fog);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.lightbox-close:hover,
.lightbox-nav:hover { background: rgba(255, 254, 251, 0.18); border-color: rgba(242, 235, 223, 0.5); }
.lightbox-close:focus-visible,
.lightbox-nav:focus-visible { outline: 2px solid var(--rose-soft); outline-offset: 3px; }

.lightbox-close {
  top: clamp(0.75rem, 2.5vw, 1.75rem);
  right: clamp(0.75rem, 2.5vw, 1.75rem);
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
}
.lightbox-close svg { width: 1.15rem; height: 1.15rem; }

.lightbox-nav {
  top: 50%;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  transform: translateY(-50%);
}
.lightbox-nav:hover { transform: translateY(-50%) scale(1.06); }
.lightbox-nav svg { width: 1.35rem; height: 1.35rem; }
.lightbox-prev { left: clamp(0.5rem, 2.5vw, 2rem); }
.lightbox-next { right: clamp(0.5rem, 2.5vw, 2rem); }
.lightbox-nav[hidden] { display: none; }

@media (max-width: 640px) {
  .lightbox-img { max-height: calc(100vh - 13rem); }
  .lightbox-nav { top: auto; bottom: 1rem; transform: none; }
  .lightbox-nav:hover { transform: scale(1.06); }
}

@media (prefers-reduced-motion: reduce) {
  .lightbox, .lightbox-img, .lightbox-nav, .lightbox-close { transition: none; }
  .lightbox-img { transform: none; }
}

/* ---------- Print-safe ---------- */

@media print {
  .site-header, .site-footer, .nav-toggle, .booking-aside, .mobile-booking-bar { display: none; }
  .lightbox { display: none; }
}

/* ---------- Photography-led home ---------- */

.skip-link { position: fixed; top: -80px; left: 1rem; z-index: 100; padding: .8rem 1.2rem; background: var(--paper); color: var(--forest-deep); }
.skip-link:focus { top: 1rem; }
.home-page .site-header { position: fixed; width: 100%; background: transparent; border-color: rgba(255,255,255,.22); backdrop-filter: none; transition: background .25s, border-color .25s; }
.home-page .site-header .brand, .home-page .site-header .nav-links a { color: white; }
.home-page .site-header .nav-toggle svg { stroke: white; }
.home-page .site-header .nav { min-height: 88px; }
.home-page .site-header .nav-cta { background: white; border-color: white; color: var(--forest-deep); }
.home-page .site-header .lang-switch { background: transparent; border-color: rgba(255,255,255,.5); }
.home-page .site-header .lang-switch a { color: white; }
.home-page .site-header .lang-switch a.active { color: var(--forest-deep); background: white; }
.home-page .site-header .lang-switch a:hover { color: var(--forest-deep); background: var(--fog); }
.home-page .site-header.is-scrolled { background: var(--cream); border-color: var(--line-soft); }
.home-page .site-header.is-scrolled .brand, .home-page .site-header.is-scrolled .nav-links a { color: var(--forest-deep); }
.home-page .site-header.is-scrolled .nav-toggle svg { stroke: var(--forest-deep); }
.home-page .site-header.is-scrolled .nav-cta { background: var(--forest); border-color: var(--forest); color: white; }
.home-page .site-header.is-scrolled .lang-switch { border-color: var(--line); }
.home-page .site-header.is-scrolled .lang-switch a { color: var(--forest-deep); }
.home-page .site-header.is-scrolled .lang-switch a.active { background: var(--forest-deep); color: white; }
.nav-links a[aria-current="page"]::after { content: ''; position: absolute; height: 1px; background: currentColor; bottom: 0; left: 0; right: 0; }

.home-hero { min-height: min(840px, 100svh); position: relative; isolation: isolate; overflow: hidden; display: flex; align-items: center; padding: 160px 0 130px; color: white; background: #263d36; }
.home-hero-media, .home-hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; }
.home-hero-media { z-index: -2; }
.home-hero-media img { object-fit: cover; object-position: 50% 46%; animation: landscape-arrive 1.8s ease-out both; }
.home-hero::after { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(10,27,24,.66), rgba(10,27,24,.3) 55%, rgba(10,27,24,.06)), linear-gradient(180deg, rgba(8,24,19,.42), transparent 30%, transparent 65%, rgba(8,24,19,.58)); }
.home-hero-content { width: 100%; }
.home-hero .eyebrow { color: #fff; font-size: .68rem; font-weight: 600; letter-spacing: .18em; margin-bottom: 1.5rem; }
.home-hero .eyebrow span { margin-inline: .7rem; opacity: .65; }
.home-hero h1 { color: white; font-size: clamp(3.5rem, 6.5vw, 6rem); line-height: 1.02; max-width: 850px; letter-spacing: -.035em; margin-bottom: 1.7rem; text-wrap: balance; }
.home-hero h1 em { font-weight: 400; color: #F0D8B9; }
.home-hero-content > p { color: rgba(255,255,255,.92); font-size: 1.05rem; line-height: 1.8; margin-bottom: 2rem; max-width: 570px; }
.home-hero-content > * { animation: content-arrive .8s ease-out both; }
.home-hero-content > h1 { animation-delay: .1s; }
.home-hero-content > p { animation-delay: .2s; }
.home-hero-content > .hero-cta { animation-delay: .3s; }
.hero-cta { display: flex; flex-wrap: wrap; align-items: center; gap: 1.6rem; }
.btn--light { background: var(--cream); color: var(--forest-deep); border-color: var(--cream); }
.btn--light:hover { background: white; color: var(--forest); border-color: white; }
.hero-private { color: white; display: inline-flex; gap: .8rem; align-items: center; min-height: 48px; font-size: .9rem; border-bottom: 1px solid rgba(255,255,255,.55); }
.hero-private:hover { color: #F0D8B9; }
.hero-bottom { position: absolute; left: 0; right: 0; bottom: 28px; display: flex; align-items: center; justify-content: space-between; font-size: .73rem; letter-spacing: .04em; }
.hero-location, .hero-bottom a { display: inline-flex; gap: .65rem; align-items: center; color: white; }
.hero-bottom a { min-height: 44px; }
.hero-bottom a span { font-size: 1.2rem; }

.home-page h2 { font-size: clamp(2.3rem, 3.8vw, 3.7rem); line-height: 1.06; letter-spacing: -.025em; }
.home-page .eyebrow { letter-spacing: .16em; }
.home-page .section { padding: clamp(4rem, 7vw, 6.5rem) 0; }
.home-intro { background: var(--paper); }
.home-intro-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 5rem; align-items: center; }
.home-intro .lede { font-size: 1.1rem; max-width: 600px; }
.home-facts { list-style: none; padding: 0; margin: 1.6rem 0 0; display: flex; flex-wrap: wrap; gap: .7rem 1.3rem; }
.home-facts li { color: var(--forest); font-size: .76rem; font-weight: 500; display: flex; gap: .55rem; align-items: center; }
.home-facts li::before { content: '✓'; font-size: .8rem; }
.home-section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; }
.home-section-head > div { max-width: 670px; }
.home-section-head h2 { margin-bottom: 1rem; }
.home-section-head p { font-size: .95rem; max-width: 620px; }
.text-link { display: inline-flex; align-items: center; gap: .8rem; min-height: 44px; font-size: .88rem; font-weight: 500; border-bottom: 1px solid var(--forest); flex-shrink: 0; }
.text-link .arrow, .destination-row .arrow { transition: transform .25s; }
.text-link:hover .arrow, .destination-row:hover .arrow { transform: translateX(4px); }
.home-tours { scroll-margin-top: 88px; }
.home-tours .tour-grid { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1.7rem; margin-top: 2.6rem; }
.home-tours .tour-card-art { aspect-ratio: 1.18; }
.home-tours .tour-card-art img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 42%; }
.home-tours .tour-card:last-child .tour-card-art img { object-position: 50% 60%; }
.home-tours .tour-card h3 { font-size: 1.65rem; }
.home-tours .tour-card-body { padding: 1.5rem 0 0; }
.home-tours .tour-card-footer { gap: 1rem; align-items: flex-end; flex-wrap: wrap; }
.home-tours .tour-card-price { font-family: var(--font-sans); font-style: normal; display: flex; flex-direction: column; gap: .2rem; }
.home-tours .tour-card-price strong { font-size: 1.5rem; font-weight: 500; line-height: 1.15; }
.home-tours .tour-card-price span { font-size: .73rem; color: var(--rain); }
.home-tours .tour-card-link { font-size: .76rem; letter-spacing: 0; text-transform: none; min-height: 44px; }

.home-local { display: grid; grid-template-columns: 1fr 1fr; background: var(--forest-deep); }
.home-local-photo { position: relative; min-height: 680px; overflow: hidden; }
.home-local-photo img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; object-position: 49% center; }
.home-local-photo::after { content: ''; position: absolute; inset: 65% 0 0; background: linear-gradient(transparent,rgba(5,20,18,.65)); }
.home-local-photo figcaption { position: absolute; z-index: 1; bottom: 1.8rem; left: 2rem; right: 2rem; color: white; font-size: .73rem; }
.home-local-copy { padding: clamp(3rem, 5vw, 5.5rem); max-width: 720px; align-self: center; }
.home-local h2, .home-local h3 { color: white; }
.home-local .eyebrow { color: #E3BB99; }
.home-local .lede { color: #CAD5CE; margin-top: 1.5rem; font-size: 1rem; }
.local-details { list-style: none; margin: 2rem 0 1.7rem; padding: 0; }
.local-details li { border-top: 1px solid #40564C; padding-top: 1.1rem; margin-top: 1.1rem; }
.local-details h3 { font-family: var(--font-sans); font-size: .94rem; font-weight: 500; margin-bottom: .5rem; }
.local-details p { font-size: .84rem; color: #BBCAC1; }
.home-local .text-link { color: white; border-color: #AABBB0; }

.home-fleet { background: var(--paper); }
.vehicle-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1.8rem; margin-top: 2.5rem; }
.vehicle img { width: 100%; aspect-ratio: 3/2; object-fit: cover; background: var(--fog); }
.vehicle figcaption { padding-top: 1.2rem; }
.vehicle h3 { font-family: var(--font-sans); font-weight: 500; font-size: 1.1rem; margin-bottom: .5rem; }
.vehicle p { font-size: .8rem; }
.fleet-note { border-top: 1px solid var(--line-soft); padding-top: 1.2rem; margin-top: 2rem; font-size: .76rem; }
.home-destinations { background: var(--fog); }
.home-guide-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(3rem, 8vw, 7rem); }
.home-guide-grid h2 { margin-bottom: 1.5rem; }
.home-guide-grid .lede { font-size: .95rem; }
.destination-row { display: flex; gap: 1.5rem; align-items: center; border-top: 1px solid #C4CEC2; padding: 1.6rem 0; }
.destination-row:last-child { border-bottom: 1px solid #C4CEC2; }
.destination-number { font-size: .75rem; color: var(--rain); }
.destination-row h3 { font-size: 1.8rem; margin-bottom: .35rem; }
.destination-copy > span { font-size: .77rem; color: var(--rain); }
.destination-row .arrow { margin-left: auto; flex-shrink: 0; }
.home-faq { background: var(--paper); }
.home-faq .home-guide-grid > div > p { font-size: .95rem; }
.home-faq-item { border-top: 1px solid var(--line); }
.home-faq-item:last-child { border-bottom: 1px solid var(--line); }
.home-faq-item summary { display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; list-style: none; padding: 1.45rem 0; cursor: pointer; color: var(--forest-deep); font-size: .95rem; font-weight: 500; }
.home-faq-item summary::-webkit-details-marker { display: none; }
.home-faq-item summary::after { content: '+'; font-size: 1.4rem; font-weight: 400; flex-shrink: 0; }
.home-faq-item[open] summary::after { content: '−'; }
.home-faq-item p { font-size: .9rem; padding: 0 2.2rem 1.5rem 0; line-height: 1.8; }
.home-final { color: white; background: var(--forest); text-align: center; }
.home-final h2 { color: white; }
.home-final .eyebrow { color: #E3BB99; }
.home-final p { color: #D7E1D9; max-width: 610px; margin: 1.5rem auto 2rem; font-size: 1rem; }
.home-final-actions { display: flex; justify-content: center; align-items: center; gap: 2rem; }
.home-final-actions > a:not(.btn) { color: white; font-size: .9rem; text-decoration: underline; text-underline-offset: 5px; }
.photo-credit { color: #C9D4CA; font-size: .7rem; }
.site-footer .brand { font-size: 1.15rem; line-height: 1.2; }
.site-footer .brand .brand-mark { height: 62px; }
.footer-links li { color: #C9D4CA; font-size: .85rem; }

.will-reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.will-reveal.is-visible { opacity: 1; transform: none; }
.will-reveal:focus-within { opacity: 1; transform: none; }
@keyframes content-arrive { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes landscape-arrive { from { transform: scale(1.045); } to { transform: scale(1); } }

html[lang="zh-CN"] .home-hero h1 { font-size: clamp(2.7rem, 4.9vw, 4.5rem); line-height: 1.35; letter-spacing: -.025em; }
html[lang="zh-CN"] .home-hero h1 em { font-style: normal; }
html[lang="zh-CN"] .home-page h2 { font-size: clamp(2rem, 3.1vw, 3rem); line-height: 1.3; }
html[lang="zh-CN"] .home-tours .tour-card h3 { font-size: 1.4rem; }
html[lang="zh-CN"] .destination-row h3 { font-size: 1.5rem; }

@media (min-width: 1700px) {
  .home-hero { min-height: min(1000px, 100svh); }
}
@media (max-width: 1000px) {
  .home-section-head { align-items: flex-start; flex-direction: column; gap: .5rem; }
  .home-intro-grid { gap: 3rem; }
  .home-tours .tour-grid { gap: 1.2rem; }
  .home-local-copy { padding: 3rem 2rem; }
}
@media (max-width: 880px) {
  .home-page .site-header .nav { min-height: 76px; }
  .home-page .site-header .nav-links a { color: var(--forest-deep); }
  .home-page .site-header .nav-links { box-shadow: 0 10px 20px rgba(10,27,24,.1); }
  .home-hero { padding-top: 150px; min-height: min(780px, 100svh); }
  .home-hero h1 { font-size: clamp(3.5rem, 8vw, 5rem); }
  .home-local { grid-template-columns: 1fr; }
  .home-local-photo { min-height: 400px; }
  .home-local-photo img { object-position: center 48%; }
  .home-local-copy { max-width: none; padding: 3.5rem var(--gutter); }
  .home-local .local-details { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.6rem; }
  .home-intro-grid, .home-guide-grid { gap: 2.5rem; }
}
@media (max-width: 640px) {
  .home-hero { min-height: 100svh; padding: 145px 0 100px; align-items: center; }
  .home-hero-media img { object-position: 43% center; }
  .home-hero::after { background: linear-gradient(180deg,rgba(10,27,24,.48),rgba(10,27,24,.24) 25%,rgba(10,27,24,.62) 70%,rgba(10,27,24,.7)); }
  .home-hero .eyebrow { font-size: .57rem; letter-spacing: .09em; margin-bottom: 1.4rem; }
  .home-hero .eyebrow span { margin-inline: .3rem; }
  .home-hero h1 { font-size: clamp(3.2rem, 10.8vw, 4.5rem); max-width: 480px; margin-bottom: 1.3rem; }
  .home-hero-content > p { font-size: .94rem; line-height: 1.75; margin-bottom: 1.5rem; }
  .home-hero-content > p br { display: none; }
  .hero-cta { align-items: flex-start; flex-direction: column; gap: .6rem; }
  .hero-bottom { bottom: 17px; font-size: .63rem; }
  .home-intro-grid, .home-guide-grid { grid-template-columns: 1fr; gap: 2rem; }
  .home-intro .lede { font-size: 1rem; }
  .home-tours .tour-grid, .vehicle-grid { grid-template-columns: 1fr; gap: 2.8rem; }
  .home-tours .tour-card-art { aspect-ratio: 1.25; }
  .home-tours .tour-card-footer { flex-wrap: nowrap; }
  .home-local-photo { min-height: 360px; }
  .home-local .local-details { display: block; }
  .vehicle img { aspect-ratio: 3/2; }
  .home-final-actions { flex-direction: column; gap: 1.5rem; }
  .destination-row { gap: 1rem; }
  .destination-row h3 { font-size: 1.65rem; }
  html[lang="zh-CN"] .home-hero h1 { font-size: clamp(2rem, 7vw, 2.8rem); line-height: 1.5; }
  html[lang="zh-CN"] .home-hero .eyebrow { letter-spacing: .02em; }
  html[lang="zh-CN"] .home-page h2 { font-size: 2rem; }
}
@media (max-width: 640px) and (max-height: 640px) {
  .home-hero { padding: 110px 0 68px; }
  .home-hero h1 { font-size: 2.55rem; }
  .home-hero .eyebrow { margin-bottom: 1rem; }
  .home-hero-content > p { font-size: .88rem; line-height: 1.6; margin-bottom: 1.1rem; }
  html[lang="zh-CN"] .home-hero h1 { font-size: 1.75rem; line-height: 1.4; }
}
@media (prefers-reduced-motion: reduce) {
  .will-reveal { opacity: 1; transform: none; }
  .home-hero-media img, .home-hero-content > * { animation: none; }
}
@media print {
  .will-reveal { opacity: 1; transform: none; }
  .home-hero { min-height: 0; }
}
