:root {
  --deep: #083344;
  --deep-2: #062934;
  --teal: #0b7377;
  --teal-2: #0f969c;
  --coral: #ff7a59;
  --coral-2: #ff9a76;
  --sand: #f6dfbd;
  --cream: #fff7eb;
  --paper: #fffdf8;
  --ink: #142328;
  --muted: #65767b;
  --line: rgba(8, 51, 68, 0.12);
  --shadow: 0 24px 70px rgba(8, 51, 68, 0.14);
  --shadow-soft: 0 18px 45px rgba(8, 51, 68, 0.10);
  --radius: 26px;
  --radius-lg: 36px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.nav-open,
body.lightbox-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 9999;
  background: var(--deep);
  color: white;
  padding: 10px 14px;
  border-radius: 999px;
  transition: top .2s ease;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background .25s ease, box-shadow .25s ease, padding .25s ease;
  padding-block: 18px;
}

.site-header.is-scrolled,
.site-header.nav-active {
  background: rgba(255, 253, 248, 0.92);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 40px rgba(8, 51, 68, 0.10);
  padding-block: 10px;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand__mark {
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 10px 18px rgba(8, 51, 68, 0.18));
}

.brand--logo {
  background: rgba(255, 253, 248, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 22px;
  padding: 7px 12px;
  box-shadow: 0 14px 34px rgba(8, 51, 68, 0.16);
}

.brand__full-logo {
  width: clamp(126px, 12vw, 165px);
  height: auto;
  display: block;
}

.brand__tagline {
  display: inline-flex !important;
  align-items: center;
  white-space: nowrap;
  border-left: 1px solid rgba(8, 51, 68, 0.16);
  padding-left: 12px;
  color: var(--deep);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.02em;
  line-height: 1.15;
}

.brand--logo-footer {
  width: fit-content;
  padding: 10px 14px;
  margin-bottom: 18px;
}

.brand--logo-footer .brand__full-logo {
  width: min(260px, 72vw);
}

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

.brand strong {
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.brand small {
  font-size: 0.74rem;
  color: rgba(20, 35, 40, 0.72);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero .brand small,
.site-header:not(.is-scrolled):not(.nav-active) .brand small {
  color: rgba(255, 255, 255, 0.76);
}

.site-header:not(.is-scrolled):not(.nav-active) .brand,
.site-header:not(.is-scrolled):not(.nav-active) .nav-menu a:not(.nav-cta) {
  color: white;
}

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

.nav-menu a {
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.93rem;
  color: rgba(20, 35, 40, 0.78);
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  background: rgba(11, 115, 119, 0.10);
  color: var(--deep);
}

.nav-menu .nav-cta {
  margin-left: 8px;
  background: var(--coral);
  color: white !important;
  box-shadow: 0 12px 24px rgba(255, 122, 89, 0.28);
}

.nav-menu .nav-cta:hover {
  transform: translateY(-1px);
  background: #ff6841;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 30px rgba(8, 51, 68, 0.14);
  padding: 12px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--deep);
  margin: 5px 0;
  border-radius: 999px;
  transition: transform .25s ease, opacity .25s ease;
}

body.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: 138px 0 82px;
}

.hero__media,
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__media {
  background:
    linear-gradient(90deg, rgba(8, 51, 68, 0.92), rgba(8, 51, 68, 0.46) 45%, rgba(8, 51, 68, 0.16)),
    url("../images/real/hero.jpg") center/cover no-repeat;
  transform: scale(1.04);
}

.hero__overlay {
  z-index: -1;
  background:
    radial-gradient(circle at 82% 20%, rgba(255, 191, 115, 0.34), transparent 26%),
    linear-gradient(to top, rgba(8, 51, 68, 0.86), transparent 36%);
}

.hero__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  align-items: center;
  gap: 54px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  color: white;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  border-radius: 999px;
  padding: 8px 13px;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-kicker {
  color: var(--teal);
  background: rgba(11, 115, 119, 0.09);
  border-color: rgba(11, 115, 119, 0.16);
  backdrop-filter: none;
  margin-bottom: 14px;
}

.section-kicker--light {
  color: white;
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.18);
}

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

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

h1 {
  color: white;
  font-size: clamp(3.2rem, 8vw, 6.9rem);
  max-width: 850px;
  margin: 18px 0 24px;
}

h2 {
  font-size: clamp(2.25rem, 4.5vw, 4.4rem);
  margin-bottom: 18px;
}

