/* ═══════════════════════════════════════════════════════
   TAKEYS V2 — STYLESHEET
   Language:  sober editorial + arch-mag layouts
   Palette:   charcoal warm black · bone · sauge · copper · olive
   Type:      Cormorant Garamond (display) + Inter (ui) + JetBrains (mono)
   ═══════════════════════════════════════════════════════ */

:root {
  /* Base tones */
  --ink: #1a1713;
  --charcoal: #23201b;
  --charcoal-2: #2a2620;
  --charcoal-3: #322d26;
  --bone: #f4efe5;
  --bone-2: #eae3d4;
  --bone-soft: rgba(244, 239, 229, 0.72);
  --bone-dim: rgba(244, 239, 229, 0.5);
  --bone-line: rgba(244, 239, 229, 0.14);
  --bone-line-2: rgba(244, 239, 229, 0.08);

  /* Accents */
  --sauge: #a1b2af;
  --sauge-deep: #7f938f;
  --olive: #6e6a4b;
  --olive-deep: #5a5739;
  --copper: #b08866;
  --copper-deep: #8a6849;
  --terracotta: #b6735a;

  /* Type scale */
  --f-mono: "JetBrains Mono", ui-monospace, Menlo, monospace;
  --f-sans: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --f-serif: "Cormorant Garamond", "Times New Roman", serif;

  /* Layout */
  --wrap: 1440px;
  --gutter: clamp(20px, 4vw, 56px);
  --section-pad: clamp(80px, 10vw, 160px);

  /* Motion */
  --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-smooth: cubic-bezier(0.65, 0, 0.35, 1);
}

/* Theme variants via tweaks */
body.tone-olive { --charcoal: #1d2320; --charcoal-2: #242a26; --charcoal-3: #2b322d; --ink: #141a17; }
body.tone-chocolat { --charcoal: #221c15; --charcoal-2: #29221a; --charcoal-3: #30281e; --ink: #1a140f; }
body.tone-noir { --charcoal: #141110; --charcoal-2: #1a1615; --charcoal-3: #1f1a19; --ink: #0d0b0a; }

body.accent-copper { --sauge: #b08866; --sauge-deep: #8a6849; }
body.accent-beige { --sauge: #c4bea8; --sauge-deep: #a39d86; }

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; }
body {
  background: var(--charcoal);
  color: var(--bone);
  font-family: var(--f-sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
img, svg, video { display: block; max-width: 100%; }
ul, ol { list-style: none; }
::selection { background: var(--sauge); color: var(--charcoal); }

.mono { font-family: var(--f-mono); font-weight: 400; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }

/* Section titles & labels (shared) */
.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--sauge);
  margin-bottom: 36px;
}
.section-label::before {
  content: ""; width: 24px; height: 1px; background: var(--sauge);
}
.section-title {
  font-family: var(--f-serif);
  font-weight: 300;
  font-size: clamp(44px, 7.2vw, 108px);
  line-height: 0.97;
  letter-spacing: -0.02em;
  color: var(--bone);
}
.tl-outer { display: block; overflow: hidden; }
.tl-inner { display: inline-block; transform: translateY(100%); }
.tl-italic { font-style: italic; color: var(--sauge); }

.rule { height: 1px; background: var(--bone-line); margin: 48px 0 28px; max-width: 600px; }

/* Buttons */
.btn-primary {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 20px 30px;
  background: var(--bone);
  color: var(--charcoal);
  font-family: var(--f-sans); font-size: 14px; font-weight: 500; letter-spacing: 0.02em;
  border-radius: 999px;
  transition: all .4s var(--ease-smooth);
}
.btn-primary:hover { background: var(--sauge); transform: translateY(-1px); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 19px 29px;
  border: 1px solid var(--bone-line);
  color: var(--bone);
  font-size: 14px; letter-spacing: 0.02em;
  border-radius: 999px;
  transition: all .4s var(--ease-smooth);
}
.btn-outline:hover { border-color: var(--bone); background: rgba(255,255,255,.03); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--sauge);
  padding-bottom: 4px; border-bottom: 1px solid rgba(161,178,175,.3);
  transition: all .3s var(--ease-smooth);
}
.btn-ghost:hover { color: var(--bone); border-color: var(--bone); }

/* ═══════════ CURSOR ═══════════ */
@media (pointer: fine) {
  * { cursor: none !important; }
  #cursor-dot {
    position: fixed; top: 0; left: 0;
    width: 6px; height: 6px; background: var(--bone);
    border-radius: 50%; pointer-events: none;
    z-index: 9999; mix-blend-mode: difference;
    transform: translate(-50%, -50%);
  }
  #cursor-ring {
    position: fixed; top: 0; left: 0;
    width: 36px; height: 36px; border: 1px solid rgba(244,239,229,.5);
    border-radius: 50%; pointer-events: none;
    z-index: 9999; mix-blend-mode: difference;
    transform: translate(-50%, -50%);
    transition: width .3s var(--ease-smooth), height .3s var(--ease-smooth), border-color .3s var(--ease-smooth);
  }
  body.hovering #cursor-ring { width: 64px; height: 64px; border-color: var(--sauge); }
}
@media (pointer: coarse) { #cursor-dot, #cursor-ring { display: none; } }

/* ═══════════ NAV ═══════════ */
#nav {
  position: fixed; top: 0; left: 0; right: 0;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px var(--gutter);
  z-index: 100;
  transition: background .4s var(--ease-smooth), backdrop-filter .4s var(--ease-smooth), padding .4s var(--ease-smooth);
}
#nav.scrolled {
  background: rgba(26, 23, 19, 0.72);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  padding: 14px var(--gutter);
  border-bottom: 1px solid var(--bone-line-2);
}
.nav-logo-wrap { display: block; }
.nav-logo { height: 48px; width: auto; transition: height .4s var(--ease-smooth); }
#nav.scrolled .nav-logo { height: 40px; }

