/* ============================================================
   OWNEXT® — own what's next.
   Brand system: Manual de Identidad (Olivo Studio)
   Obsidian Black #171612 · Ivory Stone #EAE8DA · Aureum Gold #AB7944
   Olive Ash #756440 · Horizon Sage #8EA5A2
   Type: Playfair Display / Groteska / DM Sans / Andale Mono
   ============================================================ */

/* ---------- Fonts ---------- */
@font-face {
  font-family: 'Playfair Display';
  src: url('fonts/PlayfairDisplay-VariableFont_wght.ttf') format('truetype');
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Playfair Display';
  src: url('fonts/PlayfairDisplay-Italic-VariableFont_wght.ttf') format('truetype');
  font-weight: 400 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('fonts/DMSans-Variable.ttf') format('truetype');
  font-weight: 100 1000;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Groteska';
  src: url('fonts/Groteska-Light.ttf') format('truetype');
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: 'Groteska';
  src: url('fonts/Groteska-Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Groteska';
  src: url('fonts/Groteska-Medium.ttf') format('truetype');
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: 'Groteska';
  src: url('fonts/Groteska-Bold.ttf') format('truetype');
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: 'Andale Mono';
  src: url('fonts/AndaleMono.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --obsidian: #1C1A15;
  --obsidian-2: #23211A;
  --obsidian-3: #2A2820;
  --ivory: #EAE8DA;
  --ivory-dim: rgba(234, 232, 218, 0.92);
  --ivory-faint: rgba(234, 232, 218, 0.8);
  --gold: #AB7944;
  --gold-bright: #C99461;
  --olive: #756440;
  --sage: #8EA5A2;
  --sage-bright: #A9BEBA;
  --sage-sky: #C3D6D3;
  --sage-deep: #5E7873;
  --sage-wash: rgba(142, 165, 162, 0.12);
  --hairline-sage: rgba(142, 165, 162, 0.32);
  --hairline: rgba(171, 121, 68, 0.28);
  --hairline-ivory: rgba(23, 22, 18, 0.16);
  --serif: 'Playfair Display', Georgia, serif;
  --grot: 'Groteska', 'DM Sans', sans-serif;
  --sans: 'DM Sans', 'Helvetica Neue', sans-serif;
  --mono: 'Andale Mono', 'Courier New', monospace;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --container: 1280px;
}

/* ---------- Base ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--obsidian);
  color: var(--ivory);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* film grain */
body::after {
  content: '';
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  pointer-events: none;
  z-index: 2000;
  opacity: 0.02;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

::selection { background: var(--sage); color: var(--obsidian); }

a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 3px;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: none; cursor: pointer; color: inherit; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 64px);
}

.section { padding: clamp(96px, 12vw, 176px) 0; position: relative; }

/* ---------- Shared type ---------- */
.eyebrow {
  font-family: var(--mono);
  font-size: 15.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  margin-bottom: clamp(28px, 4vw, 48px);
}
.eyebrow__slash { color: var(--sage-bright); }
.section--ivory .eyebrow__slash { color: var(--sage-deep); }

.section--ivory .eyebrow { color: rgba(23, 22, 18, 0.88); }

.section__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(40px, 5.4vw, 76px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  max-width: 18ch;
}
.section__title span, .section__title em { display: block; }
.section__title em { font-style: italic; font-weight: 400; color: var(--sage-sky); }
.section--ivory .section__title em { color: var(--sage-deep); }

.section__sub {
  margin-top: 28px;
  max-width: 52ch;
  font-size: clamp(19px, 1.6vw, 22px);
  color: var(--ivory-dim);
}
.section--ivory .section__sub { color: rgba(23, 22, 18, 0.78); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--mono);
  font-size: 15px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 20px 38px;
  border: 1px solid var(--gold);
  transition: all 0.45s var(--ease);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn--gold { background: var(--gold); color: var(--ivory); }
.btn--gold:hover { background: var(--gold-bright); border-color: var(--gold-bright); transform: translateY(-2px); box-shadow: 0 18px 40px -18px rgba(171, 121, 68, 0.55); }
.btn--ghost { color: var(--ivory); border-color: rgba(142, 165, 162, 0.45); }
.btn--ghost:hover { border-color: var(--sage-sky); color: var(--sage-sky); background: var(--sage-wash); transform: translateY(-2px); box-shadow: 0 18px 40px -18px rgba(142, 165, 162, 0.4); }
.btn--nav { padding: 13px 24px; font-size: 13.5px; }

/* ---------- Preloader ---------- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: var(--obsidian);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transition: opacity 0.9s var(--ease), visibility 0.9s;
}
.preloader.is-done { opacity: 0; visibility: hidden; }
.preloader__mark { width: 56px; animation: markPulse 1.6s ease-in-out infinite; }
.preloader__tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--sage-bright);
  letter-spacing: 0.04em;
}
@keyframes markPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.96); }
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.5s var(--ease), box-shadow 0.5s var(--ease), padding 0.5s var(--ease);
  padding: 26px 0;
}
.nav.is-scrolled {
  background: rgba(21, 24, 23, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px 0;
  box-shadow: 0 1px 0 var(--hairline-sage);
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav__wordmark { height: 20px; width: auto; }
.nav__links { display: flex; gap: clamp(20px, 3vw, 44px); }
.nav__links a {
  font-family: var(--grot);
  font-weight: 400;
  font-size: 17px;
  letter-spacing: 0.06em;
  color: var(--ivory-dim);
  position: relative;
  padding: 4px 0;
  transition: color 0.3s;
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--sage-bright);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s var(--ease);
}
.nav__links a:hover { color: var(--ivory); }
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav__right { display: flex; align-items: center; gap: 24px; }

.lang { display: flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 14.5px; letter-spacing: 0.1em; }
.lang__sep { color: var(--ivory-faint); }
.lang__btn { color: var(--ivory-faint); transition: color 0.3s; padding: 4px 2px; }
.lang__btn:hover { color: var(--ivory); }
.lang__btn.is-active { color: var(--sage-sky); }

.nav__burger { display: none; flex-direction: column; gap: 7px; padding: 8px 4px; }
.nav__burger span { width: 26px; height: 1px; background: var(--ivory); transition: transform 0.4s var(--ease), opacity 0.3s; }
.nav__burger.is-open span:first-child { transform: translateY(4px) rotate(45deg); }
.nav__burger.is-open span:last-child { transform: translateY(-4px) rotate(-45deg); }

/* Mobile menu */
.menu {
  position: fixed;
  inset: 0;
  z-index: 900;
  background: rgba(23, 22, 18, 0.98);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 48px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s var(--ease), visibility 0.5s;
}
.menu.is-open { opacity: 1; visibility: visible; }
.menu__links { display: flex; flex-direction: column; align-items: center; gap: 28px; }
.menu__links a {
  font-family: var(--serif);
  font-size: clamp(28px, 7vw, 40px);
  color: var(--ivory);
  transition: color 0.3s;
}
.menu__links a:hover { color: var(--sage-sky); }
.menu__tag { font-family: var(--serif); font-style: italic; color: var(--sage); font-size: 17px; }

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1100px 700px at 82% 18%, rgba(142, 165, 162, 0.18), transparent 60%),
    radial-gradient(1100px 760px at 8% 88%, rgba(142, 165, 162, 0.38), transparent 58%),
    linear-gradient(to bottom, rgba(142, 165, 162, 0.12), transparent 30%),
    var(--obsidian);
  padding-top: 120px;
}
.hero__mark {
  position: absolute;
  right: -6vw;
  top: 50%;
  transform: translateY(-54%);
  width: clamp(320px, 42vw, 660px);
  opacity: 0.1;
  animation: heroMarkDrift 14s ease-in-out infinite alternate;
  pointer-events: none;
}
.hero__mark svg { width: 100%; height: auto; }
.hero__mark polygon { fill: var(--sage); }
@keyframes heroMarkDrift {
  from { transform: translateY(-56%) translateX(0); }
  to { transform: translateY(-50%) translateX(-18px); }
}