h3 {
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.hero__lead {
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  max-width: 690px;
  margin-bottom: 16px;
}

.hero__tagline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: #ffde9e;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 10px 16px;
  margin: 0 0 30px;
  font-weight: 900;
  letter-spacing: 0.02em;
  box-shadow: 0 14px 34px rgba(8, 51, 68, 0.14);
  backdrop-filter: blur(12px);
}

.hero__actions,
.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 850;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  min-height: 52px;
}

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

.btn--primary {
  background: linear-gradient(135deg, var(--coral), var(--coral-2));
  color: white;
  box-shadow: 0 18px 35px rgba(255, 122, 89, 0.28);
}

.btn--primary:hover {
  box-shadow: 0 22px 45px rgba(255, 122, 89, 0.38);
}

.btn--glass {
  background: rgba(255, 255, 255, 0.14);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(12px);
}

.btn--secondary {
  background: var(--teal);
  color: white;
}

.btn--outline-light {
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: transparent;
}

.btn--full {
  width: 100%;
}

.hero__facts {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 38px 0 0;
}

.hero__facts div {
  min-width: 150px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(12px);
}

.hero__facts dt {
  font-size: 1.8rem;
  color: white;
  font-weight: 900;
  line-height: 1;
}

.hero__facts dd {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 700;
  font-size: 0.9rem;
}

.booking-card {
  background: rgba(255, 253, 248, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 28px;
  backdrop-filter: blur(20px);
}

.booking-card__label {
  color: var(--coral);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 900;
  font-size: 0.78rem;
  margin-bottom: 6px;
}

.booking-card h2 {
  font-size: 2.2rem;
  margin-bottom: 18px;
}

.booking-form {
  display: grid;
  gap: 14px;
}

.booking-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.booking-form label {
  display: grid;
  gap: 7px;
  font-size: 0.86rem;
  font-weight: 800;
  color: rgba(20, 35, 40, 0.74);
}

.booking-form input,
.booking-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
  color: var(--ink);
  padding: 13px 14px;
  outline: 0;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.booking-form input:focus,
.booking-form select:focus {
  border-color: rgba(11, 115, 119, 0.62);
  box-shadow: 0 0 0 4px rgba(11, 115, 119, 0.12);
}

.booking-form__helper {
  margin: -4px 0 2px;
  color: var(--teal);
  background: rgba(11, 115, 119, 0.08);
  border: 1px solid rgba(11, 115, 119, 0.14);
  border-radius: 14px;
  padding: 10px 12px;
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.4;
}

.booking-card__note {
  margin: 14px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
}

.booking-card__note a {
  color: var(--teal);
  font-weight: 900;
}

.section {
  padding: 108px 0;
}

.section--cream {
  background: var(--cream);
}

.section--sand {
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 122, 89, 0.12), transparent 30%),
    linear-gradient(135deg, #fff7eb, #f7e2bf);
}

.section--teal {
  background:
    radial-gradient(circle at 80% 15%, rgba(255, 211, 134, 0.18), transparent 26%),
    linear-gradient(135deg, var(--deep), #0a6068);
  color: white;
}

.intro-section {
  padding: 56px 0;
  margin-top: -1px;
  background: linear-gradient(180deg, #fff7eb, var(--paper));
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 28px;
  align-items: stretch;
}

.intro-card,
.highlight-strip,
.amenity-card,
.policy-card,
.review-card,
.consider-card,
.room-card,
.map-card,
.booking-link,
details {
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.84);
  box-shadow: var(--shadow-soft);
}

.intro-card {
  border-radius: var(--radius-lg);
  padding: 36px;
}

.intro-card h2 {
  font-size: clamp(2rem, 3.2vw, 3.5rem);
}

.intro-card p,
.section-copy p,
.section-heading p {
  color: var(--muted);
  font-size: 1.05rem;
}

.highlight-strip {
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  overflow: hidden;
}

.highlight-strip div {
  padding: 32px;
  display: grid;
  align-content: center;
  min-height: 150px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.highlight-strip div:nth-child(2n) {
  border-right: 0;
}

.highlight-strip div:nth-last-child(-n+2) {
  border-bottom: 0;
}

.highlight-strip span {
  color: var(--deep);
  font-size: clamp(1.45rem, 2.4vw, 2.4rem);
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.05em;
}

.highlight-strip small {
  color: var(--muted);
  font-weight: 800;
  margin-top: 8px;
}

.split-layout,
.location-grid,
.booking-section,
.review-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.section-copy h2,
.section-heading h2 {
  color: var(--deep);
}

.section--teal .section-copy h2,
.section--teal .section-copy p {
  color: white;
}

.section-copy p {
  max-width: 700px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 26px 0 26px;
  display: grid;
  gap: 12px;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  color: rgba(20, 35, 40, 0.82);
  font-weight: 650;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(11, 115, 119, 0.12);
  color: var(--teal);
  font-weight: 950;
  font-size: 0.82rem;
}

.text-link {
  color: var(--teal);
  font-weight: 900;
  border-bottom: 2px solid rgba(11, 115, 119, 0.22);
}

.room-card,
.map-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

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

.room-card__content,
.map-card__body {
  padding: 24px;
  background: white;
}

.room-card__content {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: end;
}

.room-card__content h3,
.map-card__body h3 {
  font-size: 1.35rem;
  margin-bottom: 4px;
}

.room-card__content p,
.map-card__body p {
  color: var(--muted);
  margin-bottom: 0;
}

.room-card__tag {
  display: inline-block;
  color: var(--coral);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 8px;
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 46px;
  text-align: center;
}

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

.amenity-card {
  border-radius: var(--radius);
  padding: 28px;
  transition: transform .22s ease, box-shadow .22s ease;
}

.amenity-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(8, 51, 68, 0.14);
}

.amenity-card span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(11, 115, 119, 0.10);
  margin-bottom: 22px;
  font-size: 1.55rem;
}

