/* ═══════════════════════════════════════════════════════════
   PRIVATE ESTATE — SIERRA BLANCA, MARBELLA
   css/style.css — Main stylesheet
   
   TO CHANGE COLOURS: edit the :root variables below.
   TO CHANGE FONTS: edit --serif and --sans variables.
   ═══════════════════════════════════════════════════════════ */

/* ─── COLOUR TOKENS ─────────────────────────────────────────
   Change any colour here and it updates across the whole site.
   ─────────────────────────────────────────────────────────── */
:root {
  --black:  #07070A;    /* Page background (darkest) */
  --graph:  #101013;    /* Slightly lighter dark — nav, footer */
  --stone:  #18181C;    /* Section backgrounds dark */
  --stone2: #1E1E22;    /* Amenity card hover */
  --gold:   #C8A96A;    /* ← PRIMARY ACCENT — change this to change the gold tone */
  --goldf:  rgba(200,169,106,.22);  /* Gold faint — borders, dividers */
  --goldl:  rgba(200,169,106,.16);  /* Gold lines — subtle separators */
  --ivory:  #F5F2EB;    /* Light section background */
  --cream:  #EEEAE0;    /* Location section background */
  --ww:     #F8F6F2;    /* Warm white — main text on dark */
  --gl:     #D5D0C4;    /* Grey light — borders on light sections */
  --gb:     #42403A;    /* Body text on light backgrounds */
  --gm:     #9A9590;    /* Secondary text on dark */
  --gm2:    #B8B3AC;    /* Brighter secondary — captions, labels */
  --gd:     #383430;    /* Dim grey — form borders, legal text */

  /* ─── FONTS ─────────────────────────────────────────────────
     To change: replace with any Google Fonts import in index.html
     ─────────────────────────────────────────────────────────── */
  --serif:  'Cormorant Garamond', Georgia, serif;
  --sans:   'Jost', system-ui, sans-serif;
  --arabic: 'Noto Naskh Arabic', serif;

  --ease:   cubic-bezier(.4,0,.2,1);
}

/* ─── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-weight: 300;
  background: var(--black);
  color: var(--ww);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ─── ARABIC / RTL ───────────────────────────────────────── */
body.ar { direction: rtl; }
body.ar .t-hero, body.ar .t-heading, body.ar .stmt-q,
body.ar .am-name, body.ar .form-title, body.ar .ok-title {
  font-family: var(--arabic); font-weight: 400; letter-spacing: 0;
}
body.ar .t-body, body.ar .am-desc, body.ar .lp-tx,
body.ar .form-note, body.ar .ft-legal {
  font-family: var(--arabic); letter-spacing: .04em;
}
body.ar .t-label { font-family: var(--arabic); letter-spacing: .04em; text-transform: none; }
body.ar .btn, body.ar .btn-submit, body.ar .tog {
  font-family: var(--arabic); letter-spacing: 0; font-size: 16px;
}
body.ar .nav-wm { font-family: var(--arabic); letter-spacing: 0; font-size: 16px; }
body.ar .fg label { font-family: var(--arabic); letter-spacing: 0; font-size: 14px; text-transform: none; }
body.ar .fg input, body.ar .fg select, body.ar .fg textarea { font-family: var(--arabic); }
body.ar .form-subtitle { font-family: var(--arabic); letter-spacing: 0; }
body.ar .div-quote, body.ar .pool-quote {
  font-family: var(--arabic); font-style: normal;
  border-left: none; border-right: 2px solid var(--gold);
  padding-left: 0; padding-right: 20px;
}
body.ar .ic { right: 16px; left: auto; }
body.ar .gal-lbl { right: 12px; left: auto; }
body.ar .rule:not(.rc) { margin-right: 0; }
body.ar .fg select { background-position: left 4px center; }
body.ar .contact-email-v { direction: ltr; text-align: center; font-family: var(--sans); }

