/* Royal Yachts — editorial concierge prototype */

:root {
  --paper: #F8F6F1;        /* warm editorial paper */
  --mist:  #ECE7DD;        /* sand */
  --ink:   #10202E;        /* deep marine ink */
  --marine:#123A5A;        /* brand navy from logo */
  --noir:  #07121C;
  --line:  rgba(16, 32, 46, 0.14);
  --line-strong: rgba(16, 32, 46, 0.32);
  --muted: rgba(16, 32, 46, 0.62);
  --brass: #B89263;        /* restrained brass — used as punctuation only */
  --brass-deep: #8E6B3F;
  --foam:  #FAFAF7;
  --shadow-soft: 0 30px 60px -30px rgba(7, 18, 28, 0.35);
  --shadow-card: 0 1px 0 rgba(16,32,46,0.05), 0 20px 40px -28px rgba(7,18,28,0.25);

  --font-display: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --font-sans: "Inter", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, monospace;
  --font-ar: "IBM Plex Sans Arabic", "Noto Kufi Arabic", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 15px;
  line-height: 1.55;
}

body[dir="rtl"] {
  font-family: var(--font-ar);
}
body[dir="rtl"] .display,
body[dir="rtl"] .ed-display {
  font-family: var(--font-ar);
  font-weight: 500;
}

.display {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.02;
  font-feature-settings: "liga" 1, "kern" 1;
}
.display .italic { font-style: italic; font-weight: 400; }

.ed-display { font-family: var(--font-display); font-weight: 400; }

.eyebrow {
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--muted);
}
.eyebrow.on-dark { color: rgba(255,255,255,0.7); }
.eyebrow .dot {
  display:inline-block; width:5px; height:5px; border-radius:50%;
  background: var(--brass); margin-inline: 10px; vertical-align: middle;
  transform: translateY(-1px);
}

.mono {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.04em;
  padding: 13px 22px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  text-decoration: none;
  border-radius: 0;
  transition: all 180ms ease;
  white-space: nowrap;
}
.btn:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.btn.primary {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.btn.primary:hover { background: var(--marine); border-color: var(--marine); }

.btn.brass {
  background: transparent;
  color: var(--ink);
  border-color: var(--brass);
}
.btn.brass:hover { background: var(--brass); color: var(--noir); border-color: var(--brass); }

.btn.ghost {
  border-color: transparent;
  padding-inline: 0;
}
.btn.ghost:hover { background: transparent; color: var(--marine); }

.btn.on-dark { color: var(--paper); border-color: rgba(255,255,255,0.3); }
.btn.on-dark:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }

.btn .arrow { transition: transform 200ms ease; }
.btn:hover .arrow { transform: translateX(4px); }
body[dir="rtl"] .btn:hover .arrow { transform: translateX(-4px) scaleX(-1); }
body[dir="rtl"] .btn .arrow { transform: scaleX(-1); }

/* Layout */
.shell { max-width: 1440px; margin: 0 auto; padding-inline: 56px; }
@media (max-width: 900px) { .shell { padding-inline: 24px; } }

