:root {
  --c-primary: oklch(0.34 0.105 250);
  --c-cobalt: oklch(0.52 0.14 250);
  --c-sunset: oklch(0.67 0.205 40);
  --c-sunset-strong: oklch(0.55 0.19 36);
  --c-sunset-hover: oklch(0.48 0.16 34);
  --c-mist: oklch(0.975 0.01 235);
  --c-surface: oklch(1 0 0);
  --c-ink: oklch(0.18 0.025 170);
  --c-copy: oklch(0.32 0.03 205);
  --c-muted: oklch(0.46 0.025 220);
  --c-line: oklch(0.84 0.015 230);
  --c-inverse: oklch(0.985 0.006 235);

  --font-display: "Barlow Condensed", "Noto Sans TC", "PingFang TC", sans-serif;
  --font-heading: "Noto Serif TC", "Source Han Serif TC", "Songti TC", "PMingLiU", serif;
  --font-body: "Noto Sans TC", "PingFang TC", system-ui, sans-serif;

  --text-xs: 0.8125rem;
  --text-sm: 0.875rem;
  --text-ui: 0.9375rem;
  --text-base: 1rem;
  --text-body-lg: 1.0625rem;
  --text-lead: 1.1875rem;
  --text-address: 1.25rem;
  --text-icon-sm: 1.4rem;
  --text-icon-md: 1.5rem;
  --text-icon-lg: 1.6rem;
  --text-brand: 1.75rem;
  --text-nav-fluid: clamp(1.35rem, 6vw, 2rem);
  --text-closing-fluid: clamp(1.7rem, 5vw, 2.7rem);
  --text-band-fluid: clamp(1.65rem, 3.2vw, 2.65rem);
  --text-heading-fluid: clamp(2rem, 4.2vw, 3.5rem);
  --text-hero-fluid: clamp(2.75rem, 8vw, 4.75rem);

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --heading-gap: clamp(2.5rem, 6vw, 5rem);
  --section-space: clamp(5rem, 10vw, 9.5rem);
  --gutter: clamp(1.25rem, 4vw, 4rem);
  --shell: 80rem;

  --header-height: 5rem;
  --safe-header-height: calc(var(--header-height) + env(safe-area-inset-top));
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --z-header: 40;
  --z-menu: 50;
  --z-skip: 70;
}

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

html {
  color-scheme: light;
  scroll-padding-top: calc(var(--safe-header-height) + var(--space-4));
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--c-mist);
  color: var(--c-ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  letter-spacing: 0.01em;
  text-rendering: optimizeLegibility;
  font-kerning: normal;
}

body.nav-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

a {
  color: inherit;
  text-underline-offset: 0.22em;
}

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

button {
  font: inherit;
}

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

h1,
h2,
h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-optical-sizing: auto;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

:focus-visible {
  outline: 3px solid var(--c-inverse);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px var(--c-primary);
}

.skip-link {
  position: fixed;
  z-index: var(--z-skip);
  inset: 0 auto auto 1rem;
  transform: translateY(-120%);
  padding: 0.75rem 1rem;
  background: var(--c-surface);
  color: var(--c-ink);
  text-decoration: none;
}

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

.shell {
  width: min(100% - (var(--gutter) * 2), var(--shell));
  margin-inline: auto;
}

.section {
  padding-block: var(--section-space);
}

section[id],
article[id] {
  scroll-margin-top: calc(var(--safe-header-height) + var(--space-4));
}

.section-context,
.section-heading > p,
.intro-copy > p,
.experience-band__copy > p,
.place__details > p,
.faq-list p {
  max-width: 68ch;
}

.section-context {
  margin-bottom: var(--space-6);
  color: var(--c-cobalt);
  font-size: var(--text-ui);
  font-weight: 600;
}

.section-heading {
  margin-bottom: var(--heading-gap);
}

.section-heading h2,
.intro-copy h2,
.prepare-heading h2,
.faq h2,
.place h2,
.closing h2 {
  margin-bottom: var(--space-8);
  font-size: var(--text-heading-fluid);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.005em;
}

.section-heading > p,
.intro-copy > p,
.prepare-list dd,
.faq-list p {
  color: var(--c-copy);
}

.section-heading--split {
  display: grid;
  gap: var(--space-6);
}

.section-heading--split h2 {
  margin: 0;
}

.section-heading--split > p {
  margin: 0;
  font-size: var(--text-body-lg);
}

.site-header {
  position: fixed;
  z-index: var(--z-header);
  inset: 0 0 auto;
  height: var(--safe-header-height);
  border-bottom: 1px solid transparent;
  color: var(--c-inverse);
  transition: background-color 240ms var(--ease-out), color 240ms var(--ease-out), border-color 240ms var(--ease-out);
}

