:root {
  --ink: #12313b;
  --muted: #5d7278;
  --ocean-950: #062c39;
  --ocean-900: #0b3a4a;
  --ocean-800: #0d4b5d;
  --ocean-600: #137f8d;
  --ocean-400: #4ec5c3;
  --aqua: #8be1d6;
  --sand: #f6f0e4;
  --sand-deep: #ead8ba;
  --coral: #ef805c;
  --sun: #f4c96a;
  --white: #ffffff;
  --line: rgba(18, 49, 59, 0.14);
  --shadow-sm: 0 10px 30px rgba(6, 44, 57, 0.08);
  --shadow-lg: 0 28px 80px rgba(6, 44, 57, 0.18);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

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

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

button {
  font: inherit;
}

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

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.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 {
  position: fixed;
  z-index: 200;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--ocean-950);
  border-radius: 10px;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

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

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  color: var(--white);
  background: rgba(6, 44, 57, 0.93);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  white-space: nowrap;
}

.brand img {
  flex: 0 0 auto;
}

.brand-logo {
  width: 42px;
  height: 42px;
  display: block;
  flex: 0 0 auto;
  overflow: hidden;
  background: var(--white);
  border-radius: 12px;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand span {
  display: grid;
  line-height: 1.2;
}

.brand strong {
  font-size: 0.98rem;
  letter-spacing: 0.01em;
}

.brand small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}

.primary-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--aqua);
  border-radius: 99px;
  content: "";
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--white);
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  transform: scaleX(1);
}

.language-switcher {
  display: flex;
  align-items: center;
  padding: 4px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 99px;
}

.language-switcher button {
  min-width: 36px;
  padding: 7px 8px;
  color: rgba(255, 255, 255, 0.62);
  background: transparent;
  border: 0;
  border-radius: 99px;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 800;
}

.language-switcher button[aria-pressed="true"] {
  color: var(--ocean-950);
  background: var(--white);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 10px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
}

.menu-toggle > span:not(.sr-only) {
  display: none;
}

.menu-toggle::before {
  width: 22px;
  height: 2px;
  display: block;
  flex: 0 0 auto;
  background: var(--white);
  border-radius: 99px;
  box-shadow:
    0 -6px 0 var(--white),
    0 6px 0 var(--white);
  content: "";
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 0;
  color: var(--white);
  background:
    radial-gradient(circle at 10% 0%, rgba(78, 197, 195, 0.22), transparent 34%),
    linear-gradient(135deg, var(--ocean-950), var(--ocean-800));
}

.hero::after {
  position: absolute;
  right: -10%;
  bottom: -200px;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  content: "";
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-glow-one {
  top: 8%;
  left: 42%;
  width: 180px;
  height: 180px;
  background: rgba(244, 201, 106, 0.1);
}

.hero-glow-two {
  right: 8%;
  bottom: 15%;
  width: 260px;
  height: 260px;
  background: rgba(78, 197, 195, 0.11);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  align-items: center;
  gap: 52px;
}

.hero-copy {
  min-width: 0;
  padding-bottom: 82px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--ocean-600);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero .eyebrow,
.availability-section .eyebrow,
.contact-card .eyebrow {
  color: var(--aqua);
}

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

h1,
h2,
h3 {
  line-height: 1.08;
  text-wrap: balance;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 6.6vw, 6.5rem);
  font-weight: 500;
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 4.4vw, 4.2rem);
  font-weight: 500;
  letter-spacing: -0.04em;
}

h3 {
  font-size: 1.35rem;
}

.hero-lead {
  max-width: 610px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
}

.price-note {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
}

.price-note strong {
  color: var(--sun);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.2rem;
  font-weight: 500;
}

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

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 14px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 850;
  text-align: center;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

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

.button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button-primary {
  color: var(--ocean-950);
  background: var(--sun);
  box-shadow: 0 16px 34px rgba(244, 201, 106, 0.2);
}

.button-primary:hover {
  box-shadow: 0 20px 38px rgba(244, 201, 106, 0.3);
}

.button-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.2);
}

.button-light {
  color: var(--ocean-950);
  background: var(--white);
}

.button-outline {
  color: var(--ocean-900);
  background: transparent;
  border-color: rgba(11, 58, 74, 0.25);
}

