:root {
  --ink: #171411;
  --muted: #69615a;
  --paper: #f8f4ed;
  --warm: #efe5d4;
  --wood: #a66e3d;
  --gold: #d9b978;
  --moss: #526b4a;
  --river: #4f8793;
  --deep: #121917;
  --line: rgba(23, 20, 17, 0.12);
  --shadow: 0 20px 60px rgba(21, 18, 14, 0.16);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Noto Sans SC", "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  line-height: 1.7;
  letter-spacing: 0;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  padding: 0 clamp(18px, 4vw, 56px);
  color: #fff;
  transition: background 220ms ease, border 220ms ease, color 220ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(248, 244, 237, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 700;
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  background: rgba(0, 0, 0, 0.22);
}

.site-header.is-scrolled .brand img {
  background: var(--deep);
}

.brand span {
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.3vw, 34px);
  font-size: 14px;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  color: inherit;
  background: transparent;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}

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

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

.hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.24) 52%, rgba(0, 0, 0, 0.1)),
    linear-gradient(0deg, rgba(18, 25, 23, 0.88), rgba(18, 25, 23, 0) 46%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 160px 0 150px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.contact-band h2 {
  margin: 0;
  font-family: "Noto Serif SC", "Songti SC", SimSun, serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(44px, 6vw, 86px);
}

.hero-copy {
  max-width: 690px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(16px, 2vw, 20px);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, border 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn svg,
.quick-item svg,
.guide-card svg,
.card-head svg,
.amenity-list svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.btn.primary {
  color: var(--deep);
  background: var(--gold);
}

.btn.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.1);
}

.section-contact .btn.secondary,
.tide-card .btn.secondary {
  color: var(--ink);
  border-color: var(--line);
  background: #fff;
}

