/* ==========================================================================
   Chesapeake Cast & Blast
   Palette and type are derived from the printed flyer and logo artwork.
   ========================================================================== */

:root {
  --forest-950: #0b1207;
  --forest-900: #16240f;
  --forest-850: #1a2c16;
  --forest-800: #1d3115;
  --forest-700: #27431c;
  --forest-600: #345a25;
  --moss-500: #4a7a33;
  --moss-400: #6b9c4e;

  --cream-50: #fbf9f3;
  --cream-100: #f4f1e8;
  --cream-200: #e9e4d6;
  --sand-300: #d3c9b0;
  --sand-400: #b8ab8c;

  --amber-600: #b9782c;
  --amber-500: #d2913f;
  --amber-400: #e0a652;
  --seafoam: #8dc4af;

  --ink: #14180f;
  --ink-70: #4a5142;
  --ink-50: #6f7566;

  --font-display: "Oswald", "Haettenschweiler", "Arial Narrow", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-script: "Kaushan Script", "Brush Script MT", cursive;

  --shell: 1200px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --radius: 4px;
  --radius-lg: 8px;

  --shadow-sm: 0 1px 2px rgba(11, 18, 7, 0.08), 0 2px 8px rgba(11, 18, 7, 0.06);
  --shadow-md: 0 4px 12px rgba(11, 18, 7, 0.1), 0 12px 32px rgba(11, 18, 7, 0.1);
  --shadow-lg: 0 10px 24px rgba(11, 18, 7, 0.14), 0 28px 60px rgba(11, 18, 7, 0.16);

  --header-h: 76px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* --------------------------------------------------------------- reset ---- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream-50);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* Images carry width/height attributes to reserve layout space, but those
   attributes act as presentational hints that would otherwise beat any
   `aspect-ratio` we set. Resetting height here lets the CSS win. */
img {
  height: auto;
}

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0.005em;
  margin: 0 0 0.6em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.4rem, 6.4vw, 4.4rem);
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

h2 {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  text-transform: uppercase;
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

h4 {
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

p {
  margin: 0 0 1.1em;
}

a {
  color: var(--forest-700);
  text-decoration-color: color-mix(in srgb, var(--forest-700) 35%, transparent);
  text-underline-offset: 0.18em;
  transition: color 0.18s var(--ease);
}

a:hover {
  color: var(--amber-600);
}

:focus-visible {
  outline: 3px solid var(--amber-500);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -140%);
  z-index: 200;
  padding: 0.75rem 1.25rem;
  background: var(--forest-900);
  color: var(--cream-50);
  font-weight: 600;
  border-radius: 0 0 var(--radius) var(--radius);
  transition: transform 0.2s var(--ease);
}

.skip-link:focus {
  transform: translate(-50%, 0);
  color: var(--cream-50);
}

/* ------------------------------------------------------------- layout ---- */

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.shell--narrow {
  max-width: 760px;
}

.shell--wide {
  max-width: 1400px;
}

.section {
  padding-block: clamp(3.5rem, 8vw, 6.5rem);
}

.section--tight {
  padding-block: clamp(2.5rem, 5vw, 4rem);
}

.section--cream {
  background: var(--cream-100);
}

.section--forest {
  background: var(--forest-900);
  color: var(--cream-100);
}

.section--forest h2,
.section--forest h3 {
  color: var(--cream-50);
}

.section--ink {
  background: var(--forest-950);
  color: var(--cream-100);
}

.stack > * + * {
  margin-top: var(--stack-gap, 1rem);
}

.center {
  text-align: center;
}

.section-head {
  max-width: 62ch;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-head.center {
  margin-inline: auto;
}

.section-head p {
  font-size: 1.075rem;
  color: var(--ink-70);
  margin-bottom: 0;
}

.section--forest .section-head p,
.section--ink .section-head p {
  color: color-mix(in srgb, var(--cream-100) 78%, transparent);
}

.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber-600);
  margin-bottom: 0.9rem;
}

.section--forest .eyebrow,
.section--ink .eyebrow,
.hero .eyebrow {
  color: var(--amber-400);
}

.script {
  font-family: var(--font-script);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}

.lede {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.6;
  color: var(--ink-70);
}