.price-detail {
  margin: 15px 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.78rem;
}

.hero-art {
  position: relative;
  align-self: end;
  height: 520px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 0;
  border-radius: 180px 180px 0 0;
  background: var(--ocean-800);
  box-shadow: var(--shadow-lg);
}

.hero-photo-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-photo-picture,
.responsive-photo {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-photo-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 45%, rgba(6, 44, 57, 0.34)),
    linear-gradient(90deg, rgba(6, 44, 57, 0.18), transparent 55%);
  pointer-events: none;
}

.hero-room-preview {
  position: absolute;
  z-index: 2;
  bottom: 28px;
  left: 28px;
  width: 154px;
  overflow: hidden;
  background: var(--white);
  border: 5px solid var(--white);
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(6, 44, 57, 0.28);
  transform: rotate(-3deg);
}

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

.hero-card {
  position: absolute;
  z-index: 3;
  right: 28px;
  bottom: 28px;
  width: 164px;
  padding: 17px 18px;
  color: var(--ocean-950);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(6, 44, 57, 0.25);
  backdrop-filter: blur(12px);
}

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

.hero-card strong {
  display: block;
  margin: 2px 0;
  color: var(--ocean-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.35rem;
  font-weight: 500;
}

.hero-card-label {
  color: var(--ocean-600) !important;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.highlights {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  color: var(--ink);
  background: var(--white);
  border-radius: 22px 22px 0 0;
  box-shadow: 0 -10px 35px rgba(6, 44, 57, 0.08);
}

.highlights > div {
  min-height: 110px;
  display: grid;
  align-content: center;
  padding: 20px 28px;
  border-right: 1px solid var(--line);
}

.highlights > div:last-child {
  border-right: 0;
}

.highlights strong {
  color: var(--ocean-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  font-weight: 500;
}

.highlights span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.section {
  padding: 112px 0;
}

.rooms-section {
  background:
    linear-gradient(180deg, rgba(246, 240, 228, 0.3), transparent 22%),
    #fffdf9;
}

.section-heading {
  max-width: 750px;
  margin-bottom: 58px;
}

.section-heading > p:last-child {
  max-width: 660px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.room-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 32px;
}

.room-visual,
.room-details {
  min-height: 460px;
  border-radius: var(--radius-lg);
}

.room-visual {
  padding: 12px;
  background:
    linear-gradient(145deg, rgba(19, 127, 141, 0.08), rgba(244, 201, 106, 0.14)),
    var(--sand);
  border: 1px solid rgba(19, 127, 141, 0.1);
}

.room-photo {
  position: relative;
  height: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
}

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

.room-photo figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 15px 17px;
  color: var(--white);
  background: rgba(6, 44, 57, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  font-size: 0.82rem;
  font-weight: 750;
  backdrop-filter: blur(10px);
}

.room-details {
  display: flex;
  flex-direction: column;
  padding: 50px;
  color: var(--white);
  background:
    radial-gradient(circle at 100% 0, rgba(78, 197, 195, 0.28), transparent 42%),
    var(--ocean-900);
  box-shadow: var(--shadow-sm);
}

.room-kicker {
  margin-bottom: 14px;
  color: var(--aqua);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.room-details h3 {
  max-width: 410px;
  margin-bottom: 30px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 500;
}

.bed-list {
  display: grid;
  gap: 16px;
  margin: 0 0 36px;
  padding: 0;
  list-style: none;
}

.bed-list li {
  display: flex;
  align-items: center;
  gap: 13px;
  color: rgba(255, 255, 255, 0.78);
}

.number-chip {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--ocean-950);
  background: var(--aqua);
  border-radius: 50%;
  font-size: 0.76rem;
  font-weight: 900;
}

.room-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.65);
}

.room-price strong {
  color: var(--sun);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.4rem;
  font-weight: 500;
}

.amenities {
  margin-top: 72px;
}

.amenities h3 {
  margin-bottom: 26px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 500;
}

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

.amenity {
  min-height: 112px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 24px rgba(6, 44, 57, 0.035);
}

.amenity span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--ocean-900);
  background: rgba(78, 197, 195, 0.15);
  border-radius: 13px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

.amenity strong {
  font-size: 0.86rem;
}

