/* =============================================================
   NATAL CONCIERGE CARTAGENA — Luxury concierge landing
   Design system: Editorial Luxury · noir + warm cream + soft gold
   ============================================================= */

/* ---------- Tokens ---------- */
:root {
  /* color */
  --noir: #0B0B0C;
  --noir-2: #131318;
  --ink: #1c1d22;
  --cream: #F6F1E7;
  --cream-2: #FBF8F1;
  --sand: #ECE2D0;
  --sand-2: #E3D6BD;
  --gold: #C2A14E;
  --gold-2: #DcBd76;
  --gold-deep: #94762f;
  --blue: #0E2A3B;
  --blue-2: #163d52;
  --palm: #2c5e4f;
  --muted: #6c6457;
  --muted-d: #b9b0a0;
  --line: rgba(22,18,10,.12);
  --line-d: rgba(255,255,255,.12);
  --white: #fff;

  /* type */
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, sans-serif;

  /* radius */
  --r: 20px;
  --r-lg: 28px;
  --r-xl: 36px;

  /* motion */
  --ease: cubic-bezier(.32, .72, 0, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);

  /* shadow (warm, diffused — never harsh) */
  --sh-sm: 0 2px 10px -4px rgba(30,24,12,.18);
  --sh: 0 22px 60px -30px rgba(28,22,12,.4);
  --sh-lg: 0 50px 110px -45px rgba(10,18,28,.5);
  --sh-gold: 0 18px 44px -18px rgba(148,118,47,.45);

  --nav-h: 76px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 96px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

html, body { overflow-x: clip; }

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overscroll-behavior-y: none;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
input, select, textarea { font: inherit; color: inherit; }
::selection { background: var(--gold); color: #fff; }

/* film grain — fixed, never on scrolling content */
body::after {
  content: "";
  position: fixed; inset: 0; z-index: 4;
  pointer-events: none; opacity: .035; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Layout helpers ---------- */
.container { width: min(1200px, 100% - 2.6rem); margin-inline: auto; }
.section { padding: clamp(4.5rem, 11vw, 9.5rem) 0; position: relative; }

.section__head { max-width: 720px; margin: 0 auto clamp(2.6rem, 6vw, 4.5rem); text-align: center; }
.section__title {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(2.1rem, 5.2vw, 4rem); line-height: 1.04;
  letter-spacing: -.01em; margin: .5rem 0 .9rem;
}
.section__lead { color: var(--muted); font-size: clamp(1rem, 1.4vw, 1.12rem); max-width: 60ch; margin-inline: auto; }

/* eyebrow */
.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .68rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .26em; color: var(--gold-deep);
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: currentColor; opacity: .6; }
.section__head .eyebrow::before { display: none; }
.eyebrow--light { color: var(--gold-2); }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--ink); --fg: #fff;
  position: relative; display: inline-flex; align-items: center; gap: .7rem;
  padding: .85rem 1rem .85rem 1.5rem; border-radius: 100px;
  background: var(--bg); color: var(--fg);
  font-size: .9rem; font-weight: 600; letter-spacing: .01em;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), background .4s var(--ease);
  will-change: transform;
}
.btn__ico {
  display: grid; place-items: center; width: 2rem; height: 2rem; border-radius: 50%;
  background: rgba(255,255,255,.16); font-style: normal; font-size: 1rem;
  transition: transform .5s var(--ease), background .4s var(--ease);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--sh); }
.btn:hover .btn__ico { transform: translate(3px, -1px); background: rgba(255,255,255,.28); }
.btn:active { transform: translateY(0) scale(.98); }

.btn--gold { --bg: linear-gradient(135deg, var(--gold-2), var(--gold) 55%, var(--gold-deep)); --fg: #2a2208; box-shadow: var(--sh-gold); }
.btn--gold .btn__ico { background: rgba(42,34,8,.16); }
.btn--gold:hover .btn__ico { background: rgba(42,34,8,.26); }
.btn--dark { --bg: var(--ink); }
.btn--ghost {
  --bg: transparent; --fg: #fff; padding: .85rem 1.6rem;
  border: 1px solid rgba(255,255,255,.4); backdrop-filter: blur(4px);
}
.btn--ghost:hover { background: rgba(255,255,255,.1); }
.btn--lg { padding: 1rem 1.2rem 1rem 1.8rem; font-size: .98rem; }
.btn--lg .btn__ico { width: 2.2rem; height: 2.2rem; }
.btn--block { width: 100%; justify-content: center; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(30px); filter: blur(6px); transition: opacity .9s var(--ease-out), transform .9s var(--ease-out), filter .9s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; filter: none; }
.reveal[data-d="1"]{ transition-delay: .08s } .reveal[data-d="2"]{ transition-delay: .16s }
.reveal[data-d="3"]{ transition-delay: .24s } .reveal[data-d="4"]{ transition-delay: .32s }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1 !important; transform: none !important; filter: none !important; } }

