:root {
  --bg: #fffefa;
  --surface: rgba(255, 255, 255, 0.92);
  --surface-strong: #ffffff;
  --ink: #162018;
  --muted: #6f7058;
  --accent: #2f7653;
  --accent-strong: #255e42;
  --accent-soft: #f5d760;
  --green-soft: #edf5df;
  --yellow-soft: #fff8d6;
  --blocked: #a65f35;
  --line: rgba(130, 122, 63, 0.14);
  --shadow: 0 22px 60px rgba(91, 80, 32, 0.09);
  --radius: 14px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-bottom: 5.8rem;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(245, 215, 96, 0.14), transparent 32%),
    radial-gradient(circle at 85% 18%, rgba(245, 215, 96, 0.1), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fffdf6 48%, #ffffff 100%);
  font:
    400 1rem/1.65 -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

img,
picture,
video,
iframe {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.skip-link {
  position: absolute;
  top: -3rem;
  left: 1rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(100% - 2rem, 1200px);
  margin: 0 auto;
}

main > section[id] {
  scroll-margin-top: 5.75rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 250, 0.88);
  border-bottom: 1px solid var(--line);
}

.site-header__inner,
.site-footer__inner,
.site-nav,
.hero__actions,
.route-meta,
.details-list,
.site-footer__links,
.selling-points__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.site-header__inner,
.site-footer__inner {
  align-items: center;
  justify-content: space-between;
  min-height: 4.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.875rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff8ce;
  font-size: 0.85rem;
}

.site-nav a,
.site-footer__links a {
  color: var(--muted);
}

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

/* Hero */
.hero {
  position: relative;
  isolation: isolate;
  min-height: min(90svh, 58rem);
  overflow: hidden;
}

.hero__media,
.hero__slide,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition:
    opacity 900ms ease,
    transform 7000ms ease;
}

.hero__slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero__overlay {
  background:
    linear-gradient(90deg, rgba(18, 39, 27, 0.75) 0%, rgba(18, 39, 27, 0.42) 42%, rgba(18, 39, 27, 0.18) 100%),
    linear-gradient(180deg, rgba(18, 39, 27, 0.08) 0%, rgba(18, 39, 27, 0.3) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(17rem, 23rem);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: end;
  align-content: end;
  min-height: min(90svh, 58rem);
  padding: 9rem 0 5rem;
  color: #fff;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffe27a;
}

.hero h1,
.section h2 {
  margin: 0;
  letter-spacing: -0.045em;
  line-height: 0.94;
}

.hero h1 {
  max-width: 12ch;
  font-size: clamp(3.395rem, 8.73vw, 6.79rem);
}

.hero__actions {
  margin-top: 1rem;
}

.hero__copy,
.section__header p,
.showcase__content p,
.contact-card p {
  max-width: 40rem;
  font-size: 1.0625rem;
}

.hero__copy {
  margin: 1.5rem 0 0;
  color: rgba(255, 255, 255, 0.86);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 700;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

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

.button--primary {
  background: var(--accent);
  color: #fff;
}

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--accent-strong);
}

.button--secondary {
  border-color: var(--line);
  background: #fff9dd;
  color: var(--ink);
}

.button--secondary:hover,
.button--secondary:focus-visible {
  background: #f9e47f;
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.button--ghost:hover,
.button--ghost:focus-visible {
  border-color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.14);
}

.hero__highlight-rail {
  position: relative;
  display: grid;
  gap: 0.85rem;
  margin-bottom: 0.25rem;
  padding-left: 1.35rem;
}

.hero__highlight-rail::before {
  content: "";
  position: absolute;
  top: 1rem;
  bottom: 1rem;
  left: 0.34rem;
  width: 1px;
  background: linear-gradient(
    180deg,
    rgba(255, 226, 122, 0),
    rgba(255, 226, 122, 0.84) 16%,
    rgba(255, 255, 255, 0.54) 84%,
    rgba(255, 255, 255, 0)
  );
}