.hero-facts {
  position: absolute;
  right: clamp(18px, 5vw, 64px);
  bottom: 28px;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 1px;
  width: min(620px, calc(100% - 36px));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.hero-facts div {
  min-width: 0;
  padding: 18px;
  background: rgba(0, 0, 0, 0.16);
}

.hero-facts span {
  display: block;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
}

.hero-facts strong {
  display: block;
  margin-top: 4px;
  font-size: clamp(16px, 1.8vw, 22px);
}

.scroll-cue {
  position: absolute;
  left: clamp(18px, 4vw, 58px);
  bottom: 28px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.scroll-cue span {
  display: block;
  width: 1px;
  height: 54px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.24);
}

.scroll-cue span::after {
  display: block;
  width: 100%;
  height: 22px;
  background: var(--gold);
  content: "";
  animation: scrollPulse 1.7s ease-in-out infinite;
}

.scroll-cue em {
  font-style: normal;
  writing-mode: vertical-rl;
}

@keyframes scrollPulse {
  0% {
    transform: translateY(-24px);
    opacity: 0;
  }
  35% {
    opacity: 1;
  }
  100% {
    transform: translateY(58px);
    opacity: 0;
  }
}

.quick-panel {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(var(--max), calc(100% - 40px));
  margin: -56px auto 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.quick-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 2px 14px;
  align-items: center;
  min-width: 0;
  padding: 22px;
  border-right: 1px solid var(--line);
}

.quick-item:last-child {
  border-right: 0;
}

.quick-item svg {
  grid-row: span 2;
  width: 34px;
  height: 34px;
  padding: 8px;
  color: var(--paper);
  border-radius: var(--radius);
  background: var(--moss);
}

.quick-item span {
  color: var(--muted);
  font-size: 13px;
}

.quick-item strong {
  overflow: hidden;
  font-size: 16px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.section {
  padding: clamp(72px, 8vw, 120px) 0;
}

.section-light {
  background: var(--paper);
}

.section-dark {
  color: #fff;
  background: var(--deep);
}

.section-rooms {
  background: #efe6d6;
}

.section-experience {
  background: #fff;
}

.section-compass {
  position: relative;
  overflow: hidden;
  background: #171411;
  color: #fff;
}

.section-compass::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 0%, rgba(217, 185, 120, 0.18), transparent 30%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: auto, 92px 100%;
  content: "";
}

.section-island {
  background: #edf1e5;
}

.section-journey {
  background: #161b18;
  color: #fff;
}

.section-traffic {
  background: #f4f7f5;
}

.section-gallery {
  background: var(--paper);
}

.section-contact {
  padding-top: 0;
  background: var(--paper);
}

.section-head,
.split-layout,
.feature-grid,
.room-tabs,
.room-stage,
.guide-grid,
.experience-row,
.map-layout,
.play-grid,
.traffic-grid,
.gallery-grid,
.contact-band,
.compass-layout,
.journey-shell {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.section-head {
  margin-bottom: 42px;
}

.section-head.centered {
  text-align: center;
}

.section-head.centered h2,
.section-head.centered p:not(.eyebrow) {
  margin-right: auto;
  margin-left: auto;
}

.section-head h2,
.split-copy h2,
.contact-band h2 {
  max-width: 820px;
  font-size: clamp(30px, 4vw, 56px);
}

.section-head p:not(.eyebrow),
.split-copy p,
.contact-band p {
  max-width: 820px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.section-dark .split-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.section-journey .section-head p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.68);
}

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

.feature-card,
.guide-card,
.experience-row article,
.play-grid article,
.schedule-card,
.tide-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.feature-card {
  overflow: hidden;
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.feature-card,
.guide-card,
.experience-row article,
.play-grid article,
.compass-copy,
.compass-collage,
.journey-shell,
.schedule-card,
.tide-card,
.gallery-grid button {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease, box-shadow 240ms ease;
}

.feature-card.is-visible,
.guide-card.is-visible,
.experience-row article.is-visible,
.play-grid article.is-visible,
.compass-copy.is-visible,
.compass-collage.is-visible,
.journey-shell.is-visible,
.schedule-card.is-visible,
.tide-card.is-visible,
.gallery-grid button.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-card:hover,
.experience-row article:hover,
.play-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 50px rgba(21, 18, 14, 0.13);
}

.feature-card img,
.experience-row img,
.play-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.feature-card div {
  padding: 24px;
}

.feature-card span,
.experience-row span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--wood);
  font-size: 12px;
  font-weight: 800;
}

h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.35;
}

.feature-card p,
.guide-card p,
.experience-row p,
.play-grid p,
.route-item p,
.small-note,
.tide-note p,
.room-panel p,
.room-panel li {
  color: var(--muted);
}

.compass-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(36px, 6vw, 90px);
  align-items: center;
}

.compass-copy h2 {
  margin: 0;
  font-family: "Noto Serif SC", "Songti SC", SimSun, serif;
  font-size: clamp(32px, 4.8vw, 64px);
  line-height: 1.12;
}

.compass-copy p:not(.eyebrow) {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
}

.compass-lines {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: 34px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.12);
}

.compass-lines span {
  padding: 16px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(0, 0, 0, 0.16);
}

.compass-collage {
  position: relative;
  min-height: 620px;
}

.compass-collage figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
}

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

.collage-main {
  position: absolute;
  inset: 38px 18% 0 0;
}

.collage-small {
  position: absolute;
  width: 38%;
  height: 220px;
  border: 8px solid #171411;
}

.collage-small.top {
  top: 0;
  right: 0;
}

.collage-small.bottom {
  right: 8%;
  bottom: 34px;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.amenity-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.amenity-list div {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 72px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.amenity-list svg {
  color: var(--gold);
}

.room-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  min-width: 0;
  overflow-x: auto;
  padding-bottom: 4px;
}

.room-tab {
  flex: 0 0 auto;
  min-height: 44px;
  padding: 9px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.64);
  cursor: pointer;
}

.room-tab.is-active {
  color: #fff;
  border-color: var(--deep);
  background: var(--deep);
}

.room-stage {
  position: relative;
}