/* ─── TYPOGRAPHY SCALE ────────────────────────────────────── */
.t-hero {
  font-family: var(--serif); font-weight: 300;
  font-size: 40px; line-height: 1.1; letter-spacing: .01em;
}
.t-heading {
  font-family: var(--serif); font-weight: 300;
  font-size: 32px; line-height: 1.18; letter-spacing: .01em;
}
.t-body {
  font-family: var(--sans); font-weight: 300;
  font-size: 18px; line-height: 1.82;
}
.t-label {
  font-family: var(--sans); font-weight: 400;
  font-size: 12px; letter-spacing: .26em; text-transform: uppercase;
}
.t-stat {
  font-family: var(--serif); font-weight: 300;
  font-size: 38px; line-height: 1;
}
.ic {
  font-family: var(--sans); font-weight: 400;
  font-size: 12px; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(248,246,242,.65);
}

/* ─── NAVIGATION ─────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 18px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  transition: background .5s, padding .4s;
}
nav.s {
  background: rgba(7,7,10,.96);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  padding-top: 13px; padding-bottom: 13px;
  border-bottom: 1px solid var(--goldl);
}
.nav-wm {
  font-family: var(--serif); font-weight: 300; font-size: 13px;
  letter-spacing: .16em; text-transform: uppercase; color: var(--ww); white-space: nowrap;
}
.nav-r { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-langs { display: none; gap: 2px; }
.lb {
  background: none; border: none; padding: 8px 9px; min-height: 44px;
  font-family: var(--sans); font-size: 12px; font-weight: 400;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--gm); cursor: pointer; transition: color .3s;
  -webkit-tap-highlight-color: transparent;
}
.lb.on, .lb:hover { color: var(--gold); }
.nav-cta {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--sans); font-size: 11px; font-weight: 400;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold); border: 1px solid var(--goldf);
  padding: 0 18px; min-height: 44px;
  transition: background .4s var(--ease), color .4s, border-color .4s;
  white-space: nowrap; -webkit-tap-highlight-color: transparent;
}
.nav-cta:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }

/* ─── SHARED UTILITIES ───────────────────────────────────── */
.sec { padding: 64px 24px; }
.eyebrow { color: var(--gold); margin-bottom: 14px; display: block; }
.rule { width: 28px; height: 1px; background: var(--goldf); margin-bottom: 28px; }
.rc { margin-left: auto; margin-right: auto; }
.sp { height: 20px; }

/* ─── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--sans); font-size: 12px; font-weight: 400;
  letter-spacing: .2em; text-transform: uppercase;
  min-height: 54px; padding: 0 32px; border: 1px solid;
  transition: background .4s, color .4s, border-color .4s;
  -webkit-tap-highlight-color: transparent; white-space: nowrap;
}
.bg  { color: var(--gold);  border-color: var(--goldf); }
.bg:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }
.bw  { color: var(--ww);   border-color: rgba(255,255,255,.28); }
.bw:hover { border-color: var(--ww); }
.bfw { width: 100%; }

/* ─── HERO ─────────────────────────────────────────────────
   Background image set in index.html as inline style.
   To change hero photo: update src of .hero-bg img.
   ─────────────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  padding: 100px 24px 80px; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 40%;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,7,10,.46) 0%, rgba(7,7,10,.14) 42%, rgba(7,7,10,.82) 100%);
}
.hero-in {
  position: relative; z-index: 2;
  text-align: center; max-width: 800px; width: 100%;
}
.h-eye { color: var(--gold); margin-bottom: 18px; display: block; }
.h-rule { width: 28px; height: 1px; background: var(--goldf); margin: 0 auto 22px; }
.h-title { color: var(--ww); margin-bottom: 26px; }
.h-specs { color: var(--gm2); margin-bottom: 44px; }
.h-specs-list {
  display: flex; flex-direction: column; gap: 10px; align-items: center;
  font-family: var(--sans); font-weight: 400; font-size: 13px;
  letter-spacing: .18em; text-transform: uppercase;
}
.hs { display: none; color: var(--gd); }
.scroll-ind {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px; z-index: 2;
}
.s-line {
  width: 1px; height: 38px;
  background: linear-gradient(180deg, transparent, var(--goldf));
  animation: bob 2.2s ease-in-out infinite;
}
@keyframes bob { 0%, 100% { opacity: .3; } 50% { opacity: .9; } }
.s-lbl { font-size: 10px; letter-spacing: .3em; text-transform: uppercase; color: var(--gd); font-family: var(--sans); }

/* ─── FACTS BAR ──────────────────────────────────────────── */
.facts-bar {
  background: var(--stone);
  border-top: 1px solid var(--goldl); border-bottom: 1px solid var(--goldl);
  padding: 28px 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
}
.fact { padding: 16px; border-right: 1px solid var(--goldl); border-bottom: 1px solid var(--goldl); text-align: center; }
.fact:nth-child(2n) { border-right: none; }
.fact:nth-child(3), .fact:nth-child(4) { border-bottom: none; }
.fact-n { font-family: var(--serif); font-weight: 300; font-size: 38px; line-height: 1; color: var(--ww); margin-bottom: 7px; }
.fact-l { font-family: var(--sans); font-weight: 400; font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--gm2); }
body.ar .fact-l { letter-spacing: .04em; font-family: var(--arabic); }

