:root {
  --paper: #f5efe5;
  --paper-deep: #ebe1d2;
  --ink: #1e2a28;
  --ink-soft: #51615d;
  --sea: #1f6f78;
  --sea-deep: #13494f;
  --clay: #b56f4c;
  --moss: #6d7c55;
  --sand: #d8c3a4;
  --white: #fffaf2;
  --line: rgba(30, 42, 40, 0.14);
  --shadow: 0 24px 70px rgba(31, 43, 40, 0.16);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  padding-bottom: 0;
  transition: padding-bottom 220ms ease;
}

body.booking-dock-active {
  padding-bottom: 88px;
  padding-bottom: calc(88px + env(safe-area-inset-bottom, 0px));
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  inset: 12px auto auto 12px;
  z-index: 30;
  transform: translateY(-160%);
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 999px;
}

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

.site-header {
  position: fixed;
  inset: 18px 22px auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 10px;
  border: 1px solid rgba(255, 250, 242, 0.26);
  border-radius: 999px;
  background: rgba(30, 42, 40, 0.46);
  color: var(--white);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled {
  background: rgba(255, 250, 242, 0.88);
  color: var(--ink);
  box-shadow: 0 12px 44px rgba(30, 42, 40, 0.13);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--white);
  color: var(--sea-deep);
  font-weight: 800;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1;
}

.brand small {
  margin-top: 4px;
  color: currentColor;
  opacity: 0.72;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 5px;
}

.main-nav a,
.nav-cta,
.primary-action,
.secondary-action,
.ghost-button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 750;
  letter-spacing: 0;
}

.main-nav a {
  padding: 0 14px;
  opacity: 0.86;
}

.main-nav a:hover {
  background: rgba(255, 255, 255, 0.16);
  opacity: 1;
}

.nav-cta,
.primary-action {
  border: 0;
  background: var(--clay);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(181, 111, 76, 0.28);
}

.nav-cta {
  padding: 0 20px;
}

.primary-action {
  padding: 0 22px;
}

.primary-action.compact {
  width: 100%;
  margin-top: 18px;
  text-align: center;
}

.primary-action.large {
  min-height: 54px;
  padding: 0 28px;
}

.secondary-action,
.ghost-button {
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  padding: 0 20px;
}

.hero {
  position: relative;
  min-height: 96svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  filter: saturate(1.02) contrast(1.03);
  transform: scale(1.02);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(18, 32, 31, 0.76), rgba(18, 32, 31, 0.28) 55%, rgba(18, 32, 31, 0.1)),
    linear-gradient(0deg, rgba(18, 32, 31, 0.82), transparent 54%);
}

.hero-content {
  position: relative;
  width: min(980px, calc(100% - 40px));
  margin: 0 auto 124px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--clay);
  font-weight: 820;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.hero .eyebrow {
  color: #f0c59f;
}

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

h1 {
  margin-bottom: 14px;
  font-size: clamp(4.4rem, 14vw, 12rem);
  line-height: 0.82;
  letter-spacing: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.1rem, 4.4vw, 5rem);
  line-height: 0.97;
  letter-spacing: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

h3 {
  font-size: 1.2rem;
}

.hero-copy {
  max-width: 620px;
  color: rgba(255, 250, 242, 0.86);
  font-size: clamp(1.08rem, 2vw, 1.45rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-facts {
  position: absolute;
  inset: auto 20px 22px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.hero-facts span {
  min-height: 66px;
  display: grid;
  place-items: center;
  padding: 12px;
  border: 1px solid rgba(255, 250, 242, 0.24);
  background: rgba(255, 250, 242, 0.12);
  backdrop-filter: blur(14px);
  border-radius: 8px;
  text-align: center;
  font-weight: 760;
}

.band {
  padding: clamp(72px, 9vw, 130px) min(6vw, 72px);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(36px, 6vw, 92px);
  align-items: start;
}

.intro p,
.experience-content p,
.arrival p,
.booking p,
.tour-copy p,
.muted {
  color: var(--ink-soft);
  font-size: 1.04rem;
  line-height: 1.75;
}

.feature-list {
  display: grid;
  gap: 12px;
}

.feature-list div {
  display: grid;
  grid-template-columns: 116px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.feature-list div:last-child {
  border-bottom: 1px solid var(--line);
}

.feature-list span {
  color: var(--ink-soft);
  line-height: 1.55;
}

.image-story {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(240px, 0.75fr);
  gap: 14px;
  padding: 0 min(6vw, 72px) clamp(72px, 9vw, 130px);
}

figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--paper-deep);
}

.image-story figure {
  min-height: 280px;
}

.image-story .story-large {
  grid-row: span 2;
  min-height: 580px;
}

figcaption {
  padding: 12px 14px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.motion {
  background: #fffaf2;
}

.motion-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 440px);
  gap: 28px;
  align-items: end;
  margin-bottom: 28px;
}

.motion-head p {
  margin-bottom: 24px;
  color: var(--ink-soft);
  line-height: 1.7;
}

.motion-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.motion-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--paper-deep);
  box-shadow: 0 18px 48px rgba(30, 42, 40, 0.12);
}