/* ---------- Double-bezel frame ---------- */
.frame {
  position: relative; padding: 7px; border-radius: var(--r-xl);
  background: linear-gradient(150deg, rgba(255,255,255,.7), rgba(236,226,208,.4));
  box-shadow: var(--sh), inset 0 1px 0 rgba(255,255,255,.7);
  border: 1px solid var(--line);
}
.frame::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: linear-gradient(150deg, var(--gold-2), transparent 35%, transparent 65%, var(--gold-deep));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; opacity: .55; pointer-events: none;
}
.frame__inner {
  position: relative; overflow: hidden; border-radius: calc(var(--r-xl) - 7px);
  box-shadow: inset 0 1px 2px rgba(255,255,255,.25);
}
.frame__inner img { width: 100%; height: 100%; object-fit: cover; }
.frame__tag {
  position: absolute; left: 1rem; bottom: 1rem; z-index: 2;
  font-size: .66rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: #fff; padding: .5rem .9rem; border-radius: 100px;
  background: rgba(11,11,12,.45); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.18);
}

/* =============================================================
   LOADER
   ============================================================= */
.loader {
  position: fixed; inset: 0; z-index: 9999;
  display: grid; place-items: center;
  background: radial-gradient(120% 120% at 50% 30%, #16161b 0%, var(--noir) 60%);
  transition: opacity .9s var(--ease), visibility .9s var(--ease);
}
.loader.is-done { opacity: 0; visibility: hidden; }
.loader__inner { text-align: center; animation: loaderIn 1s var(--ease-out) both; }
.loader__logo-ring {
  width: 128px; height: 128px; margin: 0 auto 1.6rem; display: grid; place-items: center;
  border-radius: 50%; position: relative;
}
.loader__logo-ring::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  border: 1px solid rgba(220,189,118,.25); border-top-color: var(--gold-2);
  animation: spin 1.1s linear infinite;
}
.loader__logo { width: 92px; height: 92px; object-fit: contain; filter: drop-shadow(0 6px 20px rgba(0,0,0,.5)); }
.loader__brand {
  font-family: var(--serif); font-size: 1.7rem; letter-spacing: .12em; color: var(--cream-2);
  font-weight: 500;
}
.loader__brand span { color: var(--gold-2); margin-left: .35em; }
.loader__tagline { font-size: .64rem; letter-spacing: .42em; text-transform: uppercase; color: var(--muted-d); margin-top: .35rem; }
.loader__bar { width: 180px; height: 2px; margin: 1.7rem auto 0; background: rgba(255,255,255,.12); border-radius: 2px; overflow: hidden; }
.loader__bar span { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--gold-deep), var(--gold-2)); transition: width .3s var(--ease-out); }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes loaderIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

