/* ============================================================
   Sunrise Pool Villa Cam Ranh — Website Stylesheet
   ============================================================ */

@font-face {
  font-family: "Velmont";
  src: url("assets/fonts/Velmont.otf") format("opentype");
  font-display: swap;
}

:root {
  --navy: #122448;
  --navy-soft: #1a2d56;
  --navy-deeper: #0a1330;
  --navy-85: rgba(18,36,72,0.85);
  --navy-70: rgba(18,36,72,0.70);
  --navy-40: rgba(18,36,72,0.40);
  --gold: #CDBB95;
  --gold-dim: rgba(205,187,149,0.55);
  --gold-faint: rgba(205,187,149,0.22);
  --linen: #F8F8F8;
  --linen-warm: #efebe2;
  --ink: #122448;
  --rule: rgba(18,36,72,0.12);

  --display: "Velmont", serif;
  --body: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--linen); }
body {
  font-family: var(--body);
  color: var(--ink);
  font-size: 14px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* Keyboard focus — visible for all interactive elements */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.burger:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}
.nav.on-hero a:focus-visible { outline-color: var(--linen); }

/* ---------- NAV ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 22px 48px;
  background: rgba(248,248,248,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--gold-faint);
  transition: background 0.4s ease, padding 0.4s ease;
}
.nav.on-hero {
  background: transparent;
  border-bottom-color: rgba(205,187,149,0.18);
}
.nav.on-hero .nav-links a,
.nav.on-hero .nav-logo .word,
.nav.on-hero .nav-logo .sub,
.nav.on-hero .lang { color: var(--linen); }
.nav.on-hero .nav-logo .line { background: var(--gold); }

.nav-inner {
  max-width: 1440px; margin: 0 auto;
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 40px;
}
.nav-logo { display: inline-flex; align-items: center; gap: 12px; color: var(--navy); }
.nav-logo-text {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  font-family: var(--display);
  color: var(--navy);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1;
  transition: color .35s ease;
  white-space: nowrap;
}
.nav-logo-text .line-1 {
  font-size: clamp(16px, 1.6vw, 22px);
  letter-spacing: clamp(0.22em, 0.4vw, 0.28em);
}
.nav-logo-text .line-2 {
  font-size: clamp(9px, 0.85vw, 11px);
  letter-spacing: clamp(0.34em, 0.6vw, 0.42em);
  color: var(--gold);
  margin-top: clamp(3px, 0.4vw, 4px);
}
.nav.on-hero .nav-logo-text,
.nav.menu-open .nav-logo-text {
  color: var(--linen);
}
.nav.on-hero .nav-logo-text .line-2,
.nav.menu-open .nav-logo-text .line-2 {
  color: var(--gold);
}
.nav-logo .S {
  font-family: var(--display); font-size: 38px;
  line-height: 1; padding-bottom: 2px;
}
.nav-logo .stack { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo .word {
  font-family: var(--display); font-size: 16px; letter-spacing: 0.18em;
}
.nav-logo .sub {
  font-family: var(--body); font-size: 8px;
  letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--gold); padding-left: 0.42em; margin-top: 2px;
}
.nav-links {
  display: flex; gap: 32px; justify-content: center;
  font-family: var(--body); font-size: 10px;
  letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--navy);
}
.nav-links a { position: relative; padding: 6px 0; transition: color .25s; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: center;
  transition: transform .35s cubic-bezier(.2,.6,.2,1);
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--gold); }

.nav-right { display: flex; align-items: center; gap: 22px; }
.lang {
  font-family: var(--body); font-size: 10px;
  letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--navy);
}
.nav-cta {
  display: inline-block; padding: 14px 28px;
  border: 1px solid var(--gold);
  background: var(--gold); color: var(--navy);
  font-family: var(--body); font-size: 10px;
  letter-spacing: 0.42em; text-transform: uppercase;
  border-radius: 999px;
  transition: background .35s, color .35s;
}
.nav-cta:hover { background: transparent; color: var(--gold); }
.nav.on-hero .nav-cta { background: var(--gold); color: var(--navy); }
.nav.on-hero .nav-cta:hover { background: transparent; color: var(--gold); }

.burger { display: none; }

/* ---------- HERO ---------- */
.hero {
  position: relative; min-height: 100vh;
  overflow: hidden; color: var(--linen);
  display: flex; align-items: center; justify-content: center;
}
.hero .bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  animation: kenburns 22s ease-out infinite alternate;
}
.hero .scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(18,36,72,0.45) 0%,
    rgba(18,36,72,0.20) 35%,
    rgba(18,36,72,0.55) 100%);
}
.hero-inner {
  position: relative; text-align: center;
  padding: 0 24px; max-width: 980px;
}
.hero .eyebrow, .hero .hero-eyebrow {
  font-family: var(--body); font-size: 11px;
  letter-spacing: 0.6em; text-transform: uppercase;
  color: var(--linen); padding-left: 0.6em;
  display: inline-flex; align-items: center; gap: 18px;
}
.hero .eyebrow::before, .hero .eyebrow::after,
.hero .hero-eyebrow::before, .hero .hero-eyebrow::after {
  content: ""; width: 38px; height: 1px; background: var(--linen);
}
.hero .hero-tag { color: var(--linen) !important; }
.hero .lede { color: var(--linen); opacity: 1; }
.hero h1 { color: var(--linen); }