.nav-links {
  display: flex; gap: 36px;
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
}
.nav-links a {
  opacity: .7; transition: opacity .3s var(--ease-smooth);
  position: relative;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 1px;
  background: var(--sauge); transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease-smooth);
}
.nav-links a:hover { opacity: 1; }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-right { display: flex; align-items: center; gap: 20px; }
.lang-toggle { display: flex; align-items: center; gap: 8px; font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.14em; }
.lang-btn { opacity: .4; transition: opacity .3s var(--ease-smooth); }
.lang-btn.active, .lang-btn:hover { opacity: 1; color: var(--sauge); }
.lang-sep { opacity: .3; }

.nav-burger { display: none; width: 36px; height: 36px; flex-direction: column; justify-content: center; align-items: center; gap: 5px; }
.nav-burger span { display: block; width: 20px; height: 1px; background: var(--bone); transition: transform .3s var(--ease-smooth); }
body.menu-open .nav-burger span:nth-child(1) { transform: translateY(3px) rotate(45deg); }
body.menu-open .nav-burger span:nth-child(2) { transform: translateY(-3px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; background: var(--ink);
  z-index: 99; display: none;
  padding: 100px var(--gutter) 40px;
}
body.menu-open .mobile-menu { display: block; }
.mobile-menu-inner { display: flex; flex-direction: column; gap: 18px; }
.mobile-menu-inner a {
  font-family: var(--f-serif); font-size: 36px; font-weight: 300;
  padding: 12px 0; border-bottom: 1px solid var(--bone-line-2);
}

/* ═══════════ HERO ═══════════ */
#hero {
  position: relative;
  min-height: 100vh;
  padding: clamp(110px, 14vh, 180px) var(--gutter) 80px;
  display: flex; flex-direction: column; justify-content: flex-end;
  overflow: hidden;
}
.hero-watermark {
  position: absolute; left: 50%; top: 48%;
  transform: translate(-50%, -50%);
  font-family: var(--f-serif); font-weight: 300; font-style: italic;
  font-size: min(90vw, 78vh);
  color: rgba(244, 239, 229, 0.04);
  line-height: 0.8;
  pointer-events: none;
  z-index: 1;
  user-select: none;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0;
  transition: opacity 1.4s var(--ease-smooth);
  filter: grayscale(15%) brightness(0.55) contrast(1.05);
  will-change: transform;
}
.hero-bg.active { opacity: 1; }
.hero-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(26,23,19,.35) 0%, rgba(26,23,19,.2) 30%, rgba(26,23,19,.65) 70%, rgba(26,23,19,.95) 100%),
    linear-gradient(90deg, rgba(26,23,19,.2) 0%, rgba(26,23,19,0) 50%, rgba(26,23,19,.2) 100%);
}

