:root {
  --color-primary: #14532d;
  --color-primary-strong: #052e16;
  --color-secondary: #0f766e;
  --color-accent: #d97706;
  --color-accent-soft: #fef3c7;
  --color-river: #0e7490;
  --color-earth: #7c4a22;
  --color-background: #f7f5ea;
  --color-surface: #ffffff;
  --color-surface-soft: #eef7ec;
  --color-foreground: #0f172a;
  --color-muted: #475569;
  --color-border: #d9e5d4;
  --color-error: #b91c1c;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.12);
  --shadow-lift: 0 28px 70px rgba(5, 46, 22, 0.18);
  --radius: 8px;
  --container: 1120px;
  --header-height: 64px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0 42rem, rgba(20, 83, 45, 0.06) 42rem 70rem, rgba(14, 116, 144, 0.06) 70rem 100%),
    linear-gradient(135deg, #fbf7e8 0%, #f1f8ee 42%, #edf7f6 100%);
  color: var(--color-foreground);
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

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

button,
.button,
select,
input {
  touch-action: manipulation;
}

button,
.button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(217, 119, 6, 0.9);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  transform: translateY(-150%);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
}

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

.site-header {
  position: fixed;
  top: 0.65rem;
  left: 50%;
  transform: translateX(-50%);
  width: min(var(--container), calc(100% - 1.5rem));
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: var(--header-height);
  padding: 0.35rem 0.45rem 0.35rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(5, 46, 22, 0.78);
  color: #fff;
  box-shadow: 0 18px 45px rgba(5, 46, 22, 0.22);
  backdrop-filter: blur(16px);
  transition: min-height 220ms ease, background 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.site-header.is-scrolled {
  min-height: 56px;
  background: rgba(5, 46, 22, 0.92);
  box-shadow: 0 14px 34px rgba(5, 46, 22, 0.26);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  min-height: 52px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  overflow: hidden;
}

.brand-logo {
  width: auto;
  height: 48px;
  max-width: none;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.16));
  transition: height 220ms ease;
}

.site-header.is-scrolled .brand-logo {
  height: 42px;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 0.5rem;
}

.nav-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.94rem;
  font-weight: 700;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  transform: translateY(-1px);
}

.nav-cta {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 1rem;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(217, 119, 6, 0.32);
  transition: transform 180ms ease, box-shadow 180ms ease;
  white-space: nowrap;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(217, 119, 6, 0.4);
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.2rem;
  transition: width 220ms ease, background 180ms ease, box-shadow 180ms ease;
}

.language-toggle button {
  min-width: 42px;
  min-height: 36px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 800;
  transition:
    width 220ms ease,
    min-width 220ms ease,
    opacity 180ms ease,
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.language-toggle button:hover,
.language-toggle button.is-active {
  background: #fff;
  color: var(--color-primary-strong);
}

.hero {
  position: relative;
  min-height: 92dvh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 12rem;
  background: linear-gradient(180deg, rgba(247, 245, 234, 0), #f7f5ea);
  pointer-events: none;
}

.hero picture,
.hero img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero img {
  object-fit: cover;
  object-position: center 43%;
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(5, 46, 22, 0.04), rgba(5, 46, 22, 0.88)),
    linear-gradient(90deg, rgba(5, 46, 22, 0.9), rgba(124, 74, 34, 0.28) 54%, rgba(15, 23, 42, 0.08));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
  padding: 8rem 0 5rem;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: #b45309;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.hero .eyebrow {
  color: #fbbf24;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  line-height: 1.05;
  margin: 0;
}

h1 {
  max-width: 11ch;
  font-size: clamp(3.4rem, 16vw, 8.5rem);
  text-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

h2 {
  font-size: clamp(2rem, 7vw, 4.5rem);
  max-width: 12ch;
}

h3 {
  font-size: 1.35rem;
}

.hero-copy {
  max-width: 40rem;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.05rem, 2.6vw, 1.35rem);
  text-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.hero-proof span {
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.45rem 0.7rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.88rem;
  font-weight: 700;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  font-weight: 700;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.12);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.18);
}

