:root {
  --bone: #f8f4ec;
  --paper: #fffdf9;
  --sand: #e9dec8;
  --indigo: #183b4e;
  --indigo-deep: #0e2530;
  --morinda: #8c3a32;
  --charcoal: #252421;
  --line: rgba(37, 36, 33, 0.14);
  --muted: rgba(37, 36, 33, 0.64);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bone);
  color: var(--charcoal);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.75;
}

body,
button,
input,
select,
textarea {
  font-family: "Poppins", Arial, sans-serif;
}

body:has(.mobile-menu.open) {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
p,
figure,
dl,
dd {
  margin: 0;
}

h1,
h2,
h3,
h4 {
  color: var(--indigo);
  font-weight: 500;
  line-height: 1.2;
}

button,
input,
select,
textarea {
  color: inherit;
  font-size: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(100% - 56px, 1180px);
  margin-inline: auto;
}

.eyebrow {
  margin-bottom: 13px;
  color: var(--morinda);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: var(--sand);
}

.btn {
  display: inline-flex;
  min-height: 43px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 5px;
  padding: 11px 22px;
  font-size: 12.5px;
  font-weight: 600;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--indigo);
  color: var(--paper);
}

.btn-primary:hover {
  background: var(--indigo-deep);
}

.btn-cta {
  min-height: 38px;
  background: var(--morinda);
  color: var(--paper);
  padding: 9px 18px;
  font-size: 12px;
}

.btn-cta:hover {
  background: #742d26;
}

.btn-block {
  width: 100%;
}

/* Navigation */

.nav {
  position: sticky;
  z-index: 100;
  top: 0;
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 28px;
  border-bottom: 1px solid transparent;
  background: rgba(248, 244, 236, 0.96);
  backdrop-filter: blur(12px);
  transition: box-shadow 180ms ease, border-color 180ms ease;
}

.nav.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 28px rgba(37, 36, 33, 0.06);
}

.nav-brand {
  color: var(--indigo);
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.1;
}

.nav-brand span {
  display: block;
  margin-top: 4px;
  color: var(--morinda);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  border-bottom: 1px solid transparent;
  color: rgba(37, 36, 33, 0.6);
  font-size: 12.5px;
  font-weight: 500;
  transition: color 180ms ease, border-color 180ms ease;
}

.nav-link:hover,
.nav-link.active {
  border-color: var(--morinda);
  color: var(--indigo);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-cart {
  color: var(--muted);
  font-size: 12.5px;
}

.cart-badge {
  display: none;
}

.burger {
  display: none;
  width: 24px;
  border: 0;
  padding: 2px;
  background: transparent;
}

.burger span {
  display: block;
  width: 100%;
  height: 1.5px;
  margin: 5px 0;
  background: var(--indigo);
  transition: transform 180ms ease, opacity 180ms ease;
}

.burger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.burger.open span:nth-child(2) {
  opacity: 0;
}

.burger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-menu {
  display: none;
}

/* Hero */

.experience-hero {
  overflow: hidden;
  padding: 74px 0 100px;
}

.experience-hero-grid {
  display: grid;
  min-height: 670px;
  grid-template-columns: minmax(330px, 0.78fr) minmax(460px, 1.22fr);
  align-items: center;
  gap: clamp(48px, 7vw, 96px);
}

.experience-hero-copy {
  position: relative;
  z-index: 2;
  padding-bottom: 18px;
}

.experience-hero h1 {
  max-width: 610px;
  font-size: clamp(42px, 5.2vw, 70px);
  font-weight: 400;
  letter-spacing: -0.045em;
}

.hero-lede {
  max-width: 470px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 14px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
}

.text-link {
  border-bottom: 1px solid var(--line);
  color: var(--indigo);
  font-size: 12px;
  font-weight: 500;
}

.text-link span {
  display: inline-block;
  margin-left: 6px;
}

.visit-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 52px;
  border-top: 1px solid var(--line);
}

.visit-meta div {
  padding: 15px 12px 0 0;
}

.visit-meta div + div {
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.visit-meta dt {
  color: var(--muted);
  font-size: 9.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.visit-meta dd {
  margin-top: 3px;
  color: var(--indigo);
  font-size: 12px;
  font-weight: 600;
}

.experience-hero-visual {
  position: relative;
  min-height: 670px;
}

.hero-photo-main {
  position: absolute;
  inset: 0 0 0 54px;
  overflow: hidden;
  border-radius: 170px 8px 8px 8px;
}

.hero-photo-main::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(14, 37, 48, 0.2));
  content: "";
}

