:root {
  --ink: #17352d;
  --ink-2: #24473b;
  --leaf: #557666;
  --cream: #f4efe4;
  --paper: #fbf8f1;
  --sand: #e5d6bd;
  --sun: #d97a40;
  --gold: #e3ab5d;
  --white: #fffdf8;
  --line: rgba(23, 53, 45, 0.17);
  --shadow: 0 24px 80px rgba(19, 42, 34, 0.14);
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
button, input { font: inherit; }
a { color: inherit; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -64px;
  z-index: 100;
  background: var(--white);
  padding: 12px 18px;
  border-radius: 12px;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: fixed;
  z-index: 50;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: min(calc(100% - 32px), 1240px);
  height: 68px;
  padding: 0 12px 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--white);
  background: rgba(20, 49, 41, .9);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 18px;
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 48px rgba(8, 31, 24, .18);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 750;
  font-size: .82rem;
  letter-spacing: .18em;
}
.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--ink);
  background: var(--gold);
  border-radius: 50% 50% 48% 52% / 57% 49% 51% 43%;
}
.nav-links { display: flex; gap: 32px; margin-left: auto; }
.nav-links a { text-decoration: none; font-size: .88rem; opacity: .78; }
.nav-links a:hover, .nav-links a:focus-visible { opacity: 1; }
.header-actions { display: flex; align-items: center; gap: 8px; }
.language-picker {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.language-picker::after {
  content: "⌄";
  position: absolute;
  right: 9px;
  top: 8px;
  color: rgba(255,255,255,.72);
  pointer-events: none;
}
.language-picker select {
  appearance: none;
  height: 42px;
  min-width: 62px;
  padding: 0 25px 0 10px;
  color: var(--white);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;
  cursor: pointer;
  font-weight: 730;
  outline: 0;
}
.language-picker select:hover, .language-picker select:focus-visible { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.36); }
.language-picker option { color: var(--ink); background: var(--white); }

.button {
  min-height: 48px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  font-size: .9rem;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 42px; padding: 0 18px; }
.button-light { color: var(--ink); background: var(--white); }
.button-primary { color: var(--white); background: var(--sun); box-shadow: 0 10px 28px rgba(183, 84, 38, .2); }
.button-dark { color: var(--white); background: var(--ink); }
.button-outline { color: var(--ink); border-color: var(--ink); background: transparent; }
.button-wide { width: 100%; }