.section--forest .lede,
.section--ink .lede,
.hero .lede,
.page-hero .lede {
  color: color-mix(in srgb, var(--cream-100) 88%, transparent);
}

.rule {
  width: 64px;
  height: 3px;
  border: 0;
  margin: 0 0 1.5rem;
  background: var(--amber-500);
}

.center .rule {
  margin-inline: auto;
}

/* ------------------------------------------------------------ buttons ---- */

.btn {
  --btn-bg: var(--amber-500);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.9rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--btn-fg);
  background: var(--btn-bg);
  border: 2px solid var(--btn-bg);
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease),
    background-color 0.18s var(--ease), border-color 0.18s var(--ease),
    color 0.18s var(--ease);
}

.btn:hover {
  color: var(--btn-fg);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  background: color-mix(in srgb, var(--btn-bg) 88%, #000);
  border-color: color-mix(in srgb, var(--btn-bg) 88%, #000);
}

.btn:active {
  transform: translateY(0);
}

.btn--forest {
  --btn-bg: var(--forest-800);
}

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--cream-50);
  border-color: color-mix(in srgb, var(--cream-100) 55%, transparent);
}

.btn--ghost:hover {
  background: var(--cream-50);
  border-color: var(--cream-50);
  color: var(--forest-900);
}

.btn--outline {
  --btn-bg: transparent;
  --btn-fg: var(--forest-800);
  border-color: color-mix(in srgb, var(--forest-800) 30%, transparent);
}

.btn--outline:hover {
  background: var(--forest-800);
  border-color: var(--forest-800);
  color: var(--cream-50);
}

.btn--lg {
  padding: 1.1rem 2.3rem;
  font-size: 1.02rem;
}

.btn--block {
  width: 100%;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.btn-row.center {
  justify-content: center;
}

@media (max-width: 480px) {
  .btn-row > .btn {
    flex: 1 1 100%;
  }
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: color-mix(in srgb, var(--forest-950) 82%, transparent);
  backdrop-filter: blur(10px) saturate(1.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background-color 0.3s var(--ease), height 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}

.site-header[data-transparent="true"] {
  background: linear-gradient(
    to bottom,
    rgba(11, 18, 7, 0.62),
    rgba(11, 18, 7, 0)
  );
  backdrop-filter: none;
  border-bottom-color: transparent;
}

.site-header.is-stuck {
  background: color-mix(in srgb, var(--forest-950) 94%, transparent);
  backdrop-filter: blur(10px) saturate(1.2);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 6px 24px rgba(11, 18, 7, 0.28);
}

.site-header > .shell {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  max-width: 1400px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  margin-right: auto;
  flex-shrink: 0;
}

.brand__mark {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  padding: 1px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.55);
  transition: transform 0.25s var(--ease);
}

.brand:hover .brand__mark {
  transform: rotate(-6deg) scale(1.04);
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand__name {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-50);
}

.brand__tag {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--seafoam);
  margin-top: 0.32rem;
}

/* desktop nav */

.nav {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.6rem 0.85rem;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: color-mix(in srgb, var(--cream-100) 86%, transparent);
  border-radius: var(--radius);
  background: none;
  border: 0;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.18s var(--ease), background-color 0.18s var(--ease);
}

.nav__link:hover,
.nav__link[aria-expanded="true"] {
  color: var(--cream-50);
  background: rgba(255, 255, 255, 0.09);
}

.nav__link[aria-current="page"] {
  color: var(--amber-400);
}

.nav__link[aria-current="page"]::after {
  content: "";
  position: absolute;
  inset: auto 0.85rem -2px;
  height: 2px;
  background: var(--amber-400);
}

.nav__item {
  position: relative;
}

.nav__caret {
  width: 9px;
  height: 9px;
  transition: transform 0.2s var(--ease);
}

.nav__link[aria-expanded="true"] .nav__caret {
  transform: rotate(180deg);
}

.nav__panel {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  min-width: 290px;
  padding: 0.5rem;
  background: var(--cream-50);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease),
    visibility 0.2s;
}

.nav__panel.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Hover-to-open is a desktop nicety only. Scoping it keeps a phone's sticky
   :hover state from fighting the class the tap handler sets. */