.hero__content { position: relative; z-index: 2; }
.hero__eyebrow { animation: riseIn 1.1s var(--ease) 0.25s both; }
.hero__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(46px, 7.2vw, 104px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  max-width: 15ch;
}
.hero__line { display: block; animation: riseIn 1.2s var(--ease) 0.45s both; }
.hero__line--italic {
  font-style: italic;
  font-weight: 400;
  color: var(--sage-sky);
  animation-delay: 0.62s;
}
.hero__sub {
  margin-top: 36px;
  max-width: 52ch;
  font-size: clamp(19px, 1.7vw, 23px);
  color: var(--ivory-dim);
  animation: riseIn 1.2s var(--ease) 0.85s both;
}
.hero__actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 52px;
  animation: riseIn 1.2s var(--ease) 1.05s both;
}

.hero__stats {
  display: flex;
  align-items: flex-end;
  gap: clamp(32px, 6vw, 96px);
  margin-top: clamp(64px, 9vh, 120px);
  padding-top: 32px;
  padding-bottom: 48px;
  border-top: 1px solid var(--hairline-sage);
  position: relative;
  z-index: 2;
  animation: fadeIn 1.4s var(--ease) 1.35s both;
}
.hero__stat { display: flex; flex-direction: column; gap: 8px; }
.hero__stat-value {
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 32px);
  color: var(--sage-sky);
}
.hero__stat-label {
  font-family: var(--mono);
  font-size: 13.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ivory-faint);
}
.hero__scroll {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ivory-faint);
  transition: color 0.3s;
}
.hero__scroll:hover { color: var(--sage-sky); }
.hero__scroll i {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, var(--sage-bright), transparent);
  display: block;
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.55); opacity: 0.5; }
}
@keyframes riseIn {
  from { opacity: 0; transform: translateY(34px); }
  to { opacity: 1; transform: none; }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal[data-delay="4"] { transition-delay: 0.4s; }
.reveal[data-delay="5"] { transition-delay: 0.5s; }
.reveal[data-delay="6"] { transition-delay: 0.6s; }
.reveal[data-delay="7"] { transition-delay: 0.7s; }

/* ---------- Philosophy (ivory) ---------- */
.section--ivory {
  background:
    radial-gradient(1100px 680px at 88% 12%, rgba(142, 165, 162, 0.22), transparent 60%),
    var(--ivory);
  color: var(--obsidian);
}
.philosophy__quote {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(34px, 4.6vw, 64px);
  line-height: 1.16;
  max-width: 24ch;
}
.philosophy__quote span, .philosophy__quote em { display: block; }
.philosophy__quote em { font-style: italic; font-weight: 400; color: var(--sage-deep); }

.philosophy__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: clamp(48px, 7vw, 120px);
  margin-top: clamp(56px, 7vw, 96px);
  padding-top: clamp(40px, 5vw, 64px);
  border-top: 1px solid var(--hairline-ivory);
}
.philosophy__body {
  font-size: clamp(20px, 1.65vw, 23px);
  color: rgba(23, 22, 18, 0.88);
  max-width: 56ch;
}
.philosophy__words { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 22px 32px; align-content: start; }
.philosophy__words li { display: flex; align-items: baseline; gap: 14px; border-bottom: 1px solid var(--hairline-ivory); padding-bottom: 14px; }
.philosophy__words span { font-family: var(--mono); font-size: 14px; color: var(--sage-deep); letter-spacing: 0.1em; }
.philosophy__words b { font-family: var(--grot); font-weight: 500; font-size: clamp(16px, 1.5vw, 20px); letter-spacing: 0.02em; }

