/* Corinthian Blue Retreat — landing styles */
:root {
  --blue: #1d4e6b;
  --blue-deep: #0f3a52;
  --blue-soft: #2f6f92;
  --gold: #b08d57;
  --gold-soft: #c9a978;
  --cream: #f7f3ec;
  --sand: #efe7d8;
  --ink: #243039;
  --muted: #5d6b73;
  --white: #ffffff;
  --maxw: 1180px;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 13px;
  padding: 14px 28px;
  border-radius: 2px;
  transition: all .25s ease;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn-book { background: var(--blue); color: #fff; }
.btn-book:hover { background: var(--blue-deep); transform: translateY(-1px); }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { background: var(--gold); color: #fff; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background .35s ease, box-shadow .35s ease, padding .35s ease;
  padding: 18px 0;
}
.site-header.scrolled {
  background: rgba(255,255,255,.97);
  box-shadow: 0 2px 24px rgba(0,0,0,.08);
  padding: 10px 0;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: flex; align-items: center; gap: 13px; color: #fff; }
.scrolled .brand { color: var(--ink); }
.brand-logo {
  height: 80px; width: auto; display: block; flex: none;
  filter: brightness(0) invert(1);
  transition: filter .35s ease;
}
.scrolled .brand-logo { filter: brightness(0); }
.brand-name {
  font-family: var(--serif); font-size: 19px; line-height: 1;
  letter-spacing: .06em; text-transform: uppercase;
}
.brand-name span { display: block; font-size: 11px; letter-spacing: .22em; opacity: .8; margin-top: 4px; font-family: var(--sans); }

.nav { display: flex; gap: 30px; }
.nav a {
  color: #fff; font-size: 14px; letter-spacing: .08em; text-transform: uppercase; position: relative; padding: 4px 0;
}
.scrolled .nav a { color: var(--ink); }
.nav a::after {
  content: ''; position: absolute; left: 0; bottom: -2px; width: 0; height: 1px; background: var(--gold); transition: width .25s ease;
}
.nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 16px; }

/* Language switcher */
.lang { position: relative; }
.lang-toggle {
  display: flex; align-items: center; gap: 7px; background: transparent; border: 0; color: #fff;
  font-family: var(--sans); font-size: 13px; letter-spacing: .06em; cursor: pointer; text-transform: uppercase;
}
.scrolled .lang-toggle { color: var(--ink); }
.lang-globe { font-size: 15px; }
.lang-toggle .caret { font-size: 10px; }
.lang-menu {
  position: absolute; right: 0; top: calc(100% + 12px); min-width: 150px; list-style: none;
  background: #fff; border-radius: 4px; box-shadow: 0 12px 40px rgba(0,0,0,.18);
  padding: 8px 0; opacity: 0; visibility: hidden; transform: translateY(-6px); transition: all .2s ease;
}
.lang.open .lang-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-menu li { padding: 9px 18px; font-size: 14px; color: var(--ink); cursor: pointer; transition: background .15s; }
.lang-menu li:hover { background: var(--sand); }
.lang-menu li.active { color: var(--blue); font-weight: 500; }

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.burger span { width: 24px; height: 2px; background: #fff; transition: .3s; }
.scrolled .burger span { background: var(--ink); }

/* ---------- Hero ---------- */
.hero { position: relative; height: 100vh; min-height: 600px; display: flex; align-items: center; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  transform: scale(1.05); animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,40,60,.45) 0%, rgba(15,40,60,.25) 40%, rgba(15,40,60,.55) 100%); }
.hero-content { position: relative; color: #fff; text-align: center; margin: 0 auto; }
.hero-eyebrow { letter-spacing: .35em; text-transform: uppercase; font-size: 13px; margin-bottom: 18px; opacity: .9; }
.hero-title { font-family: var(--serif); font-weight: 500; font-size: clamp(44px, 8vw, 92px); line-height: 1.02; letter-spacing: .02em; }
.hero-title em { font-style: italic; color: var(--gold-soft); }
.hero-sub { font-size: clamp(16px, 2.2vw, 21px); font-weight: 300; max-width: 620px; margin: 22px auto 34px; opacity: .95; }
.hero-scroll { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); color: #fff; font-size: 22px; animation: bob 2s infinite; }
@keyframes bob { 0%,100% { transform: translate(-50%,0);} 50% { transform: translate(-50%,8px);} }

/* ---------- Sections ---------- */
.section { padding: 96px 0; }
.section-title { font-family: var(--serif); font-weight: 500; font-size: clamp(30px, 4.4vw, 46px); line-height: 1.12; color: var(--ink); }
.eyebrow { letter-spacing: .28em; text-transform: uppercase; font-size: 12px; color: var(--gold); margin-bottom: 14px; font-weight: 500; }
.section-head.center { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-lead { color: var(--muted); font-size: 18px; margin-top: 16px; }

/* About */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-text p { color: var(--muted); margin-top: 18px; font-size: 17px; }
.about-text .section-title { margin-top: 6px; }
.about-media img { border-radius: 4px; box-shadow: 0 30px 60px rgba(20,40,55,.18); height: 540px; width: 100%; object-fit: cover; }

/* Booking options */
/* Villa CTA */
.villa-cta {
  position: relative;
  background: var(--blue-deep);
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.villa-cta-bg {
  position: absolute; inset: 0;
  background: url('../img/villa-view.jpg') center / cover no-repeat;
  opacity: .18;
}
.villa-cta-inner {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.villa-cta .eyebrow { color: var(--gold-soft); letter-spacing: .18em; }
.villa-cta .section-title { color: #fff; font-size: clamp(32px, 5vw, 54px); }
.villa-cta-desc { font-size: 17px; line-height: 1.75; opacity: .88; max-width: 620px; }
.villacta-tags {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 28px;
  list-style: none; padding: 0; font-size: 14px; letter-spacing: .06em; opacity: .8;
  text-transform: uppercase;
}
.villacta-tags li { display: flex; align-items: center; gap: 10px; }
.villacta-tags li::before { content: ''; display: inline-block; width: 4px; height: 4px; border-radius: 50%; background: currentColor; opacity: .55; flex: none; }
.villa-cta-btn {
  background: var(--gold); color: #fff;
  padding: 17px 54px; font-size: 14px; letter-spacing: .1em;
  margin-top: 6px; border-radius: 2px;
}
.villa-cta-btn:hover { background: var(--gold-soft); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.25); }

/* Pool access badge inside option cards */
.opt-pool-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 500; color: var(--blue);
  background: rgba(29,78,107,.08); border-radius: 20px;
  padding: 6px 14px; margin-top: 12px; align-self: flex-start;
}

.options-head { text-align: center; max-width: 700px; margin: 0 auto 36px; }
.options-title { font-family: var(--serif); font-weight: 500; font-size: clamp(26px, 3.4vw, 36px); line-height: 1.15; }
.options-sub { color: var(--muted); font-size: 17px; margin-top: 10px; }
.options { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-bottom: 72px; }
.option-card { background: #fff; border-radius: 4px; overflow: hidden; box-shadow: 0 14px 40px rgba(20,40,55,.1); display: flex; flex-direction: column; }
.option-img { position: relative; height: 320px; overflow: hidden; }
.option-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.option-card:hover .option-img img { transform: scale(1.05); }

/* ---------- Option card slider ---------- */
.option-slider { cursor: default; }
.option-slider .slider-track { display: flex; width: 100%; height: 100%; transition: transform .45s cubic-bezier(.4,0,.2,1); will-change: transform; }
.option-slider .slider-track img { flex: 0 0 100%; min-width: 100%; height: 100%; object-fit: cover; transition: none; }
.option-card:hover .option-slider .slider-track img { transform: none; }
.slider-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(15,40,60,.48); color: #fff; border: none; cursor: pointer;
  width: 42px; height: 42px; border-radius: 50%; font-size: 26px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  opacity: 1; transition: background .2s ease, transform .15s ease;
  z-index: 3; backdrop-filter: blur(4px);
}
.slider-btn:hover { background: rgba(15,40,60,.85); transform: translateY(-50%) scale(1.08); }
.slider-btn:active { transform: translateY(-50%) scale(.96); }
.slider-prev { left: 12px; }
.slider-next { right: 12px; }
.slider-counter {
  position: absolute; bottom: 14px; right: 14px;
  background: rgba(15,40,60,.55); color: #fff;
  font-family: var(--sans); font-size: 12px; font-weight: 500; letter-spacing: .06em;
  padding: 3px 10px; border-radius: 20px; z-index: 3;
  backdrop-filter: blur(4px); pointer-events: none;
}
/* keep dots hidden — replaced by counter */
.slider-dots { display: none; }
.option-size { position: absolute; bottom: 16px; left: 16px; background: rgba(15,40,60,.88); color: #fff; font-family: var(--serif); font-size: 21px; padding: 5px 16px; border-radius: 2px; letter-spacing: .04em; }
.option-body { padding: 26px 32px 30px; flex: 1; display: flex; flex-direction: column; }
.option-body h3 { font-family: var(--serif); font-size: 29px; font-weight: 500; }
.option-body > p { color: var(--muted); margin-top: 10px; font-size: 16px; }
.beds-toggle {
  margin-top: auto; width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 10px;
  background: transparent; border: 0; border-top: 1px solid var(--sand); padding: 18px 0 0; cursor: pointer;
  font-family: var(--sans); text-transform: uppercase; letter-spacing: .14em; font-size: 12px; font-weight: 600; color: var(--gold);
  transition: color .2s ease;
}
.beds-toggle:hover { color: var(--blue); }
.beds-caret { font-size: 14px; transition: transform .3s ease; }
.beds-toggle[aria-expanded="true"] .beds-caret { transform: rotate(180deg); }
.beds-panel { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.beds-panel.open { max-height: 360px; }
.bed-list { list-style: none; padding-top: 4px; }
.bed-list li { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; padding: 11px 0; border-bottom: 1px solid var(--sand); font-size: 15.5px; color: var(--muted); }
.bed-list li:last-child { border-bottom: 0; }
.bed-list li b { font-weight: 500; color: var(--ink); text-align: right; }

/* Cards */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.card { background: #fff; border-radius: 4px; overflow: hidden; box-shadow: 0 14px 40px rgba(20,40,55,.08); transition: transform .3s ease, box-shadow .3s ease; }
.card:hover { transform: translateY(-6px); box-shadow: 0 22px 50px rgba(20,40,55,.16); }
.card-img { height: 250px; overflow: hidden; }
.card-img img { height: 100%; width: 100%; object-fit: cover; transition: transform .6s ease; }
.card:hover .card-img img { transform: scale(1.07); }
.card-body { padding: 26px 26px 30px; }
.card-body h3 { font-family: var(--serif); font-size: 25px; font-weight: 500; margin-bottom: 8px; }
.card-body p { color: var(--muted); font-size: 15.5px; }

/* Features */
.features { background: var(--sand); }
.feature-grid { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; max-width: 920px; margin: 0 auto; }
.feature-grid li { display: flex; align-items: center; gap: 16px; font-size: 17px; color: var(--ink); }
.feat-ico { width: 54px; height: 54px; flex: none; display: grid; place-items: center; background: #fff; border-radius: 50%; font-size: 22px; box-shadow: 0 8px 20px rgba(20,40,55,.08); }

/* Gallery */
.gallery-filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 38px; }
.gallery-filters button {
  font-family: var(--sans); font-size: 13px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--muted); background: transparent; border: 1px solid #d9cfbd; padding: 9px 20px;
  border-radius: 40px; cursor: pointer; transition: all .25s ease;
}
.gallery-filters button:hover { color: var(--ink); border-color: var(--gold); }
.gallery-filters button.active { background: var(--blue); border-color: var(--blue); color: #fff; }

.gallery-just { display: flex; flex-wrap: wrap; gap: 12px; opacity: 0; transition: opacity .5s ease; }
.gallery-just.ready { opacity: 1; }
.gallery-just figure {
  flex: 0 0 auto; margin: 0; position: relative; overflow: hidden; border-radius: 4px; cursor: pointer;
  animation: figIn .5s ease both;
}

/* Mobile: fixed 2-column grid, override JS inline sizes */
@media (max-width: 639px) {
  .gallery-just {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }
  .gallery-just figure {
    width: auto !important;
    height: 150px !important;
  }
}
@keyframes figIn { from { opacity: 0; transform: scale(.96); } to { opacity: 1; transform: scale(1); } }
.gallery-just img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .65s ease; }
.gallery-just figure::before { content: ''; position: absolute; inset: 0; background: rgba(15,40,60,.28); opacity: 0; transition: opacity .3s ease; z-index: 1; }
.gallery-just figure:hover::before { opacity: 1; }
.gallery-just figure:hover img { transform: scale(1.08); }
.g-ico {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%) scale(.7);
  width: 48px; height: 48px; border: 1.5px solid rgba(255,255,255,.9); border-radius: 50%;
  display: grid; place-items: center; color: #fff; font-size: 26px; font-weight: 300; line-height: 1;
  opacity: 0; transition: all .3s ease; z-index: 2; pointer-events: none;
}
.gallery-just figure:hover .g-ico { opacity: 1; transform: translate(-50%,-50%) scale(1); }

/* Location */
.location { background: #fff; }
/* Location header: text + map side by side */
.location-header { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; margin-bottom: 64px; }
.location-map { height: 420px; border-radius: 6px; overflow: hidden; box-shadow: 0 20px 50px rgba(20,40,55,.16); }
.location-map iframe { width: 100%; height: 100%; border: 0; }

/* Location sub-section heading */
.loc-section-head { margin: 0 0 28px; }
.loc-section-head .eyebrow { font-size: 11px; }

/* Location photo cards grid */
.loc-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 56px; }
.loc-cards--beaches { grid-template-columns: repeat(3, 1fr); }
.loc-card { background: #fff; border-radius: 6px; overflow: hidden; box-shadow: 0 8px 28px rgba(20,40,55,.09); display: flex; flex-direction: column; }
.loc-card-img { height: 170px; overflow: hidden; }
.loc-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.loc-card:hover .loc-card-img img { transform: scale(1.06); }
.loc-card-body { padding: 14px 16px 18px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.loc-time { font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); }
.loc-card-body h4 { font-family: var(--serif); font-size: 16px; font-weight: 500; line-height: 1.3; color: var(--ink); }
.loc-card-body p { font-size: 13px; color: var(--muted); line-height: 1.55; margin-top: 2px; }

/* Contact */
.contact { background: var(--blue-deep); color: #fff; }
.eyebrow.light { color: var(--gold-soft); }
.section-title.light, .section-lead.light { color: #fff; }
.section-lead.light { opacity: .85; }
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: 920px; margin: 0 auto; }
.contact-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-radius: 6px;
  padding: 32px 24px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 7px; transition: background .25s;
}
a.contact-card:hover { background: rgba(255,255,255,.12); }
.contact-ico { font-size: 26px; color: var(--gold-soft); margin-bottom: 6px; }
.contact-label { text-transform: uppercase; letter-spacing: .16em; font-size: 12px; opacity: .7; }
.contact-val { font-size: 17px; }
.contact-cta { text-align: center; margin-top: 44px; }
.contact-cta .btn-book { background: var(--gold); padding: 16px 40px; font-size: 14px; }
.contact-cta .btn-book:hover { background: var(--gold-soft); }

/* Footer */
.site-footer { background: #0c2c3f; color: rgba(255,255,255,.7); padding: 30px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-logo { height: 44px; width: auto; filter: brightness(0) invert(1); opacity: .85; }
.footer-rights { font-size: 13px; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 100; background: rgba(10,22,30,.94);
  display: none; align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lb-img { max-width: 90vw; max-height: 88vh; border-radius: 4px; box-shadow: 0 20px 80px rgba(0,0,0,.6); }
.lb-close { position: absolute; top: 22px; right: 30px; background: none; border: 0; color: #fff; font-size: 40px; line-height: 1; cursor: pointer; opacity: .85; }
.lb-close:hover { opacity: 1; }
.lb-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.1); border: 0; color: #fff; font-size: 30px; width: 56px; height: 56px; border-radius: 50%; cursor: pointer; transition: background .2s; }
.lb-nav:hover { background: rgba(255,255,255,.22); }
.lb-prev { left: 24px; } .lb-next { right: 24px; }

/* ---------- Booking modal ---------- */
.bmodal {
  display: none; position: fixed; inset: 0; z-index: 200;
  align-items: center; justify-content: center; padding: 16px;
}
.bmodal.open { display: flex; }
.bmodal-overlay {
  position: absolute; inset: 0;
  background: rgba(10, 22, 30, .7);
  backdrop-filter: blur(3px);
}
.bmodal-dialog {
  position: relative; z-index: 1;
  background: #fff; border-radius: 6px;
  width: 100%; max-width: 580px;
  max-height: 92vh; overflow-y: auto;
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
  animation: bmodalIn .22s ease;
}
@keyframes bmodalIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.bmodal-close {
  position: absolute; top: 16px; right: 20px;
  background: none; border: 0; font-size: 26px; line-height: 1;
  color: var(--muted); cursor: pointer; padding: 4px 6px;
  transition: color .15s;
}
.bmodal-close:hover { color: var(--ink); }
.bmodal-body { padding: 44px 44px 40px; }
.bmodal-title {
  font-family: var(--serif); font-size: 30px; font-weight: 500;
  line-height: 1.15; margin-top: 8px; margin-bottom: 28px; color: var(--ink);
}
.bmodal-label {
  display: block; font-size: 11px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 8px;
}
.bmodal-field { display: flex; flex-direction: column; margin-bottom: 20px; }
.bmodal-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.bmodal-input {
  width: 100%; padding: 11px 14px; font-family: var(--sans); font-size: 15px;
  color: var(--ink); background: var(--cream); border: 1px solid #d8d0c5;
  border-radius: 3px; transition: border-color .2s;
  -webkit-appearance: none;
}
.bmodal-input:focus { outline: none; border-color: var(--blue); background: #fff; }
.bmodal-textarea { resize: vertical; min-height: 82px; }
.bprop-group { display: flex; gap: 8px; flex-wrap: wrap; }
.bprop-btn {
  flex: 1; min-width: 120px; padding: 10px 12px;
  font-family: var(--sans); font-size: 13px; letter-spacing: .04em;
  color: var(--muted); background: var(--cream); border: 1px solid #d8d0c5;
  border-radius: 3px; cursor: pointer; transition: all .18s; text-align: center;
}
.bprop-btn:hover { border-color: var(--blue); color: var(--blue); }
.bprop-btn.active {
  background: var(--blue); border-color: var(--blue);
  color: #fff; font-weight: 500;
}
.bmodal-error {
  font-size: 13px; color: #c0392b;
  background: rgba(192,57,43,.07); border-radius: 3px;
  padding: 10px 14px; margin-bottom: 16px;
}
.bmodal-submit {
  width: 100%; background: var(--blue); color: #fff;
  padding: 15px; font-size: 13px; letter-spacing: .1em;
  text-transform: uppercase; border: 0; cursor: pointer; border-radius: 3px;
  transition: background .2s, transform .15s;
}
.bmodal-submit:hover { background: var(--blue-soft); transform: translateY(-1px); }
/* Success state */
.bmodal-success { text-align: center; }
.bmodal-check {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--blue); color: #fff; font-size: 28px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
}
.bmodal-success-text { color: var(--muted); font-size: 16px; margin-bottom: 32px; line-height: 1.7; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .options { grid-template-columns: 1fr; }
  .about-grid, .location-header { grid-template-columns: 1fr; gap: 36px; }
  .about-media { order: -1; }
  .about-media img { height: 360px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .loc-cards { grid-template-columns: repeat(2, 1fr); }
  .loc-cards--beaches { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .section { padding: 64px 0; }
  .villa-cta-desc { font-size: 16px; }
  .villacta-tags { gap: 8px 16px; font-size: 13px; }
  .villa-cta-btn { padding: 15px 36px; }
  .bmodal-body { padding: 36px 24px 32px; }
  .bmodal-row { grid-template-columns: 1fr; }
  .bprop-btn { min-width: unset; }
  .nav { position: fixed; inset: 0 0 0 auto; width: 78%; max-width: 320px; background: #fff; flex-direction: column; padding: 100px 32px; gap: 8px; transform: translateX(100%); transition: transform .3s ease; box-shadow: -10px 0 40px rgba(0,0,0,.2); }
  .nav.open { transform: translateX(0); }
  .nav a { color: var(--ink); font-size: 17px; padding: 12px 0; border-bottom: 1px solid var(--sand); }
  .burger { display: flex; }
  .header-actions .btn-book { display: none; }
  .contact-cards { grid-template-columns: 1fr; }

  /* Compact header so brand and actions never collide */
  .site-header .container { padding: 0 16px; }
  .header-inner { gap: 12px; flex-wrap: nowrap; }
  .brand { gap: 9px; min-width: 0; }
  .brand-logo { height: 52px; }
  .brand-name { font-size: 16px; }
  .brand-name span { font-size: 9px; letter-spacing: .18em; margin-top: 3px; }
  .header-actions { gap: 10px; flex: none; }
}
@media (max-width: 520px) {
  .cards { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .loc-cards, .loc-cards--beaches { grid-template-columns: 1fr; }
  .header-inner { gap: 10px; }
  .brand { gap: 8px; }
  .brand-logo { height: 44px; }
  .brand-name { font-size: 14px; }
  .header-actions { gap: 8px; }
  .lang-toggle { gap: 5px; }
  .lang-toggle .caret { display: none; }
}