.site-header:not(.is-scrolled) {
  background: linear-gradient(180deg, oklch(0.12 0.04 250 / 0.9), oklch(0.12 0.04 250 / 0.62));
}

.site-header.is-scrolled,
body.nav-open .site-header {
  border-color: var(--c-line);
  background: var(--c-mist);
  color: var(--c-ink);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 90rem);
  height: 100%;
  margin-inline: auto;
  padding-top: env(safe-area-inset-top);
  padding-right: max(var(--space-4), env(safe-area-inset-right));
  padding-left: max(var(--space-4), env(safe-area-inset-left));
}

.brand {
  display: flex;
  align-items: center;
  min-height: 44px;
  gap: var(--space-3);
  text-decoration: none;
}

.brand__mark {
  width: 3.1rem;
  aspect-ratio: 1;
  object-fit: cover;
  filter: invert(1);
  mix-blend-mode: screen;
}

.site-header.is-scrolled .brand__mark,
body.nav-open .brand__mark {
  filter: none;
  mix-blend-mode: multiply;
}

.brand__name {
  display: none;
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.08em;
}

.menu-toggle {
  position: relative;
  z-index: calc(var(--z-menu) + 1);
  display: flex;
  align-items: center;
  min-width: 44px;
  min-height: 44px;
  gap: var(--space-2);
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.no-js .menu-toggle {
  display: none;
}

.menu-toggle__label {
  font-size: var(--text-xs);
  font-weight: 600;
}

.menu-toggle__lines {
  display: grid;
  width: 1.25rem;
  gap: var(--space-1);
}

.menu-toggle__lines i {
  display: block;
  width: 100%;
  height: 1px;
  background: currentColor;
  transition: transform 240ms var(--ease-out);
}

body.nav-open .menu-toggle__lines i:first-child {
  transform: translateY(3px) rotate(45deg);
}

body.nav-open .menu-toggle__lines i:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: var(--text-sm);
  font-weight: 600;
  text-decoration: none;
}

.site-nav__cta {
  padding-inline: var(--space-4);
  gap: var(--space-2);
  background: var(--c-sunset-strong);
  color: var(--c-inverse);
}

.js .site-nav {
  position: fixed;
  z-index: var(--z-menu);
  inset: 0;
  display: flex;
  visibility: hidden;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding-top: calc(var(--safe-header-height) + var(--space-8));
  padding-right: max(var(--gutter), env(safe-area-inset-right));
  padding-bottom: max(var(--space-8), env(safe-area-inset-bottom));
  padding-left: max(var(--gutter), env(safe-area-inset-left));
  overflow-y: auto;
  overscroll-behavior: contain;
  background: var(--c-primary);
  color: var(--c-inverse);
  opacity: 0;
  transform: translateY(-0.75rem);
  transition: opacity 240ms var(--ease-out), transform 240ms var(--ease-out), visibility 240ms;
}

.js body.nav-open .site-nav {
  visibility: visible;
  opacity: 1;
  transform: none;
}

.js .site-nav > a:not(.site-nav__cta) {
  justify-content: space-between;
  min-height: 58px;
  border-bottom: 1px solid oklch(0.985 0.006 235 / 0.25);
  font-size: var(--text-nav-fluid);
}

.js .site-nav__cta {
  justify-content: center;
  margin-top: var(--space-6);
  min-height: 52px;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(58rem, 100svh);
  overflow: hidden;
  isolation: isolate;
  align-items: center;
  color: var(--c-inverse);
}

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

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.hero__scrim {
  z-index: -1;
  background:
    linear-gradient(90deg, oklch(0.15 0.06 250 / 0.92) 0%, oklch(0.18 0.04 250 / 0.72) 42%, oklch(0.18 0.02 250 / 0.1) 74%),
    linear-gradient(0deg, oklch(0.1 0.03 250 / 0.72) 0%, transparent 44%);
}

.hero__content {
  padding-block: calc(var(--safe-header-height) + var(--space-16)) calc(var(--space-16) * 2);
}

.hero__label {
  margin-bottom: var(--space-6);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.14em;
}

.hero h1 {
  max-width: 12ch;
  margin-bottom: var(--space-6);
  font-size: var(--text-hero-fluid);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.015em;
}

.hero h1 span {
  display: block;
}

.horizon-mark {
  width: min(26rem, 78vw);
  height: 1.25rem;
  margin-bottom: var(--space-6);
  color: var(--c-cobalt);
}

.horizon-mark path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}