.gallery-section {
  background:
    radial-gradient(circle at 85% 10%, rgba(78, 197, 195, 0.14), transparent 26%),
    var(--sand);
}

.gallery-grid {
  columns: 3 280px;
  column-gap: 18px;
}

.gallery-item {
  position: relative;
  width: 100%;
  display: inline-block;
  margin: 0 0 18px;
  overflow: hidden;
  background: var(--ocean-900);
  border: 1px solid rgba(18, 49, 59, 0.12);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  break-inside: avoid;
  vertical-align: top;
}

.gallery-item a {
  display: block;
  color: var(--white);
  text-decoration: none;
}

.gallery-item picture {
  display: block;
}

.gallery-item img {
  width: 100%;
  height: auto;
  transition:
    transform 0.35s ease,
    filter 0.35s ease;
}

.gallery-item figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 50px 18px 16px;
  background: linear-gradient(transparent, rgba(6, 44, 57, 0.88));
  font-size: 0.82rem;
  font-weight: 800;
}

.gallery-item:hover img,
.gallery-item:focus-within img {
  filter: saturate(1.08);
  transform: scale(1.025);
}

.availability-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 95% 4%, rgba(78, 197, 195, 0.2), transparent 26%),
    var(--ocean-950);
}

.availability-section::before {
  position: absolute;
  top: -320px;
  left: -260px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  content: "";
}

.section-heading-light > p:last-child {
  color: rgba(255, 255, 255, 0.65);
}

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

.calendar-card {
  overflow: hidden;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.16);
}

.calendar-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
}

.calendar-card-header > div {
  display: flex;
  align-items: baseline;
  gap: 7px;
}

.calendar-card-header span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
}

.calendar-card-header strong {
  color: var(--ocean-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  font-weight: 500;
}

.view-only-badge {
  padding: 5px 9px;
  color: var(--ocean-800) !important;
  background: rgba(78, 197, 195, 0.17);
  border-radius: 99px;
  font-size: 0.65rem !important;
  text-transform: uppercase;
}

.calendar-slot {
  min-height: 290px;
  display: grid;
  place-content: center;
  padding: 28px;
  text-align: center;
}

.calendar-slot iframe {
  width: 100%;
  height: 420px;
  border: 0;
}

.calendar-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin: 0 auto 17px;
  color: var(--ocean-900);
  background: var(--sand);
  border-radius: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.calendar-slot strong {
  margin-bottom: 7px;
  color: var(--ocean-900);
  font-size: 0.96rem;
}

.calendar-slot p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.availability-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.availability-action p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
}

.button-light strong {
  margin-left: 5px;
}

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

.location-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.78fr) minmax(0, 1.22fr);
  align-items: center;
  gap: 60px;
}

.location-copy > p:not(.eyebrow) {
  max-width: 470px;
  color: var(--muted);
}

.location-distance {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 32px 0;
}