@media (hover: hover) and (min-width: 1001px) {
  .nav__item:hover .nav__panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

.nav__panel a {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--forest-900);
  transition: background-color 0.15s var(--ease);
}

.nav__panel a:hover {
  background: var(--cream-200);
  color: var(--forest-900);
}

.nav__panel a > span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav__panel a > span em {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.12em;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  background: var(--sand-300);
  color: var(--forest-900);
}

.nav__panel small {
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--ink-50);
  letter-spacing: 0;
  text-transform: none;
}

.header-cta {
  display: inline-flex;
  padding: 0.7rem 1.4rem;
  font-size: 0.85rem;
}

.nav-toggle {
  /* Sits above the mobile drawer, which is only translated out of view and
     would otherwise cover the button. */
  position: relative;
  z-index: 2;
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  cursor: pointer;
}

.nav-toggle span {
  position: relative;
  display: block;
  width: 19px;
  height: 2px;
  background: var(--cream-50);
  transition: transform 0.25s var(--ease), background-color 0.2s var(--ease);
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 19px;
  height: 2px;
  background: inherit;
  transition: transform 0.25s var(--ease);
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

.nav-toggle[aria-expanded="true"] span {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] span::before {
  background: var(--cream-50);
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span::after {
  background: var(--cream-50);
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 1000px) {
  .nav-toggle {
    display: inline-flex;
  }

  .header-cta {
    display: none;
  }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto;
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem var(--gutter) 2rem;
    background: var(--forest-950);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(-102%);
    /* Hidden rather than merely offscreen, so the closed drawer cannot swallow
       taps meant for the header and its links stay out of the tab order. */
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.32s var(--ease), visibility 0.32s;
  }

  .nav.is-open {
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
  }

  .nav__link {
    justify-content: space-between;
    width: 100%;
    padding: 1rem 0.25rem;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0;
  }

  .nav__link:hover {
    background: none;
  }

  .nav__panel {
    position: static;
    min-width: 0;
    padding: 0.25rem 0 0.75rem 0.75rem;
    background: none;
    box-shadow: none;
    opacity: 1;
    visibility: hidden;
    transform: none;
    display: none;
  }

  .nav__panel.is-open {
    display: block;
    visibility: visible;
  }

  .nav__panel a {
    color: color-mix(in srgb, var(--cream-100) 88%, transparent);
    padding: 0.65rem 0.5rem;
  }

  .nav__panel a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--cream-50);
  }

  .nav__panel small {
    color: color-mix(in srgb, var(--cream-100) 55%, transparent);
  }

  .nav .btn {
    margin-top: 1.25rem;
  }

  .nav .nav__mobile-cta {
    display: inline-flex;
  }
}

.nav__mobile-cta {
  display: none;
}

body.nav-open {
  overflow: hidden;
}

/* --------------------------------------------------------------- hero ---- */

.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: min(92vh, 820px);
  padding-top: calc(var(--header-h) + 3rem);
  padding-bottom: clamp(3rem, 7vw, 5.5rem);
  color: var(--cream-50);
  isolation: isolate;
  overflow: hidden;
}

.hero--short {
  min-height: min(64vh, 560px);
  align-items: center;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--focus, center);
  animation: hero-drift 24s ease-in-out infinite alternate;
}

@keyframes hero-drift {
  from {
    transform: scale(1.02);
  }
  to {
    transform: scale(1.1);
  }
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
      to top,
      rgba(11, 18, 7, 0.92) 0%,
      rgba(11, 18, 7, 0.6) 38%,
      rgba(11, 18, 7, 0.28) 68%,
      rgba(11, 18, 7, 0.5) 100%
    ),
    radial-gradient(
      120% 90% at 20% 90%,
      rgba(11, 18, 7, 0.55),
      transparent 60%
    );
}

.hero__inner {
  position: relative;
  max-width: 46rem;
}

.hero h1 {
  color: var(--cream-50);
  text-shadow: 0 2px 24px rgba(11, 18, 7, 0.5);
  margin-bottom: 0.35em;
}

.hero h1 .script {
  display: block;
  font-size: 0.52em;
  color: var(--seafoam);
  text-transform: none;
  margin-top: 0.15em;
}

.hero .lede {
  max-width: 44ch;
  margin-bottom: 2rem;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.38rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: var(--cream-50);
  backdrop-filter: blur(4px);
}