.rule { height: 1px; background: var(--line); width: 100%; }

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(248, 246, 241, 0.86);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav.dark {
  background: rgba(7,18,28, 0.45);
  border-bottom-color: rgba(255,255,255,0.08);
  color: var(--paper);
}
.nav-row {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  height: 76px;
  gap: 24px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo svg, .nav-logo img { height: 22px; width: auto; display: block; }
.nav.dark .nav-logo img { filter: brightness(0) invert(1); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: inherit;
  text-decoration: none;
  padding: 6px 2px;
  border-bottom: 1px solid transparent;
  transition: border-color 180ms ease, color 180ms ease;
  cursor: pointer;
}
.nav-links a:hover { border-bottom-color: currentColor; }
.nav-links a.active { border-bottom-color: var(--brass); }

.nav-cta {
  display: flex; align-items: center; gap: 14px;
}
.lang-toggle {
  display: inline-flex;
  border: 1px solid var(--line);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  border-radius: 999px;
  overflow: hidden;
}
.nav.dark .lang-toggle { border-color: rgba(255,255,255,0.2); }
.lang-toggle button {
  border: 0;
  background: transparent;
  padding: 7px 12px;
  cursor: pointer;
  color: inherit;
  font: inherit;
  letter-spacing: 0.08em;
}
.lang-toggle button.on { background: var(--ink); color: var(--paper); }
.nav.dark .lang-toggle button.on { background: var(--paper); color: var(--ink); }

/* Hero */
.hero {
  position: relative;
  height: clamp(620px, 90vh, 860px);
  overflow: hidden;
  background: var(--noir);
  color: var(--paper);
}
.hero-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.06);
  transition: transform 12s ease-out;
}
.hero.live .hero-img { transform: scale(1.0); }
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,18,28,0.45) 0%, rgba(7,18,28,0.05) 40%, rgba(7,18,28,0.75) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding-block: 32px 40px;
}
.hero-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  color: rgba(255,255,255,0.85);
}
.hero-headline {
  align-self: end;
  max-width: 900px;
}
.hero-headline h1 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(48px, 6vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.015em;
  margin: 16px 0 0;
  color: var(--paper);
}
.hero-headline h1 .italic { font-style: italic; }
.hero-headline p {
  max-width: 540px;
  margin-top: 22px;
  color: rgba(255,255,255,0.82);
  font-size: 15px;
  line-height: 1.6;
}
.hero-foot {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  color: rgba(255,255,255,0.85);
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-meta {
  display: flex;
  gap: 28px;
  font-size: 11px;
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.65);
}
.hero-meta span b { color: var(--paper); font-weight: 500; }

/* Trust strip */
.trust {
  padding-block: 28px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  align-items: center;
}
.trust-item {
  padding: 6px 24px;
  border-inline-start: 1px solid var(--line);
  display: flex; align-items: center; gap: 16px;
}
.trust-item:first-child { border-inline-start: 0; padding-inline-start: 0; }
.trust-item .lbl {
  font-family: var(--font-sans);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
  display: block;
}
.trust-item .val {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1;
  font-weight: 400;
  color: var(--ink);
}
.trust-item img { height: 44px; width: auto; }

/* Section frames */
.section { padding-block: 96px; }
.section.tight { padding-block: 64px; }
.section.dark { background: var(--noir); color: var(--paper); }
.section.deep { background: var(--marine); color: var(--paper); }
.section.sand { background: var(--mist); }

.section-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 24px;
  margin-bottom: 48px;
}
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin: 12px 0 0;
  max-width: 720px;
}
.section-head h2 .italic { font-style: italic; }
.section-head p { color: var(--muted); max-width: 460px; margin: 0; }

/* Dual entry */
.dual-entry {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}
.dual-card {
  background: var(--paper);
  padding: 56px 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 32px;
  min-height: 280px;
  cursor: pointer;
  transition: background 240ms ease;
  position: relative;
}
.dual-card:hover { background: var(--foam); }
.dual-card h3 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 44px;
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin: 16px 0 0;
}
.dual-card p { color: var(--muted); max-width: 380px; margin: 14px 0 0; }
.dual-card .arrow-pill {
  width: 60px; height: 60px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: grid; place-items: center;
  transition: all 200ms ease;
}
.dual-card:hover .arrow-pill { background: var(--ink); color: var(--paper); border-color: var(--ink); }

/* Fleet grid */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 24px;
}
@media (max-width: 1100px) { .fleet-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 700px)  { .fleet-grid { grid-template-columns: 1fr; } }

.yacht-card {
  cursor: pointer;
  background: transparent;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.yacht-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--mist);
}
.yacht-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 700ms cubic-bezier(.2,.7,.2,1);
}
.yacht-card:hover .yacht-media img { transform: scale(1.04); }
.yacht-fave {
  position: absolute; top: 14px; inset-inline-end: 14px;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.9);
  border: 0;
  border-radius: 50%;
  display: grid; place-items: center;
  cursor: pointer;
  z-index: 2;
  transition: background 180ms ease;
}
.yacht-fave:hover { background: var(--paper); }
.yacht-fave.on { background: var(--ink); color: var(--paper); }
.yacht-fave.on svg { fill: var(--paper); }
.yacht-badge {
  position: absolute; top: 14px; inset-inline-start: 14px;
  background: rgba(7,18,28,0.6);
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  padding: 5px 10px;
  text-transform: uppercase;
}
.yacht-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
}
.yacht-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 26px;
  line-height: 1;
  letter-spacing: -0.005em;
}
.yacht-builder {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: uppercase;
}
.yacht-spec {
  display: flex; gap: 18px;
  font-size: 12.5px;
  color: var(--muted);
  align-items: center;
}
.yacht-spec b { color: var(--ink); font-weight: 500; }
.yacht-spec .sep { width: 3px; height: 3px; background: var(--line-strong); border-radius: 50%; }
.yacht-cta {
  display: flex; gap: 16px; align-items: center;
  padding-top: 8px;
}
.yacht-cta button {
  background: transparent; border: 0; padding: 0;
  font: inherit;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--ink);
  text-transform: uppercase;
  cursor: pointer;
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 4px;
}
.yacht-cta button:hover { border-bottom-color: var(--brass); }
.yacht-cta .price {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-inline-start: auto;
}