/* ─── STATEMENT ──────────────────────────────────────────── */
.s-stmt { background: var(--ivory); padding: 64px 24px; text-align: center; }
.stmt-q {
  font-family: var(--serif); font-weight: 300; font-style: italic;
  font-size: 22px; line-height: 1.58; color: #28241F;
  max-width: 680px; margin: 0 auto 16px;
}
body.ar .stmt-q { font-style: normal; font-family: var(--arabic); }
.stmt-s { font-size: 13px; letter-spacing: .22em; text-transform: uppercase; color: var(--gb); font-family: var(--sans); font-weight: 400; }
body.ar .stmt-s { letter-spacing: .04em; font-family: var(--arabic); }

/* ─── CONTENT BLOCKS ─────────────────────────────────────────
   Colour variants for sections
   ─────────────────────────────────────────────────────────── */
.block       { background: var(--ww); }
.block-dark  { background: var(--graph); }
.block-stone { background: var(--stone); }
.block-cream { background: var(--cream); }

.block-photo { width: 100%; line-height: 0; position: relative; overflow: hidden; }
.block-photo img {
  width: 100%; height: 64vw; min-height: 240px; max-height: 460px;
  object-fit: cover; display: block;
}
.block-text { padding: 48px 24px; }
.block-text h2 { margin-bottom: 20px; }
.block-text .t-body { margin-bottom: 15px; }

/* Text colours per block type */
.block-dark  .block-text h2, .block-stone .block-text h2 { color: var(--ww); }
.block-dark  .block-text .t-body, .block-stone .block-text .t-body { color: var(--gm2); }
.block-cream .block-text h2 { color: #28241F; }
.block-cream .block-text .t-body { color: var(--gb); }
.block       .block-text h2 { color: #28241F; }
.block       .block-text .t-body { color: var(--gb); }

/* ─── FULL-BLEED DIVIDERS ────────────────────────────────── */
.divider { position: relative; overflow: hidden; line-height: 0; }
.divider img {
  width: 100%; height: 52vw; min-height: 240px; max-height: 480px;
  object-fit: cover; display: block;
}
.divider-ov {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(7,7,10,.74) 0%, rgba(7,7,10,.08) 52%);
  display: flex; align-items: flex-end; padding: 28px 24px;
}
.div-quote, .pool-quote {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: 20px; line-height: 1.5; color: rgba(248,246,242,.9);
  max-width: 540px; border-left: 2px solid var(--gold); padding-left: 18px;
}

/* ─── SUITE STRIP ────────────────────────────────────────── */
.suite-strip { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; background: var(--stone); }
.suite-strip img { width: 100%; height: 44vw; max-height: 280px; object-fit: cover; display: block; }

/* ─── AMENITIES ──────────────────────────────────────────── */
.s-am { background: var(--graph); padding: 64px 24px; }
.am-hdr { text-align: center; margin-bottom: 44px; }
.am-hdr h2 { color: var(--ww); }
.am-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 1px; background: var(--goldl); border: 1px solid var(--goldl);
}
.ac { background: var(--graph); padding: 32px 24px; transition: background .4s; }
.ac:hover { background: var(--stone2); }
.ac-bar { width: 28px; height: 1px; background: var(--goldf); margin-bottom: 18px; transition: width .4s, background .4s; }
.ac:hover .ac-bar { width: 44px; background: var(--gold); }
.am-name { font-family: var(--serif); font-weight: 300; font-size: 22px; line-height: 1.2; color: var(--ww); margin-bottom: 11px; }
body.ar .am-name { font-family: var(--arabic); font-weight: 400; font-size: 20px; }
.am-desc { font-size: 15px; font-weight: 300; line-height: 1.75; color: var(--gm2); }
body.ar .am-desc { font-family: var(--arabic); font-size: 16px; line-height: 1.9; }
.am-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; margin-top: 3px; }
.am-photos img { width: 100%; height: 44vw; max-height: 260px; object-fit: cover; display: block; }