.pill--amber {
  background: var(--amber-500);
  border-color: var(--amber-500);
  color: #fff;
}

.pill--soon {
  background: var(--sand-300);
  border-color: var(--sand-300);
  color: var(--forest-900);
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 1.1rem;
  transform: translateX(-50%);
  display: grid;
  place-items: center;
  gap: 0.4rem;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(251, 249, 243, 0.62);
  text-decoration: none;
}

.hero__scroll:hover {
  color: var(--cream-50);
}

.hero__scroll svg {
  animation: nudge 2s ease-in-out infinite;
}

/* On narrow screens the hero copy reaches the bottom edge, so the scroll cue
   would sit on top of the buttons. */
@media (max-width: 780px) {
  .hero__scroll {
    display: none;
  }
}

@keyframes nudge {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(4px);
  }
}

/* page banner used on interior pages */

.page-hero {
  position: relative;
  padding-top: calc(var(--header-h) + clamp(3rem, 7vw, 5rem));
  padding-bottom: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--cream-50);
  isolation: isolate;
  overflow: hidden;
}

.page-hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--focus, center);
}

.page-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
      to right,
      rgba(11, 18, 7, 0.92) 0%,
      rgba(11, 18, 7, 0.82) 42%,
      rgba(11, 18, 7, 0.45) 100%
    ),
    linear-gradient(to top, rgba(11, 18, 7, 0.55), rgba(11, 18, 7, 0) 60%);
}

.page-hero h1 {
  color: var(--cream-50);
  max-width: 22ch;
  margin-bottom: 0.4em;
}

.page-hero .lede {
  max-width: 52ch;
  margin-bottom: 0;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(251, 249, 243, 0.6);
}

.breadcrumb li + li::before {
  content: "/";
  color: rgba(251, 249, 243, 0.35);
}

.breadcrumb a {
  color: rgba(251, 249, 243, 0.82);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--amber-400);
}

/* ------------------------------------------------------------- grids ---- */

.grid {
  display: grid;
  gap: clamp(1.25rem, 2.5vw, 1.75rem);
}

.grid--2 {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
}

.grid--3 {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr));
}

.grid--4 {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
}

/* ----------------------------------------------------- offering cards ---- */

.offerings {
  display: grid;
  gap: clamp(1.25rem, 2.5vw, 1.6rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
}

/* The two bookable trips get the wider treatment; the three in the pipeline
   sit underneath in a lighter row. */
.offerings--featured {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
}

.offerings--featured .offer__media {
  aspect-ratio: 16 / 10;
}

.offerings--featured .offer__body {
  padding: 1.6rem 1.8rem 1.9rem;
}

.offerings--soon .offer__media {
  aspect-ratio: 3 / 2;
}

.soon-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.4rem 1.5rem;
  margin: clamp(2.5rem, 5vw, 3.75rem) 0 1.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--cream-200);
}

.soon-head h3 {
  margin: 0;
  color: var(--forest-800);
}

.soon-head p {
  margin: 0;
  flex: 1 1 20ch;
  font-size: 0.95rem;
  color: var(--ink-50);
}

.offer {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: inherit;
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease);
}

a.offer:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  color: inherit;
}

.offer__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--forest-900);
}

.offer__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--focus, center);
  transition: transform 0.6s var(--ease);
}

a.offer:hover .offer__media img {
  transform: scale(1.06);
}

.offer__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(11, 18, 7, 0.55),
    rgba(11, 18, 7, 0) 55%
  );
}

.offer__tag {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 2;
}

.offer__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.4rem 1.5rem 1.6rem;
}

.offer__body h3 {
  margin-bottom: 0.5rem;
}

.offer__body p {
  color: var(--ink-70);
  font-size: 0.95rem;
  margin-bottom: 1.1rem;
}

.offer__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  margin: 0 0 1.15rem;
  padding: 0;
  list-style: none;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-50);
}