.location-distance > strong {
  color: var(--ocean-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.8rem;
  font-weight: 500;
  line-height: 0.85;
}

.location-distance > div {
  display: grid;
}

.location-distance span {
  color: var(--ocean-900);
  font-weight: 850;
}

.location-distance small {
  color: var(--muted);
}

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

.map-frame iframe {
  width: 100%;
  height: 460px;
  display: block;
  border: 0;
  border-radius: 28px;
}

.guest-section {
  background: #fffdf9;
}

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

.guest-card {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.guest-card > span {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 38px;
  color: var(--ocean-900);
  background: var(--sand);
  border-radius: 17px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  font-weight: 700;
}

.guest-card h3 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.guest-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.contact-section {
  padding: 0 0 112px;
  background: #fffdf9;
}

.contact-card {
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: 58px 64px;
  color: var(--white);
  background:
    radial-gradient(circle at 100% 0, rgba(244, 201, 106, 0.2), transparent 30%),
    linear-gradient(135deg, var(--ocean-900), var(--ocean-950));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.contact-card h2 {
  margin-bottom: 12px;
}

.contact-card p:last-child {
  max-width: 560px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.67);
}

.contact-phone {
  min-width: 275px;
  display: grid;
  gap: 2px;
  padding: 22px 26px;
  color: var(--ocean-950);
  background: var(--sun);
  border-radius: 18px;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.contact-phone:hover {
  transform: translateY(-3px);
}

.contact-phone span {
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-phone strong {
  font-size: 1.15rem;
}

.site-footer {
  padding: 40px 0 96px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--ocean-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.footer-brand small {
  text-transform: none;
}

.footer-grid > p {
  margin: 0;
  font-size: 0.78rem;
}

.footer-grid > a {
  justify-self: end;
  font-size: 0.78rem;
  font-weight: 750;
  text-decoration: none;
}

.mobile-call-bar {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .header-inner {
    gap: 16px;
  }

  .primary-nav {
    gap: 16px;
  }

  .primary-nav a {
    font-size: 0.78rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.8fr);
  }

  .hero-art {
    height: 470px;
  }

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

@media (max-width: 860px) {
  .site-header {
    background: var(--ocean-950);
  }

  .header-inner {
    min-height: 70px;
  }

  .menu-toggle {
    display: flex;
    order: 3;
    margin-left: 0;
  }

  .primary-nav {
    position: fixed;
    top: 70px;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    align-content: start;
    gap: 0;
    padding: 24px 20px;
    background: var(--ocean-950);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition:
      opacity 0.2s ease,
      transform 0.2s ease;
  }

  .primary-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .primary-nav a {
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.05rem;
  }

  .language-switcher {
    order: 2;
    margin-left: auto;
  }

  .hero {
    padding-top: 72px;
  }

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

  .hero-copy {
    padding-bottom: 12px;
  }

  .hero-art {
    width: min(100%, 580px);
    height: 420px;
    margin: 20px auto 0;
  }

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

  .highlights > div:nth-child(2) {
    border-right: 0;
  }

  .highlights > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .room-layout,
  .location-grid {
    grid-template-columns: 1fr;
  }

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

  .gallery-grid {
    columns: 2 250px;
  }

  .calendar-slot {
    min-height: 230px;
  }

  .location-copy {
    max-width: 650px;
  }

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

  .contact-phone {
    width: 100%;
  }

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

  .footer-grid > a {
    justify-self: start;
  }
}

@media (max-width: 600px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .header-inner {
    gap: 8px;
  }

  .brand {
    gap: 8px;
  }

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

  .brand-logo {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }

  .brand strong {
    font-size: 0.86rem;
  }

  .brand small {
    display: none;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
    padding: 9px;
  }

  .language-switcher {
    padding: 3px;
  }

  .language-switcher button {
    min-width: 31px;
    padding: 6px 5px;
  }

  .hero {
    padding-top: 60px;
  }

  h1 {
    font-size: clamp(2.65rem, 12vw, 3.5rem);
    letter-spacing: -0.045em;
    text-wrap: pretty;
  }

  h2 {
    font-size: clamp(2.1rem, 10vw, 3rem);
  }

  .hero-actions {
    display: grid;
  }

  .hero-art {
    height: 350px;
    border-radius: 130px 130px 0 0;
  }

  .hero-room-preview {
    display: none;
  }

  .hero-card {
    right: 18px;
    bottom: 18px;
    width: 140px;
  }

  .highlights > div {
    min-height: 95px;
    padding: 18px;
  }

  .highlights strong {
    font-size: 1.55rem;
  }

  .section {
    padding: 80px 0;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .room-visual,
  .room-details {
    min-height: 390px;
  }

  .room-details {
    padding: 34px 28px;
  }

  .gallery-grid {
    columns: 1;
  }

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

  .amenity {
    min-height: 86px;
  }

  .availability-action {
    align-items: stretch;
    flex-direction: column;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 380px;
    height: 380px;
  }

  .contact-section {
    padding-bottom: 80px;
  }

  .contact-card {
    padding: 42px 28px;
    border-radius: 26px;
  }

  .site-footer {
    padding-bottom: 112px;
  }

  .mobile-call-bar {
    position: fixed;
    z-index: 90;
    right: 12px;
    bottom: 12px;
    left: 12px;
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 18px;
    color: var(--ocean-950);
    background: var(--sun);
    border: 1px solid rgba(6, 44, 57, 0.12);
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(6, 44, 57, 0.28);
    text-decoration: none;
  }

  .mobile-call-bar span {
    font-size: 0.76rem;
    font-weight: 850;
    text-transform: uppercase;
  }

  .mobile-call-bar strong {
    font-size: 0.88rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