.hero__highlight {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: center;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 22px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.07)),
    rgba(18, 39, 27, 0.18);
  color: #fff;
  box-shadow: 0 16px 45px rgba(4, 17, 10, 0.12);
  backdrop-filter: blur(14px);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.hero__highlight::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -1.35rem;
  width: 0.72rem;
  height: 0.72rem;
  border: 2px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  background: var(--accent-soft);
  transform: translateY(-50%);
  box-shadow: 0 0 0 0.32rem rgba(245, 215, 96, 0.18);
}

.hero__highlight:hover,
.hero__highlight:focus-visible {
  border-color: rgba(255, 226, 122, 0.82);
  background:
    linear-gradient(90deg, rgba(245, 215, 96, 0.24), rgba(255, 255, 255, 0.12)),
    rgba(18, 39, 27, 0.24);
  transform: translateX(0.18rem);
}

.hero__highlight-icon {
  display: grid;
  place-items: center;
  width: 2.45rem;
  height: 2.45rem;
  border: 1px solid rgba(255, 226, 122, 0.6);
  border-radius: 999px;
  background: rgba(255, 226, 122, 0.14);
  color: #ffe27a;
}

.hero__highlight-icon svg {
  width: 1.22rem;
  height: 1.22rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero__highlight-icon circle {
  fill: currentColor;
  stroke: none;
}

.hero__highlight-copy {
  display: grid;
  gap: 0.18rem;
}

.hero__highlight-copy span {
  color: #ffe27a;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero__highlight-copy strong {
  color: #fff;
  font-size: clamp(0.92rem, 1.08vw, 1.02rem);
  line-height: 1.28;
}

.route-meta {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.route-meta li {
  padding: 0.55rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-strong);
  color: var(--muted);
}

.travel-note {
  margin: 0.75rem 0 0;
  color: var(--muted);
}

/* Content sections */
.section {
  padding: 6rem 0;
}

.section--tight {
  padding: 5rem 0;
}

.section--contrast {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.96)),
    radial-gradient(circle at top right, rgba(245, 215, 96, 0.16), transparent 35%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section__header {
  margin-bottom: 2rem;
}

.section__header--split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}

.section__header--split p:last-child {
  max-width: 27rem;
  margin: 0;
  color: var(--muted);
}

.section h2 {
  max-width: 18ch;
  font-size: clamp(2.2rem, 4vw, 3.7rem);
}

.feature-grid,
.image-grid,
.showcase,
.availability {
  display: grid;
  gap: 1.5rem;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card,
.contact-card,
.showcase__image {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.card {
  padding: 1.75rem;
}

.card h3,
.showcase__content strong {
  margin: 0 0 0.7rem;
  font-size: 1.15rem;
}

.card p,
.details-list span,
.site-footer,
.site-nav a,
.image-tile figcaption {
  color: var(--muted);
}

.image-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
}

.image-tile {
  position: relative;
  min-height: 18rem;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-strong);
  box-shadow: var(--shadow);
}

.image-tile--large {
  grid-column: span 2;
  grid-row: span 2;
}

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

.image-tile__button {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  color: inherit;
  font: inherit;
}

.image-tile__button img {
  transition: transform 0.5s ease;
}

.image-tile--interactive:hover .image-tile__button img,
.image-tile__button:focus-visible img {
  transform: scale(1.04);
}