/* Experiences */
.exp-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  height: 720px;
}
@media (max-width: 900px) {
  .exp-grid { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3,260px); height: auto; }
  .exp-grid > :first-child { grid-column: span 2; }
}
.exp-tile {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  color: var(--paper);
}
.exp-tile.tall { grid-row: span 2; }
.exp-tile img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 700ms ease;
}
.exp-tile:hover img { transform: scale(1.04); }
.exp-tile::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,18,28,0) 30%, rgba(7,18,28,0.7) 100%);
}
.exp-tile-body {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 28px;
  z-index: 2;
  display: flex; justify-content: space-between; align-items: end;
  gap: 16px;
}
.exp-tile h3 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 32px;
  line-height: 1;
  margin: 6px 0 0;
}
.exp-tile.tall h3 { font-size: 44px; }
.exp-tile .tag {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}

/* Destinations */
.dest-rail {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 14px;
  scrollbar-width: thin;
  scrollbar-color: var(--line-strong) transparent;
}
.dest-rail::-webkit-scrollbar { height: 4px; }
.dest-rail::-webkit-scrollbar-thumb { background: var(--line-strong); }
.dest-card {
  flex: 0 0 380px;
  scroll-snap-align: start;
  cursor: pointer;
}
.dest-media {
  aspect-ratio: 5 / 6;
  overflow: hidden;
  position: relative;
  background: var(--mist);
}
.dest-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms ease; }
.dest-card:hover .dest-media img { transform: scale(1.04); }
.dest-num {
  position: absolute; top: 14px; inset-inline-start: 16px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  color: var(--paper);
  text-transform: uppercase;
  z-index: 2;
}
.dest-body {
  padding-top: 16px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: baseline;
}
.dest-body h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 28px;
  line-height: 1;
  margin: 0;
}
.dest-body .duration {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--muted);
  text-transform: uppercase;
}
.dest-body p { grid-column: 1/-1; margin: 8px 0 0; color: var(--muted); font-size: 13.5px; }

/* Legacy band */
.legacy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.legacy-img {
  aspect-ratio: 5 / 6;
  background-size: cover;
  background-position: center;
}
.legacy-body h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 18px 0 24px;
}
.legacy-body h2 .italic { font-style: italic; }
.legacy-body p { color: var(--muted); font-size: 15.5px; max-width: 480px; }
.legacy-stats {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.legacy-stats .v {
  font-family: var(--font-display);
  font-size: 44px;
  line-height: 1;
  font-weight: 300;
}
.legacy-stats .l {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
}

/* Footer */
.footer {
  background: var(--noir);
  color: var(--paper);
  padding-block: 80px 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; } }