.motion-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.motion-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(18, 32, 31, 0.55), transparent 45%);
  pointer-events: none;
}

.motion-card span {
  position: absolute;
  inset: auto 14px 14px;
  z-index: 1;
  color: var(--white);
  font-weight: 850;
}

.tour {
  background: #e7ece5;
}

.tour-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
}

.tour-panel {
  margin-top: 28px;
  padding: 26px;
  border: 1px solid rgba(31, 111, 120, 0.22);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.55);
}

.tour-panel span {
  color: var(--sea);
  font-weight: 900;
}

.tour-meta {
  margin-top: 18px;
  color: var(--sea);
  font-size: 0.92rem;
  font-weight: 850;
}

.tour-meter {
  height: 6px;
  margin-top: 18px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(31, 111, 120, 0.16);
}

.tour-meter span {
  display: block;
  width: 20%;
  height: 100%;
  border-radius: inherit;
  background: var(--clay);
  transition: width 240ms ease;
}

.tour-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.tour-controls button {
  min-height: 40px;
  border: 1px solid rgba(30, 42, 40, 0.16);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.62);
  color: var(--ink);
  padding: 0 15px;
  font-weight: 820;
  cursor: pointer;
}

.tour-controls button.active {
  background: var(--ink);
  color: var(--white);
}

.tour-stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.82fr);
  gap: 18px;
  align-items: stretch;
}

.tour-image,
.floorplan {
  min-height: 520px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.tour-image img {
  transition: opacity 180ms ease, transform 350ms ease;
}

.tour-image img.switching {
  opacity: 0;
  transform: scale(1.01);
}

.floorplan {
  position: relative;
  background:
    linear-gradient(90deg, transparent 49.8%, rgba(30, 42, 40, 0.1) 50%, transparent 50.2%),
    linear-gradient(0deg, transparent 49.8%, rgba(30, 42, 40, 0.1) 50%, transparent 50.2%),
    #fffaf2;
}

.plan-room {
  position: absolute;
  display: grid;
  place-items: center;
  border: 1px solid rgba(30, 42, 40, 0.18);
  color: rgba(30, 42, 40, 0.62);
  font-weight: 800;
  text-align: center;
  padding: 8px;
}

.terrace-room {
  inset: 58% 64% 8% 8%;
  background: rgba(216, 195, 164, 0.45);
}

.living-room {
  inset: 30% 38% 18% 28%;
  background: rgba(31, 111, 120, 0.12);
}

.kitchen-room {
  inset: 32% 16% 32% 62%;
  background: rgba(181, 111, 76, 0.12);
}

.bath-room {
  inset: 8% 10% 58% 60%;
  background: rgba(109, 124, 85, 0.15);
}

.bed-room {
  inset: 62% 10% 10% 56%;
  background: rgba(31, 111, 120, 0.1);
}

.hotspot {
  position: absolute;
  left: var(--x);
  top: var(--y);
  z-index: 2;
  transform: translate(-50%, -50%);
  min-width: 86px;
  min-height: 34px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-weight: 820;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(30, 42, 40, 0.22);
}

.hotspot.active {
  background: var(--clay);
}

.tour-rail {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.tour-rail button {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  min-height: 70px;
  overflow: hidden;
  border: 1px solid rgba(30, 42, 40, 0.12);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.68);
  color: var(--ink);
  padding: 7px;
  text-align: left;
  font-weight: 820;
  cursor: pointer;
}

.tour-rail button.active {
  border-color: rgba(181, 111, 76, 0.55);
  background: #fffaf2;
  box-shadow: 0 14px 34px rgba(30, 42, 40, 0.12);
}

.tour-rail img {
  width: 54px;
  height: 54px;
  border-radius: 6px;
  object-fit: cover;
}

.tour-rail span {
  padding-inline: 10px;
}

.gallery-head,
.planner-head,
.booking {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.filter {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  padding: 0 15px;
  font-weight: 760;
  cursor: pointer;
}

.filter.active {
  background: var(--sea-deep);
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 170px;
  gap: 10px;
}

.gallery-grid button {
  min-width: 0;
  border: 0;
  padding: 0;
  background: var(--paper-deep);
  border-radius: 8px;
  overflow: hidden;
  cursor: zoom-in;
}

.gallery-grid button:nth-child(1),
.gallery-grid button:nth-child(7) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-grid button:nth-child(4),
.gallery-grid button:nth-child(10) {
  grid-column: span 2;
}

.gallery-grid img {
  transition: transform 260ms ease;
}

.gallery-grid button:hover img {
  transform: scale(1.04);
}

.gallery-grid button.hidden {
  display: none;
}

.experience {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  min-height: 740px;
  background: var(--sea-deep);
  color: var(--white);
}

.experience-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 6vw, 88px);
}