/* =============================================================
   NAV
   ============================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: .9rem 0; transition: all .55s var(--ease);
}
.nav__inner {
  width: min(1200px, 100% - 1.8rem); margin-inline: auto;
  display: flex; align-items: center; gap: 1.2rem;
  padding: .5rem .6rem .5rem 1.2rem; border-radius: 100px;
  transition: all .55s var(--ease);
}
.nav.scrolled { padding: .55rem 0; }
.nav.scrolled .nav__inner {
  background: rgba(247,242,233,.78); backdrop-filter: blur(18px) saturate(1.4);
  box-shadow: 0 10px 40px -20px rgba(28,22,12,.4); border: 1px solid rgba(255,255,255,.5);
}
.nav__brand { display: flex; align-items: center; gap: .6rem; margin-right: auto; }
.nav__brand img { width: 42px; height: 42px; object-fit: contain; filter: drop-shadow(0 4px 12px rgba(0,0,0,.35)); }
.nav__brand-text { font-family: var(--serif); font-size: 1.32rem; font-weight: 600; color: #fff; letter-spacing: .02em; transition: color .5s var(--ease); }
.nav__brand-text strong { color: var(--gold-2); font-weight: 600; margin-left: .12em; }
.nav.scrolled .nav__brand-text { color: var(--ink); }

.nav__links { display: flex; gap: .3rem; }
.nav__links a {
  position: relative; padding: .5rem .95rem; font-size: .9rem; font-weight: 500;
  color: rgba(255,255,255,.92); border-radius: 100px; transition: color .4s var(--ease), background .4s var(--ease);
}
.nav__links a::after {
  content: ""; position: absolute; left: 50%; bottom: .35rem; width: 0; height: 1.5px;
  background: var(--gold-2); transform: translateX(-50%); transition: width .4s var(--ease);
}
.nav__links a:hover::after { width: 42%; }
.nav.scrolled .nav__links a { color: var(--ink); }
.nav__cta { padding: .6rem .7rem .6rem 1.2rem; }
.nav__cta .btn__ico { width: 1.7rem; height: 1.7rem; font-size: .85rem; }

/* burger */
.nav__burger { display: none; width: 46px; height: 46px; border-radius: 50%; position: relative; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25); }
.nav.scrolled .nav__burger { background: rgba(28,22,12,.06); border-color: var(--line); }
.nav__burger span { position: absolute; left: 50%; top: 50%; width: 18px; height: 1.6px; background: #fff; transform: translate(-50%,-50%); transition: all .4s var(--ease); }
.nav.scrolled .nav__burger span { background: var(--ink); }
.nav__burger span:first-child { margin-top: -4px; }
.nav__burger span:last-child { margin-top: 4px; }
.nav__burger.active span:first-child { margin-top: 0; transform: translate(-50%,-50%) rotate(45deg); }
.nav__burger.active span:last-child { margin-top: 0; transform: translate(-50%,-50%) rotate(-45deg); }

/* mobile menu */
.menu {
  position: fixed; inset: 0; z-index: 99; display: grid; align-content: center; justify-items: center; gap: 2rem;
  background: rgba(11,11,12,.92); backdrop-filter: blur(22px);
  opacity: 0; visibility: hidden; transition: opacity .5s var(--ease), visibility .5s var(--ease);
}
.menu.open { opacity: 1; visibility: visible; }
.menu__links { display: grid; gap: .2rem; text-align: center; }
.menu__links a {
  font-family: var(--serif); font-size: 2rem; font-weight: 500; color: var(--cream-2);
  padding: .35rem 1rem; opacity: 0; transform: translateY(24px);
  transition: opacity .5s var(--ease), transform .5s var(--ease), color .3s;
}
.menu.open .menu__links a { opacity: 1; transform: none; transition-delay: calc(.06s * var(--i)); }
.menu__links a:hover { color: var(--gold-2); }
.menu__foot { text-align: center; opacity: 0; transform: translateY(24px); transition: all .5s var(--ease); }
.menu.open .menu__foot { opacity: 1; transform: none; transition-delay: calc(.06s * var(--i)); }
.menu__foot p { color: var(--muted-d); font-size: .85rem; margin-top: 1rem; letter-spacing: .04em; }

/* =============================================================
   HERO
   ============================================================= */
.hero {
  position: relative; min-height: 100svh; min-height: 100dvh;
  display: flex; align-items: flex-end; overflow: hidden;
  padding: calc(var(--nav-h) + 2rem) 0 clamp(2.5rem, 6vw, 5rem);
  color: #fff;
}
.hero__slides { position: absolute; inset: 0; z-index: 0; }
.hero__slide {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0; transform: scale(1.08); transition: opacity 1.6s var(--ease), transform 7s ease-out;
}
.hero__slide.is-active { opacity: 1; transform: scale(1); }
.hero__veil {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(11,11,12,.55) 0%, rgba(11,11,12,.15) 28%, rgba(11,11,12,.15) 45%, rgba(11,15,18,.78) 88%, rgba(8,12,16,.94) 100%),
    radial-gradient(120% 80% at 78% 18%, rgba(194,161,78,.22), transparent 55%);
}
.hero__content { position: relative; z-index: 2; width: min(1200px, 100% - 2.6rem); margin-inline: auto; max-width: 1200px; }
.hero__title {
  font-family: var(--serif); font-weight: 600; letter-spacing: -.015em;
  font-size: clamp(2.7rem, 7.4vw, 6rem); line-height: 1.02;
  max-width: 16ch; margin: 1rem 0 1.2rem; text-shadow: 0 2px 30px rgba(0,0,0,.35);
}
.hero__title em { font-style: italic; color: var(--gold-2); font-weight: 500; }
.hero__sub { max-width: 52ch; font-size: clamp(1.02rem, 1.5vw, 1.22rem); color: rgba(255,255,255,.9); line-height: 1.65; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }
.hero__trust {
  list-style: none; display: flex; flex-wrap: wrap; gap: clamp(1.4rem, 4vw, 3.2rem);
  margin-top: clamp(2.2rem, 5vw, 3.4rem); padding-top: 1.8rem; border-top: 1px solid rgba(255,255,255,.18);
}
.hero__trust li { display: flex; flex-direction: column; }
.hero__trust strong { font-family: var(--serif); font-size: clamp(1.8rem, 3.4vw, 2.7rem); font-weight: 600; color: var(--gold-2); line-height: 1; }
.hero__trust span { font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.7); margin-top: .35rem; }