.hero {
  min-height: 860px;
  padding: 150px max(6vw, 28px) 100px;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 540px);
  grid-template-rows: auto auto;
  align-items: center;
  gap: 42px 7vw;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 14% 20%, rgba(79, 125, 103, .32), transparent 32%),
    linear-gradient(135deg, #132e27 0%, #244b3f 57%, #17352d 100%);
}
.hero-copy { grid-column: 1; grid-row: 1; position: relative; z-index: 2; max-width: 720px; }
.eyebrow, .section-kicker {
  margin: 0 0 20px;
  font-size: .72rem;
  font-weight: 780;
  letter-spacing: .2em;
}
.hero h1 {
  margin: 0;
  max-width: 760px;
  font-family: var(--serif);
  font-size: clamp(4.1rem, 7.7vw, 8.3rem);
  line-height: .86;
  letter-spacing: -.055em;
  font-weight: 500;
}
.hero-intro {
  max-width: 620px;
  margin: 32px 0 34px;
  font-family: var(--serif);
  font-size: clamp(1.14rem, 1.8vw, 1.45rem);
  line-height: 1.55;
  color: rgba(255,255,255,.76);
}
.hero-facts { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero-facts span {
  padding: 10px 15px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(8px);
}
.hero-facts strong { color: var(--gold); }
.hero-facts em { font-style: normal; font-size: .84rem; opacity: .82; }

.hero-visual {
  position: absolute;
  top: 104px;
  right: -2vw;
  width: min(56vw, 780px);
  height: 520px;
  pointer-events: none;
}
.photo-stack { position: relative; width: 100%; height: 100%; }
.photo-stack::before {
  content: "";
  position: absolute;
  top: -70px;
  right: 8%;
  width: 240px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(180deg, #f1bd6b, #d7793f);
  opacity: .82;
}
.hero-photo {
  position: absolute;
  display: block;
  object-fit: cover;
  border: 8px solid rgba(255,255,255,.12);
  box-shadow: 0 24px 60px rgba(5, 26, 20, .32);
}
.hero-photo-main { left: 2%; bottom: 0; width: 76%; height: 74%; border-radius: 24px; }
.hero-photo-top { right: 2%; top: 3%; width: 34%; height: 39%; border-radius: 50% 50% 18px 18px / 35% 35% 18px 18px; }
.hero-photo-bottom { right: 0; bottom: 2%; width: 38%; height: 47%; border-radius: 18px; }
.hero-distance {
  position: absolute;
  top: 43%;
  right: 4%;
  padding: 13px 17px;
  color: var(--ink);
  background: rgba(255,253,248,.92);
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 760;
  box-shadow: var(--shadow);
}

.trip-planner {
  grid-column: 2;
  grid-row: 2;
  position: relative;
  z-index: 4;
  padding: clamp(24px, 3.2vw, 38px);
  color: var(--ink);
  background: rgba(255,253,248,.97);
  border-radius: 26px;
  box-shadow: var(--shadow);
}
.planner-heading { display: flex; justify-content: space-between; align-items: flex-start; gap: 18px; }
.planner-heading .section-kicker { display: block; margin-bottom: 8px; color: var(--sun); }
.planner-heading h2 { margin: 0; font-family: var(--serif); font-weight: 500; font-size: 2rem; }
.live-pill {
  padding: 8px 10px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  color: var(--leaf);
  background: #e8f0e9;
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 700;
}
.live-pill i { width: 7px; height: 7px; background: #3c8558; border-radius: 50%; box-shadow: 0 0 0 4px rgba(60,133,88,.12); }
.date-grid { margin: 28px 0 12px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.date-grid label {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
}
.date-grid label > span, .label-text { display: block; margin-bottom: 7px; font-size: .7rem; font-weight: 750; color: var(--leaf); }
.date-grid input { width: 100%; min-width: 0; color: var(--ink); background: transparent; border: 0; font-weight: 720; outline: 0; }
.date-grid label:focus-within { border-color: var(--sun); box-shadow: 0 0 0 3px rgba(217,122,64,.12); }
.guest-row {
  padding: 15px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 14px;
}
.guest-row small { display: block; color: var(--leaf); font-size: .7rem; }
.stepper { display: flex; align-items: center; gap: 14px; }
.stepper button {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  color: var(--ink); background: var(--cream); border: 0; border-radius: 9px; cursor: pointer; font-size: 1.2rem;
}
.stepper button:hover, .stepper button:focus-visible { background: var(--sand); }
.stepper output { min-width: 18px; text-align: center; font-weight: 760; }
.planner-status { margin: 16px 0; padding: 13px 14px; display: flex; gap: 10px; align-items: flex-start; color: var(--leaf); background: #eef1eb; border-radius: 12px; font-size: .77rem; line-height: 1.45; }
.status-icon { color: var(--sun); font-weight: 800; }
.trust-note { margin: 14px 10px 0; color: #75847d; text-align: center; font-size: .68rem; line-height: 1.5; }

.experience { padding: 110px max(6vw, 28px); background: var(--paper); }
.section-intro { max-width: 840px; margin-bottom: 56px; }
.section-intro .eyebrow { color: var(--sun); }
.section-intro h2, .booking-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 5.8rem);
  line-height: .98;
  letter-spacing: -.045em;
  font-weight: 500;
}
.section-intro > p:last-child { max-width: 620px; margin: 24px 0 0; color: var(--leaf); line-height: 1.7; }
.feature-grid { display: grid; grid-template-columns: 1.25fr .85fr .85fr; gap: 16px; }
.feature-card {
  min-height: 360px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #eee6d6;
}
.feature-card-large { background: #e3c99f; }
.feature-card-warm { background: #cf7544; color: var(--white); border-color: transparent; }
.feature-card-dark { background: var(--ink); color: var(--white); border-color: transparent; }
.feature-number { align-self: flex-end; font-family: var(--serif); font-style: italic; opacity: .55; }
.feature-icon { width: 58px; height: 58px; margin-bottom: 42px; display: grid; place-items: center; border: 1px solid currentColor; border-radius: 50%; opacity: .82; }
.feature-icon svg { width: 30px; height: 30px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.feature-card h3 { margin: 0 0 12px; font-family: var(--serif); font-size: 2rem; font-weight: 500; }
.feature-card p { margin: 0; max-width: 430px; line-height: 1.65; opacity: .78; }
.amenity-strip { margin-top: 18px; padding: 24px 0 0; display: flex; flex-wrap: wrap; gap: 10px; border-top: 1px solid var(--line); }
.amenity-strip span { padding: 10px 14px; border: 1px solid var(--line); border-radius: 999px; color: var(--leaf); font-size: .78rem; }

.gallery-block, .nearby-block { margin-top: 118px; scroll-margin-top: 100px; }
.subsection-heading {
  margin-bottom: 42px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 8vw;
  align-items: end;
}
.subsection-heading .eyebrow { color: var(--sun); }
.subsection-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 4.8vw, 5.2rem);
  line-height: .98;
  letter-spacing: -.045em;
  font-weight: 500;
}
.subsection-heading > p { margin: 0 0 6px; max-width: 560px; color: var(--leaf); line-height: 1.7; }
.photo-gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 178px;
  gap: 12px;
}
.gallery-item {
  position: relative;
  grid-column: span 3;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 18px;
  background: var(--sand);
  cursor: zoom-in;
}
.gallery-item-featured { grid-column: span 6; grid-row: span 2; }
.gallery-item-wide { grid-column: span 6; }
.gallery-item img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .45s ease; }
.gallery-item::after { content: ""; position: absolute; inset: 35% 0 0; background: linear-gradient(transparent, rgba(8,26,20,.68)); }
.gallery-item span { position: absolute; z-index: 2; left: 16px; bottom: 14px; color: var(--white); font-size: .76rem; font-weight: 720; }
.gallery-item:hover img, .gallery-item:focus-visible img { transform: scale(1.045); }
.gallery-item:focus-visible { outline: 3px solid var(--sun); outline-offset: 3px; }

.gallery-dialog {
  width: min(1120px, calc(100% - 28px));
  max-width: none;
  padding: 14px;
  color: var(--white);
  background: #0c211b;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 22px;
  box-shadow: 0 40px 120px rgba(0,0,0,.55);
}
.gallery-dialog::backdrop { background: rgba(4,18,14,.82); backdrop-filter: blur(9px); }
.gallery-dialog img { width: 100%; max-height: 76vh; display: block; object-fit: contain; border-radius: 14px; background: #071712; }
.gallery-dialog p { margin: 12px 8px 2px; color: rgba(255,255,255,.76); }
.gallery-close {
  position: absolute;
  z-index: 3;
  top: 24px;
  right: 24px;
  width: 42px;
  height: 42px;
  color: var(--ink);
  background: rgba(255,255,255,.92);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.55rem;
  line-height: 1;
}

.attraction-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.attraction-card {
  min-height: 280px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
}
.attraction-card-highlight {
  grid-column: span 2;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 18%, rgba(227,171,93,.76) 0 16%, transparent 16.5%),
    linear-gradient(145deg, #315a49, #17352d);
  border-color: transparent;
}
.attraction-index, .attraction-time { margin-bottom: auto; color: var(--sun); font-family: var(--serif); font-size: 1rem; font-style: italic; }
.attraction-time { color: var(--gold); font-family: var(--sans); font-size: .68rem; font-style: normal; font-weight: 800; letter-spacing: .18em; }
.attraction-card h3 { margin: 38px 0 10px; font-family: var(--serif); font-size: 1.75rem; line-height: 1.05; font-weight: 500; }
.attraction-card p { margin: 0; color: var(--leaf); line-height: 1.6; font-size: .82rem; }
.attraction-card-highlight h3 { font-size: 2.35rem; }
.attraction-card-highlight p { max-width: 620px; color: rgba(255,255,255,.72); }

.location-card {
  margin-top: 18px;
  padding: 12px;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 12px;
  background: #e7dcc9;
  border-radius: 24px;
}
.location-card iframe { width: 100%; min-height: 440px; border: 0; border-radius: 16px; filter: saturate(.7) contrast(.94); }
.location-copy { padding: 38px 32px; display: flex; flex-direction: column; align-items: flex-start; }
.location-copy .eyebrow { color: var(--sun); }
.location-copy h3 { margin: 0 0 24px; font-family: var(--serif); font-size: clamp(2rem, 3vw, 3.2rem); line-height: 1.02; font-weight: 500; }
.location-copy address { margin-bottom: 20px; color: var(--ink); font-family: var(--serif); font-size: 1.25rem; line-height: 1.45; font-style: normal; }
.location-copy > p:not(.eyebrow) { margin: 0 0 28px; color: var(--leaf); line-height: 1.6; font-size: .82rem; }
.location-copy .button { margin-top: auto; }

.booking { padding: 110px max(6vw, 28px) 28px; color: var(--white); background: #17352d; }
.booking-heading { display: grid; grid-template-columns: 1.25fr .75fr; gap: 8vw; align-items: end; }
.booking-heading .eyebrow { color: var(--gold); }
.booking-heading > p { margin: 0 0 8px; max-width: 540px; color: rgba(255,255,255,.67); line-height: 1.7; }
.guest-reviews { margin-top: 58px; }
.review-heading { display: flex; align-items: baseline; justify-content: space-between; gap: 24px; }
.review-heading h3 { margin: 0 0 20px; font-family: var(--serif); font-size: clamp(1.7rem, 2.6vw, 2.5rem); font-weight: 500; }
.review-heading p { margin: 0 0 20px; color: rgba(255,255,255,.7); font-size: .9rem; }
.review-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.review-card { min-height: 218px; padding: 26px; display: flex; flex-direction: column; border: 1px solid rgba(255,255,255,.19); border-radius: 20px; background: rgba(255,255,255,.07); }
.review-source { margin: 0 0 26px; display: flex; align-items: baseline; justify-content: space-between; gap: 12px; font-size: .95rem; font-weight: 750; }
.review-source span { color: var(--gold); font-size: .85rem; text-align: right; }
.review-card blockquote { margin: 0 0 24px; font-family: var(--serif); font-size: clamp(1.25rem, 1.8vw, 1.7rem); line-height: 1.3; }
.review-byline { margin: auto 0 0; color: rgba(255,255,255,.72); font-size: .85rem; }
.review-byline a { color: var(--gold); text-underline-offset: 4px; }
.review-byline a:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }
.review-rating { margin: 0 0 20px; font-family: var(--serif); font-size: 3.5rem; line-height: 1; font-weight: 500; }
.review-date { margin: 14px 0 0; color: rgba(255,255,255,.66); font-size: .8rem; }
.priority-picker { margin: 48px 0 24px; display: flex; align-items: center; flex-wrap: wrap; gap: 8px; }
.priority-picker > span { margin-right: 10px; color: rgba(255,255,255,.58); font-size: .8rem; }
.priority {
  padding: 9px 13px;
  color: rgba(255,255,255,.74);
  background: transparent;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  cursor: pointer;
  font-size: .76rem;
}
.priority:hover, .priority:focus-visible, .priority.active { color: var(--ink); background: var(--gold); border-color: var(--gold); }
.comparison-layout { display: grid; grid-template-columns: 1fr 1fr .8fr; gap: 14px; }
.booking-card, .decision-card { padding: 28px; border-radius: 24px; }
.booking-card { color: var(--ink); background: var(--paper); }
.platform-topline { min-height: 36px; display: flex; justify-content: space-between; gap: 16px; align-items: flex-start; }
.platform-logo { font-weight: 800; font-size: 1.05rem; }
.booking-logo { color: #114ca5; }
.airbnb-logo { color: #e65864; letter-spacing: -.04em; }
.direct-badge, .search-badge { padding: 6px 8px; border-radius: 999px; font-size: .64rem; font-weight: 700; }
.direct-badge { color: #27643f; background: #e2efe4; }
.search-badge { color: #83593d; background: #f3e7d8; }
.booking-card h3 { margin: 46px 0 24px; max-width: 320px; font-family: var(--serif); font-size: 2.1rem; line-height: 1.04; font-weight: 500; }
.rate-grid { margin-bottom: 20px; border-top: 1px solid var(--line); }
.rate-grid > div { padding: 11px 0; display: flex; justify-content: space-between; gap: 14px; border-bottom: 1px solid var(--line); font-size: .72rem; }
.rate-grid span { color: var(--leaf); }
.rate-grid strong { text-align: right; }
.comparison-tip { min-height: 42px; margin: 0 0 18px; color: var(--leaf); font-size: .76rem; line-height: 1.5; }
.decision-card { position: relative; overflow: hidden; color: var(--ink); background: var(--gold); }
.decision-mark { position: absolute; right: -16px; top: -54px; font-family: var(--serif); font-size: 16rem; font-style: italic; color: rgba(255,255,255,.18); }
.decision-card .eyebrow { position: relative; margin-bottom: 44px; }
.decision-card h3 { position: relative; margin: 0 0 18px; font-family: var(--serif); font-size: 2.25rem; line-height: 1.03; font-weight: 500; }
.decision-card > p:not(.eyebrow) { position: relative; color: rgba(23,53,45,.72); line-height: 1.6; font-size: .86rem; }
.decision-facts { position: relative; margin: 32px 0; padding: 20px 0; display: flex; gap: 26px; border-top: 1px solid rgba(23,53,45,.2); border-bottom: 1px solid rgba(23,53,45,.2); }
.decision-facts span { display: flex; align-items: baseline; gap: 6px; }
.decision-facts strong { font-family: var(--serif); font-size: 2rem; font-weight: 500; }
.decision-facts small { font-size: .7rem; }
.text-link { position: relative; font-size: .78rem; font-weight: 760; text-underline-offset: 4px; }

footer { margin-top: 90px; padding: 28px 0 0; display: grid; grid-template-columns: 1fr auto auto; gap: 26px; align-items: center; border-top: 1px solid rgba(255,255,255,.16); color: rgba(255,255,255,.6); font-size: .75rem; }
.footer-brand { color: var(--white); }

@media (max-width: 1020px) {
  .hero { min-height: 1080px; grid-template-columns: 1fr; grid-template-rows: auto auto; align-content: center; }
  .hero-copy { grid-column: 1; grid-row: 1; max-width: 780px; }
  .trip-planner { grid-column: 1; grid-row: 2; max-width: 620px; }
  .hero-visual { top: 250px; right: -18vw; width: 76vw; height: 500px; opacity: .58; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .feature-card-large { grid-column: 1 / -1; }
  .feature-card { min-height: 320px; }
  .comparison-layout { grid-template-columns: 1fr 1fr; }
  .review-grid { grid-template-columns: 1fr 1fr; }
  .review-card-rating { grid-column: 1 / -1; }
  .decision-card { grid-column: 1 / -1; }
  .photo-gallery { grid-auto-rows: 154px; }
  .gallery-item { grid-column: span 4; }
  .gallery-item-featured { grid-column: span 8; }
  .gallery-item-wide { grid-column: span 4; }
  .attraction-grid { grid-template-columns: 1fr 1fr; }
  .attraction-card-highlight { grid-column: span 2; }
  .location-card { grid-template-columns: 1fr; }
  .location-card iframe { min-height: 360px; }
}

@media (max-width: 720px) {
  .site-header { top: 8px; width: calc(100% - 16px); height: 60px; padding: 0 8px 0 12px; border-radius: 14px; }
  .brand { font-size: .68rem; }
  .brand-mark { width: 30px; height: 30px; }
  .nav-links, .button-small { display: none; }
  .language-picker select { height: 38px; min-width: 58px; }
  .hero { min-height: auto; padding: 116px 18px 64px; gap: 44px; }
  .hero h1 { font-size: clamp(4rem, 18vw, 6rem); }
  .hero-intro { margin: 24px 0; }
  .hero-visual { top: 326px; right: -45vw; width: 122vw; height: 430px; opacity: .3; }
  .hero-distance { top: 48%; right: 36%; }
  .trip-planner { padding: 22px 18px; border-radius: 20px; }
  .planner-heading { display: block; }
  .live-pill { margin-top: 12px; }
  .date-grid { grid-template-columns: 1fr; }
  .experience, .booking { padding: 78px 18px; }
  .feature-grid, .booking-heading, .comparison-layout, .subsection-heading { grid-template-columns: 1fr; }
  .feature-card-large, .decision-card { grid-column: auto; }
  .feature-card { min-height: 300px; }
  .gallery-block, .nearby-block { margin-top: 82px; }
  .subsection-heading { gap: 22px; }
  .photo-gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; gap: 8px; }
  .gallery-item, .gallery-item-wide { grid-column: span 1; }
  .gallery-item-featured { grid-column: 1 / -1; grid-row: span 2; }
  .gallery-item:nth-child(2) { grid-column: 1 / -1; }
  .attraction-grid { grid-template-columns: 1fr; }
  .attraction-card-highlight { grid-column: auto; }
  .attraction-card { min-height: 250px; }
  .location-card { padding: 8px; }
  .location-card iframe { min-height: 300px; }
  .location-copy { padding: 28px 20px 22px; }
  .booking-heading { gap: 24px; }
  .review-heading { display: block; }
  .review-grid { grid-template-columns: 1fr; }
  .review-card-rating { grid-column: auto; }
  .review-card { min-height: 180px; }
  .priority-picker { align-items: flex-start; }
  .priority-picker > span { width: 100%; margin-bottom: 6px; }
  .booking-card, .decision-card { padding: 24px 20px; }
  footer { grid-template-columns: 1fr; gap: 12px; margin-top: 64px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