.experience-content p {
  color: rgba(255, 250, 242, 0.78);
}

.experience-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.experience-pills span {
  padding: 10px 13px;
  border: 1px solid rgba(255, 250, 242, 0.22);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.08);
}

.excursion {
  background: #fffaf2;
}

.excursion-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 430px);
  gap: clamp(28px, 5vw, 70px);
  align-items: end;
  margin-bottom: 28px;
}

.excursion-head p {
  color: var(--ink-soft);
  line-height: 1.65;
}

.compass-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.compass-grid article {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #f7f1e8, #fffaf2);
}

.compass-grid span {
  color: var(--clay);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.compass-grid h3 {
  margin: 14px 0 10px;
}

.compass-grid p {
  color: var(--ink-soft);
  line-height: 1.52;
}

.compass-grid button {
  margin-top: auto;
  min-height: 40px;
  border: 1px solid var(--sea);
  border-radius: 999px;
  background: transparent;
  color: var(--sea-deep);
  font-weight: 820;
  cursor: pointer;
}

.compass-grid button.active {
  background: var(--sea-deep);
  color: var(--white);
}

.arrival {
  background: var(--paper);
}

.arrival-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 410px);
  gap: clamp(28px, 5vw, 70px);
  align-items: end;
  margin-bottom: 30px;
}

.arrival-head h2 {
  max-width: 900px;
}

.address-card {
  display: grid;
  gap: 10px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 54px rgba(30, 42, 40, 0.09);
}

.address-card span,
.address-card small {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.address-card strong {
  font-size: 1.12rem;
}

.address-card p {
  margin-bottom: 4px;
  color: var(--ink);
  font-weight: 760;
  overflow-wrap: anywhere;
}

.address-card .ghost-button {
  justify-self: start;
  min-height: 40px;
}

.address-card small {
  min-height: 1.2em;
}

.arrival-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.arrival-grid article {
  min-height: 230px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.68);
}

.arrival-grid span {
  color: var(--clay);
  font-weight: 900;
}

.arrival-grid h3 {
  margin-bottom: 0;
  font-size: 1.22rem;
}

.arrival-grid p {
  margin-bottom: 0;
  font-size: 0.98rem;
}

.planner {
  background: var(--white);
}

.planner-controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  gap: 18px;
  align-items: end;
  margin: 0 0 28px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7f1e8;
}