.hero-book-btn {
  display: inline-block; margin-top: 44px;
  padding: 18px 48px;
  background: var(--gold); color: var(--navy);
  font-family: var(--body); font-size: 11px;
  letter-spacing: 0.5em; text-transform: uppercase;
  border-radius: 999px;
  transition: background .3s, color .3s, transform .3s;
  border: 1px solid var(--gold);
}
.hero-book-btn:hover {
  background: transparent; color: var(--linen);
  border-color: var(--linen);
}
.hero h1 {
  font-family: var(--display);
  font-size: clamp(56px, 8.5vw, 128px);
  line-height: 0.95; letter-spacing: 0.01em;
  font-weight: 400; margin: 28px 0 24px;
  filter: drop-shadow(0 2px 24px rgba(0,0,0,0.35));
}
.hero .tag {
  font-family: var(--display); font-style: italic;
  font-size: clamp(18px, 2vw, 24px);
  color: var(--gold); margin-top: 12px;
}
.hero .lede {
  font-family: var(--body);
  font-size: 14px; line-height: 1.85;
  max-width: 560px; margin: 36px auto 0;
  opacity: 0.92;
}

@keyframes kenburns {
  from { transform: scale(1.0); }
  to   { transform: scale(1.08); }
}

/* booking bar over hero */
.book-bar {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(10,19,48,0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--gold-faint);
  color: var(--linen);
  padding: 22px 48px;
}
.book-bar-inner {
  max-width: 1440px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr) auto;
  align-items: center; gap: 32px;
}
.book-field {
  display: flex; flex-direction: column; gap: 4px;
  border-left: 1px solid var(--gold-faint);
  padding-left: 22px;
}
.book-field:first-child { border-left: none; padding-left: 0; }
.book-field .lbl {
  font-family: var(--body); font-size: 9px;
  letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--gold); padding-left: 0.42em;
}
.book-field .val {
  font-family: var(--display); font-size: 18px;
  color: var(--linen);
}
.book-bar .book-cta {
  padding: 16px 34px;
  background: var(--gold); color: var(--navy);
  font-family: var(--body); font-size: 10px;
  letter-spacing: 0.5em; text-transform: uppercase;
  border-radius: 999px;
  transition: background .3s, color .3s;
}
.book-bar .book-cta:hover { background: var(--linen); }

/* page heroes (inner pages) */
.page-hero {
  position: relative; height: 70vh; min-height: 540px;
  display: flex; align-items: center; justify-content: center;
  text-align: center; color: var(--linen); overflow: hidden;
}
.page-hero .bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  animation: kenburns 22s ease-out infinite alternate;
}
.page-hero .scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(18,36,72,0.55), rgba(18,36,72,0.65));
}
.page-hero .inner { position: relative; padding: 100px 24px 0; }
.page-hero .eyebrow {
  font-family: var(--body); font-size: 10px;
  letter-spacing: 0.6em; text-transform: uppercase;
  color: var(--gold); padding-left: 0.6em;
}
.page-hero h1 {
  font-family: var(--display);
  font-size: clamp(48px, 6.5vw, 92px);
  line-height: 1; margin: 22px 0 0;
  font-weight: 400; letter-spacing: 0.01em;
  filter: drop-shadow(0 2px 16px rgba(0,0,0,0.35));
}

