@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@400;500;600;700;800&display=swap");

@font-face {
  font-family: "Norse";
  src:
    local("Norse"),
    local("Norse Bold");
  font-display: swap;
}

:root {
  --bg: #f3ebdd;
  --bg-deep: #e2d7c9;
  --paper: #f9f4eb;
  --paper-strong: #fcf8f1;
  --ink: #201c19;
  --muted: #5b544d;
  --line: rgba(32, 28, 25, 0.12);
  --line-strong: rgba(32, 28, 25, 0.22);
  --olive: #6f8d84;
  --blue: #2f556b;
  --blue-deep: #203c4c;
  --terracotta: #a86554;
  --sand: #b9b0a4;
  --gold: #d1af68;
  --mist: rgba(255, 255, 255, 0.46);
  --shadow: 0 26px 46px rgba(54, 39, 27, 0.08);
  --radius-xl: 16px;
  --radius-lg: 12px;
  --radius-md: 10px;
  --container: min(1240px, calc(100vw - 2.5rem));
  --text-base: clamp(0.99rem, 0.96rem + 0.16vw, 1.05rem);
  --text-lg: clamp(1.06rem, 1rem + 0.34vw, 1.22rem);
  --display: clamp(3.35rem, 2.35rem + 4vw, 5.85rem);
  --section-pad: clamp(3.3rem, 2.5rem + 2.8vw, 5.3rem);
}

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

html {
  scroll-behavior: smooth;
}

section[id],
main[id],
footer[id] {
  scroll-margin-top: 7rem;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", sans-serif;
  font-size: var(--text-base);
  line-height: 1.58;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.4), transparent 16%),
    radial-gradient(circle at top right, rgba(47, 85, 107, 0.14), transparent 19%),
    radial-gradient(circle at 78% 16%, rgba(168, 101, 84, 0.13), transparent 20%),
    radial-gradient(circle at 12% 14%, rgba(209, 175, 104, 0.12), transparent 18%),
    radial-gradient(circle at bottom left, rgba(111, 141, 132, 0.12), transparent 24%),
    radial-gradient(circle at 86% 78%, rgba(168, 101, 84, 0.08), transparent 18%),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.026) 0,
      rgba(255, 255, 255, 0.026) 1px,
      transparent 1px,
      transparent 14px
    ),
    linear-gradient(180deg, #faf4ea 0%, var(--bg) 48%, #efe1d3 100%);
}

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

a {
  color: inherit;
}

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

.page-shell {
  width: var(--container);
  margin: 0 auto;
  position: relative;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1rem 0 0;
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(6px);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: calc(100% + 0.6rem);
  background:
    linear-gradient(180deg, rgba(249, 244, 235, 0.97), rgba(242, 234, 223, 0.92)),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.03) 0,
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px,
      transparent 16px
    );
  border-bottom: 1px solid rgba(31, 27, 23, 0.08);
  z-index: -1;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
  text-decoration: none;
}

.brand-mark {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 8px;
  border: 1px solid var(--line-strong);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.14)),
    rgba(249, 244, 235, 0.9);
  color: var(--ink);
  font-family: "Norse", "Cormorant Garamond", Georgia, serif;
  font-size: 1.16rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.brand-text {
  display: grid;
  gap: 0.08rem;
}

.brand-name,
.brand-tag {
  display: block;
}

.brand-name {
  font-size: 1.04rem;
  font-weight: 700;
  letter-spacing: 0.015em;
}

.brand-tag {
  font-size: 0.86rem;
  color: var(--muted);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 1.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-nav a {
  text-decoration: none;
  color: var(--muted);
  transition: color 180ms ease;
}

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

.site-nav a:hover,
.site-nav a:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  color: var(--ink);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.72rem 1.1rem;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0)),
    var(--blue);
  color: #f7f0e5;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.015em;
}

.section,
.section-sm {
  padding: var(--section-pad) 0;
}

.section-sm {
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
}

.eyebrow,
.service-label,
.scene-kicker,
.step-label,
.pathway-index {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before,
.service-label::before,
.scene-kicker::before,
.step-label::before,
.pathway-index::before {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 1px;
  background: linear-gradient(135deg, var(--gold), var(--terracotta));
  opacity: 0.9;
  transform: rotate(45deg);
}

.eyebrow::after,
.service-label::after,
.scene-kicker::after,
.step-label::after,
.pathway-index::after {
  content: "";
  width: 2.3rem;
  height: 1px;
  background: currentColor;
  opacity: 0.28;
}

.hero {
  position: relative;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding-inline: calc((100vw - var(--container)) / 2);
  padding-top: clamp(2.6rem, 3vw, 3.6rem);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(1.1rem, 2.2vw, 2.55rem);
  align-items: center;
  min-height: calc(100vh - 8rem);
  isolation: isolate;
}

.hero-background-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-background-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(243, 235, 221, 0.34) 0%, rgba(243, 235, 221, 0.3) 26%, rgba(243, 235, 221, 0.18) 50%, rgba(243, 235, 221, 0.16) 72%, rgba(18, 25, 31, 0.16) 100%),
    linear-gradient(180deg, rgba(255, 251, 245, 0.03), rgba(32, 28, 25, 0.08));
}

.hero-section-poster,
.hero-section-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9) brightness(0.9);
  transform: scale(1.015);
}

.hero-section-video {
  display: none;
}

.hero-background-media[data-media-mode="video"] .hero-section-video {
  display: block;
}

.hero-background-media[data-media-mode="video"] .hero-section-poster {
  opacity: 0;
}

.hero-copy {
  max-width: 35rem;
  position: relative;
  z-index: 2;
}

.hero .eyebrow {
  color: #f7efe4;
  text-shadow:
    0 1px 10px rgba(32, 28, 25, 0.42),
    0 0 1px rgba(32, 28, 25, 0.58),
    0 0 2px rgba(32, 28, 25, 0.22);
}

.hero h1,
.section-heading h2,
.difference-lead h2,
.host-copy h2,
.media-story-copy h2,
.next-step-copy h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 0.98;
  text-wrap: balance;
  font-kerning: normal;
}

.hero h1 span {
  display: block;
  padding-bottom: 0.08em;
}

.hero h1 {
  max-width: 11.4ch;
  font-size: clamp(3.2rem, 2.25rem + 3.8vw, 5.45rem);
  margin-bottom: 1rem;
  text-shadow: 0 1px 18px rgba(243, 235, 221, 0.34);
}

.hero-intro {
  max-width: 31rem;
  color: #f7efe4;
  font-size: clamp(1.06rem, 1rem + 0.22vw, 1.18rem);
  line-height: 1.52;
  margin-bottom: 1.35rem;
  text-shadow:
    0 1px 14px rgba(32, 28, 25, 0.34),
    0 0 1px rgba(32, 28, 25, 0.58),
    0 0 2px rgba(32, 28, 25, 0.24);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: stretch;
  width: min(100%, 34rem);
}