.amenity-card h3 {
  font-size: 1.18rem;
  margin-bottom: 10px;
}

.amenity-card p,
.policy-card p,
.consider-card p,
.review-card p,
details p {
  color: var(--muted);
  margin-bottom: 0;
}

.location-grid {
  grid-template-columns: 1fr 420px;
}

.distance-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.distance-grid div {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.08);
}

.distance-grid strong {
  display: block;
  font-size: 1.45rem;
  line-height: 1;
  color: #ffde9e;
  margin-bottom: 8px;
}

.distance-grid span {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 750;
}

.map-card {
  background: white;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  grid-auto-rows: 240px;
  gap: 18px;
}

.gallery-item {
  position: relative;
  border: 0;
  overflow: hidden;
  border-radius: var(--radius);
  padding: 0;
  background: var(--deep);
  cursor: zoom-in;
  box-shadow: var(--shadow-soft);
}

.gallery-item--large {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease, filter .45s ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 51, 68, 0.66), transparent 55%);
}

.gallery-item span {
  position: absolute;
  left: 20px;
  bottom: 18px;
  z-index: 1;
  color: white;
  font-weight: 900;
  letter-spacing: -0.02em;
}


.gallery-item img[src*="room-bed"],
.gallery-item img[src*="reception"],
.gallery-item img[src*="entrance"],
.gallery-item img[src*="balcony-palms"] {
  object-position: center;
}

.gallery-item img[src*="aerial-beach"] {
  object-position: center top;
}

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

.booking-section {
  grid-template-columns: 0.78fr 1.22fr;
}

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

.booking-link {
  border-radius: 24px;
  padding: 22px;
  min-height: 120px;
  display: grid;
  align-content: space-between;
  transition: transform .2s ease, box-shadow .2s ease;
}

.booking-link:hover,
.booking-link:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 24px 55px rgba(8, 51, 68, 0.15);
}

.booking-link span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.booking-link strong {
  font-size: 1.2rem;
  color: var(--deep);
}

.booking-link--primary {
  background: linear-gradient(135deg, var(--teal), var(--teal-2));
  border-color: transparent;
}

.booking-link--primary span,
.booking-link--primary strong {
  color: white;
}

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

.policy-card {
  border-radius: var(--radius);
  padding: 26px;
}

.policy-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--deep);
}

.review-grid {
  grid-template-columns: 1.1fr 0.9fr;
}

.review-card,
.consider-card {
  border-radius: var(--radius-lg);
  padding: 36px;
  background: rgba(255, 253, 248, 0.86);
}

.quote-mark {
  display: block;
  font-family: Georgia, serif;
  color: var(--coral);
  font-size: 5rem;
  line-height: 0.6;
  margin-bottom: 8px;
}

.review-card h2 {
  font-size: clamp(2rem, 3.2vw, 3.65rem);
}

.consider-card {
  background: var(--deep);
  color: white;
  border-color: transparent;
}

.consider-card h3 {
  font-size: 1.6rem;
}

.consider-card p {
  color: rgba(255, 255, 255, 0.76);
}

.faq-section {
  padding-top: 94px;
}