/* ─── GALLERY ─────────────────────────────────────────────── */
.s-gal { background: var(--stone); padding: 0; }
.gal-hd { padding: 64px 24px 28px; }
.gal-hd h2 { color: var(--ww); }
.gal-note { font-size: 13px; font-weight: 300; letter-spacing: .12em; text-transform: uppercase; color: var(--gm2); margin-top: 10px; }
body.ar .gal-note { letter-spacing: .04em; }
.gal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; }
.gi { position: relative; overflow: hidden; line-height: 0; }
.gi img { width: 100%; height: 44vw; max-height: 280px; object-fit: cover; display: block; transition: transform .7s var(--ease); }
.gi:hover img { transform: scale(1.04); }
.gi.full { grid-column: 1 / 3; }
.gi.full img { height: 54vw; max-height: 360px; }
.gal-lbl {
  position: absolute; bottom: 10px; left: 12px;
  font-family: var(--sans); font-weight: 400; font-size: 11px;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(248,246,242,.6); background: rgba(7,7,10,.3);
  padding: 3px 7px; line-height: 1.4;
}

/* ─── LOCATION ────────────────────────────────────────────── */
.loc-pts {
  border-top: 1px solid var(--gl); padding-top: 24px; margin-top: 26px;
  display: flex; flex-direction: column; gap: 13px;
}
.lp { display: flex; align-items: flex-start; gap: 13px; }
.lp-ln { flex-shrink: 0; width: 16px; height: 1px; background: var(--goldf); margin-top: 11px; }
.lp-tx { font-size: 16px; font-weight: 300; line-height: 1.65; color: var(--gb); }
body.ar .lp-tx { font-family: var(--arabic); font-size: 17px; line-height: 1.82; }

/* ─── PRIVATE OFFERING ───────────────────────────────────── */
.s-off { background: var(--graph); padding: 64px 24px; }
.off-inner { max-width: 660px; margin: 0 auto; text-align: center; }
.off-inner h2 { color: var(--ww); margin-bottom: 24px; }
.off-body { color: var(--gm2); margin-bottom: 14px; }
.off-vr { width: 1px; height: 44px; background: var(--goldl); margin: 32px auto; }
.off-qual { font-size: 13px; letter-spacing: .2em; text-transform: uppercase; color: var(--gd); margin-bottom: 32px; font-weight: 400; }
body.ar .off-qual { letter-spacing: .04em; font-family: var(--arabic); }
.btn-grp { display: flex; flex-direction: column; gap: 11px; align-items: stretch; }

/* ─── CONTACT & FORM ─────────────────────────────────────── */
.s-con { background: var(--black); padding: 64px 24px; }
.con-intro { margin-bottom: 44px; }
.con-intro h2 { color: var(--ww); margin-bottom: 20px; }
.con-intro .t-body { color: var(--gm2); margin-bottom: 14px; }
.email-block { border-top: 1px solid var(--goldl); padding-top: 20px; margin-top: 26px; }
.email-lbl { color: var(--gold); margin-bottom: 7px; display: block; }
.contact-email-v { font-family: var(--serif); font-size: 19px; font-weight: 300; color: var(--ww); word-break: break-all; display: block; }