@media (min-width: 641px) {
  .hero-actions {
    justify-content: space-between;
  }

  .hero-actions .button:first-child {
    margin-right: auto;
  }

  .hero-actions .button:last-child {
    margin-left: auto;
  }
}

.hero-booking-note {
  width: min(100%, 34rem);
  margin-top: 0.95rem;
  padding: 1.05rem 1.2rem;
  border: 1px solid rgba(255, 247, 236, 0.22);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 251, 246, 0.6), rgba(255, 246, 235, 0.34)),
    linear-gradient(135deg, rgba(209, 175, 104, 0.04), rgba(111, 141, 132, 0.025) 56%, rgba(168, 101, 84, 0.03)),
    rgba(255, 255, 255, 0.18);
  display: grid;
  align-content: center;
  box-shadow: 0 10px 20px rgba(32, 28, 25, 0.03);
  backdrop-filter: blur(4px);
}

.hero-booking-note p {
  margin: 0;
  color: #f7efe4;
  font-size: 0.92rem;
  line-height: 1.52;
  max-width: 100%;
  text-align: center;
  text-wrap: balance;
  text-shadow:
    0 1px 10px rgba(18, 25, 31, 0.38),
    0 0 1px rgba(18, 25, 31, 0.54),
    0 0 2px rgba(18, 25, 31, 0.22);
}

.direct-booking-note {
  font-size: 0.98rem;
  font-weight: 600;
}

.hero-booking-note .direct-booking-note {
  font-size: 1.1rem;
  font-weight: 600;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  min-width: 12.2rem;
  padding: 0.85rem 1.45rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

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

.button-primary {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)),
    var(--blue);
  color: #f8f1e7;
  box-shadow: 0 14px 30px rgba(47, 85, 107, 0.2);
}

.button-secondary {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.16)),
    rgba(249, 244, 235, 0.74);
  color: var(--ink);
  border: 1px solid var(--line-strong);
}

.button-primary:hover,
.button-primary:focus-visible,
.nav-cta:hover,
.nav-cta:focus-visible {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, var(--blue), #3f6b7e 65%, rgba(111, 141, 132, 0.92));
  box-shadow: 0 16px 34px rgba(47, 85, 107, 0.24);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.44), rgba(255, 255, 255, 0.12)),
    rgba(232, 223, 211, 0.82);
  border-color: rgba(168, 101, 84, 0.28);
}

.hero-visual {
  width: min(100%, 28.75rem);
  min-height: auto;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  gap: 0.95rem;
  align-items: start;
  align-content: center;
  justify-items: stretch;
  align-self: center;
  justify-self: start;
  margin-left: -0.35rem;
  position: relative;
  z-index: 2;
}

.visual-card,
.portrait-frame,
.media-story-frame {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.02)),
    linear-gradient(135deg, rgba(209, 175, 104, 0.04), rgba(168, 101, 84, 0.04) 50%, rgba(111, 141, 132, 0.04)),
    rgba(250, 245, 237, 0.34);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.media-figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius-md) + 2px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, rgba(209, 175, 104, 0.04), rgba(168, 101, 84, 0.04) 50%, rgba(111, 141, 132, 0.04)),
    rgba(255, 251, 245, 0.72);
}

.media-figure img,
.media-figure video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-figure [data-media-el="video"] {
  display: none;
}

.media-figure[data-media-mode="video"] [data-media-el="video"] {
  display: block;
}

.media-figure[data-media-mode="video"] [data-media-el="image"] {
  opacity: 0;
}

.media-gallery-controls {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  z-index: 4;
}

.media-gallery-button {
  width: 2.15rem;
  height: 2.15rem;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(255, 247, 236, 0.45);
  background: rgba(32, 28, 25, 0.42);
  color: #fff7ef;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background-color 140ms ease, border-color 140ms ease, transform 140ms ease;
}

.media-gallery-button:hover,
.media-gallery-button:focus-visible {
  background: rgba(47, 85, 107, 0.76);
  border-color: rgba(255, 247, 236, 0.68);
  transform: translateY(-1px);
}

.media-gallery-button:focus-visible {
  outline: 2px solid rgba(209, 175, 104, 0.52);
  outline-offset: 2px;
}

.media-gallery-dots {
  position: absolute;
  left: 50%;
  bottom: 0.85rem;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  z-index: 4;
}

.media-gallery-dot {
  width: 0.52rem;
  height: 0.52rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 247, 236, 0.48);
  cursor: pointer;
  transition: transform 140ms ease, background-color 140ms ease;
}

.media-gallery-dot.is-active {
  background: var(--gold);
  transform: scale(1.14);
}

.media-gallery-dot:focus-visible {
  outline: 2px solid rgba(209, 175, 104, 0.52);
  outline-offset: 2px;
}

.portrait-frame::after,
.media-story-frame::after {
  content: "";
  position: absolute;
  inset: 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 10px;
  pointer-events: none;
}

.visual-card-main::after {
  display: none;
}

.visual-card-main {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: auto;
  padding: 1rem 1.1rem 1.08rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.55rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.46)),
    linear-gradient(135deg, rgba(209, 175, 104, 0.05), rgba(168, 101, 84, 0.04) 44%, rgba(111, 141, 132, 0.04)),
    rgba(248, 239, 227, 0.5);
  backdrop-filter: blur(4px);
}

.visual-card-main::before {
  display: none;
}

.visual-window {
  position: relative;
  min-height: auto;
  margin: 0;
  border-radius: 0;
  border: 0;
  isolation: isolate;
  background: transparent;
  z-index: 2;
}

.visual-window::before {
  display: none;
}

.visual-window > .visual-caption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
}

.hero-media-caption {
  position: relative;
  z-index: 2;
}

.hero-media-caption {
  position: static;
  display: flex;
  align-items: flex-end;
  max-width: 100%;
}

.hero-media-caption .visual-caption {
  position: static;
  color: rgba(32, 28, 25, 0.78);
  text-shadow: none;
}

.hero-media-caption strong {
  color: #fff6eb;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1;
  text-wrap: balance;
}

.visual-card-main-copy {
  max-width: 100%;
  padding: 0;
  display: grid;
  gap: 0.36rem;
  position: relative;
  z-index: 2;
  align-self: stretch;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.visual-card-main h2 {
  max-width: 13ch;
  margin-bottom: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.25rem, 1.78rem + 1.45vw, 3.05rem);
  line-height: 0.98;
  text-wrap: balance;
  color: rgba(24, 21, 18, 0.96);
}

.visual-card-main h2 span {
  display: inline;
}

.visual-card-main p,
.visual-label,
.visual-caption,
.visual-card-quiet strong {
  color: var(--ink);
}

.visual-card-main p {
  color: rgba(32, 28, 25, 0.82);
}