.image-tile__badge {
  position: absolute;
  right: 0.85rem;
  top: 0.85rem;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  background: var(--accent, #1f5c3c);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow: 0 6px 18px rgba(18, 39, 27, 0.28);
}

.image-tile__button:focus-visible {
  outline: 3px solid var(--accent, #1f5c3c);
  outline-offset: -3px;
}

.media-dialog {
  width: min(100% - 2rem, 62rem);
  padding: 0;
  border: 0;
  border-radius: 18px;
  background: #0d150f;
  color: #ffffff;
  box-shadow: 0 28px 90px rgba(18, 39, 27, 0.4);
  overflow: hidden;
}

.media-dialog::backdrop {
  background: rgba(18, 39, 27, 0.62);
  backdrop-filter: blur(5px);
}

/* Fixed-size stage: the frame never changes, so the arrows never move. */
.media-dialog__stage {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;
  max-height: 82svh;
  background: #0d150f;
  overflow: hidden;
}

.media-dialog__stage img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-dialog__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  border: 0;
  border-radius: 999px;
  background: rgba(13, 21, 15, 0.55);
  color: #ffffff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(6px);
}

.media-dialog__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  font-size: 1.9rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  transition: background 0.2s ease;
}

.media-dialog__nav:hover,
.media-dialog__nav:focus-visible {
  background: #ffffff;
}

.media-dialog__nav--prev {
  left: 0.85rem;
}

.media-dialog__nav--next {
  right: 0.85rem;
}

/* Caption sits as a soft gradient overlay on the image, not a hard white bar. */
.media-dialog__overlay {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.1rem 2rem;
  flex-wrap: wrap;
  padding: 3.5rem 1.4rem 1.35rem;
  background: linear-gradient(to top, rgba(8, 14, 10, 0.9) 0%, rgba(8, 14, 10, 0.55) 45%, rgba(8, 14, 10, 0) 100%);
}

.media-dialog__overlay-text {
  min-width: 0;
  flex: 1 1 18rem;
  max-width: 40rem;
}

.media-dialog__counter {
  margin: 0 0 0.3rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.media-dialog__title {
  margin: 0 0 0.3rem;
  color: #ffffff;
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  line-height: 1.05;
}

.media-dialog__info {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.98rem;
  line-height: 1.4;
}

.media-dialog__info a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.media-dialog__actions {
  display: flex;
  flex: 0 0 auto;
  align-items: flex-end;
}

.media-dialog__actions[hidden] {
  display: none;
}

.image-tile figcaption {
  position: absolute;
  left: 0.85rem;
  bottom: 0.85rem;
  padding: 0.42rem 0.72rem;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(10px);
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 800;
}

.showcase {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
}

.availability {
  grid-template-columns: minmax(18rem, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
}

.availability--compact {
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 248, 214, 0.5), rgba(255, 255, 255, 0.96) 48%),
    var(--surface-strong);
  box-shadow: var(--shadow);
}