/* ---------- SECTIONS ---------- */
section { padding: 120px 48px; }
section.cream { background: var(--linen-warm); }
section.navy { background: var(--navy); color: var(--linen); }
section.white { background: #ffffff; }

.wrap { max-width: 1280px; margin: 0 auto; }
.wrap-narrow { max-width: 820px; margin: 0 auto; text-align: center; }

.eyebrow {
  font-family: var(--body); font-size: 10px;
  letter-spacing: 0.5em; text-transform: uppercase;
  color: var(--gold); padding-left: 0.5em;
  display: inline-block;
}
.eyebrow.with-rule { display: inline-flex; align-items: center; gap: 14px; }
.eyebrow.with-rule::before { content: ""; width: 30px; height: 1px; background: var(--gold); }

.heading {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.05; letter-spacing: 0.005em;
  margin: 18px 0 0; color: var(--navy);
}
section.navy .heading { color: var(--gold); }

.lede {
  font-family: var(--display); font-style: italic;
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.5; margin: 24px auto 0;
  max-width: 700px; color: var(--navy);
}
section.navy .lede { color: var(--linen); }

.prose {
  font-family: var(--body); font-size: 13.5px;
  line-height: 1.85; margin: 22px auto 0;
  max-width: 620px; color: var(--ink);
}
section.navy .prose { color: var(--linen); opacity: 0.88; }

.btn-outline {
  display: inline-block; margin-top: 36px;
  padding: 14px 32px; border: 1px solid var(--gold);
  font-family: var(--body); font-size: 10px;
  letter-spacing: 0.5em; text-transform: uppercase;
  color: var(--gold); border-radius: 999px;
  transition: background .3s, color .3s;
}
.btn-outline:hover { background: var(--gold); color: var(--navy); }
.btn-solid {
  display: inline-block; margin-top: 36px;
  padding: 16px 36px;
  background: var(--gold); color: var(--navy);
  font-family: var(--body); font-size: 10px;
  letter-spacing: 0.5em; text-transform: uppercase;
  border-radius: 999px;
  transition: background .3s, color .3s;
}
.btn-solid:hover { background: var(--navy); color: var(--gold); }

/* ---------- SIGNATURE SPLIT ---------- */
.signature {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.signature.reverse { direction: rtl; }
.signature.reverse > * { direction: ltr; }
.signature .img {
  aspect-ratio: 4/5; background-size: cover;
  background-position: center;
}
.signature .copy { padding: 20px 0; }
.signature .copy .heading { margin-top: 16px; }
.signature .copy .prose { margin-left: 0; }
.signature .copy .lede { margin-left: 0; }

/* ---------- VILLA GRID ---------- */
.villa-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 56px 48px; margin-top: 64px;
}
.villa-card { cursor: pointer; }
.villa-card .img-wrap {
  aspect-ratio: 4/3; overflow: hidden; position: relative;
}
.villa-card .img {
  width: 100%; height: 100%;
  background-size: cover; background-position: center;
  transition: transform .9s cubic-bezier(.2,.6,.2,1);
}
.villa-card:hover .img { transform: scale(1.05); }
.villa-card .meta {
  display: flex; gap: 10px; margin-top: 22px;
}
.villa-card .chip {
  font-family: var(--body); font-size: 9px;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--navy); padding: 6px 14px;
  background: var(--linen); border: 1px solid var(--gold-faint);
  border-radius: 999px;
}
.villa-card h3 {
  font-family: var(--display); font-weight: 400;
  font-size: 28px; line-height: 1.15; margin: 14px 0 8px;
  color: var(--navy);
}
.villa-card .name-italic {
  font-family: var(--display); font-style: italic;
  font-size: 26px; color: var(--navy); margin: 14px 0 6px;
}
.villa-card .desc {
  font-family: var(--body); font-size: 13px;
  line-height: 1.7; color: var(--ink); opacity: 0.78;
  margin: 0;
}
.villa-card .actions {
  display: flex; gap: 18px; align-items: center;
  margin-top: 22px;
}
.btn-pill {
  display: inline-block; padding: 12px 24px;
  background: var(--gold); color: var(--navy);
  font-family: var(--body); font-size: 9.5px;
  letter-spacing: 0.42em; text-transform: uppercase;
  border-radius: 999px;
  transition: background .3s, color .3s;
}
.btn-pill:hover { background: var(--navy); color: var(--gold); }
.btn-link {
  font-family: var(--body); font-size: 9.5px;
  letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--navy); padding-left: 0.42em;
  display: inline-flex; align-items: center; gap: 8px;
  transition: color .25s, gap .3s;
}
.btn-link:hover { color: var(--gold); gap: 14px; }
.btn-link::after { content: "→"; }