/* ---------- Audiences ---------- */
.audiences {
  background:
    radial-gradient(1000px 620px at 92% 6%, rgba(142, 165, 162, 0.2), transparent 60%),
    radial-gradient(800px 500px at 2% 96%, rgba(142, 165, 162, 0.1), transparent 55%),
    var(--obsidian);
}
.audiences__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 3vw, 40px);
  margin-top: clamp(56px, 7vw, 88px);
}
.card {
  border: 1px solid rgba(234, 232, 218, 0.1);
  background: linear-gradient(160deg, var(--obsidian-2), var(--obsidian));
  padding: clamp(36px, 4vw, 60px);
  display: flex;
  flex-direction: column;
  transition: border-color 0.5s var(--ease), transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.card:hover {
  border-color: var(--sage);
  background: linear-gradient(160deg, #1c211f, var(--obsidian));
  transform: translateY(-6px);
  box-shadow: 0 40px 80px -48px rgba(0, 0, 0, 0.8), 0 0 60px -24px rgba(142, 165, 162, 0.35);
}
.card__num { font-family: var(--mono); font-size: 13px; color: var(--sage); letter-spacing: 0.2em; }
.card__kicker {
  font-family: var(--mono);
  font-size: 14.5px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage-bright);
  margin-top: 34px;
}
.card__title {
  font-family: var(--serif);
  font-size: clamp(26px, 2.6vw, 38px);
  line-height: 1.18;
  margin-top: 14px;
  color: var(--ivory);
}
.card__body { margin-top: 20px; color: var(--ivory-dim); font-size: 19px; }
.card__list { list-style: none; margin-top: 32px; display: flex; flex-direction: column; gap: 14px; }
.card__list li {
  font-family: var(--grot);
  font-weight: 300;
  font-size: 18px;
  letter-spacing: 0.02em;
  color: var(--ivory-dim);
  padding-left: 26px;
  position: relative;
}
.card__list li::before {
  content: '/';
  position: absolute;
  left: 0;
  color: var(--sage);
  font-family: var(--mono);
}
.card__cta {
  margin-top: auto;
  padding-top: 40px;
  font-family: var(--mono);
  font-size: 14.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-bright);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.card__cta::after { content: '\2192'; transition: transform 0.4s var(--ease); }
.card__cta:hover::after { transform: translateX(6px); }

/* ---------- Destinations / Map ---------- */
.section--deep {
  background:
    radial-gradient(1200px 700px at 12% 0%, rgba(142, 165, 162, 0.18), transparent 55%),
    radial-gradient(900px 560px at 96% 88%, rgba(142, 165, 162, 0.09), transparent 60%),
    #1A1814;
}
.section--deep .section__title em { color: var(--sage-sky); }
.destinations__layout {
  display: grid;
  grid-template-columns: minmax(300px, 420px) 1fr;
  gap: 0;
  margin-top: clamp(56px, 7vw, 88px);
  border-top: 1px solid var(--hairline-sage);
  border-bottom: 1px solid var(--hairline-sage);
}
.destinations__list-wrap {
  border-right: 1px solid var(--hairline-sage);
  max-height: 640px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--olive) transparent;
}
.destinations__hint {
  font-family: var(--mono);
  font-size: 13.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ivory-faint);
  padding: 24px clamp(24px, 3vw, 40px);
  border-bottom: 1px solid rgba(234, 232, 218, 0.07);
}
.destinations__list { list-style: none; }
.dest-group {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sage-bright);
  padding: 22px clamp(24px, 3vw, 40px) 12px;
  border-bottom: 1px solid rgba(234, 232, 218, 0.07);
  background: var(--sage-wash);
}
.dest-item__price {
  margin-top: 8px;
  font-family: var(--mono);
  font-size: 16px;
  letter-spacing: 0.08em;
  color: var(--gold-bright);
}
.dest-item--prop .dest-item__tag { color: var(--ivory-dim); font-size: 15.5px; }
.dest-item__projects {
  margin-top: 10px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-bright);
}
.dest-item {
  padding: 22px clamp(24px, 3vw, 40px);
  border-bottom: 1px solid rgba(234, 232, 218, 0.07);
  cursor: pointer;
  transition: background 0.4s var(--ease);
  position: relative;
}
.dest-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--sage-bright);
  transform: scaleY(0);
  transition: transform 0.4s var(--ease);
}
.dest-item:hover, .dest-item.is-active { background: rgba(142, 165, 162, 0.08); }
.dest-item.is-active::before { transform: scaleY(1); }
.dest-item__top { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; }
.dest-item__name { font-family: var(--serif); font-size: 24px; color: var(--ivory); }
.dest-item__country { font-family: var(--mono); font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ivory-faint); white-space: nowrap; }
.dest-item__tag { margin-top: 6px; font-family: var(--grot); font-weight: 300; font-size: 17px; color: var(--sage-bright); letter-spacing: 0.03em; }