.visual-label,
.visual-caption {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.visual-card-quiet {
  min-height: 9.9rem;
  width: 100%;
  padding: 0.95rem 1.1rem 1.08rem;
  display: grid;
  gap: 0.48rem;
  align-content: center;
  justify-self: stretch;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.42)),
    linear-gradient(135deg, rgba(209, 175, 104, 0.05), rgba(168, 101, 84, 0.04) 44%, rgba(111, 141, 132, 0.04)),
    rgba(248, 239, 227, 0.48);
  backdrop-filter: blur(4px);
}

@media (max-width: 920px) {
  .hero {
    width: auto;
    margin-left: 0;
    padding-inline: 0;
  }

  .hero-visual {
    width: 100%;
  }
}

.visual-card-quiet strong {
  max-width: 18.5rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.62rem;
  font-weight: 600;
  line-height: 0.96;
}

.visual-card-quiet p {
  max-width: 22rem;
  margin-bottom: 0;
  color: rgba(32, 28, 25, 0.76);
}

.section-heading {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 1.45rem;
  max-width: 45rem;
}

.section-heading .eyebrow,
.difference-lead .eyebrow,
.host-copy .eyebrow,
.media-story-copy .eyebrow,
.next-step-copy .eyebrow {
  color: var(--blue);
}

.section-heading.narrow {
  max-width: 42rem;
}

.section-heading h2,
.host-copy h2,
.media-story-copy h2,
.next-step-copy h2 {
  font-size: clamp(2.6rem, 2rem + 1.45vw, 4.2rem);
  margin-bottom: 0;
}

.section-heading p,
.host-copy p,
.next-step-copy p,
.experience-copy p,
.media-story-copy p {
  color: var(--muted);
  max-width: 34rem;
  font-size: 1.03rem;
  line-height: 1.56;
}

.section-bridge {
  margin-top: 0;
}

.collection,
.host.section,
.media-story.section,
.next-step.section {
  padding-top: clamp(3.85rem, 2.8rem + 2.5vw, 4.9rem);
}

.difference.section {
  padding-top: clamp(3.65rem, 2.6rem + 2.5vw, 4.75rem);
  padding-bottom: clamp(3.9rem, 2.8rem + 2.6vw, 5rem);
}

.difference.section,
.host.section,
.media-story.section,
.guest-reviews.section {
  position: relative;
  padding-inline: clamp(1.15rem, 1.8vw, 1.7rem);
  border: 1px solid rgba(31, 27, 23, 0.08);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.difference.section {
  background:
    radial-gradient(circle at top right, rgba(209, 175, 104, 0.18), transparent 28%),
    radial-gradient(circle at 16% 74%, rgba(168, 101, 84, 0.09), transparent 18%),
    linear-gradient(135deg, rgba(255, 250, 241, 0.68), rgba(255, 243, 233, 0.26)),
    linear-gradient(180deg, #fbf1e3 0%, #f4e5d2 100%);
}

.host.section {
  background:
    radial-gradient(circle at top left, rgba(111, 141, 132, 0.2), transparent 26%),
    radial-gradient(circle at bottom right, rgba(168, 101, 84, 0.1), transparent 18%),
    linear-gradient(180deg, #f5efe7 0%, #e7e1d6 100%);
}

.media-story.section {
  background:
    radial-gradient(circle at top right, rgba(47, 85, 107, 0.18), transparent 24%),
    radial-gradient(circle at bottom left, rgba(209, 175, 104, 0.09), transparent 18%),
    radial-gradient(circle at 18% 22%, rgba(111, 141, 132, 0.08), transparent 16%),
    linear-gradient(180deg, #eef0ee 0%, #e3e5e1 100%);
}

.guest-reviews.section {
  background:
    radial-gradient(circle at top right, rgba(168, 101, 84, 0.12), transparent 24%),
    radial-gradient(circle at bottom left, rgba(111, 141, 132, 0.1), transparent 20%),
    radial-gradient(circle at 14% 18%, rgba(209, 175, 104, 0.1), transparent 16%),
    linear-gradient(180deg, #f7f0e7 0%, #ece4da 100%);
}

.experience-list {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: start;
}

.experience {
  display: grid;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, rgba(209, 175, 104, 0.05), rgba(168, 101, 84, 0.04) 44%, rgba(111, 141, 132, 0.04)),
    var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: none;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.experience::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--gold), rgba(199, 154, 74, 0));
}

.experience::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 40%);
  opacity: 0.5;
}

.experience-copy {
  backdrop-filter: none;
}

.experience:first-child {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
}

.experience:nth-child(2) {
  grid-column: 1 / 8;
  grid-template-columns: 1fr;
}

.experience:nth-child(3) {
  grid-column: 8 / -1;
  grid-template-columns: 1fr;
}

.experience:hover {
  transform: translateY(-2px);
  border-color: rgba(23, 20, 18, 0.22);
}

.experience-visual {
  min-height: 20rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.4rem;
  isolation: isolate;
  overflow: hidden;
}

.experience:first-child .experience-visual {
  min-height: 28rem;
}

.experience-walk .experience-visual {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(23, 20, 18, 0.2)),
    linear-gradient(140deg, rgba(47, 85, 107, 0.32), rgba(47, 85, 107, 0.05)),
    linear-gradient(160deg, #ecd8c2, #ccb59d 55%, #f6ecde);
}

.experience-taste .experience-visual {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(23, 20, 18, 0.18)),
    linear-gradient(140deg, rgba(168, 101, 84, 0.34), rgba(168, 101, 84, 0.05)),
    linear-gradient(160deg, #f0dcc8, #d0a98f 56%, #faefe1);
}

.experience-urban .experience-visual {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(23, 20, 18, 0.24)),
    linear-gradient(140deg, rgba(111, 141, 132, 0.34), rgba(47, 85, 107, 0.1)),
    linear-gradient(160deg, #ddd6cc, #afb4a9 52%, #ece2d4);
}

.experience-visual-photo {
  background: #d3c5b4;
}

.experience-visual-photo::before,
.portrait-frame-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(23, 20, 18, 0.3)),
    linear-gradient(160deg, rgba(23, 20, 18, 0.1), rgba(23, 20, 18, 0));
  z-index: 1;
  transition: opacity 200ms ease;
}

.experience-photo,
.portrait-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.experience-photo {
  object-position: center 44%;
}

.scene-caption {
  display: grid;
  gap: 0.4rem;
  max-width: 16rem;
  position: relative;
  z-index: 2;
  color: rgba(255, 248, 239, 0.96);
  text-shadow: 0 2px 12px rgba(18, 25, 31, 0.32);
  transition: opacity 180ms ease, transform 180ms ease;
}

.scene-caption strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 0.98;
  text-wrap: balance;
  color: rgba(255, 248, 239, 0.98);
}

.experience-urban .scene-kicker {
  color: #f7efe4;
  text-shadow:
    0 1px 10px rgba(18, 25, 31, 0.42),
    0 0 1px rgba(18, 25, 31, 0.56),
    0 0 2px rgba(18, 25, 31, 0.24);
}

