:root {
  --navy: #08243a;
  --navy-2: #0d3552;
  --sea: #127e9a;
  --sea-dark: #07647d;
  --foam: #eff8f6;
  --sand: #e8c886;
  --sand-soft: #f6eedc;
  --sage: #7ea47f;
  --white: #ffffff;
  --ink: #132638;
  --muted: #667789;
  --line: rgba(19, 38, 56, 0.12);
  --shadow: 0 24px 70px rgba(6, 34, 54, 0.16);
  --radius: 8px;
  --container: min(1180px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #fbfcfb;
  line-height: 1.6;
}

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

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

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

:focus-visible {
  outline: 3px solid var(--sand);
  outline-offset: 4px;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 1000;
  top: 14px;
  left: 14px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  color: var(--navy);
  background: var(--white);
  border-radius: var(--radius);
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.compact {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 30px rgba(6, 34, 54, 0.1);
  backdrop-filter: blur(18px);
}

.topbar {
  display: flex;
  justify-content: center;
  gap: 24px;
  width: 100%;
  padding: 8px 20px;
  font-size: 0.82rem;
  font-weight: 600;
  background: rgba(8, 36, 58, 0.58);
}

.site-header.is-scrolled .topbar,
.site-header.compact .topbar {
  color: var(--white);
  background: var(--navy);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--container);
  min-height: 76px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  padding: 5px;
}

.site-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-menu a,
.lang-toggle {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 13px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
}

.site-menu a:hover,
.lang-toggle:hover {
  background: rgba(255, 255, 255, 0.16);
}

.site-menu a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.2);
}

.site-header.is-scrolled .site-menu a:hover,
.site-header.compact .site-menu a:hover,
.site-header.is-scrolled .site-menu a[aria-current="page"],
.site-header.compact .site-menu a[aria-current="page"],
.site-header.is-scrolled .lang-toggle:hover,
.site-header.compact .lang-toggle:hover {
  background: var(--foam);
}

.lang-toggle {
  color: inherit;
  border: 1px solid currentColor;
  background: transparent;
  cursor: pointer;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  min-height: 92vh;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.hero picture,
.hero > picture img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero > picture img {
  object-fit: cover;
  object-position: center 60%;
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(8, 36, 58, 0.86) 0%, rgba(8, 36, 58, 0.58) 42%, rgba(8, 36, 58, 0.14) 100%),
    linear-gradient(0deg, rgba(8, 36, 58, 0.55), rgba(8, 36, 58, 0));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: var(--container);
  align-self: center;
  margin: 110px auto 170px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--sea);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.page-hero .eyebrow {
  color: var(--sand);
}

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

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.02;
}

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 9vw, 7.2rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 5vw, 4.3rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(6, 34, 54, 0.18);
}

.btn-primary {
  color: var(--white);
  background: var(--sea);
}

.btn-light {
  color: var(--navy);
  background: var(--sand);
}

.btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

.btn-ghost.dark {
  color: var(--navy);
  border-color: var(--line);
  background: var(--white);
}

.hero-card {
  position: absolute;
  z-index: 3;
  right: max(20px, calc((100vw - 1180px) / 2));
  bottom: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  width: min(650px, calc(100vw - 40px));
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  color: var(--ink);
  overflow: hidden;
}

.hero-card div {
  min-height: 108px;
  padding: 22px;
  border-right: 1px solid var(--line);
}

.hero-card div:last-child {
  border-right: 0;
}

.hero-card strong,
.hero-card span {
  display: block;
}

.hero-card strong {
  margin-bottom: 4px;
  color: var(--navy);
  font-size: 1.35rem;
}

.hero-card span {
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: var(--container);
  margin: -32px auto 0;
  position: relative;
  z-index: 5;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.contact-strip a {
  min-height: 100px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.contact-strip a:last-child {
  border-right: 0;
}

.contact-strip span,
.contact-strip strong {
  display: block;
}

.contact-strip span {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-strip strong {
  color: var(--navy);
  overflow-wrap: anywhere;
}

.section {
  width: var(--container);
  margin: 0 auto;
  padding: 92px 0;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(32px, 7vw, 84px);
  align-items: start;
}

.rich-copy {
  color: var(--muted);
  font-size: 1.05rem;
}

.image-feature {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.46fr);
  gap: 0;
  margin-top: 56px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--navy);
}

.image-feature > img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: center;
}