.availability__updated {
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.availability-card {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.date-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.date-field {
  display: grid;
  gap: 0.35rem;
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fffefa;
}

.date-field span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.date-field input {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 1.05rem;
  font-weight: 700;
}

.date-field input:focus {
  outline: 2px solid rgba(47, 111, 78, 0.26);
  outline-offset: 0.25rem;
}

.availability-status {
  margin: 1rem 0 0;
  color: var(--muted);
}

.availability-status.is-good {
  color: var(--accent-strong);
  font-weight: 700;
}

.availability-status.is-bad {
  color: var(--blocked);
  font-weight: 700;
}

.availability-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.availability__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.availability__legend span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.availability-key {
  width: 0.78rem;
  height: 0.78rem;
  border-radius: 999px;
  border: 1px solid var(--line);
}

.availability-key--available {
  background: #fffefa;
}

.availability-key--selected {
  background: var(--accent-soft);
  border-color: #dfb82e;
}

.availability-key--blocked {
  background: var(--blocked);
  border-color: var(--blocked);
}

.calendar-dialog {
  width: min(100% - 2rem, 58rem);
  max-height: min(90svh, 50rem);
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #ffffff;
  color: var(--ink);
  box-shadow: 0 28px 90px rgba(18, 39, 27, 0.28);
  overflow: auto;
}

.calendar-dialog::backdrop {
  background: rgba(18, 39, 27, 0.56);
  backdrop-filter: blur(5px);
}

.calendar-dialog__header,
.calendar-dialog__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
}

.calendar-dialog__header {
  border-bottom: 1px solid var(--line);
}

.calendar-dialog__header h2 {
  margin: 0;
  font-size: clamp(1.55rem, 4vw, 2.4rem);
  line-height: 1;
}

.calendar-dialog__header .eyebrow {
  margin-bottom: 0.35rem;
}

.calendar-dialog__close {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fffefa;
  color: var(--ink);
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
}

.calendar-dialog .availability__legend {
  padding: 1rem 1.25rem 0;
}

.calendar-dialog__footer {
  border-top: 1px solid var(--line);
  background: #fffefa;
}

.availability-calendar {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: 1.25rem;
}

.availability-month {
  min-width: 0;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.availability-month h3 {
  margin: 0 0 0.85rem;
  font-size: 1rem;
}

.availability-month__grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.35rem;
}

.availability-month__weekday,
.availability-month__blank,
.availability-day {
  display: grid;
  place-items: center;
  min-width: 0;
  aspect-ratio: 1;
  border-radius: 999px;
  font-size: 0.82rem;
}

.availability-month__weekday {
  aspect-ratio: auto;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.availability-day {
  border: 1px solid rgba(47, 111, 78, 0.1);
  background: #fffefa;
  color: var(--ink);
  cursor: pointer;
}

.availability-day.is-blocked {
  background: var(--blocked);
  color: #fff;
  font-weight: 700;
  cursor: not-allowed;
}

.availability-day.is-past {
  opacity: 0.38;
  cursor: not-allowed;
}

.availability-day.is-selected,
.availability-day.is-in-range {
  background: var(--accent-soft);
  border-color: #dfb82e;
  color: var(--ink);
  font-weight: 800;
}

.showcase--rail {
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
}

.showcase--rail h2 {
  max-width: 14ch;
  font-size: clamp(2rem, 3.3vw, 3.35rem);
  line-height: 1;
}

.showcase__image {
  overflow: hidden;
}

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

.travel-diagram {
  display: block;
}

.showcase__content {
  padding: 1rem 0 1rem 1rem;
}

.showcase__content--flush {
  padding: 0 1rem 0 0;
}

.details-list {
  margin-top: 2rem;
}

.details-list div {
  flex: 1 1 12rem;
  padding: 1rem 1rem 1.1rem;
  border-radius: var(--radius);
  background: var(--surface-strong);
  border: 1px solid var(--line);
}

.details-list strong,
.details-list span {
  display: block;
}

.travel-diagram {
  padding: 0.6rem;
  background:
    radial-gradient(circle at top right, rgba(245, 215, 96, 0.13), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(255, 253, 246, 0.98));
}

.travel-diagram img {
  border-radius: calc(var(--radius) - 10px);
  width: 100%;
  height: auto;
}

.video-embed {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #14110e;
  box-shadow: var(--shadow);
}

.video-embed iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.faq-grid {
  display: grid;
  gap: 0.85rem;
}

.faq-grid details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-strong);
  box-shadow: var(--shadow);
}

.faq-grid summary {
  cursor: pointer;
  padding: 1.05rem 1.2rem;
  color: var(--ink);
  font-weight: 800;
}

.faq-grid p {
  margin: 0;
  padding: 0 1.2rem 1.15rem;
  color: var(--muted);
}

.contact-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem;
}

.site-footer {
  padding: 1rem 0 2rem;
}

.selling-points {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 40;
  border-top: 1px solid rgba(130, 122, 63, 0.16);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(255, 251, 225, 0.96) 52%, rgba(255, 255, 255, 0.96));
  box-shadow: 0 -14px 40px rgba(91, 80, 32, 0.08);
  backdrop-filter: blur(18px);
}

.selling-points__inner {
  min-height: 5rem;
  align-items: center;
  justify-content: center;
  gap: 0.85rem 1.25rem;
}

.selling-points__inner p {
  flex: 1 1 42rem;
  margin: 0;
  color: var(--accent-strong);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.35;
}