.hero-meta-top {
  position: absolute; top: 90px; left: var(--gutter); right: var(--gutter);
  display: flex; justify-content: space-between; align-items: center;
  z-index: 4;
  color: var(--bone-soft);
}
.hero-meta-l { display: inline-flex; align-items: center; gap: 10px; }
.hero-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--sauge); box-shadow: 0 0 12px var(--sauge); animation: pulse 2.4s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .5; transform: scale(1.4); } }

.hero-inner {
  position: relative; z-index: 3;
  max-width: 1200px;
  margin-top: auto;
}
.hero-label {
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 48px;
  color: var(--bone-soft);
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
}
.hero-label-dot { width: 22px; height: 1px; background: var(--sauge); }
.hero-tagline {
  font-family: var(--f-serif); font-weight: 300;
  font-size: clamp(58px, 11vw, 180px);
  line-height: 0.92;
  letter-spacing: -0.025em;
}
.hero-tagline .tl-outer { display: block; overflow: hidden; }
.hero-sub {
  font-family: var(--f-serif); font-weight: 300; font-style: italic;
  font-size: clamp(18px, 2vw, 26px);
  color: var(--bone-soft);
  margin-top: 40px;
  max-width: 620px;
}
.hero-cities {
  display: flex; flex-wrap: wrap; gap: 28px;
  margin-top: 40px;
}
.hc-btn {
  display: inline-flex; align-items: baseline; gap: 10px;
  padding: 10px 0;
  font-family: var(--f-serif); font-size: 22px; font-weight: 300;
  color: var(--bone-dim);
  border-bottom: 1px solid transparent;
  transition: all .35s var(--ease-smooth);
}
.hc-btn .mono { font-family: var(--f-mono); font-size: 10px; color: var(--bone-dim); }
.hc-btn:hover, .hc-btn.active { color: var(--bone); border-bottom-color: var(--sauge); }
.hc-btn.active .mono { color: var(--sauge); }

.hero-bifurcation {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--bone-line-2);
  margin: 80px calc(var(--gutter) * -1) calc(var(--gutter) * -1 + 80px);
  position: relative; z-index: 3;
}
.bif {
  position: relative;
  padding: 36px var(--gutter);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  transition: background .5s var(--ease-smooth);
}
.bif + .bif { border-left: 1px solid var(--bone-line-2); }
.bif:hover { background: rgba(255,255,245,.03); }
.bif-num { color: var(--sauge); }
.bif-title {
  font-family: var(--f-serif); font-size: clamp(24px, 2.8vw, 36px); font-weight: 300;
  line-height: 1.1;
}
.bif-title em { font-style: italic; color: var(--bone-dim); font-weight: 300; }
.bif-arrow {
  font-family: var(--f-serif); font-size: 28px; color: var(--sauge);
  transition: transform .4s var(--ease-smooth);
}
.bif:hover .bif-arrow { transform: translateX(10px); color: var(--bone); }

.scroll-indicator {
  position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  z-index: 3; color: var(--bone-dim);
  pointer-events: none;
}
.scroll-line { width: 1px; height: 40px; background: linear-gradient(180deg, transparent, var(--bone)); animation: scrollHint 2s ease-in-out infinite; }
@keyframes scrollHint { 0%,100% { opacity: 0.3; transform: scaleY(0.5); transform-origin: top; } 50% { opacity: 1; transform: scaleY(1); } }