.hero__lead {
  max-width: 40rem;
  margin-bottom: var(--space-8);
  color: oklch(0.985 0.006 235 / 0.9);
  font-size: clamp(var(--text-base), 2.2vw, var(--text-lead));
  line-height: 1.8;
}

.hero__actions,
.place__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: var(--space-3) var(--space-6);
  gap: var(--space-3);
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: var(--text-ui);
  font-weight: 600;
  line-height: 1.3;
  text-decoration: none;
  transition: transform 180ms var(--ease-out), background-color 180ms var(--ease-out), color 180ms var(--ease-out);
}

.button--primary {
  background: var(--c-sunset-strong);
  color: var(--c-inverse);
}

.button--ghost {
  border-color: currentColor;
  background: transparent;
  color: inherit;
}

.button--dark {
  background: var(--c-ink);
  color: var(--c-inverse);
}

.hero__scroll {
  position: absolute;
  inset: auto auto 1.5rem var(--gutter);
  display: flex;
  align-items: center;
  min-height: 44px;
  gap: var(--space-3);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-decoration: none;
}

.hero__scroll > span:first-child {
  font-family: var(--font-body);
  font-size: var(--text-icon-sm);
}

body.is-ready .hero__media img {
  animation: hero-settle 780ms var(--ease-out) both;
}

body.is-ready .hero__content > * {
  animation: hero-copy-in 620ms var(--ease-out) both;
}

body.is-ready .hero__content > :nth-child(2) { animation-delay: 60ms; }
body.is-ready .hero__content > :nth-child(3) { animation-delay: 120ms; }
body.is-ready .hero__content > :nth-child(4) { animation-delay: 170ms; }
body.is-ready .hero__content > :nth-child(5) { animation-delay: 220ms; }

@keyframes hero-settle {
  from { transform: scale(1.025); opacity: 0.88; }
  to { transform: scale(1); opacity: 1; }
}

@keyframes hero-copy-in {
  from { transform: translateY(0.75rem); opacity: 0.74; }
  to { transform: none; opacity: 1; }
}

.intro-grid {
  display: grid;
  gap: var(--space-12);
}

.intro-copy {
  align-self: center;
}

.intro-copy > p:not(.section-context) {
  margin-bottom: var(--space-6);
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  gap: var(--space-3);
  color: var(--c-primary);
  font-weight: 700;
  text-decoration-thickness: 1px;
}

.text-link--light {
  color: var(--c-inverse);
}

.image-frame {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--c-line);
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-frame figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: var(--space-3) var(--space-4);
  background: var(--c-ink);
  color: var(--c-inverse);
  font-size: var(--text-xs);
}

.intro-photo {
  min-height: 28rem;
  max-height: 42rem;
}

.experience {
  border-top: 1px solid var(--c-line);
  background: var(--c-surface);
}

.experience-band {
  display: grid;
  overflow: hidden;
  margin-bottom: var(--space-8);
  background: var(--c-mist);
}

.experience-band:last-child {
  margin-bottom: 0;
}

.experience-band__image {
  min-height: 18rem;
  overflow: hidden;
}

.experience-band__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms var(--ease-out);
}

.experience-band__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.5rem, 5vw, 4rem);
}

.experience-band__type {
  margin-bottom: var(--space-4);
  color: var(--c-cobalt);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.08em;
}

.experience-band h3 {
  margin-bottom: var(--space-6);
  font-size: var(--text-band-fluid);
  font-weight: 600;
  line-height: 1.24;
  letter-spacing: 0.01em;
}

.experience-band__copy > p:not(.experience-band__type) {
  margin-bottom: var(--space-8);
  color: var(--c-copy);
}

.experience-band--lesson {
  background: var(--c-primary);
  color: var(--c-inverse);
}

.experience-band--lesson .experience-band__type {
  color: oklch(0.82 0.09 250);
}

.experience-band--lesson .experience-band__copy > p:not(.experience-band__type) {
  color: oklch(0.985 0.006 235 / 0.78);
}

.before-you-go {
  background: var(--c-sunset);
}

.prepare-grid {
  display: grid;
  gap: var(--space-12);
}

.prepare-heading > p {
  margin-bottom: var(--space-4);
  font-weight: 700;
}

.prepare-heading h2 {
  margin-bottom: 0;
}

.prepare-list {
  margin: 0;
}

.prepare-list > div {
  display: grid;
  padding-block: var(--space-6);
  gap: var(--space-3);
  border-top: 1px solid oklch(0.18 0.025 170 / 0.42);
}

.prepare-list > div:last-child {
  border-bottom: 1px solid oklch(0.18 0.025 170 / 0.42);
}