/* ---------- FACILITIES GRID ---------- */
.fac-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 40px; margin-top: 64px;
}
.fac-card {
  position: relative; overflow: hidden;
  aspect-ratio: 3/4;
  background-size: cover; background-position: center;
}
.fac-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(18,36,72,0) 35%, rgba(18,36,72,0.85) 100%);
  transition: background .4s;
}
.fac-card:hover::after { background: linear-gradient(180deg, rgba(18,36,72,0.1) 0%, rgba(18,36,72,0.92) 100%); }
.fac-card .label {
  position: absolute; left: 28px; right: 28px; bottom: 28px;
  color: var(--linen); z-index: 2;
}
.fac-card .label .eyebrow { color: var(--gold); }
.fac-card .label h4 {
  font-family: var(--display); font-weight: 400;
  font-size: 26px; line-height: 1.1;
  margin: 10px 0 0; color: var(--linen);
}
.fac-card .label .desc {
  font-family: var(--body); font-size: 12px;
  line-height: 1.6; opacity: 0;
  margin: 12px 0 0; max-height: 0;
  transition: opacity .4s ease, max-height .4s ease;
}
.fac-card:hover .label .desc { opacity: 0.9; max-height: 200px; }

/* ---------- QUOTE BAND ---------- */
.quote-band { padding: 160px 48px; background: var(--navy); text-align: center; }
.quote-band .quote {
  font-family: var(--display); font-style: italic;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.3; color: var(--linen);
  max-width: 920px; margin: 0 auto;
}
.quote-band .quote em { color: var(--gold); font-style: italic; }
.quote-band .cite {
  margin-top: 36px; display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--body); font-size: 10px;
  letter-spacing: 0.5em; text-transform: uppercase;
  color: var(--gold); padding-left: 0.5em;
}
.quote-band .cite::before { content: ""; width: 32px; height: 1px; background: var(--gold); }

/* ---------- RATE TABLE ---------- */
.rate-table {
  width: 100%; border-collapse: collapse;
  margin-top: 48px;
  font-family: var(--body);
}
.rate-table th, .rate-table td {
  padding: 18px 14px; text-align: left;
  border-bottom: 1px solid var(--gold-faint);
}
.rate-table th {
  font-size: 9.5px; letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--gold); font-weight: 400;
}
.rate-table td {
  font-family: var(--display); font-size: 17px; color: var(--navy);
}
.rate-table td:first-child {
  font-family: var(--body); font-size: 12.5px; color: var(--ink);
}
.rate-table .footnote {
  font-size: 11px; color: var(--ink); opacity: 0.7;
  margin-top: 18px;
}

/* ---------- AMENITY GRID ---------- */
.amenities {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 36px 28px; margin-top: 56px;
}
.amenity {
  text-align: left;
  border-top: 1px solid var(--gold-faint);
  padding-top: 22px;
}
.amenity .ttl {
  font-family: var(--display); font-size: 18px;
  color: var(--navy); margin: 0 0 6px;
}
.amenity .desc {
  font-family: var(--body); font-size: 12px;
  line-height: 1.7; color: var(--ink); opacity: 0.78;
  margin: 0;
}
section.navy .amenity .ttl { color: var(--gold); }
section.navy .amenity .desc { color: var(--linen); opacity: 0.78; }
section.navy .amenity { border-top-color: var(--gold-faint); }