.destinations__map-wrap { position: relative; min-height: 640px; }
.destinations__map { position: absolute; inset: 0; background: #1A1814; z-index: 1; }
.destinations__map-fallback[hidden] { display: none; }
.destinations__map-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory-faint);
  z-index: 2;
  background: radial-gradient(600px 400px at 50% 50%, rgba(117, 100, 64, 0.12), transparent 70%);
  text-align: center;
  padding: 40px;
}

/* Leaflet theme */
.leaflet-container { background: #1A1814 !important; font-family: var(--sans) !important; }
.leaflet-tile { filter: grayscale(1) brightness(1.02) sepia(0.14) saturate(0.9); }
.leaflet-control-zoom a {
  background: var(--obsidian-2) !important;
  color: var(--ivory) !important;
  border: 1px solid rgba(234, 232, 218, 0.2) !important;
  border-radius: 0 !important;
  width: 42px !important;
  height: 42px !important;
  line-height: 42px !important;
  font-size: 21px !important;
}
.leaflet-control-zoom a:hover { background: var(--obsidian-3) !important; color: var(--gold-bright) !important; }
.leaflet-control-attribution {
  background: rgba(23, 22, 18, 0.75) !important;
  color: rgba(234, 232, 218, 0.78) !important;
  font-size: 12.5px !important;
}
.leaflet-control-attribution a { color: rgba(234, 232, 218, 0.72) !important; }

.ownext-pin { position: relative; }
.ownext-pin__dot {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 11px; height: 11px;
  background: var(--sage-bright);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(142, 165, 162, 0.85);
}
.ownext-pin__ring {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 11px; height: 11px;
  border: 1px solid var(--sage-bright);
  border-radius: 50%;
  animation: pinPulse 2.4s ease-out infinite;
}
@keyframes pinPulse {
  from { transform: scale(1); opacity: 0.9; }
  to { transform: scale(4.2); opacity: 0; }
}

/* property markers — gold diamonds */
.ownext-pin__diamond {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 12px; height: 12px;
  background: var(--gold);
  border: 1px solid var(--ivory);
  transform: rotate(45deg);
  box-shadow: 0 0 16px rgba(171, 121, 68, 0.9);
}
.ownext-pin__ring--prop {
  border-color: var(--gold-bright);
  animation-duration: 1.9s;
}

.leaflet-popup-content-wrapper {
  background: var(--obsidian-2) !important;
  color: var(--ivory) !important;
  border-radius: 0 !important;
  border: 1px solid var(--hairline);
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.85) !important;
}
.leaflet-popup-tip { background: var(--obsidian-2) !important; border: 1px solid var(--hairline); }
.leaflet-popup-content { margin: 20px 24px !important; }
.leaflet-popup-close-button { color: var(--ivory-faint) !important; }
.map-pop__name { font-family: var(--serif); font-size: 24px; color: var(--ivory); }
.map-pop__country { font-family: var(--mono); font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-bright); margin-top: 4px; }
.map-pop__desc { font-family: var(--sans); font-weight: 400; font-size: 17px; color: var(--ivory-dim); margin-top: 10px; line-height: 1.6; max-width: 260px; }
.map-pop__price { font-family: var(--mono); font-size: 16px; letter-spacing: 0.06em; color: var(--gold-bright); margin-top: 12px; }
.map-pop__meta { font-family: var(--grot); font-weight: 300; font-size: 15.5px; color: var(--sage-bright); margin-top: 6px; letter-spacing: 0.03em; }
.map-pop__cta {
  display: inline-block;
  margin-top: 14px;
  font-family: var(--mono);
  font-size: 13.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-bright) !important;
  border-bottom: 1px solid var(--hairline);
  padding-bottom: 3px;
}
.map-pop__projects {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--hairline-sage);
}
.map-pop__projects-label {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ivory-faint);
  margin-bottom: 10px;
}
.map-pop__proj {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(234, 232, 218, 0.08);
  transition: color 0.3s;
}
.map-pop__proj:last-child { border-bottom: none; }
.map-pop__proj-name {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ivory) !important;
  transition: color 0.3s;
}
.map-pop__proj:hover .map-pop__proj-name { color: var(--gold-bright) !important; }
.map-pop__proj-price {
  font-family: var(--mono);
  font-size: 13.5px;
  letter-spacing: 0.05em;
  color: var(--gold-bright) !important;
  white-space: nowrap;
}