.footer h5 {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin: 0 0 18px;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer a { color: rgba(255,255,255,0.85); text-decoration: none; font-size: 14px; }
.footer a:hover { color: var(--brass); }
.footer .brand-pitch {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.005em;
  margin: 22px 0 0;
  max-width: 380px;
}
.footer-bottom {
  margin-top: 56px; padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
}

/* Yacht microsite drawer */
.drawer-scrim {
  position: fixed; inset: 0;
  background: rgba(7,18,28,0.45);
  backdrop-filter: blur(6px);
  z-index: 80;
  opacity: 0; pointer-events: none;
  transition: opacity 280ms ease;
}
.drawer-scrim.open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(1100px, 92vw);
  background: var(--paper);
  z-index: 81;
  transform: translateX(100%);
  transition: transform 360ms cubic-bezier(.6,.05,.2,1);
  overflow-y: auto;
  box-shadow: -40px 0 80px -20px rgba(7,18,28,0.4);
}
body[dir="rtl"] .drawer { right: auto; left: 0; transform: translateX(-100%); }
.drawer.open { transform: translateX(0); }
.drawer-head {
  position: sticky; top: 0;
  background: rgba(248,246,241,0.94);
  backdrop-filter: blur(8px);
  z-index: 5;
  padding: 18px 48px;
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid var(--line);
}
.drawer-close {
  width: 40px; height: 40px;
  border: 1px solid var(--line);
  background: transparent;
  display: grid; place-items: center;
  cursor: pointer;
  border-radius: 50%;
}
.drawer-close:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.drawer-hero {
  height: 460px;
  background-size: cover; background-position: center;
  position: relative;
  color: var(--paper);
}
.drawer-hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,18,28,0) 50%, rgba(7,18,28,0.7) 100%);
}
.drawer-hero-body {
  position: absolute; bottom: 32px; left: 48px; right: 48px;
  z-index: 2;
  display: flex; justify-content: space-between; align-items: end;
  gap: 24px;
}
.drawer-hero-body h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 72px;
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--paper);
}
.drawer-spec-strip {
  display: grid; grid-template-columns: repeat(6, 1fr);
  border-bottom: 1px solid var(--line);
}
.drawer-spec-strip .item {
  padding: 22px 24px;
  border-inline-start: 1px solid var(--line);
}
.drawer-spec-strip .item:first-child { border-inline-start: 0; }
.drawer-spec-strip .l {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.drawer-spec-strip .v {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1;
  margin-top: 8px;
}
.drawer-body { padding: 56px 48px 64px; }
.drawer-body h3 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 38px;
  line-height: 1.05;
  margin: 0 0 18px;
  letter-spacing: -0.005em;
}
.drawer-body p { color: var(--ink); font-size: 16px; line-height: 1.7; max-width: 640px; }
.drawer-body .indicative {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass-deep);
  border: 1px solid var(--brass);
  padding: 4px 9px;
}
.drawer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  margin-top: 48px;
}
.drawer-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.drawer-gallery img { width: 100%; aspect-ratio: 4/3; object-fit: cover; cursor: zoom-in; }
.drawer-gallery img:first-child { grid-column: span 2; aspect-ratio: 16/9; }
.drawer-inclusions {
  display: flex; flex-direction: column; gap: 14px;
}
.drawer-inclusions .row {
  display: grid; grid-template-columns: 18px 1fr; gap: 14px;
  padding-block: 10px;
  border-bottom: 1px dashed var(--line);
  font-size: 14px;
}
.drawer-inclusions .row svg { margin-top: 4px; color: var(--brass-deep); }
.drawer-cta-bar {
  position: sticky; bottom: 0;
  background: rgba(248,246,241,0.96);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--line);
  padding: 16px 48px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
  z-index: 4;
}
.drawer-cta-bar .price-q {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.drawer-cta-bar .price-q b { color: var(--ink); font-family: var(--font-display); font-size: 22px; letter-spacing: 0; font-weight: 400; }

/* Enquire modal */
.modal-scrim {
  position: fixed; inset: 0;
  background: rgba(7,18,28,0.55);
  backdrop-filter: blur(8px);
  z-index: 90;
  display: grid; place-items: center;
  opacity: 0; pointer-events: none;
  transition: opacity 220ms ease;
}
.modal-scrim.open { opacity: 1; pointer-events: auto; }
.modal {
  background: var(--paper);
  width: min(640px, 92vw);
  max-height: 92vh;
  overflow-y: auto;
  transform: translateY(20px);
  transition: transform 280ms cubic-bezier(.2,.7,.2,1);
}
.modal-scrim.open .modal { transform: translateY(0); }
.modal-head {
  padding: 28px 36px 20px;
  border-bottom: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: start; gap: 24px;
}
.modal-head h3 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 30px;
  line-height: 1.05;
  margin: 0;
  letter-spacing: -0.005em;
}
.modal-head p {
  font-size: 13px;
  color: var(--muted);
  margin: 6px 0 0;
}
.modal-body { padding: 28px 36px 8px; display: grid; gap: 18px; grid-template-columns: 1fr 1fr; }
.modal-body .full { grid-column: 1/-1; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-family: var(--font-sans);
  font-weight: 500;
}
.field input, .field textarea, .field select {
  font: inherit;
  font-size: 14px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  padding: 8px 0;
  font-family: var(--font-sans);
}
.field input:focus, .field textarea:focus, .field select:focus { outline: 0; border-bottom-color: var(--ink); }
.field textarea { resize: none; min-height: 80px; }
.modal-foot {
  padding: 24px 36px 32px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
}
.modal-foot .or {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Sticky WhatsApp FAB + favourites bar */
.fab {
  position: fixed;
  bottom: 24px;
  inset-inline-end: 24px;
  z-index: 70;
  display: flex; flex-direction: column; align-items: end; gap: 12px;
}
.fab-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--ink);
  color: var(--paper);
  padding: 14px 18px;
  border-radius: 999px;
  border: 0;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.fab-btn:hover { background: var(--marine); }