.room-panel {
  display: none;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.room-panel.is-active {
  display: grid;
}

.room-panel img {
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
}

.room-panel > div {
  padding: clamp(28px, 5vw, 62px);
}

.room-panel h3 {
  font-family: "Noto Serif SC", "Songti SC", SimSun, serif;
  font-size: clamp(28px, 3vw, 44px);
}

.room-panel ul {
  margin: 24px 0 0;
  padding-left: 20px;
}

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

.guide-card {
  padding: 24px;
}

.guide-card svg {
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  padding: 8px;
  color: #fff;
  border-radius: var(--radius);
  background: var(--river);
}

.experience-row,
.play-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.experience-row article,
.play-grid article {
  overflow: hidden;
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.experience-row article > *:not(img),
.play-grid article > *:not(img) {
  margin-right: 22px;
  margin-left: 22px;
}

.experience-row h3,
.play-grid h3 {
  margin-top: 14px;
}

.experience-row p,
.play-grid p {
  margin-bottom: 24px;
}

.map-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
  gap: 22px;
  align-items: stretch;
}

.island-map {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(82, 107, 74, 0.24);
  border-radius: var(--radius);
  background: #fff;
}

.island-map img {
  width: 100%;
  height: 100%;
  min-height: 450px;
  object-fit: cover;
}

.island-map figcaption {
  padding: 12px 16px;
  color: var(--muted);
  font-size: 13px;
}

.route-board {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--moss);
}

.route-board h3 {
  font-size: 28px;
}

.route-item {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.route-item span {
  color: var(--gold);
  font-weight: 800;
}

.route-item p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.play-grid {
  margin-top: 22px;
}

.journey-shell {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(217, 185, 120, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.04);
}

.journey-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.journey-tab {
  min-height: 62px;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.72);
  background: transparent;
  cursor: pointer;
  font-weight: 800;
  transition: background 180ms ease, color 180ms ease;
}

.journey-tab:last-child {
  border-right: 0;
}

.journey-tab.is-active {
  color: var(--deep);
  background: var(--gold);
}

.journey-panels {
  position: relative;
}

.journey-panel {
  display: none;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  min-height: 540px;
}

.journey-panel.is-active {
  display: grid;
}

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

.journey-copy {
  align-self: center;
  padding: clamp(28px, 5vw, 70px);
}

.journey-copy span {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.journey-copy h3 {
  font-family: "Noto Serif SC", "Songti SC", SimSun, serif;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.16;
}

.journey-copy ol {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: journey;
}

.journey-copy li {
  position: relative;
  padding: 0 0 0 44px;
  color: rgba(255, 255, 255, 0.74);
}

.journey-copy li::before {
  position: absolute;
  top: 2px;
  left: 0;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(217, 185, 120, 0.6);
  border-radius: 50%;
  color: var(--gold);
  counter-increment: journey;
  content: counter(journey);
  font-size: 12px;
  font-weight: 900;
}

.journey-copy strong {
  color: #fff;
}

.traffic-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 20px;
}

.schedule-card,
.tide-card {
  min-width: 0;
  padding: clamp(22px, 3vw, 32px);
}

.card-head {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 22px;
}

.card-head svg {
  width: 42px;
  height: 42px;
  padding: 9px;
  color: #fff;
  border-radius: var(--radius);
  background: var(--wood);
}

.card-head p {
  margin: 4px 0 0;
  color: var(--muted);
}

.ferry-table-wrap {
  overflow-x: auto;
}

.ferry-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 360px;
}

.ferry-table th,
.ferry-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.ferry-table th {
  color: var(--deep);
  background: #f0e6d7;
}

.ferry-table td.next {
  color: var(--deep);
  font-weight: 800;
  background: rgba(217, 185, 120, 0.28);
}

.small-note {
  margin: 18px 0 0;
  font-size: 14px;
}

.tide-card label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 14px;
}

.tide-card input {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: #fff;
}

.tide-link {
  width: 100%;
  margin-top: 14px;
}