.hero__scroll { position: absolute; z-index: 3; right: clamp(1.3rem, 4vw, 3rem); bottom: clamp(2rem, 5vw, 3.2rem); display: flex; flex-direction: column; align-items: center; gap: 1.2rem; }
.hero__dots { display: flex; gap: .5rem; }
.hero__dots button { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.35); transition: all .4s var(--ease); }
.hero__dots button.on { background: var(--gold-2); width: 22px; border-radius: 100px; }
.hero__mouse { width: 26px; height: 42px; border: 1.5px solid rgba(255,255,255,.55); border-radius: 100px; position: relative; }
.hero__mouse span { position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; border-radius: 4px; background: var(--gold-2); transform: translateX(-50%); animation: mouse 1.8s var(--ease) infinite; }
@keyframes mouse { 0%,100% { opacity: 0; transform: translate(-50%,0); } 40% { opacity: 1; transform: translate(-50%,10px); } }

/* =============================================================
   SERVICES
   ============================================================= */
.services { background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%); }
.svc { display: grid; gap: clamp(3rem, 7vw, 6rem); margin-top: 1rem; }
.svc__row { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(1.6rem, 4vw, 4rem); align-items: center; }
.svc__row--rev .svc__media { order: 2; }
.svc__media { position: relative; }
.svc__media .frame__inner { aspect-ratio: 4 / 3; }
.svc__media img { transition: transform 1.1s var(--ease); }
.svc__row:hover .svc__media img { transform: scale(1.05); }
.svc__body h3 { font-family: var(--serif); font-size: clamp(1.8rem, 3.4vw, 2.7rem); font-weight: 600; line-height: 1.08; margin: .55rem 0 .9rem; letter-spacing: -.01em; }
.svc__body p { color: var(--muted); max-width: 48ch; margin-bottom: 1.5rem; }

/* =============================================================
   ABOUT
   ============================================================= */
.about { background: linear-gradient(180deg, var(--cream-2) 0%, var(--sand) 100%); }
.about__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.about__media { position: relative; }
.about__media .frame--tall .frame__inner { aspect-ratio: 4 / 5; }
.about__badge {
  position: absolute; right: -10px; bottom: 28px; z-index: 3;
  background: var(--noir); color: #fff; padding: 1rem 1.3rem; border-radius: var(--r);
  box-shadow: var(--sh-lg); border: 1px solid rgba(255,255,255,.08);
}
.about__badge strong { display: block; font-family: var(--serif); color: var(--gold-2); font-size: 1.5rem; letter-spacing: .04em; }
.about__badge span { font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-d); }
.about__body > p { color: var(--muted); margin-bottom: 1.1rem; max-width: 56ch; }
.about__body > p strong { color: var(--ink); }
.about__points { list-style: none; display: grid; gap: .7rem; margin: 1.6rem 0; }
.about__points li { display: flex; align-items: center; gap: .8rem; font-weight: 500; color: var(--ink); }
.about__points i { color: var(--gold-deep); font-style: normal; font-size: .9rem; }
.about__stats { display: flex; flex-wrap: wrap; gap: clamp(1.2rem, 3vw, 2.5rem); margin: 1.8rem 0 2.2rem; padding: 1.5rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.about__stats div { display: flex; flex-direction: column; }
.about__stats strong { font-family: var(--serif); font-size: 1.9rem; color: var(--gold-deep); line-height: 1; font-weight: 600; }
.about__stats span { font-size: .74rem; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin-top: .35rem; }

/* =============================================================
   PLACES / EXPERIENCIAS
   ============================================================= */
.places { background: var(--cream-2); }
.places__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2.2vw, 1.6rem); }
.place {
  position: relative; border-radius: var(--r-lg); overflow: hidden; min-height: 300px;
  display: flex; align-items: flex-end; box-shadow: var(--sh); border: 1px solid var(--line);
  transition: transform .6s var(--ease), box-shadow .6s var(--ease);
}
.place--wide { grid-column: span 2; }
.place__img { position: absolute; inset: 0; }
.place__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.place::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(11,11,12,.82) 100%); }
.place__info { position: relative; z-index: 2; padding: 1.5rem; color: #fff; }
.place__info h3 { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; line-height: 1.1; }
.place__info span { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-2); }
.place:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.place:hover .place__img img { transform: scale(1.08); }