/* Form box */
.form-box { background: var(--stone); border: 1px solid var(--goldl); padding: 32px 22px; margin-top: 36px; }
.form-title { font-family: var(--serif); font-size: 24px; font-weight: 300; color: var(--ww); margin-bottom: 6px; }
.form-subtitle { font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--gm2); margin-bottom: 30px; }
.fg { margin-bottom: 24px; }
.fg label { display: block; font-size: 11px; font-weight: 400; letter-spacing: .22em; text-transform: uppercase; color: var(--gm2); margin-bottom: 9px; }
.fg input, .fg select, .fg textarea {
  width: 100%; background: transparent; border: none;
  border-bottom: 1px solid var(--gd);
  color: var(--ww); font-family: var(--sans);
  font-size: 16px; /* 16px prevents iOS auto-zoom */
  font-weight: 300; padding: 10px 0; outline: none;
  transition: border-color .3s;
  -webkit-appearance: none; appearance: none; border-radius: 0;
}
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--gold); }
.fg input::placeholder, .fg textarea::placeholder { color: var(--gd); font-size: 14px; }
.fg select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%239A9590' stroke-width='1' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
}
body.ar .fg select { background-position: left 4px center; }
.fg select option { background: var(--stone); color: var(--ww); }
.fg textarea { resize: none; height: 88px; }
.tog-row { display: flex; gap: 10px; }
.tog {
  flex: 1; height: 50px;
  font-family: var(--sans); font-size: 12px; font-weight: 400;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--gm2); background: transparent; border: 1px solid var(--gd);
  transition: border-color .3s, color .3s; -webkit-tap-highlight-color: transparent;
}
.tog.on { border-color: var(--gold); color: var(--gold); }
body.ar .tog { font-family: var(--arabic); letter-spacing: .04em; font-size: 15px; }
.btn-submit {
  width: 100%; height: 54px; background: transparent;
  border: 1px solid var(--goldf); color: var(--gold);
  font-family: var(--sans); font-size: 12px; font-weight: 400;
  letter-spacing: .2em; text-transform: uppercase;
  transition: background .4s, color .4s, border-color .4s;
  -webkit-tap-highlight-color: transparent; border-radius: 0; margin-top: 6px;
}
body.ar .btn-submit { font-family: var(--arabic); letter-spacing: 0; font-size: 16px; }
.btn-submit:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }
.form-note { font-size: 12px; font-weight: 300; line-height: 1.7; color: var(--gm); margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.06); }
body.ar .form-note { font-family: var(--arabic); font-size: 14px; }
.form-ok { display: none; text-align: center; padding: 52px 16px; }
.ok-lbl { color: var(--gold); margin-bottom: 12px; display: block; }
.ok-title { font-family: var(--serif); font-size: 28px; font-weight: 300; color: var(--ww); margin-bottom: 12px; }
.ok-body { font-size: 16px; font-weight: 300; line-height: 1.82; color: var(--gm2); }
body.ar .ok-body { font-family: var(--arabic); font-size: 17px; }

/* ─── MOBILE STICKY CTA ──────────────────────────────────── */
.stky {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 150;
  background: rgba(7,7,10,.97); border-top: 1px solid var(--goldl);
  padding: 10px 16px; display: flex; gap: 10px;
}
.stky .btn { flex: 1; font-size: 11px; min-height: 50px; padding: 0; }

/* ─── FOOTER ─────────────────────────────────────────────── */
footer { background: var(--graph); border-top: 1px solid var(--goldl); padding: 52px 24px 100px; }
.ft-inner { max-width: 1100px; margin: 0 auto; }
.ft-top { display: flex; flex-direction: column; gap: 26px; padding-bottom: 32px; border-bottom: 1px solid var(--goldl); }
.ft-brand-name { font-family: var(--serif); font-weight: 300; font-size: 20px; letter-spacing: .1em; color: var(--ww); margin-bottom: 5px; }
body.ar .ft-brand-name { font-family: var(--arabic); letter-spacing: 0; }
.ft-brand-sub { font-family: var(--sans); font-weight: 400; font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--gm2); }
body.ar .ft-brand-sub { font-family: var(--arabic); letter-spacing: .04em; text-transform: none; }
.ft-email-lbl { font-family: var(--sans); font-weight: 400; font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 5px; display: block; }
.ft-email-val { font-family: var(--sans); font-weight: 300; font-size: 18px; color: var(--ww); direction: ltr; display: block; }
.ft-addr-lbl { font-family: var(--sans); font-weight: 400; font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--gm2); margin-bottom: 5px; display: block; }
.ft-addr-val { font-family: var(--sans); font-weight: 300; font-size: 15px; color: var(--gm2); display: block; }
.ft-bottom { display: flex; flex-direction: column; gap: 14px; margin-top: 26px; }
.ft-langs { display: flex; gap: 4px; }
.ft-langs .lb { font-size: 12px; color: var(--gm2); min-height: auto; padding: 6px 10px; border: 1px solid transparent; }
.ft-langs .lb.on, .ft-langs .lb:hover { color: var(--gold); border-color: var(--goldf); }
.ft-legal { font-family: var(--sans); font-weight: 300; font-size: 13px; line-height: 1.65; color: var(--gm); }
body.ar .ft-legal { font-family: var(--arabic); font-size: 14px; }
.ft-conf { font-family: var(--sans); font-weight: 400; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--gd); margin-bottom: 6px; display: block; }
body.ar .ft-conf { font-family: var(--arabic); letter-spacing: .04em; text-transform: none; }