.selling-points__button {
  min-height: 2.7rem;
  padding: 0.65rem 1.05rem;
  white-space: nowrap;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .site-header__inner,
  .contact-card {
    align-items: flex-start;
  }

  .feature-grid,
  .image-grid,
  .showcase,
  .availability {
    grid-template-columns: 1fr;
  }

  .section__header--split {
    display: block;
  }

  .section__header--split p:last-child {
    margin-top: 1rem;
  }

  .image-tile,
  .image-tile--large {
    grid-column: auto;
    grid-row: auto;
  }

  .image-tile {
    min-height: 16rem;
  }

  .hero__content {
    grid-template-columns: 1fr;
  }

  .hero__highlight-rail {
    max-width: 34rem;
  }

  .availability__intro {
    position: static;
  }

  .showcase__content {
    padding: 0;
  }

  .showcase__content--flush {
    padding: 0;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 0;
  }

  .site-header__inner,
  .site-footer__inner {
    padding: 0.85rem 0;
  }

  .site-nav {
    gap: 0.75rem 1rem;
  }

  .hero__content {
    padding: 8rem 0 4rem;
  }

  .hero__highlight-rail {
    padding-left: 0;
    gap: 0.7rem;
  }

  .hero__highlight-rail::before,
  .hero__highlight::before {
    display: none;
  }

  .hero__highlight {
    border-radius: 14px;
  }

  .section,
  .section--tight {
    padding: 4rem 0;
  }

  .contact-card {
    padding: 1.5rem;
  }

  .availability--compact,
  .availability-card {
    padding: 1rem;
  }

  .availability-calendar {
    grid-template-columns: 1fr;
    padding: 1rem;
  }

  .date-fields,
  .calendar-dialog__footer {
    grid-template-columns: 1fr;
  }

  .calendar-dialog__footer {
    display: grid;
    align-items: stretch;
  }

  .selling-points__inner {
    min-height: 0;
    justify-content: flex-start;
    padding: 1rem 0;
  }

  .selling-points__inner p {
    font-size: 0.82rem;
  }

  .selling-points__button {
    min-height: 2.45rem;
  }

  .selling-points {
    position: static;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button,
  .hero__slide {
    transition: none;
  }
}

/* ---- Scrollable hero highlight rail (discover more) ---- */
.hero__highlight-rail--scroll {
  max-height: 21rem;
  overflow-y: auto;
  overflow-x: hidden;
  padding-left: 1.7rem;
  padding-right: 0.5rem;
  padding-block: 0.3rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 226, 122, 0.5) transparent;
  scroll-snap-type: y proximity;
}

.hero__highlight-rail--scroll .hero__highlight {
  scroll-snap-align: start;
}

.hero__highlight-rail--scroll::-webkit-scrollbar {
  width: 6px;
}

.hero__highlight-rail--scroll::-webkit-scrollbar-thumb {
  background: rgba(255, 226, 122, 0.5);
  border-radius: 999px;
}

/* ---- Section header with carousel nav ---- */
.carousel-nav {
  display: flex;
  gap: 0.6rem;
  align-self: center;
}

.carousel-nav__btn {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--accent);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.carousel-nav__btn:hover,
.carousel-nav__btn:focus-visible {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* ---- Things To Do horizontal scroller ---- */
.feature-scroller {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.25rem 0.25rem 1rem;
  margin: 0 -0.25rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(47, 118, 83, 0.4) transparent;
}

.feature-scroller::-webkit-scrollbar {
  height: 7px;
}

.feature-scroller::-webkit-scrollbar-thumb {
  background: rgba(47, 118, 83, 0.35);
  border-radius: 999px;
}

.feature-scroller .card {
  flex: 0 0 auto;
  width: clamp(15rem, 30%, 20rem);
  scroll-snap-align: start;
}

@media (max-width: 640px) {
  .feature-scroller .card {
    width: 80%;
  }
}

/* ---- Facilities amenities grid (icon cards, no photo) ---- */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15.5rem, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.amenity {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding: 1.15rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.amenity__icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--accent);
}