/* ---------- Property sheet modal ---------- */
.sheet {
  position: fixed;
  inset: 0;
  z-index: 2500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 3vw, 48px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s var(--ease), visibility 0.5s;
}
.sheet.is-open { opacity: 1; visibility: visible; }
.sheet__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(22, 20, 16, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.sheet__panel {
  position: relative;
  width: min(1080px, 100%);
  max-height: calc(100vh - 48px);
  background: linear-gradient(165deg, var(--obsidian-2), var(--obsidian));
  border: 1px solid var(--hairline);
  box-shadow: 0 60px 140px -40px rgba(0, 0, 0, 0.9);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--olive) transparent;
  transform: translateY(24px) scale(0.985);
  transition: transform 0.6s var(--ease);
}
.sheet.is-open .sheet__panel { transform: none; }
.sheet__close {
  position: absolute;
  top: 14px; right: 18px;
  z-index: 3;
  font-size: 36px;
  line-height: 1;
  color: var(--ivory-dim);
  transition: color 0.3s, transform 0.4s var(--ease);
  padding: 6px 10px;
}
.sheet__close:hover { color: var(--gold-bright); transform: rotate(90deg); }

.sheet__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
}
.sheet__media {
  border-right: 1px solid var(--hairline);
  padding: clamp(24px, 3vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: #1A1814;
}
.sheet__figure img {
  width: 100%;
  object-fit: cover;
  border: 1px solid rgba(234, 232, 218, 0.08);
}
.sheet__figure--hero img { aspect-ratio: 4 / 3; }
.sheet__figure figcaption {
  margin-top: 12px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory-faint);
}
.sheet__placeholder {
  flex: 1;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 26px;
  border: 1px solid rgba(234, 232, 218, 0.08);
}
.sheet__placeholder svg { width: 64px; opacity: 0.5; }
.sheet__placeholder svg polygon { fill: var(--gold); }
.sheet__placeholder span {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ivory-faint);
}