.tide-note {
  margin-top: 22px;
  padding: 18px;
  border-left: 4px solid var(--river);
  background: #eef5f3;
}

.tide-note p {
  margin: 8px 0 0;
}

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

.gallery-grid button {
  position: relative;
  height: 260px;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: #ddd;
  cursor: zoom-in;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

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

.contact-band {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  padding: clamp(32px, 5vw, 62px);
  border-radius: var(--radius);
  color: #fff;
  background:
    linear-gradient(rgba(18, 25, 23, 0.74), rgba(18, 25, 23, 0.74)),
    url("assets/hotel-night.jpg") center/cover;
}

.contact-band p {
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  align-items: center;
  justify-content: space-between;
  padding: 28px clamp(20px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.7);
  background: var(--deep);
}

.site-footer div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-footer img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  background: #000;
}

.site-footer p {
  margin: 0;
  font-size: 14px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  place-items: center;
  padding: 28px;
  background: rgba(0, 0, 0, 0.82);
}

.lightbox.is-open {
  display: grid;
}

.lightbox img {
  max-height: min(82vh, 900px);
  border-radius: var(--radius);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.48);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: var(--radius);
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--ink);
    background: rgba(248, 244, 237, 0.98);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px 18px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .hero {
    min-height: 86svh;
    display: block;
  }

  .hero-content {
    padding: 140px 0 28px;
  }

  .hero-facts {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    grid-template-columns: 1fr;
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto 26px;
  }

  .quick-panel,
  .feature-grid,
  .split-layout,
  .compass-layout,
  .room-panel,
  .guide-grid,
  .experience-row,
  .map-layout,
  .play-grid,
  .traffic-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .quick-panel {
    margin-top: 20px;
  }

  .quick-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .room-panel img {
    min-height: 300px;
  }

  .compass-collage {
    min-height: 520px;
  }

  .collage-main {
    inset: 40px 14% 0 0;
  }

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

  .journey-panel img {
    height: 340px;
  }

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

  .contact-band {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .site-header {
    height: 68px;
    padding: 0 14px;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .brand span {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .site-nav {
    top: 68px;
  }

  .hero {
    min-height: 92svh;
  }

  .hero-content {
    width: calc(100% - 32px);
    padding-top: 120px;
  }

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

  .btn {
    width: 100%;
  }

  .hero-facts div {
    padding: 12px 14px;
  }

  .quick-panel,
  .section-head,
  .split-layout,
  .feature-grid,
  .compass-layout,
  .room-tabs,
  .room-stage,
  .guide-grid,
  .experience-row,
  .map-layout,
  .play-grid,
  .traffic-grid,
  .gallery-grid,
  .contact-band,
  .journey-shell {
    width: calc(100% - 28px);
  }

  .section {
    padding: 64px 0;
  }

  .feature-card img,
  .experience-row img,
  .play-grid img,
  .gallery-grid button {
    height: 220px;
  }

  .island-map img {
    min-height: 320px;
  }

  .schedule-card,
  .tide-card {
    padding: 18px;
  }

  .ferry-table {
    min-width: 100%;
  }

  .ferry-table th,
  .ferry-table td {
    padding: 10px 12px;
  }

  .amenity-list,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .scroll-cue {
    display: none;
  }

  .compass-collage {
    min-height: 420px;
  }

  .collage-main {
    inset: 20px 0 70px 0;
  }

  .collage-small {
    width: 44%;
    height: 150px;
    border-width: 6px;
  }

  .collage-small.top {
    top: 0;
    right: 0;
  }

  .collage-small.bottom {
    right: auto;
    bottom: 0;
    left: 0;
  }

  .compass-lines,
  .journey-tabs {
    grid-template-columns: 1fr;
  }

  .journey-tab {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .journey-tab:last-child {
    border-bottom: 0;
  }

  .journey-panel img {
    height: 280px;
  }

  .journey-copy li {
    padding-left: 38px;
  }
}