.planner-controls span,
.pace-control span,
.itinerary-label {
  display: block;
  margin-bottom: 8px;
  color: var(--clay);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.segmented {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.segment {
  min-height: 40px;
  border: 1px solid rgba(30, 42, 40, 0.16);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.7);
  color: var(--ink);
  padding: 0 15px;
  font-weight: 820;
  cursor: pointer;
}

.segment.active {
  background: var(--ink);
  color: var(--white);
}

.pace-control {
  display: grid;
  gap: 6px;
}

.pace-control input {
  width: 100%;
  accent-color: var(--sea);
}

.pace-control strong {
  color: var(--ink);
}

.journey-deck {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 0 0 28px;
}

.journey-card {
  display: flex;
  flex-direction: column;
  min-height: 246px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #fffaf2, #f7f1e8);
}

.journey-card.active {
  border-color: rgba(42, 103, 100, 0.52);
  box-shadow: 0 18px 42px rgba(30, 42, 40, 0.1);
}

.journey-card span {
  color: var(--clay);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.journey-card h3 {
  margin: 12px 0 10px;
  font-size: clamp(1.08rem, 1.5vw, 1.32rem);
}

.journey-card p {
  margin: 0 0 18px;
  color: var(--ink-soft);
  line-height: 1.52;
}

.journey-card button {
  margin-top: auto;
  min-height: 40px;
  border: 1px solid var(--sea);
  border-radius: 999px;
  background: transparent;
  color: var(--sea-deep);
  font-weight: 820;
  cursor: pointer;
}

.journey-card.active button {
  background: var(--sea-deep);
  color: var(--white);
}

.planner-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 390px);
  gap: 26px;
  align-items: start;
}

.activity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.activity-card {
  display: flex;
  flex-direction: column;
  min-height: 230px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.activity-card small {
  color: var(--clay);
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.activity-card p {
  color: var(--ink-soft);
  line-height: 1.55;
}

.activity-card button {
  margin-top: auto;
  min-height: 40px;
  border: 1px solid var(--sea);
  border-radius: 999px;
  background: transparent;
  color: var(--sea-deep);
  font-weight: 820;
  cursor: pointer;
}

.activity-card button.active {
  background: var(--sea-deep);
  color: var(--white);
}

.itinerary {
  position: sticky;
  top: 102px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7f1e8;
}

.itinerary h3 {
  margin-bottom: 10px;
}

.day-plan {
  display: grid;
  gap: 10px;
  margin: 20px 0;
  padding: 0;
  list-style: none;
}

.day-plan li {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 8px 12px;
  padding: 14px;
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.78);
}

.day-plan li span {
  color: var(--sea);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.day-plan li strong,
.day-plan li p {
  grid-column: 2;
}

.day-plan li p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.45;
}

.saved-box {
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.saved-box > strong {
  display: block;
  margin-bottom: 10px;
}

.packing-box {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.packing-box > strong {
  display: block;
  margin-bottom: 2px;
}

.packing-box label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.8);
  color: var(--ink);
  font-weight: 760;
}

.packing-box input {
  width: 18px;
  height: 18px;
  accent-color: var(--sea);
}

.plan-actions {
  display: grid;
  gap: 8px;
  margin: 18px 0;
}

.ghost-button.full {
  width: 100%;
  justify-content: center;
}

.copy-status {
  min-height: 1.35em;
  margin: 0;
  color: var(--sea-deep);
  font-size: 0.9rem;
  font-weight: 820;
}

.print-note {
  display: none;
}

.itinerary ul {
  display: grid;
  gap: 10px;
  min-height: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.itinerary li {
  padding: 12px;
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.8);
  font-weight: 720;
}

.faq {
  background: #fffaf2;
}

.faq-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 430px);
  gap: 28px;
  align-items: end;
  margin-bottom: 28px;
}

.faq-head p {
  color: var(--ink-soft);
  line-height: 1.65;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  overflow: hidden;
}

.faq summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 850;
}

.faq p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--ink-soft);
  line-height: 1.65;
}

.booking {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: 28px 34px;
  align-items: center;
  padding: clamp(62px, 8vw, 110px) min(6vw, 72px);
  background: var(--ink);
  color: var(--white);
}

.booking-copy {
  max-width: 780px;
}

.booking p {
  color: rgba(255, 250, 242, 0.78);
}

.booking .primary-action.large {
  justify-self: start;
}

.booking-prep {
  grid-column: 2;
  grid-row: 1 / span 2;
  width: min(100%, 430px);
  padding: 20px;
  border: 1px solid rgba(255, 250, 242, 0.22);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.08);
}

.booking-prep .itinerary-label {
  color: rgba(255, 250, 242, 0.72);
}

.booking-prep ol {
  display: grid;
  gap: 10px;
  margin: 14px 0 18px;
  padding: 0;
  list-style: none;
}