.sheet__info { padding: clamp(28px, 3.6vw, 56px); display: flex; flex-direction: column; }
.sheet__chip {
  align-self: flex-start;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--sage-bright);
  border: 1px solid var(--hairline-sage);
  padding: 9px 16px;
}
.sheet__location {
  margin-top: 22px;
  font-family: var(--mono);
  font-size: 13.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ivory-faint);
}
.sheet__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.1;
  color: var(--ivory);
  margin-top: 12px;
}
.sheet__price {
  margin-top: 24px;
  display: flex;
  align-items: baseline;
  gap: 18px;
}
.sheet__price span {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ivory-faint);
}
.sheet__price b {
  font-family: var(--mono);
  font-weight: 400;
  font-size: clamp(20px, 2.2vw, 27px);
  letter-spacing: 0.04em;
  color: var(--gold-bright);
}
.sheet__highlight {
  margin-top: 16px;
  display: flex;
  align-items: baseline;
  gap: 18px;
  border: 1px solid var(--hairline);
  background: rgba(171, 121, 68, 0.07);
  padding: 12px 16px;
}
.sheet__highlight span {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory-faint);
}
.sheet__highlight b { font-family: var(--serif); font-style: italic; font-weight: 500; font-size: 19px; color: var(--sage); }

.sheet__specs {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 28px;
  border-top: 1px solid rgba(234, 232, 218, 0.1);
  padding-top: 26px;
}
.sheet__spec dt {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-bright);
}
.sheet__spec dd { margin-top: 7px; font-family: var(--grot); font-weight: 300; font-size: 18px; color: var(--ivory); line-height: 1.55; }

.sheet__desc { margin-top: 26px; font-size: 18px; color: var(--ivory-dim); }

.sheet__advisor {
  margin-top: 30px;
  border-top: 1px solid var(--hairline);
  padding-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sheet__advisor-label {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ivory-faint);
}
.sheet__advisor-name { font-family: var(--serif); font-style: italic; font-size: 21px; color: var(--ivory); margin-top: 6px; }
.sheet__advisor-meta { font-family: var(--mono); font-size: 14px; letter-spacing: 0.08em; color: var(--ivory-dim); }