.button.primary {
  background: linear-gradient(135deg, #f59e0b, var(--color-accent));
  color: #fff;
}

.button.primary:hover {
  background: #b45309;
}

.button.ghost {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

.button.small {
  min-height: 44px;
  width: 100%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: #fff;
}

.section {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.visual-story {
  display: grid;
  gap: 1.25rem;
  width: min(var(--container), calc(100% - 2rem));
  margin: -3.5rem auto 0;
  position: relative;
  z-index: 2;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: calc(var(--radius) + 6px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(240, 253, 244, 0.88));
  box-shadow: var(--shadow-lift);
  backdrop-filter: blur(10px);
}

.story-copy {
  padding: 0.5rem;
}

.story-copy h2 {
  max-width: 13ch;
}

.story-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.story-collage img {
  width: 100%;
  min-height: 190px;
  max-height: 340px;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 14px 34px rgba(5, 46, 22, 0.16);
}

.story-collage img:first-child {
  grid-row: span 2;
  min-height: 100%;
}

.intro-band {
  display: grid;
  gap: 1rem;
  padding: 1rem 0 0;
}

.metric {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(217, 119, 6, 0.18);
  border-left: 4px solid var(--color-accent);
  padding: 1rem 1rem 1rem 1.25rem;
  background: linear-gradient(135deg, #fff, var(--color-accent-soft));
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.metric strong {
  display: block;
  color: var(--color-primary);
  font-size: 2.2rem;
  line-height: 1;
}

.metric span {
  color: var(--color-muted);
}

.section-heading {
  position: relative;
}

.section-heading {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.section-heading p:not(.eyebrow) {
  max-width: 44rem;
  margin: 0;
  color: var(--color-muted);
}

.trip-grid,
.gallery-grid {
  display: grid;
  gap: 1rem;
}

.trip-card,
.booking-form,
.schedule-panel,
.detail-panel,
.gallery-grid figure {
  border: 1px solid rgba(20, 83, 45, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.08);
}

.trip-card {
  overflow: hidden;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.trip-card.is-active {
  border-color: var(--color-accent);
  box-shadow: 0 20px 50px rgba(217, 119, 6, 0.2);
}

.trip-card:hover {
  transform: translateY(-3px);
}

.trip-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 360ms ease, filter 360ms ease;
}

.trip-card:hover img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.035);
}

.trip-body {
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
}

.trip-body p {
  margin: 0;
  color: var(--color-muted);
}

.trip-type {
  width: fit-content;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.1);
  color: var(--color-secondary);
  padding: 0.22rem 0.55rem;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.split-section {
  display: grid;
  gap: 1rem;
  align-items: start;
}

.detail-panel,
.schedule-panel {
  padding: clamp(1rem, 4vw, 2rem);
}

.detail-panel {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(240, 253, 244, 0.92)),
    var(--color-surface);
}

.schedule-panel {
  background:
    linear-gradient(135deg, rgba(5, 46, 22, 0.96), rgba(15, 118, 110, 0.92)),
    var(--color-primary-strong);
  color: #fff;
}

.detail-panel p {
  color: var(--color-muted);
}

.schedule-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.facilities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.facilities span {
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 0.45rem 0.7rem;
  background: var(--color-surface-soft);
  color: var(--color-primary-strong);
  font-weight: 700;
  font-size: 0.9rem;
}

.schedule-notes {
  display: grid;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.schedule-notes span {
  display: flex;
  align-items: center;
  min-height: 48px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  padding: 0.7rem 0.85rem;
  font-weight: 700;
}

.booking-section {
  width: min(900px, calc(100% - 2rem));
}

.booking-form {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(237, 247, 246, 0.94)),
    var(--color-surface);
  padding: clamp(1rem, 4vw, 2rem);
}

.form-grid {
  display: grid;
  gap: 1rem;
}

label,
legend {
  color: var(--color-foreground);
  font-weight: 700;
}

input,
select {
  width: 100%;
  min-height: 48px;
  margin-top: 0.35rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  color: var(--color-foreground);
  padding: 0.75rem;
}

input[type="date"] {
  appearance: auto;
  color-scheme: light;
}

.field-helper {
  display: block;
  margin-top: 0.25rem;
  color: var(--color-muted);
  font-size: 0.85rem;
  font-weight: 600;
}

input:focus,
select:focus {
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.12);
}

input[aria-invalid="true"],
select[aria-invalid="true"] {
  border-color: var(--color-error);
}

.error-message {
  display: block;
  min-height: 1.25rem;
  margin-top: 0.2rem;
  color: var(--color-error);
  font-size: 0.9rem;
  font-weight: 400;
}

.trip-mode {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  border: 0;
  padding: 1rem 0 0;
  margin: 0;
}

.trip-mode label {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  background: var(--color-surface-soft);
}

.trip-mode input {
  width: 1.1rem;
  min-height: auto;
  margin: 0;
}

.checkout-summary {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.25rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--color-primary-strong), var(--color-river));
  color: #fff;
  padding: 1rem;
}