.visual-caption {
  align-self: flex-end;
  color: rgba(255, 248, 239, 0.9);
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 10px rgba(18, 25, 31, 0.3);
  transition: opacity 180ms ease, transform 180ms ease;
}

.experience-visual .visual-caption,
.portrait-frame > .visual-caption {
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
}

.experience-visual.is-secondary-media::before {
  opacity: 0.12;
}

.experience-visual.is-secondary-media .scene-caption strong {
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
}

.experience-copy {
  padding: clamp(1.2rem, 0.95rem + 1vw, 1.7rem);
  border-top: 1px solid var(--line);
  display: grid;
  align-content: stretch;
  grid-template-rows:
    auto
    minmax(4.7rem, auto)
    minmax(5.4rem, auto)
    auto
    minmax(2.6rem, auto)
    minmax(3.35rem, auto)
    auto;
  gap: 0.72rem;
}

.page-card-media {
  position: absolute;
  inset: 0;
  aspect-ratio: auto;
  margin: 0;
  border: 0;
  border-radius: inherit;
  background: #d7cab9;
  z-index: 0;
}

.page-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(249, 244, 235, 0.9) 0%, rgba(249, 244, 235, 0.82) 26%, rgba(249, 244, 235, 0.72) 52%, rgba(249, 244, 235, 0.9) 100%),
    linear-gradient(135deg, rgba(209, 175, 104, 0.08), rgba(168, 101, 84, 0.06) 42%, rgba(111, 141, 132, 0.06));
}

.page-card-media img,
.page-card-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.aside-media {
  aspect-ratio: 4 / 3;
  margin-bottom: 0.2rem;
}

.detail-support-media {
  aspect-ratio: 16 / 7;
  margin: 0 0 1rem;
}

.experience:first-child .experience-copy {
  border-top: 0;
  border-left: 1px solid var(--line);
}

.experience-copy > * {
  margin-top: 0;
  margin-bottom: 0;
}

.experience-kicker,
.positioning,
.who-its-for {
  font-size: 1.02rem;
}

.experience-kicker {
  color: color-mix(in srgb, var(--olive) 66%, var(--blue));
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}

.experience-copy h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 0.94;
  text-wrap: balance;
  text-wrap-style: balance;
  align-self: start;
}

.experience-copy h3 {
  font-size: clamp(1.78rem, 1.38rem + 0.8vw, 2.35rem);
  min-height: 4.7rem;
}

.experience-summary {
  max-width: 31rem;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.52;
  min-height: 5.4rem;
}

.experience-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
  padding: 0.72rem 0 0.82rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  align-self: start;
}

.experience-meta span {
  display: grid;
  gap: 0.15rem;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.4;
}

.experience-meta strong {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
}

.positioning {
  color: var(--ink);
  font-weight: 700;
  line-height: 1.45;
}

.experience-points,
.host-notes {
  list-style: none;
  padding: 0;
  margin: 0;
}

.experience-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-content: start;
}

.experience-points li,
.host-notes li {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  font-size: 0.96rem;
  color: var(--muted);
}

.experience-points li::before,
.host-notes li::before {
  content: "\2014  ";
  color: var(--terracotta);
}

.who-its-for {
  max-width: 28rem;
  align-self: start;
}

.experience-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem 1rem;
  align-items: end;
  margin-top: auto;
  padding-top: 0.3rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 2.35rem;
  color: var(--ink);
  font-weight: 700;
  font-size: 0.94rem;
  line-height: 1.25;
  text-decoration: none;
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 0.1rem;
}

.text-link-muted {
  color: var(--muted);
  font-weight: 700;
  border-bottom-color: rgba(23, 20, 18, 0.12);
}

.text-link-strong {
  color: var(--blue);
  border-bottom-color: rgba(47, 85, 107, 0.28);
}

.text-link::after {
  content: "\2192";
  margin-left: 0.22em;
}

.difference-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  gap: 0.8rem 0.55rem;
  align-items: center;
  padding-top: 0;
  border-top: 0;
  max-width: 62rem;
  margin-inline: auto;
}

.difference-lead {
  max-width: 33rem;
  justify-self: end;
}

.difference-lead h2 {
  font-size: clamp(2.55rem, 2rem + 1.35vw, 3.8rem);
  margin-bottom: 0.6rem;
}

.difference-lead p:last-child {
  max-width: 30rem;
  color: var(--muted);
  line-height: 1.52;
  margin-bottom: 0;
}

.difference-highlights {
  display: flex;
  flex-direction: column;
  gap: 0.72rem;
  justify-content: center;
  align-self: center;
  width: min(100%, 42rem);
  justify-self: start;
  margin-left: 0;
}

.difference-note {
  padding: 1rem 1.05rem 1.02rem;
  border: 1px solid rgba(31, 27, 23, 0.08);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.08)),
    rgba(255, 251, 245, 0.82);
  box-shadow: 0 10px 26px rgba(49, 38, 24, 0.05);
}

.difference-note:nth-child(1) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.08)),
    rgba(247, 231, 203, 0.9);
}

.difference-note:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0.08)),
    rgba(225, 236, 231, 0.88);
}

.difference-note:nth-child(3) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0.08)),
    rgba(229, 235, 240, 0.9);
}

.difference-note-title {
  display: block;
  margin-bottom: 0.34rem;
  font-weight: 700;
  color: var(--blue);
  font-size: 1rem;
}

.difference-note p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.5;
  max-width: 24rem;
}

.host {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(1.35rem, 2.4vw, 2.5rem);
  align-items: center;
}

.portrait-frame {
  min-height: 34rem;
  position: relative;
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(23, 20, 18, 0.18)),
    linear-gradient(155deg, #e9ddcb, #cbbba7 48%, #a6b2ab 78%, #f5efe6);
  isolation: isolate;
}

.portrait-frame-photo {
  background: #d5c5b1;
}

.portrait-image {
  object-position: center 30%;
}

.portrait-note {
  max-width: 16rem;
  position: relative;
  z-index: 2;
}

.portrait-frame > .visual-caption,
.portrait-note .scene-kicker,
.portrait-note strong {
  color: #f7efe4;
  text-shadow:
    0 1px 10px rgba(18, 25, 31, 0.42),
    0 0 1px rgba(18, 25, 31, 0.56),
    0 0 2px rgba(18, 25, 31, 0.24);
}

.portrait-note strong {
  display: block;
  margin-top: 0.45rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 0.96;
}

.host-copy p {
  max-width: 32rem;
}

.host-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.guest-reviews {
  padding-top: clamp(4.4rem, 3rem + 2.6vw, 5.2rem);
}

.reviews-heading {
  margin-bottom: 1.2rem;
}

.reviews-panel {
  display: grid;
  gap: 1rem;
  padding: 1.05rem 1.05rem 1.15rem;
  border: 1px solid rgba(31, 27, 23, 0.08);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, rgba(209, 175, 104, 0.04), rgba(168, 101, 84, 0.05) 48%, rgba(111, 141, 132, 0.05)),
    rgba(252, 249, 244, 0.7);
}