/* ═══════════ MARQUEE ═══════════ */
.marquee-band {
  background: var(--ink);
  border-top: 1px solid var(--bone-line-2);
  border-bottom: 1px solid var(--bone-line-2);
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.marquee-track {
  display: flex; align-items: center; gap: 0;
  white-space: nowrap;
  animation: marquee 90s linear infinite;
  padding: 28px 0;
}
.marquee-item {
  font-family: var(--f-serif); font-weight: 300; font-size: clamp(32px, 5vw, 72px);
  color: var(--bone); padding-right: 80px;
  white-space: nowrap; flex: 0 0 auto;
}
.marquee-item .sep { color: var(--sauge); margin: 0 40px; font-style: italic; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-33.333%); } }

/* ═══════════ INTRO ═══════════ */
#intro {
  padding: var(--section-pad) 0 0;
  background: var(--charcoal);
  position: relative;
}
.intro-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 100px; align-items: start;
  padding: 0 var(--gutter);
}
.intro-right { padding-top: 60px; }
.intro-body p { color: var(--bone-soft); font-size: 17px; line-height: 1.7; margin-bottom: 20px; }
.intro-body p.intro-sig { color: var(--bone); font-family: var(--f-serif); font-size: 22px; font-weight: 300; font-style: italic; margin-top: 28px; line-height: 1.4; }

/* Stats sticky ticker */
.stats-sticky {
  margin-top: 140px;
  height: 100vh;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--bone-line-2);
  border-bottom: 1px solid var(--bone-line-2);
}
.stats-sticky-label {
  position: absolute; top: 32px; left: var(--gutter);
  color: var(--sauge); z-index: 3;
  display: inline-flex; align-items: center; gap: 12px;
}
.stats-sticky-label::before { content:""; width: 24px; height: 1px; background: var(--sauge); }
.stats-track {
  display: flex; align-items: center;
  height: 100%;
  will-change: transform;
  padding: 0 10vw;
}
.stat-block {
  flex: 0 0 auto;
  width: 48vw;
  padding: 0 4vw;
  border-left: 1px solid var(--bone-line-2);
  display: flex; flex-direction: column; gap: 22px;
  align-items: flex-start;
}
.stat-block:first-child { border-left: none; }
.stat-num {
  font-family: var(--f-serif); font-weight: 300;
  font-size: clamp(120px, 20vw, 280px);
  line-height: 0.85; letter-spacing: -0.04em;
  color: var(--bone);
}
.stat-num em { font-style: italic; color: var(--sauge); font-size: 0.6em; margin-left: 4px; }
.stat-lbl {
  font-family: var(--f-serif); font-style: italic; font-weight: 300;
  font-size: clamp(24px, 2.6vw, 36px);
  color: var(--bone-soft);
}
.stat-tag { color: var(--sauge); }

.stats-progress {
  position: absolute; bottom: 28px; left: var(--gutter); right: var(--gutter);
  height: 1px; background: var(--bone-line-2);
}
.stats-progress-bar {
  height: 100%; width: 0%; background: var(--sauge);
  transition: width .2s linear;
}

/* ═══════════ DESTINATIONS ═══════════ */
#destinations {
  padding: var(--section-pad) 0;
  background: var(--charcoal);
  position: relative;
}
.dest-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 80px; gap: 40px; flex-wrap: wrap;
}
.dest-header-right { color: var(--bone-dim); text-align: right; font-size: 11px; }
.dest-divider { height: 1px; background: var(--bone-line-2); margin: 10px 0; }

.map-wrap { padding: 0 var(--gutter); }
.map-frame {
  position: relative;
  aspect-ratio: 1320 / 620;
  background: var(--ink);
  border: 1px solid var(--bone-line-2);
  overflow: hidden;
}
.map-svg { width: 100%; height: 100%; }
.map-country { transition: fill .5s var(--ease-smooth), stroke .5s var(--ease-smooth); }
.map-country:hover { stroke-dasharray: 0; }