.feature-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px;
  color: var(--white);
  background: var(--navy);
}

.feature-panel p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.muted-section,
.reviews-section {
  width: 100%;
  max-width: none;
  padding-right: max(20px, calc((100vw - 1180px) / 2));
  padding-left: max(20px, calc((100vw - 1180px) / 2));
  background: var(--foam);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: end;
  width: var(--container);
  max-width: 100%;
  margin: 0 auto 34px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.section-heading h2 {
  margin-bottom: 0;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  color: var(--sea-dark);
  font-weight: 800;
}

.card-grid,
.activity-grid {
  display: grid;
  gap: 20px;
}

.rooms-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: var(--container);
  max-width: 100%;
  margin: 0 auto;
}

.room-card {
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 44px rgba(6, 34, 54, 0.08);
  overflow: hidden;
}

.room-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

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

.room-number {
  margin-bottom: 6px;
  color: var(--sea);
  font-size: 0.8rem;
  font-weight: 800;
}

.room-card p:not(.room-number) {
  color: var(--muted);
}

.room-card a {
  color: var(--sea-dark);
  font-weight: 800;
}

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

.activity-page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  padding-top: 40px;
}

.wide-copy {
  max-width: 860px;
  margin-right: auto;
  margin-left: auto;
  padding-bottom: 10px;
  font-size: 1.18rem;
}

.activity-card {
  position: relative;
  min-height: 430px;
  border-radius: var(--radius);
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.activity-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.activity-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 36, 58, 0.86), rgba(8, 36, 58, 0.14));
}

.activity-card div {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 20px;
  left: 20px;
}

.activity-card:hover img {
  transform: scale(1.04);
}

.activity-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.8);
}

.reviews-section {
  background: var(--sand-soft);
}

.review-stack {
  display: grid;
  gap: 16px;
}

blockquote {
  margin: 0;
  padding: 24px;
  border-left: 4px solid var(--sea);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 34px rgba(6, 34, 54, 0.06);
}

blockquote p {
  margin-bottom: 14px;
  color: var(--ink);
  font-weight: 600;
}

cite {
  color: var(--muted);
  font-style: normal;
  font-size: 0.9rem;
}

cite a {
  color: var(--sea-dark);
  font-weight: 800;
}

.review-summary {
  margin: 12px 0 6px;
  color: var(--muted);
}

.review-summary strong {
  color: var(--navy);
  font-size: 1.3rem;
}

.review-meta {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.92rem;
}

.review-rating {
  display: block;
  margin-top: 10px;
  color: #c4942f;
  font-size: 0.95rem;
  letter-spacing: 0;
}

.gallery-preview {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  min-height: 360px;
  background: var(--navy);
}

.gallery-tile {
  position: relative;
  min-height: 300px;
  overflow: hidden;
}

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

.gallery-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 36, 58, 0.18);
}

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

.gallery-tile span {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 28px;
  padding: 12px 18px;
  border-radius: 999px;
  color: var(--navy);
  background: var(--sand);
  font-weight: 800;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  gap: 28px;
  align-items: stretch;
}

.contact-card {
  padding: clamp(28px, 5vw, 48px);
  border-radius: var(--radius);
  color: var(--white);
  background: var(--navy);
}

.contact-card h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

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

address {
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.8);
  font-style: normal;
}

.map-frame {
  min-height: 480px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 480px;
  border: 0;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 42px max(20px, calc((100vw - 1180px) / 2));
  color: rgba(255, 255, 255, 0.78);
  background: var(--navy);
}

.site-footer img {
  width: 96px;
  margin-bottom: 12px;
}

.site-footer p {
  max-width: 420px;
  margin-bottom: 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 22px;
  color: var(--white);
  font-weight: 700;
}

.page-hero {
  position: relative;
  display: grid;
  min-height: 560px;
  padding: 180px max(20px, calc((100vw - 1180px) / 2)) 90px;
  color: var(--white);
  overflow: hidden;
  background: var(--navy);
}

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

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 36, 58, 0.88), rgba(8, 36, 58, 0.38));
}

.page-hero > div {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.page-hero p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.15rem;
}

.booking-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding-bottom: 28px;
}

