html {
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --paper: #f5efe5;
  --paper-strong: #efe5d7;
  --ink: #17324a;
  --ink-soft: #4b5f71;
  --line: rgba(23, 50, 74, 0.14);
  --accent: #15344e;
  --accent-hover: #214969;
  --card: rgba(255, 255, 255, 0.42);
  --shadow: 0 24px 48px rgba(24, 37, 49, 0.12);
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --site-width: 1480px;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.85), transparent 30%),
    linear-gradient(180deg, #f6f0e7 0%, #f3ecdf 100%);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-shell {
  overflow: clip;
}

.container {
  width: min(calc(100% - 3rem), var(--site-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(245, 239, 229, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(23, 50, 74, 0.08);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 1.3rem 0;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 0.25rem;
  text-transform: uppercase;
}

.brand-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.25rem, 3vw, 3.75rem);
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: 0.02em;
}

.brand-subtitle {
  font-size: 1.06rem;
  letter-spacing: 0.38em;
  color: #8c6745;
  padding-left: 0.32rem;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 2rem;
  font-size: 1.06rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a {
  color: var(--ink-soft);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  color: var(--ink);
}

.language-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3.5rem;
  padding: 0.85rem 1.1rem;
  border: 1px solid rgba(23, 50, 74, 0.16);
  background: rgba(255, 255, 255, 0.42);
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.language-flag {
  display: block;
  width: 27px;
  height: 18px;
  object-fit: contain;
  flex: 0 0 auto;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.5rem;
  padding: 0.9rem 1.5rem;
  border-radius: 0;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background-color 180ms ease, color 180ms ease, transform 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-hover);
}

.hero {
  padding: 1.8rem 0 0;
}

.hero-frame {
  position: relative;
  overflow: hidden;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  height: 688px;
  background: #d9d2c7;
  box-shadow: var(--shadow);
}

.hero-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at left bottom, rgba(245, 239, 229, 0.74) 0%, rgba(245, 239, 229, 0.42) 26%, rgba(245, 239, 229, 0.12) 46%, rgba(245, 239, 229, 0) 66%);
  z-index: 1;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right bottom;
}

.hero-copy {
  position: absolute;
  left: clamp(1.5rem, 5vw, 5rem);
  bottom: clamp(2rem, 7vw, 4.5rem);
  z-index: 2;
  width: min(100%, 31rem);
}

.hero-kicker {
  margin: 0 0 1.1rem;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6f4a2d;
  text-shadow: 0 1px 0 rgba(245, 239, 229, 0.86), 0 0 12px rgba(245, 239, 229, 0.72);
}

.hero h1 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(4rem, 5.4vw, 6.1rem);
  line-height: 0.93;
  font-weight: 600;
  letter-spacing: -0.03em;
  text-shadow: 0 1px 0 rgba(245, 239, 229, 0.88), 0 0 10px rgba(245, 239, 229, 0.68), 0 0 22px rgba(245, 239, 229, 0.46);
}


.hero-intro-card {
  width: 100%;
  margin: 0.95rem 0 0;
  padding: 1rem 1.15rem;
  background: rgba(250, 246, 240, 0.96);
  border: 1px solid rgba(23, 50, 74, 0.08);
  border-radius: 18px;
  box-shadow: 0 14px 24px rgba(20, 33, 45, 0.07);
}

.hero-intro-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.2rem;
  line-height: 1.6;
  font-weight: 600;
}
.booking-bar-section {
  margin-top: 1rem;
  position: relative;
  z-index: 3;
}

.booking-bar {
  display: grid;
  grid-template-columns: minmax(16rem, 1.28fr) 11.2rem 11.2rem 6.6rem 6.6rem auto;
  gap: 1.05rem;
  align-items: end;
  padding: 1rem;
  background: rgba(249, 244, 236, 0.96);
  border: 1px solid rgba(23, 50, 74, 0.1);
  border-radius: var(--radius-md);
  box-shadow: 0 18px 30px rgba(20, 33, 45, 0.08);
}