.sheet__actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.sheet__tag { font-family: var(--serif); font-style: italic; font-size: 17px; color: var(--gold-bright); }

@media (max-width: 880px) {
  .sheet__body { grid-template-columns: 1fr; }
  .sheet__media { border-right: none; border-bottom: 1px solid var(--hairline); }
  .sheet__placeholder { min-height: 200px; }
}

/* ---------- Approach ---------- */
.approach__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(28px, 3vw, 44px);
  margin-top: clamp(64px, 8vw, 104px);
}
.step { border-top: 1px solid rgba(23, 22, 18, 0.28); padding-top: 28px; }
.step__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(40px, 4vw, 58px);
  color: var(--sage-deep);
  line-height: 1;
}
.step__name {
  font-family: var(--grot);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 22px;
}
.step__body { margin-top: 14px; font-size: 18px; color: rgba(23, 22, 18, 0.85); }

/* ---------- Brand wallpaper (tiled isotipo) ---------- */
.hero::before, .contact::before {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 52%;
  z-index: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='350' height='512' viewBox='0 0 350 512'%3E%3Cg fill='%23756440'%3E%3Cg transform='translate(0,0)'%3E%3Cpolygon points='174.76 81.54 174.76 255.25 167.98 248.18 73.24 149.34 72.23 148.25 60.26 135.8 32.98 107.37 31.88 106.24 31.88 78.44 154.61 205.76 154.61 81.54 174.76 81.54'/%3E%3Cpolygon points='0 173.7 0 0 6.78 7.06 101.52 105.91 102.53 106.99 114.5 119.45 141.78 147.88 142.88 149.01 142.88 176.8 20.16 49.49 20.16 173.7 0 173.7'/%3E%3C/g%3E%3Cg transform='translate(0,256)'%3E%3Cpolygon points='174.76 81.54 174.76 255.25 167.98 248.18 73.24 149.34 72.23 148.25 60.26 135.8 32.98 107.37 31.88 106.24 31.88 78.44 154.61 205.76 154.61 81.54 174.76 81.54'/%3E%3Cpolygon points='0 173.7 0 0 6.78 7.06 101.52 105.91 102.53 106.99 114.5 119.45 141.78 147.88 142.88 149.01 142.88 176.8 20.16 49.49 20.16 173.7 0 173.7'/%3E%3C/g%3E%3Cg transform='translate(175,-128)'%3E%3Cpolygon points='174.76 81.54 174.76 255.25 167.98 248.18 73.24 149.34 72.23 148.25 60.26 135.8 32.98 107.37 31.88 106.24 31.88 78.44 154.61 205.76 154.61 81.54 174.76 81.54'/%3E%3Cpolygon points='0 173.7 0 0 6.78 7.06 101.52 105.91 102.53 106.99 114.5 119.45 141.78 147.88 142.88 149.01 142.88 176.8 20.16 49.49 20.16 173.7 0 173.7'/%3E%3C/g%3E%3Cg transform='translate(175,128)'%3E%3Cpolygon points='174.76 81.54 174.76 255.25 167.98 248.18 73.24 149.34 72.23 148.25 60.26 135.8 32.98 107.37 31.88 106.24 31.88 78.44 154.61 205.76 154.61 81.54 174.76 81.54'/%3E%3Cpolygon points='0 173.7 0 0 6.78 7.06 101.52 105.91 102.53 106.99 114.5 119.45 141.78 147.88 142.88 149.01 142.88 176.8 20.16 49.49 20.16 173.7 0 173.7'/%3E%3C/g%3E%3Cg transform='translate(175,384)'%3E%3Cpolygon points='174.76 81.54 174.76 255.25 167.98 248.18 73.24 149.34 72.23 148.25 60.26 135.8 32.98 107.37 31.88 106.24 31.88 78.44 154.61 205.76 154.61 81.54 174.76 81.54'/%3E%3Cpolygon points='0 173.7 0 0 6.78 7.06 101.52 105.91 102.53 106.99 114.5 119.45 141.78 147.88 142.88 149.01 142.88 176.8 20.16 49.49 20.16 173.7 0 173.7'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-size: 236px auto;
  background-position: bottom center;
  opacity: 0.34;
  -webkit-mask-image: linear-gradient(to top, black 30%, transparent 96%);
  mask-image: linear-gradient(to top, black 30%, transparent 96%);
}
.contact__grid { position: relative; z-index: 2; }