.map-plot { cursor: pointer; }
.plot-dot { fill: var(--bone); }
.plot-halo { fill: none; stroke: var(--sauge); stroke-width: 1; opacity: .4; }
.plot-pulse { fill: var(--sauge); opacity: .15; transform-origin: center; transform-box: fill-box; animation: plotPulse 2.8s ease-in-out infinite; }
.map-plot[data-city="marrakech"] .plot-pulse,
.map-plot[data-city="marrakech"] .plot-halo { stroke: var(--copper); fill: var(--copper); }
.map-plot[data-city="essaouira"] .plot-pulse,
.map-plot[data-city="essaouira"] .plot-halo { stroke: var(--copper); fill: var(--copper); }
@keyframes plotPulse { 0%,100% { transform: scale(0.6); opacity: .4; } 50% { transform: scale(1.4); opacity: .05; } }

.map-plot.active .plot-dot { fill: var(--sauge); }
.map-plot.active .plot-halo { opacity: 1; stroke-width: 1.5; }

.map-label {
  position: absolute; left: var(--x); top: var(--y);
  display: flex; align-items: flex-start; gap: 10px;
  color: var(--bone);
  pointer-events: none;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .5s var(--ease-smooth), transform .5s var(--ease-smooth);
}
.map-label.visible { opacity: 1; transform: translateY(0); }
.map-label-stem { width: 1px; height: 40px; background: var(--bone-line); margin-top: 8px; }
.map-label-body { padding-top: 4px; }
.map-label-num {
  color: var(--sauge); margin-bottom: 6px;
  display: inline-flex; align-items: center; gap: 6px;
}
.map-label-num .dot { width: 6px; height: 6px; border-radius: 50%; display: inline-block; }
.dot-tlse { background: var(--sauge); }
.dot-mrk, .dot-ess { background: var(--copper); }
.map-label-name {
  font-family: var(--f-serif); font-weight: 300; font-size: 36px; line-height: 1;
  margin-bottom: 6px;
}
.map-label-tag { font-family: var(--f-serif); font-style: italic; font-size: 15px; color: var(--bone-soft); }
.map-label-left { transform: translate(calc(-100% - 12px), 8px); text-align: right; flex-direction: row-reverse; }
.map-label-left.visible { transform: translate(calc(-100% - 12px), 0); }

.map-compass {
  position: absolute; top: 28px; right: 28px;
  color: var(--bone-dim); text-align: center; font-size: 9px; line-height: 1.4;
}
.map-compass-star { color: var(--sauge); font-size: 14px; display: block; }

.map-preview {
  position: absolute; right: 40px; left: auto; bottom: 40px;
  width: min(38%, 400px);
  background: rgba(26,23,19,.88);
  backdrop-filter: blur(12px);
  border: 1px solid var(--bone-line-2);
  display: none;
  z-index: 5;
}
.map-preview.active { display: block; }
.map-preview-photo {
  aspect-ratio: 4/3;
  background-size: cover; background-position: center;
}
.map-preview-body { padding: 22px 24px; }
.map-preview-body .mono { color: var(--sauge); margin-bottom: 10px; }
.map-preview-name {
  font-family: var(--f-serif); font-weight: 300; font-size: 42px; line-height: 1;
  margin-bottom: 14px;
}
.map-preview-body p { color: var(--bone-soft); font-size: 14px; line-height: 1.6; margin-bottom: 18px; }

.map-strip {
  display: none; /* shown on mobile */
  gap: 10px; margin-top: 24px; flex-wrap: wrap;
}
.mstrip-btn {
  padding: 14px 18px;
  border: 1px solid var(--bone-line-2);
  font-size: 13px; letter-spacing: 0.05em;
  transition: all .3s var(--ease-smooth);
}
.mstrip-btn:hover, .mstrip-btn.active { background: var(--sauge); color: var(--ink); border-color: var(--sauge); }
.mstrip-btn .mono { opacity: .5; margin-right: 10px; }
.mstrip-btn:hover .mono, .mstrip-btn.active .mono { opacity: 1; }