.offer__meta li {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.offer__more {
  margin-top: auto;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber-600);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

a.offer:hover .offer__more svg {
  transform: translateX(4px);
}

.offer__more svg {
  transition: transform 0.2s var(--ease);
}

.offer--soon {
  background: var(--cream-100);
}

.offer--soon .offer__media img {
  filter: saturate(0.55) brightness(0.82);
}

/* --------------------------------------------------------- feature row --- */

.feature {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
}

.feature--flip .feature__media {
  order: 2;
}

@media (max-width: 760px) {
  .feature--flip .feature__media {
    order: 0;
  }
}

.feature__media {
  position: relative;
}

.feature__media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  aspect-ratio: var(--ratio, 4 / 3);
  object-fit: cover;
  object-position: var(--focus, center);
}

.feature__media--stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  aspect-ratio: 1 / 1;
}

.feature__media--stack img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
}

.feature__media--stack img:first-child {
  grid-row: span 2;
}

.feature__badge {
  position: absolute;
  bottom: -1.25rem;
  right: -1rem;
  padding: 1rem 1.35rem;
  background: var(--amber-500);
  color: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  line-height: 1.1;
}

.feature__badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
}

.feature__badge span {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

@media (max-width: 620px) {
  .feature__badge {
    right: 0.75rem;
    bottom: -1rem;
    padding: 0.75rem 1rem;
  }

  .feature__badge strong {
    font-size: 1.35rem;
  }
}

/* ---------------------------------------------------------- checklist --- */

.checklist {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.checklist li {
  position: relative;
  padding-left: 2rem;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.34em;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50%;
  background: var(--moss-500)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E")
    center / 0.72rem no-repeat;
}

.section--forest .checklist li::before,
.section--ink .checklist li::before {
  background-color: var(--moss-400);
}

.checklist--tight li {
  padding-left: 1.75rem;
}

/* ------------------------------------------------------------- stats ---- */

.stats {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.stat {
  padding: clamp(1.5rem, 3vw, 2.2rem) 1.25rem;
  background: var(--forest-900);
  text-align: center;
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 600;
  color: var(--amber-400);
  line-height: 1;
  margin-bottom: 0.45rem;
}

.stat span {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--cream-100) 74%, transparent);
}

/* --------------------------------------------------------- info cards --- */

.card {
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.card--flat {
  background: var(--cream-100);
  box-shadow: none;
  border: 1px solid var(--cream-200);
}

.card--forest {
  background: var(--forest-800);
  color: var(--cream-100);
  box-shadow: none;
}

.card__icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 1.1rem;
  border-radius: 50%;
  background: color-mix(in srgb, var(--moss-500) 14%, transparent);
  color: var(--forest-700);
}

.section--forest .card__icon,
.card--forest .card__icon {
  background: rgba(255, 255, 255, 0.12);
  color: var(--seafoam);
}

.card h3 {
  margin-bottom: 0.55rem;
}

.card p:last-child {
  margin-bottom: 0;
}

.card p {
  color: var(--ink-70);
  font-size: 0.95rem;
}

.card--forest p {
  color: color-mix(in srgb, var(--cream-100) 78%, transparent);
}

/* --------------------------------------------------------- trip specs --- */

.specs {
  display: grid;
  gap: 0;
  margin: 0;
  border-top: 1px solid var(--cream-200);
}

.specs > div {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.5rem;
  justify-content: space-between;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--cream-200);
}

.specs dt {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ink-50);
}

.specs dd {
  margin: 0;
  font-weight: 500;
  text-align: right;
}

/* ------------------------------------------------------------ gallery --- */

.gallery {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 230px), 1fr));
}

.gallery--strip {
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 1fr);
  grid-template-columns: none;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.75rem;
  scrollbar-width: thin;
}

.gallery--strip > * {
  scroll-snap-align: start;
}

.shot {
  position: relative;
  display: block;
  padding: 0;
  border: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--forest-900);
  cursor: zoom-in;
  aspect-ratio: var(--ratio, 1);
}

.shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--focus, center);
  transition: transform 0.5s var(--ease), opacity 0.3s var(--ease);
}

.shot:hover img {
  transform: scale(1.07);
  opacity: 0.92;
}

.shot--tall {
  --ratio: 3 / 4;
}

.shot--wide {
  --ratio: 3 / 2;
}

/* The full gallery mixes portrait and landscape originals, so every tile is
   forced to one ratio and cropped to fit. Otherwise the rows go ragged. */
.gallery--uniform .shot {
  --ratio: 4 / 5;
}

