:root {
  --paper: #f7f8f4;
  --paper-deep: #ecefe7;
  --white: #ffffff;
  --ink: #18202d;
  --ink-soft: #4d5663;
  --blue: #2454a6;
  --blue-dark: #183d7d;
  --coral: #d85a45;
  --emerald: #17624c;
  --gold: #c99d48;
  --gold-light: #e8c778;
  --line: #cfd5ca;
  --forest: #073a2c;
  --forest-deep: #03271d;
  --cream: #fff5dc;
  --cream-muted: #d8cfb8;
  --shadow: 0 20px 50px rgba(24, 32, 45, 0.12);
  --content: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

html.age-locked,
body.age-locked {
  height: 100%;
  overflow: hidden;
  overscroll-behavior: none;
}

body.age-locked {
  position: fixed;
  inset-inline: 0;
  width: 100%;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

a {
  color: inherit;
}

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

button,
a,
input,
select,
textarea {
  letter-spacing: 0;
}

main:focus {
  outline: none;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 2147483640;
  transform: translateY(-180%);
  background: var(--ink);
  color: var(--white);
  padding: 0.7rem 1rem;
  text-decoration: none;
}

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

.site-shell {
  min-height: 100vh;
}

.responsible-strip {
  background: var(--ink);
  color: #f3f5ef;
  padding: 0.55rem 1rem;
  text-align: center;
  font-size: 0.82rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 248, 244, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.navbar {
  width: min(var(--content), calc(100% - 2rem));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 42px;
  background: var(--blue);
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.16rem;
  font-weight: 700;
}

.brand-tag {
  margin-top: 0.22rem;
  color: var(--ink-soft);
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.4rem;
}

.nav-links a {
  position: relative;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.45rem;
  left: 0;
  height: 2px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-links a:focus-visible,
.brand:focus-visible,
.footer-links a:focus-visible,
.text-link:focus-visible {
  outline: 3px solid rgba(36, 84, 166, 0.3);
  outline-offset: 5px;
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: max(14px, calc((100vw - var(--content)) / 2));
  background: var(--coral);
}

.hero-inner {
  width: min(var(--content), calc(100% - 2rem));
  min-height: 620px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(300px, 0.58fr);
  gap: 5rem;
  align-items: center;
  padding: 5.5rem 0 4.5rem;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow,
.chapter-kicker,
.page-kicker,
.age-brand {
  margin: 0 0 0.85rem;
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
.serif {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

h1 {
  max-width: 13ch;
  margin: 0 0 1.35rem;
  font-size: 4.8rem;
  line-height: 0.98;
  font-weight: 700;
}

h2 {
  margin: 0 0 1rem;
  font-size: 3rem;
  line-height: 1.04;
}

h3 {
  margin: 0 0 0.7rem;
  font-size: 1.65rem;
  line-height: 1.15;
}

p {
  margin: 0 0 1rem;
}

.lead {
  max-width: 65ch;
  color: var(--ink-soft);
  font-size: 1.18rem;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.8rem;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--ink);
  border-radius: 3px;
  background: transparent;
  color: var(--ink);
  padding: 0.75rem 1.15rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button.primary {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--white);
}

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

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: 3px solid rgba(36, 84, 166, 0.28);
  outline-offset: 4px;
}

.button.primary:hover {
  background: var(--blue-dark);
}

.destination-index {
  align-self: stretch;
  display: grid;
  align-content: center;
  border-left: 1px solid var(--line);
  padding-left: 2rem;
}

.destination-index > p {
  color: var(--coral);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.destination-index ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

.destination-index li {
  display: grid;
  grid-template-columns: 2.25rem 1fr;
  gap: 0.8rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}

.destination-index li:last-child {
  border-bottom: 1px solid var(--line);
}

.destination-index strong {
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
}

.destination-index span {
  color: var(--ink-soft);
}

.section {
  padding: 5.5rem 1rem;
}

.section.compact {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.container {
  width: min(var(--content), 100%);
  margin: 0 auto;
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.6fr);
  gap: 4rem;
  align-items: end;
  margin-bottom: 3.25rem;
}

.section-intro h2 {
  max-width: 15ch;
}

.section-intro p:last-child {
  color: var(--ink-soft);
}

.trust-row {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.trust-grid {
  width: min(var(--content), calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trust-item {
  min-height: 155px;
  padding: 2rem;
  border-right: 1px solid var(--line);
}

.trust-item:first-child {
  border-left: 1px solid var(--line);
}

.trust-item strong {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--emerald);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
}

.trust-item span {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.country-chapter {
  border-top: 1px solid var(--line);
}

.country-chapter:last-child {
  border-bottom: 1px solid var(--line);
}

.country-chapter:nth-child(even) {
  background: var(--white);
}

.chapter-inner {
  width: min(var(--content), calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 3rem;
  padding: 4.5rem 0;
}

.chapter-label {
  position: sticky;
  top: 118px;
  align-self: start;
}

.chapter-number {
  display: block;
  color: var(--coral);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4rem;
  line-height: 1;
}

.chapter-label h2 {
  margin-top: 0.55rem;
  font-size: 2rem;
}

.chapter-label p {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.resort-list {
  border-top: 2px solid var(--ink);
}

.resort-profile {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 225px;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--line);
}

.resort-profile:last-child {
  border-bottom: 0;
}

.resort-location {
  margin-bottom: 0.65rem;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.resort-profile h3 {
  font-size: 2.25rem;
}

.resort-profile p {
  color: var(--ink-soft);
}

.resort-profile .text-link {
  display: inline-block;
  margin-top: 0.4rem;
  color: var(--blue);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.28rem;
}

.stay-notes {
  align-self: start;
  margin: 0;
  border-top: 3px solid var(--coral);
  background: var(--paper-deep);
  padding: 1rem;
}

.stay-notes div + div {
  margin-top: 0.9rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line);
}

.stay-notes dt {
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.stay-notes dd {
  margin: 0.2rem 0 0;
  font-size: 0.9rem;
  font-weight: 700;
}

.planning-section {
  background: var(--blue);
  color: var(--white);
}

.planning-section .eyebrow {
  color: #c8d9ff;
}

.planning-section .section-intro p:last-child {
  color: #e5ecff;
}

.planning-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.35);
}

.planning-step {
  padding: 2rem;
  border-right: 1px solid rgba(255, 255, 255, 0.35);
}

.planning-step:first-child {
  padding-left: 0;
}

.planning-step:last-child {
  border-right: 0;
}

.planning-step .step-number {
  display: block;
  margin-bottom: 1.5rem;
  color: #f6c978;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.2rem;
}

.planning-step h3 {
  color: var(--white);
}

.planning-step p {
  color: #e5ecff;
}

.comparison-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  background: var(--white);
}

.comparison-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.comparison-table th {
  background: var(--ink);
  color: var(--white);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.comparison-table tr:last-child td {
  border-bottom: 0;
}

.comparison-table td:first-child {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  font-weight: 700;
}

.cta-band {
  background: var(--emerald);
  color: var(--white);
}

.cta-inner {
  width: min(var(--content), calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) auto;
  gap: 3rem;
  align-items: center;
  padding: 4rem 0;
}

.cta-inner h2 {
  max-width: 18ch;
  margin-bottom: 0.6rem;
}

.cta-inner p {
  max-width: 65ch;
  color: #dbece6;
}

.page-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.page-hero-inner {
  width: min(var(--content), calc(100% - 2rem));
  min-height: 420px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 190px;
  gap: 3rem;
  align-items: end;
  padding: 5rem 0 4rem;
}

.page-hero h1 {
  max-width: 15ch;
  font-size: 4rem;
}

.page-index {
  align-self: stretch;
  display: grid;
  place-items: end center;
  border-left: 1px solid var(--line);
  color: var(--coral);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 6.5rem;
  line-height: 1;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.36fr);
  gap: 4rem;
  align-items: start;
}

.prose {
  max-width: 820px;
}

.prose h2 {
  margin-top: 2.8rem;
  font-size: 2.2rem;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  margin-top: 1.8rem;
}

.prose p,
.prose li {
  color: var(--ink-soft);
}

.prose a {
  color: var(--blue);
  font-weight: 700;
}

.prose ul,
.prose ol {
  padding-left: 1.2rem;
}

.prose li + li {
  margin-top: 0.55rem;
}

.side-note {
  position: sticky;
  top: 120px;
  border-top: 4px solid var(--coral);
  background: var(--white);
  padding: 1.4rem;
  box-shadow: var(--shadow);
}

.side-note h2,
.side-note h3 {
  font-size: 1.4rem;
}

.side-note p,
.side-note li {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.side-note ul {
  margin-bottom: 0;
  padding-left: 1.1rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 2rem;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.value-item {
  min-height: 210px;
  padding: 1.5rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.value-item strong {
  display: block;
  margin-bottom: 0.7rem;
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(360px, 0.48fr);
  gap: 4rem;
  align-items: start;
}

.contact-copy h2 {
  max-width: 13ch;
}

.contact-copy p {
  color: var(--ink-soft);
}

.contact-detail {
  margin-top: 2rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
}

.contact-detail strong {
  display: block;
  margin-bottom: 0.25rem;
}

.contact-detail a {
  color: var(--blue);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 1rem;
  border-top: 6px solid var(--blue);
  background: var(--white);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.contact-form h2 {
  font-size: 2rem;
}

.field {
  display: grid;
  gap: 0.35rem;
}

.field > span,
.fieldset legend {
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #aeb7aa;
  border-radius: 2px;
  background: #fcfdfa;
  color: var(--ink);
  padding: 0.78rem 0.85rem;
}

textarea {
  min-height: 145px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(36, 84, 166, 0.22);
  outline-offset: 1px;
}

.fieldset {
  margin: 0;
  border: 0;
  padding: 0;
}

.check-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.55rem;
  margin-top: 0.5rem;
}

.check-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.check-option input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--blue);
}

.form-note {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.8rem;
}

.form-status {
  min-height: 1.5rem;
  margin: 0;
  color: var(--emerald);
  font-weight: 800;
}

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

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

.faq-list summary {
  cursor: pointer;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.faq-list details p {
  max-width: 72ch;
  margin: 0.8rem 0 0;
  color: var(--ink-soft);
}

.legal-meta {
  margin-bottom: 2.5rem;
  padding: 1rem 1.2rem;
  border-left: 4px solid var(--coral);
  background: var(--white);
  color: var(--ink-soft);
}

.site-footer {
  background: var(--ink);
  color: var(--white);
  padding: 3.5rem 1rem 2rem;
}

.footer-grid {
  width: min(var(--content), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 3rem;
  align-items: start;
}

.site-footer .brand {
  color: var(--white);
}

.site-footer .brand-mark {
  background: var(--coral);
}

.site-footer .brand-tag,
.footer-copy {
  color: #cbd1da;
}

.footer-copy {
  max-width: 62ch;
  margin-top: 1.2rem;
  font-size: 0.88rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 0.75rem 1.4rem;
}

.footer-links a {
  color: #eef1f5;
  font-size: 0.9rem;
  text-decoration: none;
}

.footer-legal {
  width: min(var(--content), 100%);
  margin: 2.5rem auto 0;
  padding-top: 1.3rem;
  border-top: 1px solid #4b5360;
  color: #aeb6c2;
  font-size: 0.78rem;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 2147483000;
  width: 100vw;
  height: 100vh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  overflow: auto;
  overscroll-behavior: contain;
  background: var(--forest-deep);
  color: var(--cream);
  padding: 1.25rem;
  opacity: 0;
  animation: ageGateIn 360ms ease forwards;
}

.age-gate[hidden] {
  display: none;
}

.age-gate.is-closing {
  animation: ageGateOut 200ms ease forwards;
}

.age-dialog {
  width: min(760px, 100%);
  padding: 3.5rem 2rem;
  border-top: 1px solid rgba(232, 199, 120, 0.58);
  border-bottom: 1px solid rgba(232, 199, 120, 0.58);
  text-align: center;
}

.age-brand {
  color: var(--gold-light);
}

.age-dialog h2 {
  margin: 0.65rem 0 1.2rem;
  color: var(--cream);
  font-size: 4.5rem;
  line-height: 1;
}

.age-dialog p {
  max-width: 62ch;
  margin-inline: auto;
  color: #f0e8d5;
  font-size: 1.06rem;
}

.age-confirm {
  width: min(100%, 360px);
  min-height: 58px;
  margin-top: 1.35rem;
  border: 2px solid var(--gold-light);
  border-radius: 2px;
  background: var(--gold-light);
  color: #1b2a20;
  padding: 0.9rem 1.2rem;
  font-weight: 900;
  cursor: pointer;
}

.age-confirm:hover {
  background: #f0d58f;
}

.age-confirm:focus-visible {
  outline: 4px solid var(--cream);
  outline-offset: 6px;
}

.age-foot {
  display: block;
  margin-top: 1.25rem;
  color: var(--cream-muted);
  font-size: 0.84rem;
}

@keyframes ageGateIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes ageGateOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@media (max-width: 980px) {
  h1 {
    font-size: 3.8rem;
  }

  .hero-inner {
    grid-template-columns: 1fr 270px;
    gap: 2.5rem;
  }

  .section-intro,
  .content-grid,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .section-intro {
    align-items: start;
  }

  .section-intro h2 {
    max-width: 18ch;
  }

  .chapter-inner {
    grid-template-columns: 165px minmax(0, 1fr);
  }

  .resort-profile {
    grid-template-columns: 1fr;
  }

  .stay-notes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .stay-notes div + div {
    margin-top: 0;
    padding-top: 0;
    padding-left: 1rem;
    border-top: 0;
    border-left: 1px solid var(--line);
  }

  .side-note {
    position: static;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: static;
  }

  .navbar {
    min-height: auto;
    align-items: flex-start;
    flex-direction: column;
    gap: 0.8rem;
    padding: 1rem 0;
  }

  .nav-links {
    width: 100%;
    justify-content: flex-start;
    gap: 1rem;
    overflow-x: auto;
    padding: 0.4rem 0 0.55rem;
  }

  .nav-links a {
    white-space: nowrap;
  }

  .hero-inner {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 4rem 0 3rem;
  }

  h1,
  .page-hero h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .destination-index {
    border-top: 1px solid var(--line);
    border-left: 0;
    padding-top: 1.5rem;
    padding-left: 0;
  }

  .trust-grid,
  .planning-grid,
  .cta-inner,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-item,
  .trust-item:first-child {
    min-height: auto;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .chapter-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .chapter-label {
    position: static;
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 1rem;
    align-items: start;
  }

  .chapter-label p {
    grid-column: 2;
  }

  .chapter-number {
    grid-row: 1 / 3;
  }

  .planning-step,
  .planning-step:first-child {
    padding: 1.5rem 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  }

  .planning-step:last-child {
    border-bottom: 0;
  }

  .cta-inner {
    gap: 1rem;
  }

  .page-hero-inner {
    min-height: 360px;
    grid-template-columns: 1fr;
    padding: 4rem 0 3rem;
  }

  .page-index {
    display: none;
  }

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

@media (max-width: 520px) {
  h1,
  .page-hero h1 {
    font-size: 2.45rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero::before {
    width: 7px;
  }

  .section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .resort-profile h3 {
    font-size: 1.8rem;
  }

  .stay-notes,
  .values-grid,
  .check-options {
    grid-template-columns: 1fr;
  }

  .stay-notes div + div {
    padding-top: 0.8rem;
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .contact-form {
    padding: 1.3rem;
  }

  .age-dialog {
    padding: 2.4rem 0.3rem;
  }

  .age-dialog h2 {
    font-size: 3rem;
  }

  .age-dialog p {
    font-size: 0.96rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