/* ═══════════ VALUES ═══════════ */
#values {
  padding: var(--section-pad) 0;
  background: var(--charcoal-2);
}
.values-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 100px;
  align-items: start;
}
.values-lead {
  font-family: var(--f-serif); font-weight: 300; font-size: 22px; font-style: italic;
  line-height: 1.45; color: var(--bone-soft); max-width: 520px;
}
.values-quad {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border-left: 1px solid var(--bone-line-2);
  border-top: 1px solid var(--bone-line-2);
}
.val {
  padding: 44px 36px;
  border-right: 1px solid var(--bone-line-2);
  border-bottom: 1px solid var(--bone-line-2);
}
.val-num { color: var(--sauge); margin-bottom: 40px; display: inline-flex; align-items: center; gap: 10px; }
.val-num::after { content: ""; width: 24px; height: 1px; background: var(--sauge); }
.val-name {
  font-family: var(--f-serif); font-weight: 300; font-size: 34px;
  margin-bottom: 16px;
}
.val-desc { color: var(--bone-soft); font-size: 15px; line-height: 1.7; }

/* ═══════════ PROPRIOS ═══════════ */
#proprios {
  padding: var(--section-pad) 0;
  background: var(--charcoal);
  position: relative;
}
.proprios-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 100px;
  align-items: start;
}
.proprios-text p { color: var(--bone-soft); font-size: 17px; line-height: 1.7; margin-bottom: 18px; }

.owners-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin: 40px 0; }
.ometric-num {
  font-family: var(--f-serif); font-weight: 300; font-size: clamp(60px, 8vw, 96px);
  line-height: 1; color: var(--bone);
}
.ometric-num em { font-style: italic; color: var(--sauge); font-size: 0.5em; }
.ometric-lbl { color: var(--bone-dim); margin-top: 12px; max-width: 180px; line-height: 1.5; }

.owners-list { margin: 32px 0 40px; }
.owners-list li {
  padding: 18px 0; border-bottom: 1px solid var(--bone-line-2);
  color: var(--bone-soft); font-size: 15px;
  position: relative; padding-left: 30px;
}
.owners-list li::before {
  content: "✦"; position: absolute; left: 0; color: var(--sauge);
  font-family: var(--f-serif); font-size: 12px; top: 20px;
}

.proprios-visual { position: relative; }
.pv-photo {
  aspect-ratio: 3/4;
  background-size: cover; background-position: center;
  filter: grayscale(10%) brightness(0.8);
}
.pv-tag {
  position: absolute; top: -30px; right: -30px;
  background: var(--bone); color: var(--ink);
  padding: 20px 28px;
  font-family: var(--f-serif); font-size: 24px; font-weight: 300; line-height: 1.2;
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
}
.pv-tag em { font-style: italic; color: var(--olive); display: block; }
.pv-card {
  position: absolute; bottom: -40px; left: -40px;
  background: var(--ink); border: 1px solid var(--bone-line-2);
  padding: 22px 24px; min-width: 280px;
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
}
.pv-card .mono { margin-bottom: 14px; }
.pv-card-rows { display: flex; flex-direction: column; gap: 10px; }
.pv-card-rows > div {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: var(--bone-soft);
}
.pv-card-rows em { font-style: normal; font-family: var(--f-mono); font-size: 12px; color: var(--bone); }
.pv-card-delta { padding-top: 10px; border-top: 1px solid var(--bone-line-2); }
.pv-card-delta em { color: var(--sauge) !important; font-size: 14px !important; }

/* ═══════════ LICENCE ═══════════ */
#licence {
  padding: var(--section-pad) 0;
  background: var(--charcoal-2);
}
.licence-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 100px; align-items: start;
}
#licence p { color: var(--bone-soft); font-size: 16px; line-height: 1.7; margin-bottom: 16px; }
.licence-inclus { margin: 32px 0 40px; }
.licence-inclus li {
  padding: 14px 0 14px 28px; border-bottom: 1px solid var(--bone-line-2);
  position: relative; color: var(--bone-soft); font-size: 14px;
}
.licence-inclus li::before { content: "→"; position: absolute; left: 0; color: var(--sauge); font-family: var(--f-serif); }