.booking-prep li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 2px 12px;
  padding: 12px;
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.08);
}

.booking-prep li span {
  grid-row: span 2;
  color: var(--sand);
  font-weight: 900;
}

.booking-prep li strong {
  color: var(--white);
}

.booking-prep li small {
  color: rgba(255, 250, 242, 0.72);
  line-height: 1.45;
}

.booking-prep .ghost-button {
  border-color: rgba(255, 250, 242, 0.42);
  color: var(--white);
}

.booking-prep .copy-status {
  color: var(--sand);
}

.booking-dock {
  position: fixed;
  inset: auto 18px calc(14px + env(safe-area-inset-bottom));
  z-index: 18;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 12px;
  max-width: 960px;
  margin-inline: auto;
  padding: 10px;
  border: 1px solid rgba(255, 250, 242, 0.28);
  border-radius: 999px;
  background: rgba(30, 42, 40, 0.88);
  color: var(--white);
  box-shadow: 0 18px 60px rgba(18, 26, 24, 0.24);
  backdrop-filter: blur(18px);
  transform: translateY(140%);
  opacity: 0;
  pointer-events: none;
  transition: transform 220ms ease, opacity 220ms ease;
}

.booking-dock.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.booking-dock div {
  min-width: 0;
  padding-left: 10px;
}

.booking-dock strong,
.booking-dock span {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.booking-dock strong {
  font-size: 0.98rem;
}

.booking-dock span {
  color: rgba(255, 250, 242, 0.72);
  font-size: 0.86rem;
}

.booking-dock a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 16px;
  text-decoration: none;
  font-weight: 820;
  white-space: nowrap;
}

.booking-dock a:not(.dock-cta) {
  border: 1px solid rgba(255, 250, 242, 0.28);
}

.booking-dock .dock-cta {
  background: var(--clay);
  color: var(--white);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px min(6vw, 72px);
  background: #121a18;
  color: rgba(255, 250, 242, 0.72);
}

.site-footer p {
  margin: 0;
}

.legal-page {
  background: var(--white);
}

.legal-main {
  padding: 132px min(6vw, 72px) 80px;
}

.legal-hero {
  max-width: 980px;
  margin: 0 auto 44px;
  padding: 72px 0 28px;
  border-bottom: 1px solid var(--line);
}

.legal-hero h1 {
  color: var(--ink);
  font-size: clamp(3.6rem, 9vw, 8rem);
}

.legal-content {
  max-width: 920px;
  margin: 0 auto;
  color: var(--ink);
}

.legal-content h2 {
  margin: 42px 0 12px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.16;
  font-weight: 850;
}

.legal-content p {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.75;
}

.not-found-hero {
  min-height: min(620px, calc(100svh - 220px));
  display: grid;
  align-content: center;
}

.not-found-hero p {
  max-width: 720px;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.not-found-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.legal-note,
.legal-missing {
  color: #8b341f;
  font-weight: 800;
}

.lightbox {
  width: min(1120px, calc(100vw - 28px));
  height: min(780px, calc(100svh - 28px));
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: #111;
}

.lightbox::backdrop {
  background: rgba(12, 19, 18, 0.78);
}

.lightbox img {
  object-fit: contain;
}

.close-lightbox {
  position: absolute;
  inset: 12px 12px auto auto;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 250, 242, 0.92);
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: 1fr auto;
    border-radius: 24px;
  }

  .main-nav {
    display: none;
  }

  .intro-grid,
  .tour-layout,
  .tour-stage,
  .experience,
  .excursion-head,
  .arrival-head,
  .planner-layout {
    grid-template-columns: 1fr;
  }

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

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

  .planner-controls {
    grid-template-columns: 1fr;
  }

  .activity-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .journey-deck {
    grid-template-columns: repeat(2, 1fr);
  }

  .motion-head,
  .motion-grid {
    grid-template-columns: 1fr 1fr;
  }

  .faq-head,
  .faq-grid {
    grid-template-columns: 1fr;
  }

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

  .itinerary {
    position: static;
  }

  .experience-media {
    min-height: 440px;
  }
}