.hero-photo-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo-note {
  position: absolute;
  z-index: 2;
  left: -25px;
  bottom: 44px;
  width: 190px;
  padding: 8px;
  background: var(--paper);
  box-shadow: 0 18px 55px rgba(14, 37, 48, 0.17);
}

.hero-photo-note img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.hero-photo-note figcaption {
  padding: 10px 3px 3px;
  color: var(--muted);
  font-size: 9.5px;
  line-height: 1.5;
}

.visit-stamp {
  position: absolute;
  z-index: 3;
  top: 34px;
  right: -36px;
  display: flex;
  width: 116px;
  height: 116px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(248, 244, 236, 0.7);
  border-radius: 50%;
  background: var(--morinda);
  color: var(--paper);
  text-align: center;
  transform: rotate(7deg);
}

.visit-stamp span {
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.visit-stamp strong {
  margin: 1px 0;
  font-size: 27px;
  font-weight: 400;
  line-height: 1;
}

.rise {
  animation: rise-in 700ms both ease-out;
}

.rise-delay {
  animation-delay: 120ms;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Editorial intro */

.editorial-intro {
  padding: 108px 0;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 80px;
}

.intro-note {
  max-width: 255px;
  align-self: end;
}

.section-number {
  display: block;
  width: 36px;
  margin-bottom: 19px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--morinda);
  color: var(--morinda);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.intro-note p {
  color: var(--muted);
  font-size: 12.5px;
}

.intro-copy {
  max-width: 660px;
}

.intro-copy h2 {
  font-size: clamp(34px, 4.2vw, 56px);
  font-weight: 400;
  letter-spacing: -0.035em;
}

.intro-copy > p:last-child {
  max-width: 575px;
  margin-top: 25px;
  color: var(--muted);
}

.quiet-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 90px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.quiet-facts div {
  min-height: 115px;
  padding: 20px 20px 20px 0;
}

.quiet-facts div + div {
  padding-left: 20px;
  border-left: 1px solid var(--line);
}

.quiet-facts span {
  color: var(--morinda);
  font-size: 9px;
}

.quiet-facts p {
  max-width: 180px;
  margin-top: 19px;
  color: var(--indigo);
  font-size: 11.5px;
  line-height: 1.55;
}

/* Day itinerary */

.the-day {
  padding: 110px 0 120px;
  background: var(--indigo-deep);
  color: var(--sand);
}

.day-heading {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  align-items: end;
  gap: 60px;
  margin-bottom: 65px;
}

.day-heading h2 {
  color: var(--paper);
  font-size: clamp(33px, 4.4vw, 55px);
  font-weight: 400;
  letter-spacing: -0.035em;
}

.day-heading > p {
  max-width: 410px;
  justify-self: end;
  color: rgba(233, 222, 200, 0.68);
  font-size: 12.5px;
}

.day-list {
  position: relative;
}

.day-list::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 96px;
  width: 1px;
  background: rgba(233, 222, 200, 0.18);
  content: "";
}

.day-stop {
  position: relative;
  display: grid;
  grid-template-columns: 150px 1fr 0.9fr;
  align-items: center;
  gap: 40px;
  min-height: 270px;
  padding: 34px 0;
  border-top: 1px solid rgba(233, 222, 200, 0.15);
}

.day-stop:last-child {
  border-bottom: 1px solid rgba(233, 222, 200, 0.15);
}

.day-time {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 55px;
  flex-direction: column;
  justify-content: center;
  padding-left: 0;
  background: var(--indigo-deep);
}

.day-time::after {
  position: absolute;
  top: 24px;
  right: 48px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--morinda);
  box-shadow: 0 0 0 6px var(--indigo-deep);
  content: "";
}

.day-time span {
  color: var(--paper);
  font-size: 12px;
  font-weight: 600;
}