.reviews-source-bar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.9rem 1.2rem;
  align-items: end;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--line);
}

.review-source-label {
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.reviews-source-bar p {
  margin: 0;
  max-width: 36rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.48;
}

.review-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  align-items: stretch;
}

.review-card {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 0.78rem;
  align-content: start;
  padding: 1.08rem 1.08rem 1.14rem;
  border: 1px solid rgba(23, 20, 18, 0.1);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 248, 239, 0.78), rgba(255, 248, 239, 0.58)),
    rgba(255, 255, 255, 0.58);
}

.review-card:nth-child(1) {
  background:
    linear-gradient(180deg, rgba(255, 252, 245, 0.76), rgba(251, 237, 212, 0.62)),
    rgba(255, 255, 255, 0.58);
}

.review-card:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(251, 252, 248, 0.76), rgba(226, 237, 232, 0.64)),
    rgba(255, 255, 255, 0.58);
}

.review-card:nth-child(3) {
  background:
    linear-gradient(180deg, rgba(250, 251, 252, 0.76), rgba(233, 227, 220, 0.64)),
    rgba(255, 255, 255, 0.58);
}

.review-card p {
  margin: 0;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.42rem;
  line-height: 1.08;
  text-wrap: balance;
}

.review-source {
  display: inline-block;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.reviews-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem 1.5rem;
  padding-top: 0.25rem;
}

.reviews-button {
  flex-shrink: 0;
}

.next-step {
  display: grid;
  gap: 1.05rem;
  align-items: start;
}

.next-step-copy {
  max-width: 36rem;
}

.next-step-copy-wide {
  max-width: 46rem;
}

.next-step-copy h2 {
  line-height: 1.02;
  margin-bottom: 0.55rem;
}

.next-step-copy p {
  max-width: 41rem;
}

.next-step-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(1.2rem, 1rem + 0.9vw, 1.65rem);
  background:
    radial-gradient(circle at top right, rgba(209, 175, 104, 0.11), transparent 24%),
    radial-gradient(circle at 18% 24%, rgba(168, 101, 84, 0.09), transparent 18%),
    radial-gradient(circle at bottom left, rgba(111, 141, 132, 0.1), transparent 24%),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.018) 0,
      rgba(255, 255, 255, 0.018) 1px,
      transparent 1px,
      transparent 12px
    ),
    linear-gradient(180deg, #335d73 0%, var(--blue) 42%, var(--blue-deep) 100%);
  color: #f7efe4;
  border: 1px solid rgba(23, 20, 18, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.next-step-panel::after {
  content: "";
  position: absolute;
  inset: 0.6rem;
  border: 1px solid rgba(247, 239, 228, 0.14);
  border-radius: calc(var(--radius-lg) - 3px);
  pointer-events: none;
}

.next-step-panel .step-label {
  color: rgba(247, 239, 228, 0.72);
}

.next-step-panel .step-label::before {
  background: rgba(247, 239, 228, 0.72);
}

.next-step-panel strong,
.micro-copy {
  color: #f7efe4;
}

.booking-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.booking-option {
  display: grid;
  gap: 0.45rem;
  align-content: start;
  min-height: 100%;
  padding: 0.9rem 0.9rem 0.95rem;
  border: 1px solid rgba(247, 239, 228, 0.11);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01)),
    linear-gradient(135deg, rgba(209, 175, 104, 0.05), rgba(168, 101, 84, 0.05) 48%, rgba(111, 141, 132, 0.05)),
    rgba(255, 255, 255, 0.04);
}

.booking-option strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.95rem;
  font-weight: 600;
  line-height: 0.95;
  color: #f7efe4;
}

.booking-option p {
  margin: 0;
  color: rgba(247, 239, 228, 0.78);
  font-size: 0.92rem;
  line-height: 1.5;
}

.pathway-link {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 0.45rem;
  margin-top: 0.35rem;
  color: #f7efe4;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-bottom: 1px solid rgba(247, 239, 228, 0.22);
  padding-bottom: 0.14rem;
}

.pathway-link::after {
  content: "\2192";
  color: rgba(247, 239, 228, 0.72);
}

.booking-secondary {
  margin-top: 0.85rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(247, 239, 228, 0.12);
}

.booking-secondary .micro-copy {
  max-width: 48rem;
  font-size: 1.08rem;
  line-height: 1.52;
  text-wrap: balance;
  color: rgba(247, 239, 228, 0.84);
}

.booking-secondary .micro-copy a {
  color: #f7efe4;
  text-decoration: none;
  border-bottom: 1px solid rgba(247, 239, 228, 0.2);
  font-weight: 700;
}

.inquiry-shell {
  display: grid;
  gap: 0.95rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(247, 239, 228, 0.12);
}

.inquiry-shell-head {
  display: grid;
  gap: 0.35rem;
}

.inquiry-shell-head p:last-child {
  margin: 0;
  max-width: 34rem;
  color: rgba(247, 239, 228, 0.78);
  font-size: 0.92rem;
  line-height: 1.48;
}