/* =============================================================
   FLEET / YATES (dark)
   ============================================================= */
.fleet { background: radial-gradient(120% 90% at 80% 0%, var(--blue-2) 0%, var(--blue) 45%, var(--noir) 100%); color: #fff; }
.fleet .section__lead { color: rgba(255,255,255,.72); }
.fleet__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.1rem, 2.4vw, 1.8rem); }
.yacht {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 30px 60px -40px rgba(0,0,0,.8);
  transition: transform .6s var(--ease), box-shadow .6s var(--ease), border-color .6s var(--ease);
  transform-style: preserve-3d;
}
.yacht:hover { transform: translateY(-8px); border-color: rgba(220,189,118,.4); box-shadow: 0 50px 90px -45px rgba(0,0,0,.9), var(--sh-gold); }
.yacht__img { position: relative; aspect-ratio: 16 / 11; overflow: hidden; }
.yacht__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.yacht:hover .yacht__img img { transform: scale(1.07); }
.yacht__cap {
  position: absolute; top: .85rem; right: .85rem; z-index: 2;
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .72rem; font-weight: 600; color: #fff;
  padding: .4rem .75rem; border-radius: 100px;
  background: rgba(11,11,12,.5); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.18);
}
.yacht__cap b { color: var(--gold-2); }
.yacht__body { padding: 1.25rem 1.25rem 1.4rem; }
.yacht__name { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; line-height: 1.05; }
.yacht__type { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-2); margin-bottom: 1rem; }
.yacht__date { display: block; margin-bottom: .8rem; }
.yacht__date span { display: block; font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.55); margin-bottom: .4rem; }
.yacht__date input {
  width: 100%; padding: .7rem .9rem; border-radius: 12px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.16); color: #fff;
  transition: border-color .3s, background .3s;
  color-scheme: dark;
}
.yacht__date input:focus { outline: none; border-color: var(--gold-2); background: rgba(255,255,255,.12); }
.yacht .btn { width: 100%; justify-content: center; }
.fleet__note { text-align: center; max-width: 56ch; margin: clamp(2.5rem,5vw,3.5rem) auto 0; color: rgba(255,255,255,.6); font-size: .9rem; }

/* =============================================================
   CONTACT
   ============================================================= */
.contact { background: linear-gradient(180deg, var(--noir) 0%, var(--noir-2) 100%); color: #fff; }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.contact .section__title { color: #fff; }
.contact__lead { color: var(--muted-d); max-width: 46ch; margin-bottom: 2rem; }
.contact__list { list-style: none; display: grid; gap: 1.1rem; margin-bottom: 2.2rem; }
.contact__list li { display: flex; gap: 1rem; align-items: center; }
.contact__list i { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; background: rgba(220,189,118,.12); border: 1px solid rgba(220,189,118,.3); color: var(--gold-2); font-style: normal; font-size: 1.1rem; flex-shrink: 0; }
.contact__list span { display: block; font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-d); }
.contact__list a, .contact__list p { color: #fff; font-weight: 500; font-size: 1.05rem; }
.contact__list a:hover { color: var(--gold-2); }
.contact__award { display: flex; align-items: center; gap: 1rem; padding: 1rem 1.2rem; border-radius: var(--r); background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); }
.contact__award img { width: 84px; height: auto; border-radius: 10px; }
.contact__award p { font-size: .82rem; color: var(--muted-d); }