.amenity__icon svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.amenity__icon svg circle,
.amenity__icon svg rect {
  fill: none;
}

.amenity__text {
  display: grid;
  gap: 0.25rem;
  min-width: 0;
}

.amenity__text strong {
  font-size: 1.02rem;
}

.amenity__text span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.42;
}

/* ---- Things To Do banner ---- */
.things-banner {
  position: relative;
  height: clamp(9rem, 22vw, 15rem);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.things-banner__media {
  position: absolute;
  inset: 0;
}

.things-banner__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.7s ease;
}

.things-banner__media img.is-active {
  opacity: 1;
}

.things-banner__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem 1.85rem;
  background:
    linear-gradient(to right, rgba(8, 14, 10, 0.85) 0%, rgba(8, 14, 10, 0.55) 40%, rgba(8, 14, 10, 0.12) 74%, rgba(8, 14, 10, 0) 100%),
    linear-gradient(to top, rgba(8, 14, 10, 0.6) 0%, rgba(8, 14, 10, 0.1) 55%, rgba(8, 14, 10, 0) 100%);
  color: #fff;
}

.things-banner__overlay .eyebrow {
  color: var(--accent-soft);
  margin-bottom: 0.3rem;
}

.things-banner__overlay h2 {
  margin: 0;
  color: #fff;
}

.things-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 1.5rem 0 0.25rem;
}

.things-controls__hint {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* ---- Availability inline mini-calendar ---- */
.availability-inline {
  margin: 1.1rem 0 0.25rem;
}

.mini-cal {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fffdf6;
  padding: 0.85rem 0.95rem 0.7rem;
}

.mini-cal__head {
  margin: 0 0 0.55rem;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--ink);
}

.mini-cal__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.28rem;
  text-align: center;
}

.mini-cal__wd {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--muted);
  padding-bottom: 0.15rem;
}

.mini-cal__day {
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1;
  border-radius: 7px;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--ink);
}

.mini-cal__day.is-free {
  background: var(--green-soft);
  color: var(--accent-strong);
}

.mini-cal__day.is-blocked {
  background: rgba(166, 95, 53, 0.16);
  color: var(--blocked);
  text-decoration: line-through;
}

.mini-cal__day.is-past {
  opacity: 0.38;
}

.mini-cal__day.is-today {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
}

.mini-cal__legend {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0.65rem 0 0;
  font-size: 0.78rem;
  color: var(--muted);
}

.mini-cal__key {
  display: inline-block;
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 4px;
  margin-left: 0.55rem;
}

.mini-cal__key:first-child {
  margin-left: 0;
}

.mini-cal__key--free {
  background: var(--green-soft);
}

.mini-cal__key--blocked {
  background: rgba(166, 95, 53, 0.4);
}

/* ---- Carousel caption: reserve two lines so nothing jumps ---- */
.media-dialog__info {
  min-height: 2.75em;
}

/* ---- Map: click to enlarge ---- */
.map-zoom {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  cursor: zoom-in;
  position: relative;
  border-radius: inherit;
  overflow: hidden;
}

.map-zoom img {
  display: block;
  width: 100%;
  height: auto;
}

.map-zoom__hint {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: rgba(13, 21, 15, 0.72);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  backdrop-filter: blur(4px);
}

/* Contain-mode dialog (whole image visible, e.g. the map) */
.media-dialog--contain .media-dialog__stage {
  aspect-ratio: auto;
  background: #0d150f;
}

.media-dialog--contain .media-dialog__stage img {
  position: static;
  width: 100%;
  height: auto;
  max-height: 82svh;
  object-fit: contain;
}

/* ---- FAQ list ---- */
.faq-list {
  margin: 0.5rem 0 0;
  padding-left: 1.1rem;
}

.faq-list li {
  margin-bottom: 0.5rem;
  color: var(--muted);
}

.faq-list li:last-child {
  margin-bottom: 0;
}

