/*
 * Tidal Observatory design system — Bill McKim's Jersey Shore Whale Watch.
 * Coastal field-guide aesthetics: ocean-ink surfaces, mist-white reading space,
 * Harbor Signal Red reserved for booking actions, asymmetric horizon compositions.
 * Every component reinforces clear Belmar trip planning over generic travel styling.
 */

@font-face {
  font-family: "Bricolage Grotesque";
  src: url("../fonts/bricolage-500.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Bricolage Grotesque";
  src: url("../fonts/bricolage-700.ttf") format("truetype");
  font-weight: 700 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Source Sans 3";
  src: url("../fonts/source-sans-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Source Sans 3";
  src: url("../fonts/source-sans-600.ttf") format("truetype");
  font-weight: 600 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: oklch(0.255 0.055 250);
  --ink-deep: oklch(0.18 0.04 250);
  --ink-quiet: oklch(0.42 0.045 250);
  --ocean: oklch(0.39 0.118 246);
  --ocean-mid: oklch(0.54 0.115 239);
  --mist: oklch(0.965 0.01 228);
  --paper: oklch(0.99 0.003 228);
  --sand: oklch(0.92 0.027 83);
  --dusk: oklch(0.23 0.055 264);
  --dusk-soft: oklch(0.32 0.075 269);
  --signal: #cd0000;
  --signal-dark: #9d0000;
  --signal-light: #f4e2e2;
  --gold: oklch(0.75 0.13 76);
  --rule: oklch(0.8 0.025 232);
  --white: oklch(0.995 0.001 220);
  --focus: oklch(0.74 0.18 81);
  --shadow: 0 18px 40px oklch(0.2 0.05 250 / 0.13);
  --space-xxs: 0.25rem;
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4.5rem;
  --space-4xl: 6rem;
  --page: min(1180px, calc(100% - 2rem));
  --reading: min(720px, 100%);
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Source Sans 3", "Trebuchet MS", sans-serif;
  font-size: 1.075rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

a { color: inherit; }

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

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  left: var(--space-md);
  top: -5rem;
  color: var(--ink-deep);
  background: var(--gold);
  padding: 0.65rem 0.9rem;
  font-weight: 700;
  transition: top 160ms var(--ease-out);
}

.skip-link:focus { top: var(--space-md); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 1px solid oklch(0.79 0.025 233 / 0.45);
  background: oklch(0.995 0.001 220 / 0.96);
  backdrop-filter: blur(16px);
}

.header-inner {
  width: var(--page);
  min-height: 76px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: var(--space-sm);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
  color: var(--ink-deep);
  text-decoration: none;
}

.brand-mark {
  width: 46px;
  height: 46px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-text { min-width: 0; }

.brand-kicker {
  display: block;
  color: var(--ocean);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.1;
  text-transform: uppercase;
}

.brand-name {
  display: block;
  font-family: "Bricolage Grotesque", "Trebuchet MS", sans-serif;
  font-size: clamp(0.9rem, 2.2vw, 1.08rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.02;
}

.nav-toggle {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 0;
  color: var(--ink-deep);
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle-line,
.nav-toggle-line::before,
.nav-toggle-line::after {
  display: block;
  width: 23px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  content: "";
  transition: transform 180ms var(--ease-out), opacity 160ms var(--ease-out);
}

.nav-toggle-line { position: relative; }
.nav-toggle-line::before { position: absolute; transform: translateY(-7px); }
.nav-toggle-line::after { position: absolute; transform: translateY(7px); }
.nav-toggle[aria-expanded="true"] .nav-toggle-line { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-line::before { transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-line::after { transform: rotate(-45deg); }

.site-nav {
  position: absolute;
  inset: calc(100% + 1px) 0 auto;
  display: none;
  padding: var(--space-md) max(1rem, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.site-nav[data-open="true"] { display: block; }

.site-nav ul {
  display: grid;
  gap: 0.15rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
  display: block;
  padding: 0.8rem 0.25rem;
  color: var(--ink-deep);
  font-weight: 600;
  text-decoration: none;
}

.site-nav a[aria-current="page"],
.site-nav a:hover { color: var(--signal); }

.button,
.booking-button,
.text-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.7rem 1.05rem;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms var(--ease-out), background 160ms var(--ease-out), color 160ms var(--ease-out), border-color 160ms var(--ease-out);
}

.button:active,
.booking-button:active,
.text-button:active { transform: scale(0.97); }

.booking-button {
  color: var(--white);
  background: var(--signal);
  box-shadow: 0 8px 20px oklch(0.36 0.15 28 / 0.22);
}

.booking-button:hover { background: var(--signal-dark); }

.button--light {
  color: var(--ink-deep);
  border-color: var(--white);
  background: var(--white);
}

.button--quiet {
  color: var(--ink-deep);
  border-color: currentColor;
  background: transparent;
}

.button--quiet:hover { color: var(--ocean); }

.header-book { min-width: 105px; }

.main { overflow: hidden; }

.hero {
  position: relative;
  min-height: min(760px, calc(100svh - 76px));
  display: grid;
  align-items: end;
  padding: clamp(7rem, 13vw, 11rem) 0 clamp(3rem, 7vw, 6rem);
  color: var(--white);
  background: var(--ink-deep);
  isolation: isolate;
}

.hero::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  background: var(--hero-image, none) center / cover no-repeat;
  content: "";
}

.hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(104deg, oklch(0.17 0.045 250 / 0.94) 0%, oklch(0.2 0.05 251 / 0.72) 45%, oklch(0.18 0.04 250 / 0.15) 100%);
  content: "";
}

.hero--dusk::after {
  background: linear-gradient(106deg, oklch(0.17 0.055 269 / 0.93) 0%, oklch(0.24 0.08 269 / 0.70) 53%, oklch(0.22 0.05 269 / 0.22) 100%);
}

.hero__inner { width: var(--page); margin: 0 auto; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 var(--space-md);
  color: color-mix(in oklch, var(--gold) 92%, white);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before { width: 1.8rem; height: 1px; background: currentColor; content: ""; }

h1, h2, h3, h4 {
  margin-top: 0;
  color: inherit;
  font-family: "Bricolage Grotesque", "Trebuchet MS", sans-serif;
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

h1 { max-width: 17ch; margin-bottom: var(--space-lg); font-size: clamp(2.7rem, 8vw, 6rem); }
h2 { margin-bottom: var(--space-md); font-size: clamp(2rem, 5vw, 3.6rem); }
h3 { margin-bottom: var(--space-xs); font-size: clamp(1.3rem, 2.5vw, 1.8rem); }

.hero__lede {
  max-width: 53ch;
  margin: 0 0 var(--space-xl);
  color: oklch(0.955 0.008 225);
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  line-height: 1.5;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: var(--space-sm); }

.hero__horizon {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: clamp(3rem, 7vw, 6rem);
  background: var(--paper);
  clip-path: polygon(0 47%, 55% 0, 100% 40%, 100% 100%, 0 100%);
}

.departure-line {
  width: var(--page);
  margin: -1.1rem auto 0;
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-md);
  align-items: center;
  padding: 0.95rem 0;
  color: var(--ink-quiet);
  font-size: 0.95rem;
}

.departure-line::before {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 0.35rem var(--signal-light);
  content: "";
}

.section { padding: var(--space-3xl) 0; }
.section--mist { background: var(--mist); }
.section--ink { color: var(--white); background: var(--ink-deep); }
.section--dusk { color: var(--white); background: var(--dusk); }
.section--paper { background: var(--paper); }

.section-inner { width: var(--page); margin: 0 auto; }

.section-heading { max-width: 49rem; }
.section-heading p { max-width: 62ch; margin: 0; color: var(--ink-quiet); font-size: 1.1rem; }
.section--ink .section-heading p, .section--dusk .section-heading p { color: oklch(0.88 0.02 240); }

.section-label {
  display: block;
  margin-bottom: var(--space-xs);
  color: var(--ocean);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section--ink .section-label, .section--dusk .section-label { color: var(--gold); }

.tours-flow { display: grid; gap: var(--space-xl); margin-top: var(--space-xl); }

.tour-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 1px 0 var(--rule);
}

.tour-row__image { min-height: 250px; background: var(--tour-image) center / cover no-repeat; }

.tour-row__copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--space-lg);
  padding: clamp(1.5rem, 5vw, 3rem);
}

.tour-row__copy h3 { max-width: 17ch; }
.tour-row__copy p { max-width: 54ch; margin: 0; color: var(--ink-quiet); }

.tour-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
  margin: 0;
  padding: 0;
  color: var(--ink-quiet);
  font-size: 0.92rem;
  list-style: none;
}

.tour-meta li { display: inline-flex; align-items: center; gap: 0.45rem; }
.tour-meta li::before { width: 0.36rem; height: 0.36rem; border-radius: 50%; background: var(--signal); content: ""; }

.tour-row__actions { display: flex; flex-wrap: wrap; gap: var(--space-sm); align-items: center; }
.tour-row__link { color: var(--ink-deep); font-weight: 700; text-underline-offset: 0.28em; }
.tour-row__link:hover { color: var(--signal); }

.trust-ribbon {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin: var(--space-xl) 0 0;
  overflow: hidden;
  border: 1px solid color-mix(in oklch, var(--white) 30%, transparent);
}

.trust-ribbon__item { padding: var(--space-lg); background: color-mix(in oklch, var(--ink) 78%, transparent); }
.trust-ribbon__item strong { display: block; margin-bottom: 0.15rem; color: var(--gold); font-family: "Bricolage Grotesque", sans-serif; font-size: 1.25rem; letter-spacing: -0.03em; }
.trust-ribbon__item span { display: block; font-size: 0.9rem; line-height: 1.35; }

.split-observation {
  display: grid;
  gap: var(--space-xl);
  align-items: center;
}

.split-observation__image {
  position: relative;
  min-height: 320px;
  background: var(--split-image) center / cover no-repeat;
}


.prose { max-width: var(--reading); }
.prose p { margin: 0 0 1rem; }
.prose p:last-child { margin-bottom: 0; }
.prose a { color: var(--ocean); font-weight: 700; text-underline-offset: 0.22em; }
.prose a:hover { color: var(--signal); }

.fact-grid { display: grid; grid-template-columns: 1fr; gap: 1px; margin-top: var(--space-xl); border: 1px solid var(--rule); background: var(--rule); }
.fact { padding: var(--space-lg); background: var(--paper); }
.fact dt { margin-bottom: 0.35rem; color: var(--ocean); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.fact dd { margin: 0; color: var(--ink-deep); font-family: "Bricolage Grotesque", sans-serif; font-size: 1.15rem; font-weight: 700; line-height: 1.25; }

.night-feature { position: relative; padding: var(--space-3xl) 0; background: var(--night-image) center / cover no-repeat; isolation: isolate; }
.night-feature::before { position: absolute; z-index: -1; inset: 0; background: linear-gradient(90deg, oklch(0.16 0.055 269 / 0.97) 0%, oklch(0.2 0.065 269 / 0.86) 48%, oklch(0.17 0.05 269 / 0.32) 100%); content: ""; }
.night-feature__content { width: var(--page); margin: 0 auto; }
.night-feature__content h2 { max-width: 13ch; }
.night-feature__content p { max-width: 48ch; color: oklch(0.94 0.014 238); font-size: 1.1rem; }

.info-band { display: grid; gap: var(--space-xl); align-items: start; }
.info-band__intro { max-width: 36rem; }
.info-band__intro p { margin-bottom: 0; color: var(--ink-quiet); }

.details-list {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.details-list li {
  position: relative;
  padding-left: 1.25rem;
  color: var(--ink-quiet);
}

.details-list li::before { position: absolute; left: 0; top: 0.62em; width: 0.47rem; height: 0.47rem; border-radius: 50%; background: var(--signal); content: ""; }
.details-list strong { color: var(--ink-deep); }

.faq-list { display: grid; gap: 0; margin-top: var(--space-xl); border-top: 1px solid var(--rule); }
.faq { border-bottom: 1px solid var(--rule); }
.faq summary { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 64px; padding: 1rem 0; cursor: pointer; color: var(--ink-deep); font-family: "Bricolage Grotesque", sans-serif; font-weight: 700; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { flex: 0 0 auto; color: var(--signal); content: "+"; font-size: 1.65rem; font-weight: 400; }
.faq[open] summary::after { content: "–"; }
.faq__answer { max-width: 67ch; padding: 0 0 1.25rem; color: var(--ink-quiet); }
.faq__answer p { margin: 0; }

.booking-handoff {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-top: 4px solid var(--signal);
  color: var(--ink-deep);
  background: var(--white);
  box-shadow: var(--shadow);
}

.booking-handoff h2 { max-width: 17ch; margin-bottom: 0.7rem; font-size: clamp(1.7rem, 3.6vw, 2.5rem); }
.booking-handoff p { max-width: 58ch; margin: 0 0 1.2rem; color: var(--ink-quiet); }
.booking-status { min-height: 1.3em; margin-top: 0.85rem; color: var(--ink-quiet); font-size: 0.92rem; }

.page-hero {
  position: relative;
  min-height: 390px;
  display: grid;
  align-items: end;
  padding: 5rem 0 4rem;
  color: var(--white);
  background: var(--page-image, none) center / cover no-repeat, var(--ink-deep);
  isolation: isolate;
}

.page-hero::after { position: absolute; z-index: -1; inset: 0; background: linear-gradient(110deg, oklch(0.17 0.04 250 / 0.93) 0%, oklch(0.2 0.05 250 / 0.54) 58%, oklch(0.2 0.05 250 / 0.25) 100%); content: ""; }
.page-hero .hero__inner { width: var(--page); }
.page-hero h1 { max-width: 17ch; margin-bottom: var(--space-md); font-size: clamp(2.5rem, 6vw, 4.7rem); }
.page-hero p { max-width: 55ch; margin: 0; font-size: 1.15rem; }

.breadcrumb { width: var(--page); margin: 0 auto; padding: 1rem 0 0; color: var(--ink-quiet); font-size: 0.86rem; }
.breadcrumb a { color: var(--ocean); font-weight: 700; text-underline-offset: 0.2em; }

.offer-layout { width: var(--page); margin: 0 auto; padding: var(--space-3xl) 0; }
.offer-layout__lead { display: grid; gap: var(--space-2xl); }
.offer-layout__lead .prose { max-width: 67ch; font-size: 1.12rem; }

.content-grid { display: grid; gap: var(--space-2xl); margin-top: var(--space-3xl); }
.content-card { padding: var(--space-xl); background: var(--mist); }
.content-card h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); }
.content-card p { color: var(--ink-quiet); }

.related-links { display: grid; gap: 0.8rem; margin: var(--space-lg) 0 0; padding: 0; list-style: none; }
.related-links a { color: var(--ink-deep); font-weight: 700; text-underline-offset: 0.22em; }
.related-links a:hover { color: var(--signal); }

.archive-list { display: grid; gap: 1px; margin-top: var(--space-xl); background: var(--rule); border: 1px solid var(--rule); }
.archive-card { padding: clamp(1.25rem, 4vw, 2rem); background: var(--paper); }
.archive-card h2 { margin-bottom: 0.5rem; font-size: clamp(1.45rem, 3vw, 2rem); }
.archive-card p { max-width: 68ch; margin: 0 0 0.85rem; color: var(--ink-quiet); }
.archive-card a { color: var(--ocean); font-weight: 700; text-underline-offset: 0.2em; }

.callout {
  max-width: var(--reading);
  padding: var(--space-xl);
  color: var(--ink-deep);
  background: var(--sand);
}
.callout h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); }
.callout p { margin: 0; }

.archive-note { max-width: 66ch; margin: var(--space-xl) 0 0; padding: var(--space-lg); color: var(--ink-quiet); background: var(--mist); }
.archive-note p { margin: 0; }

.site-footer { color: oklch(0.9 0.016 235); background: var(--ink-deep); }
.footer-main { width: var(--page); margin: 0 auto; padding: var(--space-3xl) 0 var(--space-xl); }
.footer-grid { display: grid; gap: var(--space-2xl); }
.footer-brand { max-width: 45rem; }
.footer-brand .brand { color: var(--white); }
.footer-brand .brand-kicker { color: var(--gold); }
.footer-brand p { max-width: 68ch; margin: var(--space-lg) 0 0; color: oklch(0.82 0.02 235); }
.footer-heading { margin: 0 0 0.75rem; color: var(--white); font-family: "Bricolage Grotesque", sans-serif; font-size: 1rem; font-weight: 700; letter-spacing: 0; }
.footer-links { display: grid; gap: 0.35rem; margin: 0; padding: 0; list-style: none; }
.footer-links a { color: oklch(0.86 0.018 235); text-underline-offset: 0.22em; }
.footer-links a:hover { color: var(--gold); }
.footer-seo { margin-top: var(--space-2xl); padding-top: var(--space-xl); border-top: 1px solid oklch(0.8 0.03 235 / 0.32); }
.footer-seo p { max-width: 74ch; margin: 0; color: oklch(0.79 0.018 235); }
.footer-meta { display: flex; flex-wrap: wrap; gap: 0.75rem 1.25rem; align-items: center; margin-top: var(--space-xl); font-size: 0.88rem; }
.footer-meta a { color: oklch(0.9 0.018 235); }
.footer-attribution { margin-top: var(--space-sm); color: oklch(0.76 0.018 235); font-size: 0.83rem; }
.footer-attribution p { margin: 0; }
.footer-attribution a { color: oklch(0.9 0.018 235); }

.mobile-book-bar {
  position: fixed;
  z-index: 70;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  padding: 0.65rem 1rem;
  border-top: 1px solid var(--rule);
  background: var(--paper);
  box-shadow: 0 -8px 20px oklch(0.2 0.05 250 / 0.12);
}
.mobile-book-bar span { color: var(--ink-quiet); font-size: 0.86rem; font-weight: 600; }
.mobile-book-bar .booking-button { min-height: 44px; padding: 0.62rem 0.9rem; }

.status-message { width: var(--page); margin: 0 auto; padding: 0.8rem 0; color: var(--ink-quiet); font-size: 0.92rem; }

@media (min-width: 700px) {
  .header-inner { grid-template-columns: minmax(220px, 1fr) auto auto; }
  .nav-toggle { display: none; }
  .site-nav { position: static; display: block; padding: 0; border: 0; background: transparent; box-shadow: none; }
  .site-nav ul { display: flex; align-items: center; gap: 0.15rem; }
  .site-nav a { padding: 0.7rem 0.6rem; font-size: 0.92rem; }
  .site-nav a:hover { background: var(--mist); }
  .hero__actions { gap: var(--space-md); }
  .trust-ribbon { grid-template-columns: repeat(4, 1fr); }
  .tour-row { grid-template-columns: 0.9fr 1.1fr; }
  .tour-row:nth-child(even) .tour-row__image { order: 2; }
  .tour-row__image { min-height: 360px; }
  .split-observation { grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr); }
  .fact-grid { grid-template-columns: repeat(3, 1fr); }
  .fact-grid--two { grid-template-columns: repeat(2, 1fr); }
  .info-band { grid-template-columns: 0.9fr 1.1fr; }
  .content-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.5fr 0.8fr 0.8fr; }
  .mobile-book-bar { display: none; }
}

@media (min-width: 1024px) {
  .section { padding: var(--space-4xl) 0; }
  .site-nav ul { gap: 0.4rem; }
  .site-nav a { padding-inline: 0.72rem; }
  .offer-layout__lead { grid-template-columns: 1.1fr 0.9fr; }
  .booking-handoff { align-self: start; }
}

@media (max-width: 699px) {
  body { padding-bottom: 74px; }
  .header-book { display: none; }
  .brand-mark { width: 42px; height: 42px; }
  .hero { min-height: 615px; }
  .hero__actions .button, .hero__actions .booking-button { width: 100%; }
  .page-hero { min-height: 340px; padding-top: 4rem; }
}

@media (prefers-reduced-motion: no-preference) {
  .hero__inner > * { animation: horizon-rise 500ms var(--ease-out) both; }
  .hero__inner > :nth-child(2) { animation-delay: 70ms; }
  .hero__inner > :nth-child(3) { animation-delay: 120ms; }
  .tour-row { transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out); }
  .tour-row:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
}

@keyframes horizon-rise {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@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; }
}