.contact__form { background: linear-gradient(150deg, rgba(255,255,255,.1), rgba(255,255,255,.03)); }
.contact__form .frame__inner { box-shadow: none; background: rgba(255,255,255,.02); }
.contact__form-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; padding: clamp(1.4rem, 3vw, 2.2rem); }
.field { display: flex; flex-direction: column; gap: .45rem; grid-column: span 2; }
.field--half { grid-column: span 1; }
.field label { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted-d); }
.field input, .field select, .field textarea {
  padding: .85rem 1rem; border-radius: 13px; color: #fff;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  transition: border-color .3s, background .3s; color-scheme: dark; width: 100%;
}
.field textarea { resize: vertical; min-height: 84px; }
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,.4); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold-2); background: rgba(255,255,255,.1); }
.contact__form .btn { grid-column: span 2; margin-top: .3rem; }
.contact__privacy { grid-column: span 2; font-size: .74rem; color: var(--muted-d); text-align: center; }

/* =============================================================
   FOOTER
   ============================================================= */
.footer { background: var(--noir); color: var(--cream); padding-top: clamp(3.5rem, 7vw, 6rem); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1.2fr .8fr; gap: 2.5rem; padding-bottom: 3rem; }
.footer__brand img { width: 56px; height: 56px; object-fit: contain; }
.footer__name { font-family: var(--serif); font-size: 1.5rem; margin: .7rem 0 .6rem; }
.footer__name strong { color: var(--gold-2); }
.footer__tag { color: var(--muted-d); font-size: .92rem; max-width: 38ch; margin-bottom: 1.3rem; }
.footer__social { display: flex; gap: .6rem; flex-wrap: wrap; }
.footer__social a { font-size: .8rem; padding: .5rem 1rem; border-radius: 100px; border: 1px solid rgba(255,255,255,.16); transition: all .4s var(--ease); }
.footer__social a:hover { background: var(--gold); color: #2a2208; border-color: var(--gold); }
.footer__col h4 { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-2); margin-bottom: 1.1rem; font-weight: 600; }
.footer__col a, .footer__col p { display: block; color: var(--muted-d); font-size: .92rem; margin-bottom: .6rem; transition: color .3s; }
.footer__col a:hover { color: var(--gold-2); }
.footer__rtn { color: var(--gold-2) !important; font-weight: 600; letter-spacing: .06em; }
.footer__col--fontur img { width: 100%; max-width: 120px; opacity: .85; border-radius: 8px; background: #fff; padding: 6px; }
.footer__bar { border-top: 1px solid rgba(255,255,255,.1); padding: 1.5rem 0; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; width: min(1200px, 100% - 2.6rem); margin-inline: auto; }
.footer__bar p { font-size: .82rem; color: var(--muted-d); }
.footer__legal { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.footer__legal a { font-size: .82rem; color: var(--muted-d); transition: color .3s; }
.footer__legal a:hover { color: var(--gold-2); }

/* =============================================================
   FLOATING BUTTONS
   ============================================================= */
.fab {
  position: fixed; z-index: 90; display: grid; place-items: center;
  border-radius: 50%; box-shadow: var(--sh-lg);
  transition: transform .5s var(--ease), opacity .4s var(--ease), background .4s;
}
.fab--wa { right: clamp(1rem, 3vw, 1.8rem); bottom: clamp(1rem, 3vw, 1.8rem); width: 58px; height: 58px; background: #25D366; color: #fff; }
.fab--wa::before { content: ""; position: absolute; inset: 0; border-radius: 50%; background: #25D366; opacity: .5; animation: pulse 2.4s var(--ease) infinite; z-index: -1; }
.fab--wa:hover { transform: scale(1.08) translateY(-2px); }
.fab--top { right: clamp(1rem, 3vw, 1.8rem); bottom: calc(clamp(1rem, 3vw, 1.8rem) + 70px); width: 46px; height: 46px; background: var(--ink); color: #fff; font-size: 1.1rem; opacity: 0; visibility: hidden; transform: translateY(12px); }
.fab--top.show { opacity: 1; visibility: visible; transform: none; }
.fab--top:hover { background: var(--gold); color: #2a2208; }
@keyframes pulse { 0% { transform: scale(1); opacity: .5; } 70%,100% { transform: scale(1.7); opacity: 0; } }

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 980px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: block; }
  .svc__row, .svc__row--rev .svc__media { grid-template-columns: 1fr; }
  .svc__row--rev .svc__media { order: 0; }
  .about__grid { grid-template-columns: 1fr; }
  .about__media { max-width: 460px; }
  .contact__grid { grid-template-columns: 1fr; }
  .places__grid { grid-template-columns: repeat(2, 1fr); }
  .place--wide { grid-column: span 2; }
  .fleet__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer__col--fontur { grid-column: span 2; }
}

@media (max-width: 600px) {
  .container { width: min(1200px, 100% - 2rem); }
  .hero { align-items: flex-end; }
  .hero__title { font-size: clamp(2.5rem, 11vw, 3.4rem); max-width: 14ch; }
  .hero__sub { font-size: 1.02rem; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { justify-content: center; }
  .hero__trust { gap: 1.2rem 2rem; }
  .hero__scroll { display: none; }
  .places__grid { grid-template-columns: 1fr; }
  .place--wide { grid-column: span 1; }
  .fleet__grid { grid-template-columns: 1fr; }
  .contact__form-inner { grid-template-columns: 1fr; }
  .field--half { grid-column: span 1; }
  .field, .contact__form .btn, .contact__privacy { grid-column: span 1; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__col--fontur { grid-column: span 1; }
  .footer__bar { flex-direction: column; text-align: center; }
}

@media (max-width: 380px) {
  .hero__trust strong { font-size: 1.6rem; }
}

/* =============================================================
   LANGUAGE TOGGLE
   ============================================================= */
.lang { display: inline-flex; align-items: center; gap: 2px; padding: 3px; border-radius: 100px; border: 1px solid rgba(255,255,255,.28); }
.nav.scrolled .lang { border-color: var(--line); }
.lang button { font-size: .72rem; font-weight: 700; letter-spacing: .06em; padding: .32rem .62rem; border-radius: 100px; color: rgba(255,255,255,.75); transition: color .4s var(--ease), background .4s var(--ease); }
.nav.scrolled .lang button { color: var(--muted); }
.lang button.on { background: var(--gold); color: #2a2208; }
.nav__lang { margin-left: .2rem; }
.menu__lang { display: inline-flex; transform: scale(1.15); margin-top: 1.4rem; border-color: rgba(255,255,255,.3); }
.menu__lang button { color: rgba(255,255,255,.8); }

/* =============================================================
   SUB-HERO (páginas internas)
   ============================================================= */
.subhero {
  position: relative; min-height: 60vh; min-height: 60svh;
  display: flex; align-items: flex-end; overflow: hidden; color: #fff;
  padding: calc(var(--nav-h) + 3rem) 0 clamp(2.4rem, 6vw, 4.2rem);
}
.subhero__img { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.06); }
.subhero__veil { position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,11,12,.6) 0%, rgba(11,11,12,.2) 38%, rgba(8,12,16,.88) 100%),
              radial-gradient(120% 80% at 80% 10%, rgba(194,161,78,.22), transparent 55%); }
.subhero__content { position: relative; z-index: 2; }
.subhero h1 { font-family: var(--serif); font-weight: 600; font-size: clamp(2.4rem, 6.4vw, 4.6rem); line-height: 1.03; letter-spacing: -.012em; margin: .6rem 0 .9rem; max-width: 18ch; text-shadow: 0 2px 26px rgba(0,0,0,.35); }
.subhero h1 em { font-style: italic; color: var(--gold-2); font-weight: 500; }
.subhero p { max-width: 52ch; color: rgba(255,255,255,.9); font-size: clamp(1rem, 1.4vw, 1.18rem); }
.crumbs { display: flex; gap: .55rem; align-items: center; font-size: .76rem; letter-spacing: .05em; color: rgba(255,255,255,.72); }
.crumbs a:hover { color: var(--gold-2); }
.crumbs span { opacity: .45; }

/* =============================================================
   SUB-PAGE CONTENT
   ============================================================= */
.sub-section { padding: clamp(3.5rem, 8vw, 7rem) 0; }
.sub-section--cream { background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%); }
.sub-section--sand { background: linear-gradient(180deg, var(--cream-2) 0%, var(--sand) 100%); }
.sub-lead { max-width: 64ch; margin: 0 auto; text-align: center; color: var(--muted); font-size: clamp(1.06rem, 1.5vw, 1.24rem); line-height: 1.7; }
.sub-lead strong { color: var(--ink); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.split--rev .split__media { order: 2; }
.split__media .frame__inner { aspect-ratio: 4 / 3; }
.split__body h2 { font-family: var(--serif); font-size: clamp(1.9rem, 3.6vw, 2.8rem); font-weight: 600; line-height: 1.08; margin-bottom: .9rem; letter-spacing: -.01em; }
.split__body p { color: var(--muted); margin-bottom: 1.1rem; max-width: 52ch; }

/* feature / benefit cards (3D hover) */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.1rem, 2.4vw, 1.6rem); }
.feature {
  padding: clamp(1.6rem, 3vw, 2.2rem); border-radius: var(--r-lg);
  background: var(--cream-2); border: 1px solid var(--line); box-shadow: var(--sh-sm);
  transition: transform .6s var(--ease), box-shadow .6s var(--ease);
}
.feature:hover { transform: translateY(-7px); box-shadow: var(--sh); }
.feature__ic {
  width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--gold-2), var(--gold) 60%, var(--gold-deep));
  color: #2a2208; font-size: 1.4rem; margin-bottom: 1.2rem; box-shadow: var(--sh-gold);
}
.feature h3 { font-family: var(--serif); font-size: 1.45rem; font-weight: 600; margin-bottom: .5rem; line-height: 1.1; }
.feature p { color: var(--muted); font-size: .96rem; }