@media (max-width: 720px) {
  .site-header {
    inset: 10px 10px auto;
    padding: 8px;
  }

  .brand small {
    display: none;
  }

  .nav-cta {
    padding: 0 14px;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-content {
    width: min(100% - 28px, 640px);
    margin-bottom: 188px;
  }

  .hero-facts {
    grid-template-columns: repeat(2, 1fr);
    inset-inline: 12px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .primary-action,
  .secondary-action {
    width: 100%;
    text-align: center;
  }

  .band {
    padding-inline: 18px;
  }

  .image-story {
    grid-template-columns: 1fr;
    padding-inline: 18px;
  }

  .image-story .story-large {
    min-height: 360px;
  }

  .feature-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .tour-image,
  .floorplan {
    min-height: 420px;
  }

  .tour-controls,
  .tour-rail {
    grid-template-columns: 1fr;
  }

  .tour-controls button {
    width: 100%;
  }

  .gallery-head,
  .planner-head,
  .excursion-head,
  .arrival-head,
  .booking,
  .site-footer {
    display: grid;
    align-items: start;
  }

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

  .booking-prep {
    grid-column: auto;
    grid-row: auto;
    width: 100%;
  }

  .booking .primary-action.large {
    width: 100%;
  }

  .address-card .ghost-button {
    width: 100%;
  }

  .legal-main {
    padding-inline: 18px;
  }

  .filter-buttons {
    justify-content: flex-start;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 140px;
  }

  .gallery-grid button:nth-child(n) {
    grid-column: span 1;
    grid-row: span 1;
  }

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

  .journey-deck {
    grid-template-columns: 1fr;
  }

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

  .motion-head,
  .motion-grid {
    grid-template-columns: 1fr;
  }

  .motion-card {
    min-height: 260px;
  }

  .booking-dock {
    grid-template-columns: 1fr 1fr;
    inset-inline: 10px;
    border-radius: 18px;
  }

  body.booking-dock-active {
    padding-bottom: 130px;
    padding-bottom: calc(130px + env(safe-area-inset-bottom, 0px));
  }

  .booking-dock div {
    grid-column: 1 / -1;
    padding: 4px 8px 0;
  }

  .booking-dock a {
    width: 100%;
    min-height: 40px;
    padding-inline: 10px;
    font-size: 0.9rem;
  }
}

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

  .gallery-grid img,
  .tour-image img,
  .site-header,
  .booking-dock,
  .tour-meter span {
    transition: none;
  }
}

@media print {
  @page {
    margin: 14mm;
  }

  * {
    box-shadow: none !important;
    text-shadow: none !important;
  }

  html,
  body {
    background: #fffaf2 !important;
    color: #1e2a28 !important;
  }

  .site-header,
  .skip-link,
  .hero,
  .intro,
  .image-story,
  .tour,
  .motion,
  .gallery,
  .experience,
  .excursion,
  .arrival,
  .faq,
  .booking,
  .booking-dock,
  .site-footer,
  .planner-head,
  .planner-controls,
  .journey-deck,
  .activity-grid,
  .plan-actions,
  .primary-action.compact {
    display: none !important;
  }

  .planner {
    display: block !important;
    padding: 0 !important;
    background: #fffaf2 !important;
  }

  .planner-layout {
    display: block !important;
  }

  .itinerary {
    position: static !important;
    width: 100% !important;
    max-width: none !important;
    padding: 0 !important;
    border: 0 !important;
    background: #fffaf2 !important;
  }

  .itinerary::before {
    content: "Strandmarie Reiseplan";
    display: block;
    margin-bottom: 8mm;
    color: #b56f4c;
    font: 700 11pt/1.2 Inter, ui-sans-serif, system-ui, sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .itinerary h3 {
    font: 500 28pt/1 Georgia, "Times New Roman", serif;
  }

  .day-plan,
  .saved-box,
  .packing-box {
    break-inside: avoid;
  }

  .day-plan li,
  .itinerary li,
  .packing-box label {
    border: 1px solid rgba(30, 42, 40, 0.16);
    background: #fff !important;
  }

  .print-note {
    display: block;
    margin-top: 10mm;
    padding-top: 5mm;
    border-top: 1px solid rgba(30, 42, 40, 0.18);
    color: #51615d;
    font-size: 9.5pt;
    line-height: 1.5;
    overflow-wrap: anywhere;
  }
}