.booking-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
  padding: 0.35rem 0.35rem 0.35rem 0.55rem;
}

.booking-widget-shell {
  min-width: 0;
  padding: 0.15rem 0;
}

.booking-widget {
  width: 100%;
}

.booking-label {
  margin: 0;
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8c6745;
}

.booking-subnote {
  margin: 0.2rem 0 0;
  color: #8c6745;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.booking-capacity {
  margin: 0.2rem 0 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.35;
}

.booking-field {
  display: grid;
  gap: 0.4rem;
}

.booking-field-compact input {
  width: 6.6rem;
  min-width: 6.6rem;
  text-align: center;
  padding-inline: 0.55rem 0.35rem;
}

.booking-field span {
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.booking-field input,
.booking-field select {
  width: 100%;
  min-height: 3.35rem;
  border: 1px solid rgba(23, 50, 74, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
  font-family: inherit;
  font-size: 1.12rem;
  font-weight: 600;
  padding: 0.8rem 0.9rem;
}

.booking-submit {
  min-width: 10.5rem;
  font-size: 1rem;
  letter-spacing: 0.12em;
}

.entry-grid-section {
  position: relative;
  z-index: 2;
  margin-top: 1.2rem;
  padding-bottom: 0;
}

.entry-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.7rem;
}

.entry-card {
  display: flex;
  flex-direction: column;
  background: rgba(250, 246, 240, 0.96);
  border: 1px solid rgba(23, 50, 74, 0.08);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 26px rgba(20, 33, 45, 0.08);
}

.entry-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: center;
}

.entry-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 0.95rem 0.92rem 1.05rem;
}

.entry-card h2,
.signal-item h2 {
  margin: 0 0 0.8rem;
  font-size: 0.96rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.entry-card p {
  margin: 0 0 0.95rem;
  color: var(--ink-soft);
  font-size: 1.12rem;
  line-height: 1.55;
}

.entry-card a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.entry-card a::after {
  content: "\2192";
}

.signal-band {
  margin-top: 1.25rem;
  padding: 0 0 3rem;
}

.signal-band-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding: 1.35rem 1.5rem;
  background: var(--accent);
  color: #edf3f7;
  border-radius: var(--radius-md);
}

.signal-item {
  padding: 0.2rem 1rem;
  border-right: 1px solid rgba(237, 243, 247, 0.18);
}

.signal-item:last-child {
  border-right: 0;
}

.signal-item h2 {
  color: #fff;
  font-size: 0.94rem;
}

.signal-item p {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.6;
  color: rgba(237, 243, 247, 0.88);
}

.site-footer {
  padding: 0 0 3.4rem;
}

.page-hero {
  padding: 1.8rem 0 0;
}

.page-hero-frame {
  position: relative;
  min-height: 43rem;
  overflow: hidden;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  background: #d9d2c7;
  box-shadow: var(--shadow);
}

.page-hero-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at left bottom, rgba(245, 239, 229, 0.72) 0%, rgba(245, 239, 229, 0.40) 26%, rgba(245, 239, 229, 0.12) 46%, rgba(245, 239, 229, 0) 66%);
  z-index: 1;
}

.page-hero-image.stay-hero-image {
  object-position: right top;
}

.page-hero-image.getting-here-hero-image {
  object-position: left center;
}


.page-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-hero-copy {
  position: absolute;
  left: clamp(1.5rem, 5vw, 5rem);
  bottom: clamp(2rem, 7vw, 4.5rem);
  z-index: 2;
  display: grid;
  gap: 1.25rem;
  width: min(calc(100% - 3rem), 43rem);
  max-width: 43rem;
  padding: 0;
}

.page-hero-eyebrow {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6f4a2d;
  text-shadow: 0 1px 0 rgba(245, 239, 229, 0.86), 0 0 12px rgba(245, 239, 229, 0.72);
}