/* checklist "qué incluye" */
.includes { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: .85rem 2.2rem; max-width: 760px; margin: 0 auto; }
.includes li { display: flex; gap: .75rem; align-items: flex-start; color: var(--ink); font-weight: 500; }
.includes li::before { content: "✓"; display: grid; place-items: center; flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%; background: rgba(194,161,78,.16); color: var(--gold-deep); font-size: .8rem; font-weight: 700; }

/* CTA band */
.ctaband {
  position: relative; overflow: hidden; border-radius: var(--r-xl);
  padding: clamp(2.6rem, 6vw, 4.6rem) clamp(1.5rem, 4vw, 3rem); text-align: center; color: #fff;
  background: radial-gradient(120% 130% at 50% 0%, var(--blue-2) 0%, var(--blue) 45%, var(--noir) 100%);
  border: 1px solid rgba(255,255,255,.08); box-shadow: var(--sh-lg);
}
.ctaband::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 60% at 80% 20%, rgba(194,161,78,.18), transparent 60%); pointer-events: none; }
.ctaband .eyebrow { position: relative; }
.ctaband h2 { position: relative; font-family: var(--serif); font-size: clamp(1.9rem, 4.4vw, 3.1rem); font-weight: 600; margin: .6rem 0 .8rem; line-height: 1.06; }
.ctaband p { position: relative; color: rgba(255,255,255,.78); max-width: 48ch; margin: 0 auto 1.9rem; }
.ctaband__cta { position: relative; display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; }

/* =============================================================
   LEGAL
   ============================================================= */
.legal { background: var(--cream); }
.legal__wrap { max-width: 820px; }
.legal h2 { font-family: var(--serif); font-size: clamp(1.5rem, 2.6vw, 1.9rem); font-weight: 600; color: var(--ink); margin: 2.6rem 0 .8rem; }
.legal h2:first-of-type { margin-top: 0; }
.legal p, .legal li { color: var(--muted); margin-bottom: .85rem; }
.legal ul { padding-left: 1.2rem; }
.legal li { margin-bottom: .5rem; }
.legal__updated { font-size: .82rem; color: var(--muted); letter-spacing: .04em; margin-top: .4rem; }

@media (max-width: 980px) {
  .split, .split--rev .split__media { grid-template-columns: 1fr; }
  .split--rev .split__media { order: 0; }
  .features { grid-template-columns: 1fr; }
  .feature { display: flex; align-items: flex-start; gap: 1.1rem; padding: 1.4rem; }
  .feature__ic { margin-bottom: 0; width: 48px; height: 48px; flex-shrink: 0; }
  .includes { grid-template-columns: 1fr; }
}
@media (max-width: 980px) {
  .nav__lang { display: none; }
}