/* ---------- CONTACT ---------- */
.contact-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 80px; margin-top: 64px;
}
.contact-info .row {
  display: grid; grid-template-columns: 110px 1fr;
  gap: 22px; padding: 22px 0;
  border-bottom: 1px solid var(--gold-faint);
  align-items: start;
}
.contact-info .row .lbl {
  font-family: var(--body); font-size: 9.5px;
  letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--gold); padding-top: 4px; padding-left: 0.42em;
}
.contact-info .row .val {
  font-family: var(--display); font-size: 19px;
  line-height: 1.45; color: var(--navy);
}
.contact-info .row .val a { color: var(--navy); border-bottom: 1px solid var(--gold-faint); padding-bottom: 1px; transition: color .25s, border-color .25s; }
.contact-info .row .val a:hover { color: var(--gold); border-color: var(--gold); }
.contact-info .row .sub {
  font-family: var(--body); font-size: 12px;
  color: var(--ink); opacity: 0.7; margin-top: 6px;
}

.enquiry-form {
  background: var(--navy); color: var(--linen);
  padding: 56px 44px;
}
.enquiry-form .ttl {
  font-family: var(--display); font-size: 32px;
  margin: 0 0 8px; color: var(--gold);
}
.enquiry-form .sub {
  font-family: var(--body); font-size: 12.5px;
  opacity: 0.85; margin: 0 0 32px; line-height: 1.7;
}
.field {
  display: flex; flex-direction: column; gap: 8px;
  margin-bottom: 24px;
}
.field label {
  font-family: var(--body); font-size: 9.5px;
  letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--gold); padding-left: 0.42em;
}
.field input, .field select, .field textarea {
  background: transparent; border: none;
  border-bottom: 1px solid var(--gold-faint);
  color: var(--linen); padding: 10px 0;
  font-family: var(--body); font-size: 14px;
  outline: none;
  transition: border-color .3s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-bottom-color: var(--gold);
}
.field textarea { resize: vertical; min-height: 80px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.enquiry-form .submit {
  margin-top: 12px; padding: 16px 38px;
  background: var(--gold); color: var(--navy);
  border: none; cursor: pointer;
  font-family: var(--body); font-size: 10px;
  letter-spacing: 0.5em; text-transform: uppercase;
  border-radius: 999px;
  transition: background .3s, color .3s;
}
.enquiry-form .submit:hover { background: var(--linen); }

/* ---------- DARK CTA BAND ---------- */
.cta-band {
  position: relative; isolation: isolate;
  background: var(--navy); color: var(--linen);
  text-align: center; padding: 140px 48px;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url("assets/patterns/pattern.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.22;
  z-index: 0;
  pointer-events: none;
}
.cta-band::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(18,36,72,0) 0%, rgba(18,36,72,0.55) 75%, rgba(18,36,72,0.85) 100%);
  z-index: 0;
  pointer-events: none;
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band .heading { color: var(--linen); }
.cta-band .lede { color: var(--gold); }

/* ---------- FOOTER ---------- */
footer {
  background: var(--navy-deeper); color: var(--linen);
  padding: 96px 48px 36px;
}
.foot-wrap { max-width: 1280px; margin: 0 auto; }
.foot-top {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 56px; padding-bottom: 56px;
  border-bottom: 1px solid var(--gold-faint);
}
.foot-logo { color: var(--linen); }
.foot-logo-img {
  display: block;
  width: 280px; height: auto;
  object-fit: contain;
  margin: -12px 0 0 -14px; /* trim baked-in whitespace, optical align */
}
.foot-col h5 {
  font-family: var(--body); font-size: 11px;
  letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--gold); padding-left: 0.4em;
  margin: 0 0 22px; font-weight: 500;
}
.foot-col ul { list-style: none; padding: 0; margin: 0; }
.foot-col li {
  font-family: var(--body); font-size: 13.5px;
  line-height: 1.9; color: var(--linen);
  letter-spacing: 0.02em;
}
.foot-col li a { color: var(--linen); opacity: 0.82; transition: opacity .25s, color .25s; }
.foot-col li a:hover { opacity: 1; color: var(--gold); }
.foot-bottom {
  padding-top: 36px; display: flex;
  justify-content: space-between; align-items: center;
  font-family: var(--body); font-size: 11px;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold); padding-left: 0.32em;
  opacity: 0.95;
}
.foot-social { display: flex; gap: 18px; }
.foot-social a {
  width: 36px; height: 36px;
  border: 1px solid var(--gold-faint);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--gold);
  transition: background .3s, color .3s, border-color .3s;
}
.foot-social a:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.foot-social svg { width: 14px; height: 14px; fill: currentColor; }