.faq-list {
  max-width: 860px;
  margin-inline: auto;
  display: grid;
  gap: 14px;
}

details {
  border-radius: 20px;
  padding: 20px 24px;
}

summary {
  cursor: pointer;
  font-weight: 900;
  color: var(--deep);
}

details p {
  padding-top: 12px;
}

.final-cta {
  padding: 92px 0;
  background:
    linear-gradient(rgba(8, 51, 68, 0.84), rgba(8, 51, 68, 0.86)),
    url("../images/real/cta-beach.jpg") center/cover no-repeat;
  color: white;
}

.final-cta__inner {
  text-align: center;
  max-width: 820px;
}

.final-cta span {
  display: inline-block;
  color: #ffde9e;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.final-cta h2 {
  color: white;
  font-size: clamp(2.4rem, 5vw, 5rem);
}

.final-cta__actions {
  justify-content: center;
  margin-top: 28px;
}

.site-footer {
  background: var(--deep-2);
  color: white;
  padding: 64px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 44px;
}

.brand--footer small,
.site-footer p,
.site-footer li {
  color: rgba(255, 255, 255, 0.70);
}

.site-footer .footer-tagline {
  color: #ffde9e;
  font-weight: 900;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}

.site-footer h3 {
  margin-bottom: 14px;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.site-footer a:hover {
  color: #ffde9e;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 42px;
  padding-top: 22px;
  font-size: 0.9rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
  place-items: center;
  background: rgba(4, 21, 27, 0.88);
  padding: 26px;
}

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

.lightbox img {
  max-height: 86svh;
  border-radius: 24px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.lightbox__close {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: white;
  color: var(--deep);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1000;
  background: #25d366;
  color: white;
  font-weight: 950;
  border-radius: 999px;
  padding: 14px 18px;
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.32);
}

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

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

.reveal--delay {
  transition-delay: .16s;
}

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

  .nav-menu {
    position: fixed;
    left: 20px;
    right: 20px;
    top: 82px;
    display: grid;
    gap: 6px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 253, 248, 0.96);
    box-shadow: var(--shadow);
    transform-origin: top right;
    transform: scale(.96) translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
  }

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

  .site-header:not(.is-scrolled):not(.nav-active) .nav-menu a:not(.nav-cta) {
    color: rgba(20, 35, 40, 0.78);
  }

  .nav-menu a {
    padding: 13px 14px;
  }

  .nav-menu .nav-cta {
    margin-left: 0;
    text-align: center;
  }

  .hero__content,
  .intro-grid,
  .split-layout,
  .location-grid,
  .booking-section,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 118px;
  }

  .booking-card {
    max-width: 520px;
  }

  .amenities-grid,
  .policy-grid,
  .booking-links {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .gallery-item--large {
    grid-column: span 2;
    grid-row: span 1;
  }

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

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
}

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

  .site-header {
    padding-block: 12px;
  }

  .brand__mark {
    width: 42px;
    height: 42px;
  }

  .brand__full-logo {
    width: 122px;
  }

  .brand--logo {
    flex-direction: column;
    align-items: center;
    gap: 2px;
    border-radius: 18px;
    padding: 6px 9px;
  }

  .brand__tagline {
    border-left: 0;
    padding-left: 0;
    font-size: 0.67rem;
  }

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

  .brand small {
    font-size: .66rem;
  }

  .hero {
    min-height: auto;
    padding: 108px 0 58px;
  }

  h1 {
    font-size: clamp(2.7rem, 15vw, 4.2rem);
  }

  h2 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .hero__facts,
  .hero__actions,
  .final-cta__actions {
    display: grid;
  }

  .hero__facts div,
  .btn {
    width: 100%;
  }

  .booking-card,
  .intro-card,
  .review-card,
  .consider-card {
    padding: 24px;
    border-radius: 26px;
  }

  .section {
    padding: 76px 0;
  }

  .highlight-strip,
  .amenities-grid,
  .policy-grid,
  .booking-links,
  .distance-grid,
  .gallery-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .highlight-strip div,
  .highlight-strip div:nth-child(2n),
  .highlight-strip div:nth-last-child(-n+2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .highlight-strip div:last-child {
    border-bottom: 0;
  }

  .room-card__content {
    display: grid;
  }

  .gallery-grid {
    grid-auto-rows: 230px;
  }

  .gallery-item--large {
    grid-column: auto;
  }

  .footer-bottom {
    display: grid;
  }

  .floating-whatsapp {
    left: 18px;
    right: 18px;
    text-align: center;
  }
}

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

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