/* ---------- Contact ---------- */
.contact {
  background:
    radial-gradient(1000px 640px at 4% 10%, rgba(142, 165, 162, 0.2), transparent 58%),
    radial-gradient(800px 520px at 98% 90%, rgba(142, 165, 162, 0.1), transparent 60%),
    var(--obsidian);
}
.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(56px, 7vw, 120px);
  align-items: start;
}
.contact__meta { margin-top: clamp(40px, 5vw, 64px); display: flex; flex-direction: column; gap: 26px; }
.contact__meta div { border-top: 1px solid rgba(234, 232, 218, 0.1); padding-top: 18px; }
.contact__meta dt {
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ivory-faint);
}
.contact__meta dd { margin-top: 6px; font-family: var(--grot); font-weight: 300; font-size: 19.5px; }
.contact__meta a { color: var(--gold-bright); border-bottom: 1px solid transparent; transition: border-color 0.3s; }
.contact__meta a:hover { border-color: var(--gold-bright); }

.form { display: flex; flex-direction: column; gap: 26px; border: 1px solid var(--hairline-sage); padding: clamp(32px, 4vw, 56px); background: linear-gradient(165deg, #1c211f, var(--obsidian)); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.field { display: flex; flex-direction: column; gap: 10px; }
.field__label {
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ivory-faint);
}
.field input, .field select, .field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(234, 232, 218, 0.22);
  color: var(--ivory);
  font-family: var(--grot);
  font-weight: 300;
  font-size: 19px;
  padding: 13px 2px;
  outline: none;
  border-radius: 0;
  transition: border-color 0.4s;
}
.field select { appearance: none; cursor: pointer; }
.field select option { background: var(--obsidian-2); color: var(--ivory); }
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--sage-bright); }
.form__submit { align-self: flex-start; margin-top: 8px; }
.form__success { font-family: var(--mono); font-size: 15px; letter-spacing: 0.12em; color: var(--sage-bright); line-height: 1.8; }

/* ---------- Footer ---------- */
.footer {
  background:
    radial-gradient(900px 420px at 50% 0%, rgba(142, 165, 162, 0.09), transparent 65%),
    #16140F;
  border-top: 1px solid var(--hairline-sage);
  padding: clamp(56px, 7vw, 96px) 0 40px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.footer__wordmark { height: 22px; width: auto; }
.footer__tag { font-family: var(--serif); font-style: italic; color: var(--sage-bright); margin-top: 18px; font-size: 17px; }
.footer__nav { display: flex; flex-direction: column; gap: 14px; }
.footer__nav a {
  font-family: var(--grot);
  font-weight: 300;
  font-size: 17px;
  color: var(--ivory-dim);
  transition: color 0.3s;
}
.footer__nav a:hover { color: var(--sage-bright); }
.footer__seal img { width: 92px; opacity: 0.85; }
.footer__legal {
  margin-top: clamp(48px, 6vw, 80px);
  padding-top: 28px;
  border-top: 1px solid rgba(234, 232, 218, 0.08);
  display: flex;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.08em;
  color: rgba(234, 232, 218, 0.88);
  line-height: 1.8;
}
.footer__legal span:last-child { max-width: 62ch; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .nav__links { display: none; }
  .btn--nav { display: none; }
  .nav__burger { display: flex; }
  .destinations__layout { grid-template-columns: 1fr; }
  .destinations__list-wrap { border-right: none; border-bottom: 1px solid var(--hairline); max-height: 320px; }
  .destinations__map-wrap { min-height: 460px; }
  .approach__grid { grid-template-columns: 1fr 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .audiences__grid { grid-template-columns: 1fr; }
  .philosophy__grid { grid-template-columns: 1fr; }
  .philosophy__words { grid-template-columns: 1fr 1fr; }
  .approach__grid { grid-template-columns: 1fr; gap: 40px; }
  .form__row { grid-template-columns: 1fr; }
  .hero__stats { flex-wrap: wrap; gap: 28px; }
  .hero__scroll { display: none; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__seal { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