.fab-btn.wa { background: #25D366; color: #053b1a; }
.fab-btn.wa:hover { background: #1ebc59; }

.fav-bar {
  position: fixed;
  bottom: 24px; inset-inline-start: 24px;
  background: var(--ink);
  color: var(--paper);
  padding: 10px 12px 10px 18px;
  z-index: 70;
  display: flex; align-items: center; gap: 14px;
  box-shadow: var(--shadow-soft);
  transform: translateY(80px);
  opacity: 0;
  transition: all 280ms ease;
}
.fav-bar.show { transform: translateY(0); opacity: 1; }
.fav-bar .count {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1;
}
.fav-bar .lbl {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.fav-bar button {
  background: var(--paper); color: var(--ink); border: 0; padding: 8px 14px;
  font: inherit; font-size: 12px; font-weight: 500; letter-spacing: 0.05em;
  cursor: pointer; text-transform: uppercase;
}

/* Sales band */
.sales {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--noir);
  color: var(--paper);
}
.sales-vis {
  background-size: cover; background-position: center;
  min-height: 540px;
  position: relative;
}
.sales-vis::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(7,18,28,0.4), transparent 60%);
}
.sales-body {
  padding: 80px 64px;
  display: flex; flex-direction: column; justify-content: center;
}
.sales-body h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin: 14px 0 24px;
}
.sales-body .pillars {
  display: grid; grid-template-columns: 1fr 1fr; gap: 22px 32px;
  margin: 32px 0 28px;
}
.sales-body .pillar h4 {
  font-family: var(--font-display); font-weight: 400; font-size: 22px;
  margin: 0 0 6px;
}
.sales-body .pillar p {
  font-size: 13.5px; color: rgba(255,255,255,0.7); margin: 0; line-height: 1.55;
}
.sales-body .pillar { border-top: 1px solid rgba(255,255,255,0.16); padding-top: 14px; }

/* Contact block */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  padding: 56px 0;
  border-top: 1px solid var(--line);
}
.contact .col h4 {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 14px;
}
.contact .col p {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.25;
  margin: 0;
  color: var(--ink);
}
.contact .col a { color: inherit; text-decoration: none; }
.contact .col a:hover { color: var(--marine); }
.contact .col .sub {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}

/* Loading/animation helpers */
.fade-up { opacity: 0; transform: translateY(18px); transition: all 700ms ease; }
.fade-up.in { opacity: 1; transform: translateY(0); }

.lma-badge {
  display: inline-flex; align-items: center; gap: 12px;
  border: 1px solid var(--line-strong);
  padding: 8px 14px 8px 10px;
}
.lma-badge img { height: 36px; }
.lma-badge .b1 {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.lma-badge .b2 {
  font-family: var(--font-display); font-size: 16px; line-height: 1;
}

/* Toast */
.toast {
  position: fixed;
  top: 24px; left: 50%;
  transform: translate(-50%, -80px);
  background: var(--ink); color: var(--paper);
  padding: 14px 22px;
  z-index: 100;
  display: flex; align-items: center; gap: 14px;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  transition: all 320ms cubic-bezier(.2,.7,.2,1);
  font-size: 13px;
  letter-spacing: 0.02em;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }
.toast svg { color: var(--brass); }

/* RTL adjustments */
body[dir="rtl"] .nav-row { grid-template-columns: auto 1fr 220px; }
body[dir="rtl"] .hero-foot { flex-direction: row-reverse; }
body[dir="rtl"] .hero-top { flex-direction: row-reverse; }