.booking-facts div {
  min-height: 126px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.booking-facts strong,
.booking-facts span {
  display: block;
}

.booking-facts strong {
  margin-bottom: 8px;
  color: var(--sea-dark);
  font-size: 1.4rem;
}

.booking-facts span {
  color: var(--muted);
  font-weight: 700;
}

.room-detail-list {
  display: grid;
  gap: 34px;
  padding-top: 40px;
}

.page-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  width: var(--container);
  margin: 0 auto 88px;
  padding: clamp(28px, 5vw, 44px);
  border-radius: var(--radius);
  color: var(--white);
  background: var(--navy);
  box-shadow: var(--shadow);
}

.page-cta h2 {
  max-width: 720px;
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.page-cta .btn-ghost.dark {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
}

.room-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
  gap: 34px;
  align-items: center;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 50px rgba(6, 34, 54, 0.08);
}

.room-detail.reverse img {
  order: 2;
}

.room-detail img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  object-fit: cover;
}

.room-detail p {
  color: var(--muted);
}

.room-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0;
}

.room-tags span {
  padding: 8px 11px;
  border-radius: 999px;
  color: var(--navy);
  background: var(--foam);
  font-size: 0.86rem;
  font-weight: 800;
}

.gallery-hero img {
  object-position: center 70%;
}

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

.photo-button {
  position: relative;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: var(--navy);
  overflow: hidden;
  cursor: pointer;
}

.photo-button.wide {
  grid-column: span 2;
}

.photo-button.tall {
  grid-row: span 2;
}

.photo-button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease, opacity 220ms ease;
}

.photo-button:hover img {
  transform: scale(1.04);
  opacity: 0.88;
}

.lightbox {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 68px 20px 34px;
  color: var(--white);
  background: rgba(5, 24, 38, 0.92);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(1100px, 100%);
  max-height: 78vh;
  border-radius: var(--radius);
  object-fit: contain;
  box-shadow: var(--shadow);
}

.lightbox p {
  margin: 16px 0 0;
  font-weight: 700;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 960px) {
  :root {
    --container: min(100vw - 28px, 760px);
  }

  .topbar {
    display: none;
  }

  .nav-shell {
    min-height: 68px;
  }

  .menu-toggle {
    display: block;
  }

  .site-menu {
    position: absolute;
    top: 68px;
    right: 14px;
    left: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 14px;
    border-radius: var(--radius);
    color: var(--ink);
    background: var(--white);
    box-shadow: var(--shadow);
  }

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

  .site-menu a,
  .lang-toggle {
    justify-content: center;
    border-color: var(--line);
  }

  .hero {
    min-height: 1080px;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(8, 36, 58, 0.78), rgba(8, 36, 58, 0.18)),
      linear-gradient(90deg, rgba(8, 36, 58, 0.78), rgba(8, 36, 58, 0.22));
  }

  .hero-content {
    margin: 96px auto 210px;
  }

  .hero-card {
    right: 14px;
    left: 14px;
    grid-template-columns: 1fr;
    width: auto;
  }

  .hero-card div {
    min-height: 86px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-card div:last-child {
    border-bottom: 0;
  }

  .contact-strip,
  .rooms-grid,
  .activity-grid,
  .activity-page-grid,
  .section-grid,
  .image-feature,
  .contact-section,
  .booking-facts,
  .room-detail,
  .page-cta,
  .gallery-preview {
    grid-template-columns: 1fr;
  }

  .contact-strip a {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .contact-strip a:last-child {
    border-bottom: 0;
  }

  .section,
  .muted-section,
  .reviews-section {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .image-feature > img {
    height: 320px;
  }

  .activity-card {
    min-height: 320px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .room-detail.reverse img {
    order: 0;
  }

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

@media (max-width: 600px) {
  :root {
    --container: calc(100vw - 24px);
  }

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

  .brand span {
    max-width: 112px;
    line-height: 1.1;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.15rem;
  }

  .hero {
    min-height: 1120px;
  }

  .hero-content {
    margin-top: 84px;
  }

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

  .btn {
    width: 100%;
  }

  .section-heading {
    grid-template-columns: 1fr;
  }

  .gallery-preview {
    min-height: 0;
  }

  .gallery-tile {
    min-height: 240px;
  }

  .page-hero {
    min-height: 520px;
    padding-top: 130px;
  }

  .booking-facts div {
    min-height: 104px;
  }

  .room-detail {
    padding: 14px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 230px;
  }

  .photo-button.wide,
  .photo-button.tall {
    grid-column: auto;
    grid-row: auto;
  }
}