.licence-steps { display: flex; flex-direction: column; }
.lstep {
  display: grid; grid-template-columns: 80px 1fr; gap: 32px;
  padding: 36px 0;
  border-top: 1px solid var(--bone-line-2);
}
.lstep:last-child { border-bottom: 1px solid var(--bone-line-2); }
.lstep-num {
  font-family: var(--f-serif); font-size: 52px; font-weight: 300; font-style: italic;
  color: var(--sauge); line-height: 1;
}
.lstep-body h3 { font-family: var(--f-serif); font-weight: 300; font-size: 26px; margin-bottom: 10px; }
.lstep-body p { font-size: 15px; color: var(--bone-soft); line-height: 1.6; }

/* ═══════════ REVIEWS ═══════════ */
#reviews { padding: var(--section-pad) 0; background: var(--charcoal); }
.reviews-header { margin-bottom: 80px; }
.reviews-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0;
  border-top: 1px solid var(--bone-line-2); border-left: 1px solid var(--bone-line-2);
}
.rcard {
  padding: 48px 42px;
  border-right: 1px solid var(--bone-line-2);
  border-bottom: 1px solid var(--bone-line-2);
}
.rcard-stars { color: var(--sauge); letter-spacing: 0.2em; margin-bottom: 24px; font-size: 14px; }
.rcard-text {
  font-family: var(--f-serif); font-weight: 300; font-size: clamp(20px, 2vw, 26px);
  line-height: 1.45;
  margin-bottom: 28px;
  color: var(--bone);
}
.rcard-meta { display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: var(--bone-dim); }
.rcard-meta .mono { color: var(--sauge); }

.reviews-aggregate {
  margin-top: 80px;
  display: flex; align-items: baseline; gap: 40px; justify-content: center;
  border-top: 1px solid var(--bone-line-2); padding-top: 60px;
}
.agg-score { font-family: var(--f-serif); font-weight: 300; font-size: clamp(80px, 14vw, 200px); line-height: 1; color: var(--bone); letter-spacing: -0.03em; }
.agg-score em { font-style: italic; color: var(--sauge); font-size: 0.35em; }
.agg-label { color: var(--bone-dim); max-width: 280px; line-height: 1.5; }

/* ═══════════ JOURNAL ═══════════ */
#journal { padding: var(--section-pad) 0; background: var(--charcoal-2); }
.journal-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 80px; gap: 40px; flex-wrap: wrap; }
.journal-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.jcard { display: flex; flex-direction: column; gap: 24px; cursor: pointer; }
.jcard-photo {
  aspect-ratio: 4/5;
  background-size: cover; background-position: center;
  filter: grayscale(20%) brightness(0.85);
  transition: filter .6s var(--ease-smooth), transform .6s var(--ease-smooth);
}
.jcard:hover .jcard-photo { filter: grayscale(0%) brightness(1); }
.jcard-body { display: flex; flex-direction: column; gap: 14px; }
.jcard-meta { color: var(--sauge); }
.jcard-title {
  font-family: var(--f-serif); font-weight: 300; font-size: 26px; line-height: 1.2;
}
.jcard-excerpt { color: var(--bone-soft); font-size: 14px; line-height: 1.6; }
.jcard-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--sauge);
  margin-top: 6px;
  transition: gap .3s var(--ease-smooth);
}
.jcard-cta:hover { gap: 14px; color: var(--bone); }