.checkout-summary div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.checkout-summary span,
.checkout-summary p {
  color: rgba(255, 255, 255, 0.8);
}

.checkout-summary strong {
  font-variant-numeric: tabular-nums;
}

.checkout-summary.is-private {
  background: linear-gradient(135deg, #7c4a22, var(--color-primary-strong));
}

.checkout-summary p {
  margin: 0;
}

.submit-button {
  width: 100%;
  margin-top: 1rem;
}

.form-footnote {
  margin: 0.85rem 0 0;
  color: var(--color-muted);
  font-size: 0.95rem;
}

.gallery-grid figure {
  overflow: hidden;
  margin: 0;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.gallery-grid figure:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 420ms ease, filter 420ms ease;
}

.gallery-grid figure:hover img {
  filter: saturate(1.08);
  transform: scale(1.035);
}

.gallery-grid figcaption {
  padding: 1rem;
  color: var(--color-muted);
  font-weight: 700;
}

.site-footer {
  padding: clamp(2.5rem, 7vw, 4.5rem) clamp(1rem, 4vw, 3rem) 5.5rem;
  background:
    linear-gradient(135deg, rgba(5, 46, 22, 0.98), rgba(15, 23, 42, 0.98)),
    #0f172a;
  color: #fff;
}

.footer-inner {
  width: min(var(--container), 100%);
  display: grid;
  gap: 2rem;
  margin: 0 auto;
}

.footer-brand {
  display: grid;
  grid-template-columns: 76px 1fr;
  align-items: center;
  gap: 1rem;
  max-width: 38rem;
}

.footer-brand img {
  width: 76px;
  height: 76px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  object-fit: cover;
  object-position: center;
  padding: 0.1rem;
}

.footer-brand strong {
  display: block;
  font-size: clamp(1.35rem, 4vw, 2rem);
  line-height: 1.1;
}

.site-footer p {
  max-width: 38rem;
  margin: 0.35rem 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-columns {
  display: grid;
  gap: 1rem;
}

.footer-columns > div {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem;
}

.footer-columns h3 {
  margin: 0 0 0.75rem;
  color: #fbbf24;
  font-size: 0.88rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.footer-columns a,
.footer-bottom a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.82);
  transition: color 180ms ease, transform 180ms ease;
}

.footer-columns a {
  width: 100%;
}

.footer-columns a:hover,
.footer-bottom a:hover {
  color: #fff;
  transform: translateX(2px);
}

.footer-bottom {
  width: min(var(--container), 100%);
  display: grid;
  gap: 0.75rem;
  margin: 2rem auto 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.25rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

.floating-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: linear-gradient(135deg, #22c55e, #15803d);
  color: #fff;
  box-shadow: var(--shadow-soft);
  font-weight: 700;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 1.15rem;
  z-index: 70;
  max-width: min(92vw, 420px);
  transform: translate(-50%, 1.5rem);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(5, 46, 22, 0.94);
  color: #fff;
  box-shadow: var(--shadow-lift);
  padding: 0.8rem 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 620ms ease,
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 220ms ease,
    border-color 180ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.trip-card.reveal,
.gallery-grid figure.reveal,
.metric.reveal {
  transition-delay: var(--reveal-delay, 0ms);
}

@media (min-width: 680px) {
  .nav-links {
    display: flex;
  }

  .intro-band {
    grid-template-columns: repeat(3, 1fr);
  }

  .trip-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .visual-story {
    grid-template-columns: 0.72fr 1.28fr;
    align-items: end;
    padding: 1.25rem;
  }

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

  .footer-columns {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-bottom {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

@media (min-width: 960px) {
  .trip-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .split-section {
    grid-template-columns: 1.15fr 0.85fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-flow: dense;
  }

  .gallery-grid .featured {
    grid-row: span 2;
  }

  .gallery-grid .featured img {
    aspect-ratio: 4 / 6.3;
  }

  .footer-inner {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
  }
}

@media (max-width: 679px) {
  :root {
    --header-height: 58px;
  }

  .site-header {
    top: 0.5rem;
    left: 0.5rem;
    right: 0.5rem;
    width: auto;
    max-width: none;
    transform: none;
    min-height: var(--header-height);
    padding: 0.3rem 0.42rem 0.3rem 0.55rem;
    justify-content: flex-start;
    gap: 0.45rem;
  }

  .brand {
    min-width: 46px;
    min-height: 46px;
  }

  .brand-logo {
    height: 42px;
  }

  .nav-cta {
    min-height: 44px;
    padding-inline: 0.85rem;
    font-size: 0.9rem;
    order: 2;
    margin-left: auto;
  }

  .language-toggle {
    position: fixed;
    top: calc(0.5rem + var(--header-height) + 0.55rem);
    right: 0.75rem;
    z-index: 51;
    order: 3;
    width: 46px;
    min-height: 40px;
    margin-left: 0;
    background: rgba(5, 46, 22, 0.82);
    box-shadow: 0 14px 32px rgba(5, 46, 22, 0.22);
    backdrop-filter: blur(14px);
  }

  .language-toggle.is-open {
    width: 86px;
    background: rgba(5, 46, 22, 0.9);
  }

  .language-toggle button {
    min-width: 36px;
    min-height: 34px;
    padding: 0;
  }

  .language-toggle:not(.is-open) button:not(.is-active) {
    width: 0;
    min-width: 0;
    opacity: 0;
    pointer-events: none;
    transform: scale(0.82);
  }

  .hero-content {
    width: calc(100% - 2rem);
    max-width: none;
    padding-top: 7.25rem;
    padding-bottom: 3.5rem;
  }

  h1 {
    max-width: 8ch;
    font-size: clamp(2.65rem, 15vw, 4.25rem);
    line-height: 1.02;
  }

  h2 {
    max-width: 13ch;
    font-size: clamp(1.85rem, 10vw, 3.15rem);
  }

  .hero-copy {
    max-width: 21rem;
    font-size: 1rem;
    line-height: 1.5;
  }

  .hero-actions .button {
    min-width: 0;
    padding-inline: 0.75rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    width: 100%;
  }

  .section,
  .visual-story,
  .booking-section {
    width: calc(100% - 2rem);
    max-width: none;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 100%;
  }

  .hero-proof span {
    min-width: 0;
    text-align: center;
    font-size: 0.78rem;
    padding-inline: 0.55rem;
  }

  .hero-proof span:last-child {
    grid-column: 1 / -1;
  }

  .site-footer {
    padding-bottom: 6rem;
  }
}

@media (max-width: 430px) {
  .nav-links {
    display: none;
  }

  .site-header {
    gap: 0.35rem;
  }

  .nav-cta {
    padding-inline: 0.7rem;
    min-width: 64px;
  }

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

  .footer-brand {
    grid-template-columns: 64px 1fr;
  }

  .footer-brand img {
    width: 64px;
    height: 64px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