.shot__zoom {
  position: absolute;
  inset: auto 0.6rem 0.6rem auto;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(11, 18, 7, 0.55);
  color: #fff;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
}

.shot:hover .shot__zoom,
.shot:focus-visible .shot__zoom {
  opacity: 1;
  transform: translateY(0);
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.chip {
  padding: 0.5rem 1.1rem;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--forest-800);
  background: transparent;
  border: 1px solid color-mix(in srgb, var(--forest-800) 22%, transparent);
  border-radius: 999px;
  cursor: pointer;
  transition: background-color 0.18s var(--ease), color 0.18s var(--ease),
    border-color 0.18s var(--ease);
}

.chip:hover {
  border-color: var(--forest-800);
}

.chip[aria-pressed="true"] {
  background: var(--forest-800);
  border-color: var(--forest-800);
  color: var(--cream-50);
}

/* ---------------------------------------------------------- lightbox --- */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(6, 10, 4, 0.94);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s var(--ease), visibility 0.25s;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: min(100%, 1400px);
  max-height: 82vh;
  width: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.lightbox__caption {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(251, 249, 243, 0.66);
}

.lightbox__btn {
  position: absolute;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--cream-50);
  cursor: pointer;
  transition: background-color 0.18s var(--ease);
}

.lightbox__btn:hover {
  background: rgba(255, 255, 255, 0.24);
}

.lightbox__btn--close {
  top: clamp(0.75rem, 3vw, 1.75rem);
  right: clamp(0.75rem, 3vw, 1.75rem);
}

.lightbox__btn--prev {
  left: clamp(0.5rem, 2vw, 1.5rem);
  top: 50%;
  transform: translateY(-50%);
}

.lightbox__btn--next {
  right: clamp(0.5rem, 2vw, 1.5rem);
  top: 50%;
  transform: translateY(-50%);
}

/* ------------------------------------------------------------- forms ---- */

.form-panel {
  padding: clamp(1.6rem, 3.5vw, 2.6rem);
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.form-grid {
  display: grid;
  gap: 1.15rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.field--full {
  grid-column: 1 / -1;
}

.field > label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-70);
}

.field .req {
  color: var(--amber-600);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.8rem 0.95rem;
  background: var(--cream-50);
  border: 1px solid var(--cream-200);
  border-radius: var(--radius);
  transition: border-color 0.18s var(--ease), box-shadow 0.18s var(--ease),
    background-color 0.18s var(--ease);
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236f7566' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  background-size: 1rem;
  padding-right: 2.5rem;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--moss-500);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--moss-500) 18%, transparent);
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: #b4472f;
  background: #fdf6f4;
}

.field__error {
  font-size: 0.82rem;
  font-weight: 500;
  color: #a03d27;
  min-height: 0;
}

.field__hint {
  font-size: 0.82rem;
  color: var(--ink-50);
}

.field--check {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.65rem;
}

.field--check input {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.28rem;
  flex: 0 0 auto;
  accent-color: var(--moss-500);
}

.field--check label {
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink-70);
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  display: none;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 1rem 1.15rem;
  margin-bottom: 1.25rem;
  border-radius: var(--radius);
  font-size: 0.94rem;
  line-height: 1.5;
}

.form-status.is-visible {
  display: flex;
}