.day-time small {
  color: rgba(233, 222, 200, 0.55);
  font-size: 9.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.day-copy {
  max-width: 390px;
}

.day-copy h3 {
  color: var(--paper);
  font-size: 23px;
  font-weight: 400;
}

.day-copy p {
  margin-top: 13px;
  color: rgba(233, 222, 200, 0.64);
  font-size: 12.5px;
}

.day-stop figure {
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.day-stop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.day-stop:hover img {
  transform: scale(1.025);
}

.day-stop:nth-child(even) .day-copy {
  order: 3;
}

.day-stop:nth-child(even) figure {
  order: 2;
}

/* Included */

.included-section {
  padding: 115px 0;
  background: var(--bone);
}

.included-heading {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  align-items: end;
  gap: 50px;
  margin-bottom: 55px;
}

.included-heading h2 {
  font-size: clamp(32px, 4vw, 49px);
  font-weight: 400;
  letter-spacing: -0.035em;
}

.included-heading > p {
  max-width: 410px;
  justify-self: end;
  color: var(--muted);
  font-size: 12.5px;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 260px 235px;
  gap: 14px;
}

.included-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.included-card > span {
  color: var(--morinda);
  font-size: 9px;
  letter-spacing: 0.1em;
}

.included-card h3 {
  margin-top: 48px;
  font-size: 18px;
  font-weight: 500;
}

.included-card p {
  max-width: 330px;
  margin-top: 11px;
  color: var(--muted);
  font-size: 11.5px;
}

.included-card-feature {
  display: grid;
  grid-column: span 2;
  grid-template-columns: 0.5fr 1fr;
  align-items: end;
  background: var(--sand);
}

.included-card-feature h3,
.included-card-wide h3 {
  margin-top: 0;
  font-size: 25px;
  font-weight: 400;
}

.included-card-photo {
  padding: 0;
  border: 0;
}

.included-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.included-card-wide {
  display: grid;
  grid-column: span 2;
  grid-template-columns: 0.5fr 1fr;
  align-items: end;
  background: var(--indigo);
}

.included-card-wide h3 {
  color: var(--paper);
}

.included-card-wide p {
  color: rgba(255, 253, 249, 0.65);
}

.included-card-wide > span {
  color: var(--sand);
}

/* Etiquette */

.etiquette-section {
  padding: 0;
  background: var(--morinda);
  color: var(--paper);
}

.etiquette-grid {
  display: grid;
  width: min(100%, 1440px);
  grid-template-columns: 0.92fr 1.08fr;
}

.etiquette-image {
  position: relative;
  min-height: 690px;
}

.etiquette-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(14, 37, 48, 0.45));
  content: "";
}

.etiquette-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.etiquette-image p {
  position: absolute;
  z-index: 1;
  right: 28px;
  bottom: 24px;
  left: 28px;
  color: var(--paper);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.etiquette-copy {
  align-self: center;
  padding: 80px clamp(38px, 7vw, 105px);
}

.etiquette-copy h2 {
  max-width: 500px;
  color: var(--paper);
  font-size: clamp(36px, 4.3vw, 57px);
  font-weight: 400;
  letter-spacing: -0.04em;
}

.etiquette-list {
  margin: 50px 0 0;
  padding: 0;
  list-style: none;
}

.etiquette-list li {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 18px;
  padding: 21px 0;
  border-top: 1px solid rgba(255, 253, 249, 0.22);
}

.etiquette-list li:last-child {
  border-bottom: 1px solid rgba(255, 253, 249, 0.22);
}

.etiquette-list > li > span {
  color: rgba(255, 253, 249, 0.65);
  font-size: 9px;
  letter-spacing: 0.1em;
}

.etiquette-list h3 {
  color: var(--paper);
  font-size: 14px;
  font-weight: 500;
}

.etiquette-list p {
  max-width: 470px;
  margin-top: 6px;
  color: rgba(255, 253, 249, 0.68);
  font-size: 11.5px;
}

/* Reservation */

.reservation-section {
  padding: 120px 0;
  background: var(--sand);
}

.reservation-grid {
  display: grid;
  grid-template-columns: 0.87fr 1.13fr;
  align-items: start;
  gap: 85px;
}

.reservation-copy {
  position: sticky;
  top: 115px;
}

.reservation-copy h2 {
  max-width: 520px;
  font-size: clamp(35px, 4.1vw, 54px);
  font-weight: 400;
  letter-spacing: -0.04em;
}

.reservation-copy > p:not(.eyebrow):not(.small-note) {
  max-width: 490px;
  margin-top: 23px;
  color: var(--muted);
  font-size: 12.5px;
}

.booking-summary {
  margin-top: 42px;
  border-top: 1px solid rgba(37, 36, 33, 0.2);
}

.booking-summary div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(37, 36, 33, 0.2);
}

.booking-summary span {
  color: var(--muted);
  font-size: 10.5px;
}