.inquiry-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.inquiry-tab {
  appearance: none;
  border: 1px solid rgba(247, 239, 228, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(247, 239, 228, 0.76);
  min-height: 2.6rem;
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.inquiry-tab.is-active,
.inquiry-tab:hover,
.inquiry-tab:focus-visible {
  background: #f7efe4;
  color: var(--ink);
  border-color: #f7efe4;
}

.inquiry-panels {
  position: relative;
}

.inquiry-form {
  display: none;
  gap: 1rem;
}

.inquiry-form.is-active {
  display: grid;
}

.form-intro {
  display: grid;
  gap: 0.24rem;
}

.form-intro strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.85rem;
  font-weight: 600;
  line-height: 0.98;
  color: #f7efe4;
}

.form-intro p {
  margin: 0;
  max-width: 34rem;
  color: rgba(247, 239, 228, 0.76);
  font-size: 0.92rem;
  line-height: 1.48;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem 0.9rem;
}

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

.form-grid label span {
  color: rgba(247, 239, 228, 0.8);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  padding: 0.9rem 0.95rem;
  border-radius: 12px;
  border: 1px solid rgba(247, 239, 228, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.04);
  color: #f7efe4;
  font: inherit;
  resize: vertical;
}

.form-grid input::placeholder,
.form-grid textarea::placeholder {
  color: rgba(247, 239, 228, 0.42);
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  outline: none;
  border-color: rgba(247, 239, 228, 0.34);
  background: rgba(255, 255, 255, 0.07);
}

.form-grid select {
  appearance: none;
}

.form-grid .full-span {
  grid-column: 1 / -1;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  padding-top: 0.15rem;
}

.form-actions .button-primary {
  background: #f7efe4;
  color: var(--ink);
  box-shadow: none;
}

.form-actions .button-secondary {
  border-color: rgba(247, 239, 228, 0.22);
  color: #f7efe4;
  background: transparent;
}

.micro-copy {
  margin-top: 0;
  margin-bottom: 0;
  color: rgba(247, 239, 228, 0.72);
  font-size: 0.92rem;
  line-height: 1.5;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.95fr) auto;
  gap: 1rem 1.6rem;
  align-items: start;
  padding: 1.45rem 1.1rem 1.8rem;
  margin-top: 1rem;
  background:
    radial-gradient(circle at top right, rgba(209, 175, 104, 0.11), transparent 24%),
    radial-gradient(circle at 18% 20%, rgba(168, 101, 84, 0.09), transparent 18%),
    radial-gradient(circle at bottom left, rgba(111, 141, 132, 0.11), transparent 26%),
    linear-gradient(180deg, #31586f 0%, var(--blue) 36%, var(--blue-deep) 100%);
  border-top: 1px solid rgba(247, 239, 228, 0.12);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  color: rgba(247, 239, 228, 0.76);
  font-size: 0.9rem;
}

.media-credits {
  padding: 0.1rem 0 0.2rem;
}

.media-credits[hidden] {
  display: none !important;
}

.media-credits-inner {
  padding-top: 0.35rem;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0.45rem;
}

.media-credits .eyebrow,
.media-credits-inner h2 {
  display: none;
}

.media-credits-toggle {
  justify-self: start;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(32, 28, 25, 0.54);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  cursor: pointer;
}

.media-credits-toggle:hover,
.media-credits-toggle:focus-visible {
  color: rgba(32, 28, 25, 0.72);
}

.media-credits-toggle:focus-visible {
  outline: 2px solid rgba(209, 175, 104, 0.38);
  outline-offset: 3px;
}

.media-credits-list {
  display: none;
  grid-template-columns: repeat(auto-fit, minmax(11.5rem, 1fr));
  gap: 0.55rem 0.9rem;
  margin-top: 0.05rem;
  padding-top: 0.1rem;
}

.media-credits-inner.is-expanded .media-credits-list {
  display: grid;
}

.media-credit-item {
  display: grid;
  gap: 0.06rem;
}

.media-credit-label {
  color: rgba(32, 28, 25, 0.64);
  font-size: 0.74rem;
  font-weight: 600;
  line-height: 1.35;
}

.media-credit-meta {
  color: rgba(32, 28, 25, 0.46);
  font-size: 0.7rem;
  line-height: 1.42;
}

.media-credit-source {
  color: rgba(47, 85, 107, 0.72);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-brand-block {
  display: grid;
  gap: 0.7rem;
  max-width: 22rem;
}

.footer-brand {
  align-items: flex-start;
}

.site-footer .brand-mark {
  background: rgba(255, 251, 245, 0.92);
}

.site-footer .brand-name {
  color: #f7efe4;
}

.site-footer .brand-tag {
  color: rgba(247, 239, 228, 0.7);
}

.footer-brand-block p,
.footer-meta p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.54;
}

.footer-email {
  display: inline-flex;
  justify-self: flex-start;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid rgba(247, 239, 228, 0.2);
  text-decoration: none;
  color: #f7efe4;
  font-weight: 600;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.05rem;
}

.footer-column {
  display: grid;
  gap: 0.45rem;
  align-content: start;
}

.footer-heading {
  color: #f7efe4;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-column a {
  text-decoration: none;
  color: rgba(247, 239, 228, 0.82);
  font-size: 0.98rem;
}

.footer-meta {
  display: grid;
  gap: 0.45rem;
  justify-items: end;
  text-align: right;
}

.site-footer p {
  margin-bottom: 0;
}

.page-main {
  padding-bottom: 0.2rem;
}

.inner-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
  gap: clamp(0.95rem, 1.8vw, 1.7rem);
  align-items: center;
  min-height: clamp(17rem, 38vh, 22rem);
}

.inner-hero-cover {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-left: 0;
  padding-inline: clamp(1rem, 1.7vw, 1.4rem);
  min-height: clamp(25rem, 58vh, 38rem);
  isolation: isolate;
  border-radius: var(--radius-xl);
}

.inner-hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  margin: 0;
  border: 1px solid rgba(32, 28, 25, 0.08);
  border-radius: inherit;
  background: #d7cab9;
}

.inner-hero-background::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(243, 235, 221, 0.8) 0%, rgba(243, 235, 221, 0.72) 24%, rgba(243, 235, 221, 0.46) 54%, rgba(32, 28, 25, 0.14) 100%),
    linear-gradient(180deg, rgba(255, 251, 245, 0.06), rgba(32, 28, 25, 0.14));
}

.inner-hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
}

.inner-hero-copy {
  max-width: 38rem;
  position: relative;
  z-index: 2;
  padding: 1.2rem 1.3rem 1.25rem;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(249, 244, 235, 0.86), rgba(249, 244, 235, 0.72)),
    rgba(249, 244, 235, 0.64);
  box-shadow: 0 14px 30px rgba(32, 28, 25, 0.06);
}

.inner-hero-copy h1,
.page-band h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3rem, 2.25rem + 2.8vw, 4.9rem);
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: -0.025em;
  margin-bottom: 0.9rem;
  text-wrap: balance;
}

.inner-hero-copy p {
  max-width: 33rem;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.58;
}

.inner-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.1rem;
}

.inner-hero-aside {
  display: grid;
  gap: 0.65rem;
  padding: 1rem 1.1rem 1.05rem;
  border-left: 0;
  border-radius: var(--radius-lg);
  position: relative;
  z-index: 2;
  justify-self: start;
  margin-left: -0.25rem;
  max-width: 23rem;
  background:
    linear-gradient(180deg, rgba(249, 244, 235, 0.8), rgba(249, 244, 235, 0.66)),
    rgba(249, 244, 235, 0.56);
  box-shadow: 0 14px 30px rgba(32, 28, 25, 0.05);
}

.inner-hero-aside strong {
  display: block;
  max-width: 18rem;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 0.94;
  text-wrap: balance;
}

.inner-hero-aside p {
  margin: 0;
  max-width: 22rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.58;
}

.page-card-grid,
.route-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.grid-top-gap {
  margin-top: 1rem;
}

.page-card,
.route-card,
.page-band {
  position: relative;
  overflow: hidden;
  padding: 1rem 1rem 1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, rgba(209, 175, 104, 0.05), rgba(168, 101, 84, 0.04) 42%, rgba(111, 141, 132, 0.04)),
    var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.page-card {
  display: grid;
  align-content: start;
  gap: 0.8rem;
  grid-template-rows: auto auto auto 1fr auto;
  isolation: isolate;
}

.page-card > *:not(.page-card-media) {
  position: relative;
  z-index: 2;
}

.route-card {
  display: grid;
  align-content: start;
  gap: 0.8rem;
  grid-template-rows: auto auto 1fr auto;
}

.page-card strong,
.route-card strong {
  display: block;
  margin: 0.2rem 0 0;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.92rem;
  font-weight: 600;
  line-height: 0.95;
  text-wrap: balance;
}