.form-status--ok {
  background: color-mix(in srgb, var(--moss-500) 12%, #fff);
  border: 1px solid color-mix(in srgb, var(--moss-500) 34%, transparent);
  color: var(--forest-800);
}

.form-status--error {
  background: #fdf3f0;
  border: 1px solid #e2b6a9;
  color: #8f3521;
}

.form-status--info {
  background: color-mix(in srgb, var(--amber-500) 12%, #fff);
  border: 1px solid color-mix(in srgb, var(--amber-500) 40%, transparent);
  color: #7a4d13;
}

.form-status a {
  color: inherit;
  font-weight: 600;
}

.form-footnote {
  margin: 1.1rem 0 0;
  font-size: 0.85rem;
  color: var(--ink-50);
}

.btn[data-busy="true"] {
  pointer-events: none;
  opacity: 0.75;
}

/* Google's reCAPTCHA v3 notice. Their floating badge is hidden (see below), and
   their terms require this wording in its place, so keep it if you keep the
   spam check. site.js adds it only when a site key is configured. */
.form-legal {
  margin: 0.9rem 0 0;
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--ink-50);
}

.form-legal a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-legal a:hover {
  color: var(--forest-700);
}

/* The badge sits over the bottom corner of the page, which on a phone lands on
   top of the send button. Hidden with visibility so the widget still runs. */
.grecaptcha-badge {
  visibility: hidden;
}

/* ---------------------------------------------------------- contact ---- */

.contact-split {
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
  grid-template-columns: minmax(0, 1fr);
}

@media (min-width: 900px) {
  .contact-split {
    grid-template-columns: 0.85fr 1.15fr;
  }
}

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

.contact-list li {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}

.contact-list .card__icon {
  margin: 0;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
}

.contact-list h4 {
  margin: 0 0 0.15rem;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  color: var(--ink-50);
}

.section--forest .contact-list h4 {
  color: var(--seafoam);
}

.contact-list p,
.contact-list a {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 500;
}

.section--forest .contact-list a {
  color: var(--cream-50);
}

.section--forest .contact-list a:hover {
  color: var(--amber-400);
}

.section--forest .contact-list p {
  color: color-mix(in srgb, var(--cream-100) 80%, transparent);
}

/* ------------------------------------------------------------- CTA ------ */

.cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--cream-50);
  text-align: center;
  padding-block: clamp(3.5rem, 8vw, 6rem);
}

.cta__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.cta__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--focus, center);
}

.cta__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(11, 18, 7, 0.84),
    rgba(11, 18, 7, 0.9)
  );
}

.cta h2 {
  color: var(--cream-50);
  max-width: 28ch;
  margin-inline: auto;
}

.cta .lede {
  max-width: 52ch;
  margin-inline: auto;
  margin-bottom: 2rem;
}

/* ------------------------------------------------------------ quote ---- */

.quote {
  max-width: 52rem;
  margin-inline: auto;
  text-align: center;
}

.quote blockquote {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.005em;
}

.quote figcaption {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber-400);
}

/* --------------------------------------------------------------- faq ---- */

.faq {
  display: grid;
  gap: 0.75rem;
  max-width: 800px;
}

.faq details {
  background: #fff;
  border: 1px solid var(--cream-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.35rem;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  list-style: none;
}

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

.faq summary::after {
  content: "";
  flex: 0 0 auto;
  width: 1rem;
  height: 1rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23345a25' stroke-width='2.6' stroke-linecap='round'%3E%3Cline x1='12' y1='5' x2='12' y2='19'/%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3C/svg%3E")
    center / contain no-repeat;
  transition: transform 0.25s var(--ease);
}

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

.faq details > div {
  padding: 0 1.35rem 1.3rem;
  color: var(--ink-70);
}

.faq details > div > :last-child {
  margin-bottom: 0;
}

/* ------------------------------------------------------------ footer ---- */

.site-footer {
  background: var(--forest-950);
  color: color-mix(in srgb, var(--cream-100) 76%, transparent);
  padding-block: clamp(2.75rem, 6vw, 4rem) 1.75rem;
  font-size: 0.94rem;
}

.footer-grid {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr));
  padding-bottom: 2.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid > div:first-child {
  grid-column: span 1;
  max-width: 32ch;
}

@media (min-width: 900px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  }
}

.site-footer h4 {
  color: var(--cream-50);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  margin-bottom: 1.1rem;
}

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

.site-footer a {
  color: color-mix(in srgb, var(--cream-100) 78%, transparent);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--amber-400);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
}

.footer-brand img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #fff;
  padding: 1px;
}

.footer-brand span {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-50);
}

.socials {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.25rem;
}

.socials a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--cream-50);
  transition: background-color 0.18s var(--ease), transform 0.18s var(--ease);
}

.socials a:hover {
  background: var(--amber-500);
  transform: translateY(-2px);
  color: #fff;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  font-size: 0.84rem;
  color: color-mix(in srgb, var(--cream-100) 58%, transparent);
}

.footer-bottom ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* -------------------------------------------------------- utilities ---- */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.mb-0 {
  margin-bottom: 0;
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

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

@media print {
  .site-header,
  .site-footer,
  .hero__scroll,
  .lightbox {
    display: none !important;
  }
}