/* ---- Carousel toggle button: keep a steady size ---- */
.media-dialog__actions .button {
  min-width: 10.5rem;
}

/* ---- FAQ master dropdown ---- */
.faq-master {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-master > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.35rem;
  font-weight: 800;
  font-size: 1.05rem;
  cursor: pointer;
  list-style: none;
}

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

.faq-master > summary::after {
  content: "\203A";
  font-size: 1.6rem;
  line-height: 1;
  color: var(--accent);
  transform: rotate(90deg);
  transition: transform 0.2s ease;
}

.faq-master[open] > summary::after {
  transform: rotate(-90deg);
}

.faq-master > summary:hover {
  color: var(--accent-strong);
}

.faq-master .faq-grid {
  padding: 0 1rem 1rem;
}

/* ---- FAQ chips (quick jump to a question) ---- */
.faq-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1.1rem;
}

.faq-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--accent-strong);
  font-size: 0.86rem;
  font-weight: 700;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.faq-chip:hover,
.faq-chip:focus-visible {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* Smart links inside FAQ answers */
.faq-grid a {
  color: var(--accent-strong);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
}

.faq-grid a:hover,
.faq-grid a:focus-visible {
  color: var(--accent);
}

/* Briefly highlight a question opened from a chip */
.faq-grid details:target {
  outline: 2px solid var(--accent-soft);
  outline-offset: 2px;
  border-radius: 8px;
}

/* ---- At a glance strip ---- */
.at-a-glance {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, var(--green-soft), var(--yellow-soft));
}

.at-a-glance__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(9.75rem, 1fr));
  gap: 0.85rem 1.4rem;
  padding: 1.1rem 0;
}

.glance {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.glance__icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--accent-strong);
}

.glance__icon svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.glance__icon svg circle,
.glance__icon svg rect {
  fill: none;
}

.glance__text {
  display: flex;
  flex-direction: column;
  line-height: 1.22;
  font-size: 0.82rem;
  color: var(--muted);
}

.glance__text strong {
  color: var(--ink);
  font-size: 0.95rem;
}

/* ---- Good to know ---- */
.gtk-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.gtk {
  padding: 1.3rem 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.gtk h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
}

.gtk p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* ---- Contact actions + outline / share button ---- */
.contact-card__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.button--outline {
  gap: 0.4rem;
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
}

.button--outline:hover,
.button--outline:focus-visible {
  border-color: var(--accent);
  color: var(--accent-strong);
}

.button__icon {
  display: inline-grid;
  place-items: center;
  width: 1.05rem;
  height: 1.05rem;
}

.button__icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button__icon svg circle {
  fill: none;
}

.contact-card__emails {
  margin-top: 0.9rem;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.7;
}

.contact-card__emails a {
  color: var(--accent-strong);
  font-weight: 600;
}

/* ---- Guest reviews ---- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.review {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin: 0;
  padding: 1.4rem 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.review__stars {
  margin: 0;
  color: #e0a92e;
  letter-spacing: 2px;
  font-size: 0.95rem;
}

.review__quote {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--ink);
}

.review__author {
  margin-top: auto;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
}

.review__author span {
  font-weight: 400;
  color: var(--muted);
}

/* ---- FAQ jump targets: offset for sticky header so chips don't overshoot ---- */
.faq-grid > details[id],
[id^="faq-"] {
  scroll-margin-top: 6rem;
}

/* ---- Things To Do banner: tidy framing on phones ---- */
@media (max-width: 640px) {
  .things-banner {
    height: clamp(11rem, 42vw, 14rem);
  }
  .things-banner__media img {
    object-position: center;
  }
  .things-banner__overlay {
    padding: 1.15rem 1.25rem;
  }
}

/* ---- Dialog fallback: centre when opened non-modally (sandboxed previews) ---- */
.media-dialog[open],
.calendar-dialog[open] {
  position: fixed;
  inset: 0;
  margin: auto;
  z-index: 60;
}