.page-hero h1 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.5rem, 5vw, 5.4rem);
  line-height: 0.95;
  font-weight: 600;
  letter-spacing: -0.03em;
  text-shadow: 0 1px 0 rgba(245, 239, 229, 0.88), 0 0 10px rgba(245, 239, 229, 0.68), 0 0 22px rgba(245, 239, 229, 0.46);
}


.page-section {
  padding: 1.35rem 0 0;
}

.page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
  gap: 1rem;
}

.page-panel,
.feature-card,
.info-card,
.route-card,
.contact-card,
.timeline-card {
  background: rgba(250, 246, 240, 0.96);
  border: 1px solid rgba(23, 50, 74, 0.08);
  border-radius: 18px;
  box-shadow: 0 16px 26px rgba(20, 33, 45, 0.08);
}

.page-panel {
  padding: 1.45rem;
}

.page-panel h2,
.page-panel h3,
.feature-card h2,
.feature-card h3,
.info-card h2,
.info-card h3,
.route-card h2,
.route-card h3,
.contact-card h2,
.contact-card h3,
.timeline-card h2,
.timeline-card h3 {
  margin: 0 0 0.8rem;
  font-size: 0.98rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-panel p,
.page-panel li,
.feature-card p,
.feature-card li,
.info-card p,
.info-card li,
.route-card p,
.route-card li,
.contact-card p,
.contact-card li,
.timeline-card p,
.timeline-card li {
  color: var(--ink-soft);
  font-size: 1.15rem;
  line-height: 1.7;
}

.page-panel p:last-child,
.feature-card p:last-child,
.info-card p:last-child,
.route-card p:last-child,
.contact-card p:last-child,
.timeline-card p:last-child {
  margin-bottom: 0;
}

.page-list,
.detail-list,
.route-list {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding-left: 1.1rem;
}

.page-sidebar {
  display: grid;
  gap: 1rem;
}

.info-card,
.feature-card,
.route-card,
.contact-card,
.timeline-card {
  padding: 1.3rem;
}

.photo-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.photo-card {
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 16px 26px rgba(20, 33, 45, 0.08);
}

.photo-card img {
  width: 100%;
  height: 21rem;
  object-fit: cover;
}

.photo-card figcaption {
  padding: 1rem 1.1rem 1.15rem;
  background: rgba(250, 246, 240, 0.96);
  color: var(--ink-soft);
  font-size: 1.1rem;
  line-height: 1.6;
}

.feature-grid,
.route-grid,
.contact-grid,
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.feature-card strong,
.route-card strong,
.timeline-card strong {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--ink);
  font-size: 1.1rem;
  line-height: 1.4;
}

.meta-line {
  display: block;
  margin-bottom: 0.85rem;
  color: #8c6745;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 1.55rem;
  background: var(--accent);
  color: #edf3f7;
  border-radius: var(--radius-md);
}

.cta-panel h2 {
  margin: 0 0 0.4rem;
  color: #fff;
}

.cta-panel p {
  margin: 0;
  color: rgba(237, 243, 247, 0.88);
  font-size: 1.18rem;
  line-height: 1.65;
}

.cta-panel .button-primary {
  background: #f5efe5;
  color: var(--accent);
}

.cta-panel .button-primary:hover,
.cta-panel .button-primary:focus-visible {
  background: #fff;
}

.link-list {
  display: grid;
  gap: 0.75rem;
}

.link-list a,
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.link-list a::after,
.text-link::after {
  content: "\2192";
}

.contact-card a {
  color: var(--ink);
}

.phone-contact {
  white-space: nowrap;
}

.contact-label {
  display: block;
  margin-bottom: 0.28rem;
  color: #8c6745;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-stack {
  display: grid;
  gap: 1rem;
}

.image-note {
  display: grid;
  gap: 0.8rem;
}

.image-note img {
  width: 100%;
  height: 18rem;
  object-fit: cover;
  border-radius: 16px;
}

.map-card {
  overflow: hidden;
  border-radius: 18px;
  background: rgba(250, 246, 240, 0.96);
  border: 1px solid rgba(23, 50, 74, 0.08);
  box-shadow: 0 16px 26px rgba(20, 33, 45, 0.08);
}