.prepare-list dt {
  font-size: var(--text-body-lg);
  font-weight: 700;
}

.prepare-list dd {
  margin: 0;
  color: oklch(0.23 0.04 45);
}

.place {
  position: relative;
  min-height: 44rem;
  overflow: hidden;
  isolation: isolate;
  color: var(--c-inverse);
}

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

.place__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.72);
}

.place::after {
  position: absolute;
  z-index: -1;
  content: "";
  inset: 0;
  background: linear-gradient(90deg, oklch(0.15 0.06 250 / 0.95), oklch(0.15 0.04 250 / 0.82) 58%, oklch(0.15 0.03 250 / 0.72));
}

.place__content {
  display: grid;
  align-content: center;
  min-height: 44rem;
  padding-block: var(--section-space);
  gap: var(--space-12);
}

.place__copy > p {
  margin-bottom: var(--space-6);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.14em;
}

.place__copy h2 {
  margin-bottom: 0;
}

.place__details > p {
  color: oklch(0.985 0.006 235 / 0.86);
}

.place__address {
  margin-bottom: var(--space-6);
  color: var(--c-inverse) !important;
  font-size: var(--text-address);
  font-weight: 600;
  line-height: 1.6;
}

.place__actions {
  margin-top: var(--space-8);
}

.moments {
  background: var(--c-surface);
}

.moment-grid {
  display: grid;
  gap: var(--space-4);
}

.moment-grid figure {
  min-height: 22rem;
}

.faq-grid {
  display: grid;
  gap: var(--space-12);
}

.faq-list {
  border-top: 1px solid var(--c-line);
}

.faq-list details {
  border-bottom: 1px solid var(--c-line);
}

.faq-list summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 72px;
  padding: 1rem 3rem 1rem 0;
  font-size: var(--text-body-lg);
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  right: 0.5rem;
  content: "+";
  font-family: var(--font-display);
  font-size: var(--text-icon-lg);
  font-weight: 400;
  transition: transform 220ms var(--ease-out);
}

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

.faq-list p {
  padding: 0 var(--space-12) var(--space-8) 0;
  margin: 0;
}

.closing {
  padding-block: clamp(var(--space-16), 8vw, calc(var(--space-16) + var(--space-12)));
  background: var(--c-sunset-strong);
  color: var(--c-inverse);
}

.closing__inner {
  display: grid;
  gap: var(--space-12);
}

.closing__inner > div > p {
  margin-bottom: var(--space-4);
  font-size: var(--text-ui);
  font-weight: 600;
}

.closing h2 {
  margin: 0;
}

.closing__action {
  display: grid;
  align-self: end;
  min-height: 9rem;
  padding: var(--space-6);
  border: 1px solid oklch(0.985 0.006 235 / 0.6);
  text-decoration: none;
}

.closing__action span {
  font-size: var(--text-sm);
}

.closing__action strong {
  align-self: center;
  font-family: var(--font-display);
  font-size: var(--text-closing-fluid);
  letter-spacing: 0.03em;
}

.closing__action i {
  justify-self: end;
  font-style: normal;
  font-size: var(--text-icon-md);
}

.site-footer {
  padding-block: var(--space-12) calc(var(--space-12) + env(safe-area-inset-bottom));
  background: var(--c-ink);
  color: var(--c-inverse);
}

.site-footer__top {
  display: grid;
  gap: var(--space-8);
}

.footer-brand {
  font-family: var(--font-display);
  font-size: var(--text-brand);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-decoration: none;
}

.footer-contact,
.footer-links {
  display: grid;
  gap: var(--space-2);
}

.footer-contact p {
  margin: 0;
  color: oklch(0.985 0.006 235 / 0.7);
}

.footer-contact a,
.footer-links a {
  min-height: 44px;
  align-content: center;
}

.site-footer__bottom {
  display: flex;
  flex-direction: column;
  margin-top: var(--space-12);
  padding-top: var(--space-6);
  gap: var(--space-2);
  border-top: 1px solid oklch(0.985 0.006 235 / 0.2);
  color: oklch(0.985 0.006 235 / 0.62);
  font-size: var(--text-xs);
}

.site-footer__bottom p {
  margin: 0;
}

@media (hover: hover) and (pointer: fine) {
  .button:hover,
  .closing__action:hover {
    transform: translateY(-2px);
  }

  .text-link:hover,
  .site-nav a:not(.site-nav__cta):hover,
  .footer-links a:hover {
    text-decoration-line: underline;
    text-decoration-thickness: 2px;
  }

  .button--primary:hover,
  .site-nav__cta:hover {
    background: var(--c-sunset-hover);
  }

  .closing__action:hover {
    background: oklch(0.18 0.025 170 / 0.14);
  }

  .experience-band:hover .experience-band__image img,
  .image-frame:hover img {
    transform: scale(1.018);
  }
}