.booking-summary strong {
  color: var(--indigo);
  font-size: 11px;
  font-weight: 600;
  text-align: right;
}

.reservation-copy .small-note {
  margin-top: 18px;
  color: rgba(37, 36, 33, 0.52);
  font-size: 9.5px;
}

.reservation-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 38px;
  border-top: 4px solid var(--morinda);
  background: var(--paper);
  box-shadow: 0 24px 70px rgba(37, 36, 33, 0.1);
}

.form-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 5px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.form-heading span {
  color: var(--indigo);
  font-size: 15px;
  font-weight: 600;
}

.form-heading p {
  color: var(--muted);
  font-size: 9.5px;
}

.reservation-form label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: rgba(37, 36, 33, 0.7);
  font-size: 10.5px;
  font-weight: 500;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 0.5fr;
  gap: 14px;
}

.reservation-form input,
.reservation-form select,
.reservation-form textarea {
  width: 100%;
  border: 1px solid rgba(37, 36, 33, 0.18);
  border-radius: 4px;
  outline: none;
  background: #fbf8f2;
  padding: 11px 12px;
  font-size: 12.5px;
  font-weight: 400;
  resize: vertical;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.reservation-form input:focus,
.reservation-form select:focus,
.reservation-form textarea:focus {
  border-color: var(--indigo);
  background: var(--paper);
}

.optional {
  color: rgba(37, 36, 33, 0.42);
  font-weight: 400;
}

.reservation-form .consent-check {
  display: grid;
  grid-template-columns: 16px 1fr;
  align-items: start;
  gap: 10px;
  margin: 2px 0 4px;
  line-height: 1.55;
}

.consent-check input {
  width: 14px;
  height: 14px;
  margin-top: 2px;
  accent-color: var(--morinda);
}

.form-success {
  padding: 11px 13px;
  border-left: 3px solid #2e5c39;
  background: #e5efe7;
  color: #2e5c39;
  font-size: 11px;
}

/* Footer */

.footer {
  padding: 68px 0 25px;
  background: var(--indigo-deep);
  color: var(--sand);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.8fr 1fr;
  gap: 48px;
  padding-bottom: 45px;
}

.footer-word {
  margin-bottom: 13px;
  color: var(--paper);
  font-size: 14px;
  font-weight: 600;
}

.footer-word span {
  color: var(--sand);
  font-weight: 300;
}

.footer-brand > p:not(.footer-word) {
  max-width: 290px;
  color: rgba(233, 222, 200, 0.65);
  font-size: 11.5px;
}

.footer-social {
  display: flex;
  gap: 18px;
  margin-top: 20px;
}

.footer-social a {
  border-bottom: 1px solid rgba(233, 222, 200, 0.25);
  font-size: 11px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-col h4 {
  margin-bottom: 7px;
  color: var(--paper);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-col a,
.footer-col span {
  color: rgba(233, 222, 200, 0.68);
  font-size: 11.5px;
}

.footer-col a:hover,
.footer-social a:hover {
  color: var(--paper);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 23px;
  border-top: 1px solid rgba(233, 222, 200, 0.14);
}

.footer-bottom p {
  max-width: 690px;
  color: rgba(233, 222, 200, 0.45);
  font-size: 9.5px;
}

.footer-bottom a {
  color: rgba(233, 222, 200, 0.7);
  font-size: 10.5px;
  white-space: nowrap;
}

/* Responsive */

@media (max-width: 1080px) {
  .experience-hero-grid {
    grid-template-columns: 0.82fr 1.18fr;
    gap: 44px;
  }

  .visit-stamp {
    right: -12px;
  }

  .quiet-facts {
    grid-template-columns: repeat(2, 1fr);
  }

  .quiet-facts div:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .quiet-facts div:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .day-stop {
    grid-template-columns: 135px 1fr 0.8fr;
    gap: 28px;
  }

  .reservation-grid {
    gap: 55px;
  }
}

@media (max-width: 860px) {
  .nav-links {
    display: none;
  }

  .burger {
    display: block;
  }

  .mobile-menu {
    position: fixed;
    z-index: 90;
    inset: 72px 0 0;
    flex-direction: column;
    gap: 0;
    padding: 18px 28px 35px;
    background: var(--bone);
  }

  .mobile-menu.open {
    display: flex;
  }

  .mobile-menu > a:not(.btn) {
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
    color: var(--indigo);
    font-size: 14px;
  }

  .mobile-menu .btn {
    align-self: flex-start;
    margin-top: 22px;
  }

  .experience-hero-grid {
    grid-template-columns: 1fr;
  }

  .experience-hero-copy {
    max-width: 660px;
  }

  .experience-hero-visual {
    min-height: 640px;
  }

  .hero-photo-main {
    left: 70px;
  }

  .intro-grid,
  .day-heading,
  .included-heading,
  .reservation-grid {
    grid-template-columns: 1fr;
  }

  .intro-note {
    max-width: 360px;
  }

  .day-heading > p,
  .included-heading > p {
    justify-self: start;
  }

  .day-list::before {
    display: none;
  }

  .day-stop {
    grid-template-columns: 100px 1fr;
  }

  .day-stop figure,
  .day-stop:nth-child(even) figure {
    order: 3;
    grid-column: 2;
  }

  .day-stop:nth-child(even) .day-copy {
    order: initial;
  }

  .day-time::after {
    display: none;
  }

  .included-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .included-card {
    min-height: 230px;
  }

  .included-card-feature,
  .included-card-wide {
    grid-column: span 2;
  }

  .etiquette-grid {
    grid-template-columns: 1fr;
  }

  .etiquette-image {
    min-height: 470px;
  }

  .reservation-copy {
    position: static;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .container {
    width: min(100% - 36px, 1180px);
  }

  .nav {
    min-height: 66px;
    padding: 12px 18px;
  }

  .nav-actions .nav-cart,
  .nav-actions .btn-cta {
    display: none;
  }

  .mobile-menu {
    inset-block-start: 66px;
    padding-inline: 18px;
  }

  .experience-hero {
    padding: 55px 0 70px;
  }

  .experience-hero-grid {
    min-height: 0;
    gap: 55px;
  }

  .experience-hero h1 {
    font-size: clamp(38px, 12vw, 50px);
  }

  .hero-lede {
    margin-top: 21px;
    font-size: 12.5px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 17px;
  }

  .visit-meta {
    margin-top: 38px;
  }

  .visit-meta div {
    padding-right: 8px;
  }

  .visit-meta div + div {
    padding-left: 9px;
  }

  .visit-meta dd {
    font-size: 10px;
  }

  .experience-hero-visual {
    min-height: 500px;
  }

  .hero-photo-main {
    left: 28px;
    border-radius: 110px 6px 6px 6px;
  }

  .hero-photo-note {
    left: 0;
    bottom: 25px;
    width: 130px;
  }

  .hero-photo-note figcaption {
    font-size: 8px;
  }

  .visit-stamp {
    top: 18px;
    right: -8px;
    width: 90px;
    height: 90px;
  }

  .visit-stamp strong {
    font-size: 21px;
  }

  .editorial-intro,
  .included-section,
  .reservation-section {
    padding: 80px 0;
  }

  .intro-grid {
    gap: 48px;
  }

  .intro-copy h2,
  .day-heading h2,
  .included-heading h2,
  .reservation-copy h2,
  .etiquette-copy h2 {
    font-size: 35px;
  }

  .quiet-facts {
    grid-template-columns: 1fr;
    margin-top: 58px;
  }

  .quiet-facts div,
  .quiet-facts div + div {
    min-height: 90px;
    padding: 16px 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .quiet-facts div:first-child {
    border-top: 0;
  }

  .quiet-facts p {
    margin-top: 8px;
  }

  .the-day {
    padding: 80px 0;
  }

  .day-heading {
    gap: 22px;
    margin-bottom: 43px;
  }

  .day-stop {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 35px 0;
  }

  .day-stop figure,
  .day-stop:nth-child(even) figure {
    grid-column: 1;
    order: initial;
  }

  .day-copy {
    order: initial;
  }

  .day-time {
    min-height: auto;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
  }

  .day-copy h3 {
    font-size: 21px;
  }

  .included-heading {
    gap: 22px;
  }

  .included-grid {
    grid-template-columns: 1fr;
  }

  .included-card,
  .included-card-feature,
  .included-card-wide,
  .included-card-photo {
    grid-column: 1;
    min-height: 235px;
  }

  .included-card-feature,
  .included-card-wide {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .etiquette-image {
    min-height: 390px;
  }

  .etiquette-copy {
    padding: 70px 18px;
  }

  .etiquette-list {
    margin-top: 37px;
  }

  .reservation-grid {
    gap: 45px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .reservation-form {
    padding: 28px 20px;
  }

  .form-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@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;
  }
}