/* ---------- SCROLL REVEAL ---------- */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 1s ease, transform 1s cubic-bezier(.2,.6,.2,1);
}
.reveal.in {
  opacity: 1; transform: translateY(0);
}

/* ---------- REVIEWS ---------- */
.reviews {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; margin-top: 56px;
}
.review {
  background: var(--linen); border: 1px solid var(--gold-faint);
  padding: 28px;
}
.review .stars {
  color: var(--gold); font-size: 14px; letter-spacing: 2px;
  margin-bottom: 14px;
}
.review .who {
  font-family: var(--display); font-size: 17px;
  color: var(--navy); margin-bottom: 4px;
}
.review .when {
  font-family: var(--body); font-size: 9.5px;
  letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--gold); padding-left: 0.42em;
}
.review .ttl {
  font-family: var(--display); font-size: 16px;
  color: var(--navy); margin: 18px 0 8px;
}
.review .body {
  font-family: var(--body); font-size: 12px;
  line-height: 1.7; color: var(--ink); opacity: 0.8;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  section { padding: 90px 32px; }
  .nav { padding: 18px 24px; }
  .nav-links { gap: 22px; font-size: 9.5px; }
  .villa-grid { grid-template-columns: 1fr; }
  .fac-grid { grid-template-columns: repeat(2, 1fr); }
  .signature { grid-template-columns: 1fr; gap: 48px; }
  .signature.reverse { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .foot-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .book-bar-inner { grid-template-columns: 1fr 1fr; gap: 16px; }
  .book-bar { padding: 18px 24px; }
}
@media (max-width: 720px) {
  .nav-right .lang { display: none; }
  .nav-inner { grid-template-columns: auto 1fr auto; }
  .burger {
    display: grid; place-items: center;
    width: 36px; height: 36px;
    border: 1px solid var(--gold-faint); border-radius: 50%;
    cursor: pointer;
    position: relative; z-index: 1001;
  }
  .burger span {
    display: block; width: 16px; height: 1px; background: var(--gold);
    box-shadow: 0 5px 0 var(--gold), 0 -5px 0 var(--gold);
    transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
  }
  .nav.menu-open .burger span {
    background: transparent;
    box-shadow: 0 0 0 var(--gold), 0 0 0 var(--gold);
  }
  .nav.menu-open .burger::before,
  .nav.menu-open .burger::after {
    content: ""; position: absolute;
    width: 16px; height: 1px; background: var(--gold);
  }
  .nav.menu-open .burger::before { transform: rotate(45deg); }
  .nav.menu-open .burger::after  { transform: rotate(-45deg); }

  /* Drop backdrop-filter when menu is open — it creates a containing
     block that traps fixed-positioned children inside the nav strip. */
  .nav.menu-open {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: transparent;
    border-bottom-color: transparent;
  }
  .nav-links {
    position: fixed; inset: 0;
    background: var(--navy);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 32px;
    font-family: var(--display, "Cormorant Garamond", Georgia, serif);
    font-size: 22px; letter-spacing: .32em; text-transform: uppercase;
    opacity: 0; visibility: hidden; pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .35s ease, transform .35s ease, visibility 0s linear .35s;
    z-index: 1000;
    margin: 0; padding: 0;
  }
  .nav-links a { color: var(--linen, #f5efe6); padding: 8px 0; }
  .nav-links a::after { display: none; }
  .nav-links a.active { color: var(--gold); }
  .nav.menu-open .nav-links {
    opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0);
    transition: opacity .35s ease, transform .35s ease, visibility 0s linear 0s;
  }
  body.menu-open { overflow: hidden; }
  section { padding: 72px 24px; }
  .heading { font-size: 32px; }
  .fac-grid, .reviews { grid-template-columns: 1fr; }
  .amenities { grid-template-columns: 1fr 1fr; }
  .foot-top { grid-template-columns: 1fr; }
  .foot-logo-img { width: 220px; height: auto; margin: 0 0 8px -10px; }
  .field-row { grid-template-columns: 1fr; }
  .hero h1 { font-size: 52px; }
  .page-hero { height: 60vh; min-height: 420px; }
  .book-bar { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .hero .bg, .page-hero .bg { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .villa-card .img { transition: none; }
}