.map-embed {
  width: 100%;
  height: 26rem;
  border: 0;
  display: block;
}

.map-card-body {
  display: grid;
  gap: 0.85rem;
  padding: 1.2rem 1.25rem 1.3rem;
}

.map-card-body h2 {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.map-card-body p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.12rem;
  line-height: 1.65;
}

.map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.route-overview-actions {
  margin-top: 4.5rem;
}

.embed-booking-shell {
  display: grid;
  gap: 1rem;
}

.embed-booking-copy {
  padding: 0 0.2rem;
}

.embed-booking-copy h2 {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.embed-booking-copy p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.15rem;
  line-height: 1.7;
}

.embed-booking-frame {
  width: 100%;
  min-width: 0;
  padding: 1rem;
  background: rgba(250, 246, 240, 0.96);
  border: 1px solid rgba(23, 50, 74, 0.08);
  border-radius: 18px;
  box-shadow: 0 16px 26px rgba(20, 33, 45, 0.08);
}

.embed-booking-frame .ibe {
  width: 100%;
  max-width: none;
  min-height: 52rem;
}

.embed-booking-frame .ibe > *,
.embed-booking-frame .ibe iframe {
  display: block;
  width: 100% !important;
  max-width: none !important;
}

.button-secondary {
  border: 1px solid rgba(23, 50, 74, 0.16);
  background: rgba(255, 255, 255, 0.62);
  color: var(--ink);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.92);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 1.2rem;
}

.footer-inner p {
  margin: 0.22rem 0;
  color: var(--ink-soft);
}

.footer-brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: var(--ink);
}

.footer-subtitle {
  padding-left: 0.1rem;
  color: #8c6745;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.34em;
  line-height: 1.1;
  text-transform: uppercase;
}

.footer-contact {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.15rem;
}

.footer-contact-lines {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.45rem;
}

.footer-contact a {
  color: var(--ink-soft);
}

.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: var(--ink);
}

.footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  margin-top: 0.05rem;
}

.footer-social img {
  display: block;
  width: 1.8rem;
  height: 1.8rem;
}

@media (max-width: 1500px) {
  .entry-card img {
    height: 160px;
  }

  .entry-card-body {
    padding-inline: 0.82rem;
  }

  .entry-card p {
    font-size: 0.94rem;
  }
}

@media (max-width: 1380px) {
  .booking-bar {
    grid-template-columns: minmax(14rem, 1.12fr) 10.5rem 10.5rem 6.2rem 6.2rem auto;
    gap: 0.95rem;
  }
}

@media (max-width: 1260px) {
  .entry-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .entry-card img {
    height: 190px;
  }
}