/* ═══════════ CONTACT ═══════════ */
#contact { padding: var(--section-pad) 0; background: var(--charcoal); }
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 100px; align-items: start; }
.contact-intro { font-family: var(--f-serif); font-size: 22px; font-style: italic; font-weight: 300; color: var(--bone-soft); max-width: 520px; margin: 32px 0 40px; line-height: 1.5; }
.contact-ctas { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.contact-aside { border-top: 1px solid var(--bone-line-2); }
.cinfo { padding: 20px 0; border-bottom: 1px solid var(--bone-line-2); display: flex; flex-direction: column; gap: 6px; }
.cinfo-l { color: var(--sauge); }
.cinfo-v { color: var(--bone); font-size: 17px; }

/* ═══════════ FOOTER ═══════════ */
footer { background: var(--ink); padding: var(--section-pad) var(--gutter) 40px; border-top: 1px solid var(--bone-line-2); }
.footer-hero { margin-bottom: 100px; max-width: 1100px; }
.footer-brand-line { display: flex; align-items: center; gap: 30px; margin-bottom: 40px; }
.footer-logo { height: 36px; filter: brightness(0) invert(1); opacity: .7; }
.footer-brand-line .mono { color: var(--bone-dim); }
.footer-slogan {
  font-family: var(--f-serif); font-weight: 300; font-size: clamp(48px, 9vw, 144px);
  line-height: 0.95; letter-spacing: -0.025em;
}
.footer-slogan em { font-style: italic; color: var(--sauge); }

.footer-cols {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px;
  padding-top: 60px; border-top: 1px solid var(--bone-line-2);
  margin-bottom: 60px;
}
.footer-cols h5 { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--sauge); margin-bottom: 24px; }
.footer-cols ul { display: flex; flex-direction: column; gap: 12px; }
.footer-cols a { color: var(--bone-soft); font-size: 14px; transition: color .3s var(--ease-smooth); }
.footer-cols a:hover { color: var(--bone); }

.footer-bottom { display: flex; justify-content: space-between; color: var(--bone-dim); padding-top: 32px; border-top: 1px solid var(--bone-line-2); }

/* ═══════════ TWEAKS PANEL ═══════════ */
#tweaks {
  position: fixed; bottom: 24px; right: 24px;
  width: 320px;
  background: var(--ink);
  border: 1px solid var(--bone-line);
  padding: 20px;
  z-index: 1000;
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
}
.tw-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; padding-bottom: 14px; border-bottom: 1px solid var(--bone-line-2); }
.tw-head .mono { color: var(--sauge); }
.tw-close { font-size: 20px; color: var(--bone-dim); }
.tw-field { margin-bottom: 20px; }
.tw-field label { display: block; color: var(--sauge); margin-bottom: 10px; }
.tw-row { display: flex; flex-wrap: wrap; gap: 6px; }
.tw-pill {
  padding: 8px 12px; border: 1px solid var(--bone-line-2);
  font-size: 11px; letter-spacing: 0.04em;
  transition: all .25s var(--ease-smooth);
}
.tw-pill:hover { border-color: var(--bone); }
.tw-pill.active { background: var(--sauge); color: var(--ink); border-color: var(--sauge); }

/* ═══════════ REVEALS (GSAP will unhide) ═══════════ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 1s var(--ease-smooth), transform 1s var(--ease-smooth); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 1024px) {
  .intro-grid, .values-grid, .proprios-grid, .licence-grid, .contact-grid { grid-template-columns: 1fr; gap: 60px; }
  .stat-block { width: 80vw; }
  .journal-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .map-preview { position: static; width: 100%; margin-top: 20px; }
  .map-label { font-size: 0.7em; }
  .map-strip { display: flex; }
  .proprios-visual { margin-top: 40px; }
  .pv-card { left: 0; bottom: -60px; }
  .pv-tag { right: 0; top: -20px; }
}
@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .hero-meta-top { display: none; }
  .hero-cities { gap: 16px; }
  .hero-bifurcation { grid-template-columns: 1fr; }
  .bif + .bif { border-left: none; border-top: 1px solid var(--bone-line-2); }
  .values-quad { grid-template-columns: 1fr; }
  .journal-grid { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .footer-brand-line { flex-direction: column; align-items: flex-start; gap: 14px; }
  .stats-sticky { height: 80vh; }
  .map-frame { display: none; } /* keep strip only */
  .map-strip { display: flex; flex-direction: column; }
  .mstrip-btn { width: 100%; text-align: left; padding: 20px; border-radius: 0; }
  .map-strip-photo { aspect-ratio: 16/9; background-size: cover; background-position: center; margin-bottom: -1px; }
  #tweaks { bottom: 12px; right: 12px; left: 12px; width: auto; }
}