/* ─── TABLET 600px+ ──────────────────────────────────────── */
@media (min-width: 600px) {
  .sec { padding: 80px 40px; }
  .block-text { padding: 56px 40px; }
  .t-hero { font-size: 52px; }
  .t-heading { font-size: 40px; }
  .stmt-q { font-size: 27px; }
  .h-specs-list { flex-direction: row; gap: 0; }
  .hs { display: inline; margin: 0 10px; }
  .nav-langs { display: flex; }
  .stky { display: none; }
  footer { padding: 60px 40px; }
  .facts-bar { grid-template-columns: repeat(4,1fr); padding: 32px 40px; }
  .fact { border-bottom: none; }
  .fact:last-child { border-right: none; }
  .am-grid { grid-template-columns: 1fr 1fr; }
  .am-photos { grid-template-columns: repeat(4,1fr); }
  .am-photos img { height: 22vw; max-height: 220px; }
  .gal-grid { grid-template-columns: repeat(3,1fr); }
  .gi img { height: 28vw; max-height: 300px; }
  .gi.full img { height: 34vw; max-height: 380px; }
  .suite-strip { grid-template-columns: repeat(3,1fr); }
  .suite-strip img { height: 26vw; max-height: 240px; }
  .btn-grp { flex-direction: row; justify-content: center; }
  .bfw { width: auto; }
  .form-box { padding: 44px 40px; margin-top: 0; }
  .ft-top { flex-direction: row; justify-content: space-between; align-items: flex-start; }
  .ft-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
  .ft-bottom .ft-legal, .ft-bottom .ft-conf { text-align: right; }
  body.ar .ft-bottom .ft-legal, body.ar .ft-bottom .ft-conf { text-align: left; }
}

/* ─── DESKTOP 960px+ ─────────────────────────────────────── */
@media (min-width: 960px) {
  .sec { padding: 96px 7vw; }
  .block-text { padding: 64px 60px; display: flex; flex-direction: column; justify-content: center; }
  .t-hero { font-size: clamp(52px, 6.5vw, 82px); }
  .t-heading { font-size: clamp(40px, 4.8vw, 60px); }
  .stmt-q { font-size: clamp(25px, 3vw, 40px); }
  .div-quote, .pool-quote { font-size: 22px; }
  /* Side-by-side layout */
  .split { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
  .split .block-photo img { height: 100%; min-height: 460px; max-height: none; }
  .split .block-photo { height: auto; }
  .gal-grid { grid-template-columns: repeat(4,1fr); }
  .gi img { height: 20vw; max-height: 260px; }
  .gi.full { grid-column: 1 / 3; }
  .gi.full img { height: 24vw; max-height: 300px; }
  .am-grid { grid-template-columns: repeat(3,1fr); }
  .am-photos img { height: 16vw; max-height: 200px; }
  .suite-strip img { height: 20vw; max-height: 220px; }
  .form-box { padding: 52px 48px; }
  footer { padding: 68px 7vw; }
  .con-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
  .con-intro { margin-bottom: 0; }
  .form-box { margin-top: 0; }
  .gal-hd, .s-gal > .gal-hd { padding: 96px 7vw 28px; }
  .s-am, .s-off, .s-con { padding: 96px 7vw; }
  .s-stmt { padding: 80px 7vw; }
  .facts-bar { padding: 36px 7vw; }
}
@media (min-width: 1400px) {
  .sec { padding: 96px 9vw; }
  .gal-hd { padding: 96px 9vw 28px; }
  .s-am, .s-off, .s-con { padding: 96px 9vw; }
  footer { padding: 68px 9vw; }
  .facts-bar { padding: 36px 9vw; }
}