.button:active,
.site-nav__cta:active,
.closing__action:active {
  transform: translateY(1px);
}

.text-link:active,
.footer-links a:active {
  opacity: 0.7;
}

@media (min-width: 48rem) {
  .brand__name {
    display: inline;
  }

  .section-heading--split {
    grid-template-columns: minmax(0, 1.35fr) minmax(18rem, 0.65fr);
    align-items: end;
  }

  .intro-grid {
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
    align-items: center;
  }

  .experience-band {
    grid-template-columns: minmax(0, 1.15fr) minmax(20rem, 0.85fr);
    min-height: 32rem;
  }

  .experience-band--lesson {
    grid-template-columns: minmax(20rem, 0.8fr) minmax(0, 1.2fr);
  }

  .experience-band--group {
    grid-template-columns: minmax(0, 1.25fr) minmax(20rem, 0.75fr);
  }

  .prepare-grid {
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
    align-items: start;
  }

  .prepare-heading {
    position: sticky;
    top: calc(var(--safe-header-height) + var(--space-8));
  }

  .prepare-list > div {
    grid-template-columns: minmax(11rem, 0.6fr) minmax(0, 1fr);
    gap: var(--space-8);
  }

  .place__content {
    grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.72fr);
    align-items: end;
  }

  .moment-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-template-rows: 20rem 15rem;
  }

  .moment-grid figure {
    min-height: 0;
  }

  .moment-grid__wide {
    grid-column: 1 / span 7;
    grid-row: 1 / span 2;
  }

  .moment-grid__tall {
    grid-column: 8 / -1;
    grid-row: 1;
  }

  .moment-grid__small {
    grid-column: 8 / -1;
    grid-row: 2;
  }

  .faq-grid {
    grid-template-columns: minmax(18rem, 0.72fr) minmax(0, 1.28fr);
  }

  .closing__inner {
    grid-template-columns: minmax(0, 1.4fr) minmax(18rem, 0.6fr);
    align-items: end;
  }

  .site-footer__top {
    grid-template-columns: 1.2fr 1fr 0.7fr;
    align-items: start;
  }

  .site-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 56.25rem) {
  .menu-toggle {
    display: none;
  }

  .js .site-nav {
    position: static;
    visibility: visible;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    padding: 0;
    background: transparent;
    color: inherit;
    opacity: 1;
    transform: none;
    transition: none;
  }

  .js .site-nav > a:not(.site-nav__cta) {
    justify-content: flex-start;
    min-height: 44px;
    border: 0;
    font-size: var(--text-sm);
  }

  .js .site-nav__cta {
    margin-top: 0;
    min-height: 44px;
  }

  .hero__content {
    padding-top: calc(var(--safe-header-height) + var(--header-height));
  }

  .hero h1 {
    max-width: 13ch;
  }

}

@media (min-width: 75rem) {
  .site-header__inner {
    width: min(100%, 92rem);
    padding-right: max(var(--space-8), env(safe-area-inset-right));
    padding-left: max(var(--space-8), env(safe-area-inset-left));
  }

  .site-nav {
    gap: var(--space-8);
  }

  .hero__media img {
    object-position: center 58%;
  }

  .hero__scroll {
    left: max(var(--gutter), calc((100vw - var(--shell)) / 2));
  }
}

@media (max-width: 56.249rem) {
  .no-js .site-header {
    position: relative;
    height: auto;
    border-color: var(--c-line);
    background: var(--c-mist);
    color: var(--c-ink);
  }

  .no-js .site-header__inner {
    flex-wrap: wrap;
    height: auto;
    padding-block: max(var(--space-4), env(safe-area-inset-top)) var(--space-4);
    gap: var(--space-4);
  }

  .no-js .site-nav {
    flex-wrap: wrap;
    width: 100%;
    gap: var(--space-2) var(--space-4);
  }

  .no-js .site-nav__cta {
    min-height: 44px;
  }
}

@media (max-width: 25rem) {
  .hero__actions .button,
  .place__actions .button {
    width: 100%;
  }
}

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

@media print {
  .site-header,
  .hero__scroll,
  .hero__actions,
  .place__actions,
  .closing__action {
    display: none !important;
  }

  .hero,
  .place {
    min-height: auto;
    color: black;
  }

  .hero__media,
  .hero__scrim,
  .place__image,
  .place::after {
    display: none;
  }

  .section,
  .hero__content,
  .place__content {
    padding-block: 2rem;
  }
}