@media (max-width: 1120px) {
  .header-inner {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .hero-frame {
    height: 645px;
  }

  .booking-bar {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .page-grid,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .route-grid,
  .contact-grid,
  .timeline-grid,
  .photo-split {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .booking-intro,
  .booking-submit {
    grid-column: 1 / -1;
  }
}

@media (max-width: 860px) {
  .container {
    width: min(calc(100% - 1.5rem), var(--site-width));
  }

  .hero {
    padding-top: 1rem;
  }

  .hero-frame {
    height: 602px;
    border-radius: var(--radius-lg);
  }

  .page-hero-frame {
    min-height: 38rem;
    border-radius: var(--radius-lg);
  }

  .page-hero-frame::before {
    background: radial-gradient(ellipse at left bottom, rgba(245, 239, 229, 0.70) 0%, rgba(245, 239, 229, 0.38) 28%, rgba(245, 239, 229, 0.10) 48%, rgba(245, 239, 229, 0) 68%);
  }

  .hero-frame::before {
    background: radial-gradient(ellipse at left bottom, rgba(245, 239, 229, 0.72) 0%, rgba(245, 239, 229, 0.40) 28%, rgba(245, 239, 229, 0.10) 48%, rgba(245, 239, 229, 0) 68%);
  }

  .hero-image {
    object-position: right bottom;
  }

  .hero-copy {
    inset: auto 1.25rem 1.5rem 1.25rem;
    width: auto;
  }

  .page-hero-copy {
    left: 1.25rem;
    right: 1.25rem;
    bottom: 1.5rem;
    width: auto;
    max-width: none;
    padding: 0;
  }

  .hero h1 {
    font-size: clamp(3.3rem, 12vw, 5rem);
  }


.booking-bar-section {
    margin-top: 1rem;
  }

  .booking-bar {
    grid-template-columns: 1fr;
  }

  .entry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .entry-card img {
    height: 180px;
  }

  .signal-band-inner,
  .footer-inner {
    grid-template-columns: 1fr;
    display: grid;
  }

  .feature-grid,
  .route-grid,
  .contact-grid,
  .timeline-grid,
  .photo-split {
    grid-template-columns: 1fr;
  }

  .photo-card img {
    height: 16rem;
  }

  .signal-item {
    padding: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(237, 243, 247, 0.18);
    padding-bottom: 1rem;
  }

  .signal-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .footer-contact {
    align-items: flex-start;
  }

  .footer-contact-lines {
    align-items: flex-start;
  }

}

@media (max-width: 560px) {
  .site-nav {
    gap: 0.55rem 1rem;
    font-size: 0.9rem;
  }

  .language-link,
  .booking-submit {
    width: 100%;
  }

  .entry-grid {
    grid-template-columns: 1fr;
  }

  .page-panel,
  .feature-card,
  .info-card,
  .route-card,
  .contact-card,
  .timeline-card,
  .cta-panel {
    padding-inline: 1.05rem;
  }

  .map-embed {
    height: 22rem;
  }

  .entry-card img {
    height: 170px;
  }

  .entry-card p {
    min-height: 0;
  }
}

.room-gallery-card {
  display: flex;
  flex-direction: column;
}

.room-gallery-card p {
  flex: 1;
}

.room-gallery-trigger {
  align-self: flex-start;
  margin-top: auto;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
}

.room-gallery-modal[hidden] {
  display: none;
}

.room-gallery-modal [hidden] {
  display: none !important;
}

.room-gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 1.2rem;
}

.room-gallery-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(14, 29, 42, 0.58);
}

.room-gallery-dialog {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  max-height: min(760px, calc(100vh - 2.4rem));
  overflow: auto;
  padding: 1.15rem;
  border-radius: 18px;
  background: #f8f2e8;
  box-shadow: 0 28px 70px rgba(12, 24, 34, 0.32);
}

.room-gallery-close {
  position: absolute;
  top: 0.8rem;
  right: 0.85rem;
  width: 2.35rem;
  height: 2.35rem;
  border: 1px solid rgba(23, 50, 74, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
  cursor: pointer;
  font-size: 1.55rem;
  line-height: 1;
}

.room-gallery-heading {
  padding-right: 2.8rem;
}

.room-gallery-heading h2 {
  margin: 0 0 1rem;
  color: var(--ink);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.room-gallery-viewer {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.75rem;
}

.room-gallery-figure {
  display: grid;
  gap: 0.75rem;
  margin: 0;
}

.room-gallery-figure img {
  width: 100%;
  max-height: min(520px, 58vh);
  object-fit: contain;
  border-radius: 12px;
  background: #111;
}

.room-gallery-count,
.room-gallery-empty {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.5;
}

.room-gallery-empty {
  min-height: 16rem;
  display: grid;
  place-items: center;
  border: 1px dashed rgba(23, 50, 74, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.42);
  text-align: center;
}

.room-gallery-nav {
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(23, 50, 74, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
}

.room-gallery-count {
  margin-top: 0.65rem;
  text-align: center;
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 700px) {
  .room-gallery-dialog {
    padding: 0.95rem;
  }

  .room-gallery-viewer {
    grid-template-columns: 1fr;
  }

  .room-gallery-nav {
    display: none;
  }
}