.page-card p,
.route-card p,
.page-band p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.58;
}

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

.page-list li {
  padding-bottom: 0.45rem;
  border-bottom: 1px solid rgba(23, 20, 18, 0.08);
  color: var(--ink);
}

.page-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.3rem;
}

.page-card-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem 0.75rem;
  padding: 0.75rem 0 0.1rem;
  border-top: 1px solid rgba(23, 20, 18, 0.08);
  border-bottom: 1px solid rgba(23, 20, 18, 0.08);
}

.page-card-detail {
  display: grid;
  gap: 0.18rem;
}

.page-card-detail span,
.decision-label {
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-card-detail strong {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1.28;
}

.page-card-note {
  display: grid;
  gap: 0.2rem;
  padding-top: 0.2rem;
}

.page-card-note span {
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.page-card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 0.6rem;
}

.page-card-actions .button {
  width: 100%;
  min-width: 0;
  justify-content: center;
  padding-inline: 1rem;
}

.page-card .media-gallery-controls,
.page-card .media-gallery-dots {
  z-index: 3;
}

.experiences-page .page-card .media-gallery-controls {
  display: none;
}

.page-band {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
  background:
    radial-gradient(circle at top right, rgba(209, 175, 104, 0.14), transparent 30%),
    radial-gradient(circle at bottom left, rgba(111, 141, 132, 0.11), transparent 26%),
    radial-gradient(circle at 22% 22%, rgba(168, 101, 84, 0.09), transparent 18%),
    linear-gradient(180deg, #335d73 0%, var(--blue) 40%, var(--blue-deep) 100%);
  color: #f7efe4;
  border-color: rgba(23, 20, 18, 0.08);
}

.page-band .eyebrow,
.page-band h2,
.page-band p {
  color: #f7efe4;
}

.page-band p {
  max-width: 34rem;
  color: rgba(247, 239, 228, 0.78);
}

.page-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 0.15rem;
}

.experiences-page .page-band p {
  max-width: 48rem;
  font-size: 1.08rem;
  line-height: 1.48;
  text-wrap: balance;
  margin-inline: auto;
  text-align: center;
}

.experiences-page .page-band-actions {
  justify-content: center;
}

.route-page .page-band {
  justify-items: center;
  align-items: center;
  text-align: center;
}

.route-page .page-band .eyebrow,
.route-page .page-band h2,
.route-page .page-band h2,
.route-page .page-band p {
  width: 100%;
  margin-inline: auto;
  text-align: center;
}

.route-page .page-band h2 {
  max-width: 24ch;
  font-size: clamp(2.45rem, 2rem + 2vw, 4.15rem);
  line-height: 0.96;
  text-wrap: balance;
}

.route-page .page-band p {
  max-width: 42rem;
  text-wrap: balance;
}

.route-page .page-band-actions {
  justify-content: center;
}

.route-card .page-band-actions,
.decision-card .text-link {
  margin-top: auto;
}

.route-card .page-band-actions {
  padding-top: 0.45rem;
}

.decision-band {
  display: grid;
  gap: 0.95rem;
  margin-top: 1rem;
}

.decision-heading {
  margin-bottom: 0;
}

.decision-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.decision-card {
  display: grid;
  gap: 0.45rem;
  padding: 0.85rem 0 0;
  border-top: 1px solid rgba(23, 20, 18, 0.12);
}

.decision-card strong {
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1.02;
}

.decision-card p {
  margin: 0;
  max-width: 20rem;
  color: var(--muted);
}

.contact-form-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

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

.inquiry-form-unified .form-intro p {
  max-width: 36rem;
}

.inquiry-form-unified [data-role-scope][hidden] {
  display: none !important;
}

.contact-panel {
  margin-top: 1.2rem;
}

.contact-panel .inquiry-shell {
  padding-top: 0;
  border-top: 0;
}

.contact-panel .inquiry-form {
  padding-top: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

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

@media (max-width: 1024px) {
  .booking-grid,
  .form-grid,
  .contact-form-stack,
  .page-card-grid,
  .route-grid,
  .decision-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reviews-source-bar,
  .review-list {
    grid-template-columns: 1fr;
  }

  .experience-list {
    grid-template-columns: 1fr;
  }

  .experience:first-child,
  .experience:nth-child(2),
  .experience:nth-child(3) {
    grid-column: auto;
  }

  .experience:first-child,
  .experience:nth-child(2),
  .experience:nth-child(3),
  .experience:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .experience:first-child .experience-copy {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .section-heading,
  .section-heading.narrow,
  .next-step-copy,
  .hero-copy {
    max-width: 100%;
  }

  .visual-card-main-copy {
    max-width: 100%;
  }

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

  .reviews-actions {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 920px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
    padding-top: 0.85rem;
  }

  .header-actions {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .site-nav {
    flex-wrap: wrap;
    gap: 0.7rem 1rem;
    font-size: 0.82rem;
    letter-spacing: 0.05em;
  }

  .nav-cta {
    align-self: flex-start;
  }

  .hero,
  .difference-layout,
  .host,
  .inner-hero,
  .page-split,
  .contact-form-stack {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 3rem;
    padding-bottom: 0.5rem;
    gap: 1rem;
  }

  .hero-visual {
    min-height: auto;
    width: 100%;
    margin-left: 0;
    justify-self: stretch;
    max-width: 30rem;
    margin-inline: auto;
    gap: 0.8rem;
  }

  .hero-copy {
    max-width: 31rem;
    width: 100%;
    margin-inline: auto;
  }

  .hero-intro {
    max-width: 28rem;
  }

  .hero-booking-note {
    max-width: 28rem;
  }

  .visual-card-main,
  .visual-card-quiet {
    width: 100%;
  }

  .visual-card-main {
    min-height: 25rem;
  }

  .visual-card-main h2 {
    max-width: 12ch;
  }

  .inner-hero-aside {
    max-width: 100%;
    justify-self: stretch;
    margin-left: 0;
    width: min(100%, 28rem);
    margin-inline: auto;
  }

  .inner-hero-actions {
    margin-top: 1rem;
  }

  .inner-hero-copy {
    width: min(100%, 32rem);
    margin-inline: auto;
  }

  .inner-hero-copy p,
  .inner-hero-aside p {
    max-width: 100%;
  }

  .hero-media-caption {
    max-width: 16rem;
  }

  .visual-card-quiet {
    max-width: 100%;
  }

  .difference-layout {
    gap: 1rem;
    max-width: 40rem;
  }

  .difference-lead,
  .difference-highlights {
    justify-self: stretch;
    width: 100%;
    max-width: 100%;
  }

  .difference-lead {
    max-width: 34rem;
    margin-inline: auto;
  }

  .difference-highlights {
    max-width: 32rem;
    margin-inline: auto;
  }

  .page-band {
    padding-inline: 1rem;
  }

  .contact-panel {
    margin-top: 1.35rem;
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(100vw - 1.7rem, 100%);
    --section-pad: 3rem;
    --radius-xl: 14px;
    --radius-lg: 12px;
  }

  .page-shell {
    width: var(--container);
  }

  section[id],
  main[id],
  footer[id] {
    scroll-margin-top: 6rem;
  }

  .site-header {
    gap: 0.7rem;
    padding-top: 0.7rem;
  }

  .brand {
    gap: 0.75rem;
  }

  .brand-mark {
    width: 2.7rem;
    height: 2.7rem;
  }

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

  .brand-tag {
    font-size: 0.8rem;
  }

  .header-actions {
    gap: 0.65rem;
  }

  .site-nav {
    width: 100%;
    gap: 0.55rem 0.85rem;
    font-size: 0.77rem;
    letter-spacing: 0.045em;
  }

  .nav-cta {
    min-height: 2.7rem;
    padding: 0.68rem 1rem;
    font-size: 0.84rem;
  }

  .booking-grid,
  .form-grid,
  .contact-form-stack,
  .page-card-grid,
  .route-grid,
  .decision-grid,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .page-card-detail-grid,
  .page-card-actions {
    grid-template-columns: 1fr;
  }

  .reviews-source-bar {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .hero h1 {
    max-width: 7.8ch;
    font-size: clamp(2.85rem, 13vw, 4.15rem);
    margin-bottom: 0.8rem;
  }

  .hero h1 span {
    padding-bottom: 0.05em;
  }

  .hero {
    padding-top: 1.9rem;
    padding-inline: 0.95rem;
    gap: 0.95rem;
  }

  .hero-copy {
    width: 100%;
    padding-inline: 0.1rem;
  }

  .hero-intro {
    max-width: 23rem;
    font-size: 1rem;
    line-height: 1.48;
    margin-bottom: 1rem;
  }

  .hero-actions,
  .inner-hero-actions,
  .page-band-actions,
  .form-actions {
    width: min(100%, 22rem);
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .hero-actions .button,
  .inner-hero-actions .button,
  .page-band-actions .button,
  .form-actions .button {
    width: 100%;
    min-width: 0;
  }

  .hero-booking-note {
    width: min(100%, 22rem);
    padding: 0.95rem 1rem;
  }

  .hero-booking-note p {
    font-size: 0.9rem;
    line-height: 1.46;
  }

  .hero-visual {
    display: none;
  }

  .visual-card-main {
    min-height: 0;
    padding: 0.95rem 1rem 1rem;
  }

  .visual-card-main h2 {
    font-size: clamp(2rem, 9vw, 2.75rem);
    max-width: 10ch;
  }

  .visual-card-main p {
    font-size: 0.98rem;
    line-height: 1.45;
  }

  .hero-media-caption {
    max-width: 100%;
  }

  .visual-card-quiet {
    min-height: 0;
    padding: 0.95rem 1rem 1rem;
    gap: 0.4rem;
  }

  .visual-card-quiet strong {
    max-width: 100%;
    font-size: 1.45rem;
    line-height: 0.98;
  }

  .visual-card-quiet p {
    max-width: 100%;
    font-size: 0.96rem;
    line-height: 1.45;
  }

  .inner-hero-cover {
    min-height: 0;
    padding-inline: 0.8rem;
    padding-top: 1rem;
  }

  .inner-hero {
    gap: 0.8rem;
    min-height: 0;
  }

  .inner-hero-copy,
  .inner-hero-aside {
    width: 100%;
    max-width: 22.5rem;
  }

  .inner-hero-copy {
    padding: 0.95rem 1rem 1rem;
  }

  .inner-hero-copy h1 {
    font-size: clamp(2.5rem, 11vw, 3.55rem);
    margin-bottom: 0.7rem;
  }

  .inner-hero-copy p,
  .inner-hero-aside p {
    font-size: 0.98rem;
    line-height: 1.5;
  }

  .inner-hero-aside {
    padding: 0.95rem 1rem 1rem;
  }

  .inner-hero-aside strong {
    font-size: 1.7rem;
  }

  .experience-actions,
  .reviews-actions {
    grid-template-columns: 1fr;
  }

  .experience-visual,
  .portrait-frame,
  .visual-card-main {
    min-height: 18rem;
  }

  .experience:first-child .experience-visual {
    min-height: 20rem;
  }

  .experience-copy {
    grid-template-rows: auto auto auto auto auto auto auto;
    gap: 0.68rem;
    padding: 1rem;
  }

  .experience-copy h3 {
    min-height: 0;
    font-size: clamp(1.85rem, 9vw, 2.35rem);
  }

  .experience-summary {
    min-height: 0;
    font-size: 1.02rem;
    line-height: 1.48;
  }

  .experience-meta {
    grid-template-columns: 1fr;
  }

  .experience-points {
    gap: 0.4rem 0.55rem;
  }

  .page-card,
  .route-card,
  .page-band {
    padding: 0.95rem;
  }

  .page-card {
    gap: 0.72rem;
  }

  .page-card strong,
  .route-card strong {
    font-size: 1.68rem;
  }

  .page-card p,
  .route-card p,
  .page-band p {
    font-size: 0.98rem;
    line-height: 1.52;
  }

  .page-card-detail-grid {
    gap: 0.55rem;
    padding-top: 0.68rem;
  }

  .page-band {
    margin-top: 0.9rem;
    gap: 0.68rem;
  }

  .page-band h2 {
    font-size: clamp(2.15rem, 11vw, 3rem);
    line-height: 0.98;
    margin-bottom: 0.2rem;
  }

  .route-page .page-band h2 {
    max-width: 14ch;
    font-size: clamp(2.1rem, 11vw, 3rem);
  }

  .experiences-page .page-band p {
    max-width: 22rem;
    font-size: 1rem;
  }

  .review-card p {
    font-size: 1.16rem;
    line-height: 1.08;
  }

  .reviews-panel {
    padding: 0.95rem;
  }

  .review-card {
    padding: 0.95rem;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.2rem 1rem 1.45rem;
  }

  .footer-meta {
    justify-items: start;
    text-align: left;
  }

  .footer-brand-block p,
  .footer-meta p,
  .footer-column a {
    font-size: 0.94rem;
  }

  .contact-page #contact-routes > .section-heading,
  .contact-page #contact-routes > .route-grid {
    display: none;
  }

  .contact-page .contact-panel {
    margin-top: 0;
  }

  .contact-page .contact-panel .inquiry-shell {
    padding-top: 0;
  }

  .route-page .route-card-mobile-hide {
    display: none;
  }

  .contact-page .inner-hero-aside {
    display: none;
  }

  .contact-page #contact-form .form-actions .button-secondary {
    display: none;
  }

  .experiences-page .inner-hero-aside {
    display: none;
  }
}

@media (min-width: 641px) {
  .hero h1 span {
    white-space: nowrap;
  }
}

@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;
    scroll-behavior: auto !important;
  }

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