/* ============================================
   Solo Per Due — landing
   Navy editorial wedding, Cormorant + Inter
   ============================================ */

:root {
  /* ===== Palette: navy (default) ===== */
  --navy: #0e1c30;
  --navy-soft: #142a44;
  --navy-deep: #091525;
  --cream: #f6efe2;
  --cream-warm: #eee3cf;
  --cream-paper: #faf6ec;
  --gold: #b08a3e;
  --gold-soft: #c9a567;
  --gold-pale: #d9bf86;
  --ink: #1a1a1a;
  --muted: #6c6457;
  --line: rgba(14, 28, 48, 0.14);
  --line-light: rgba(246, 239, 226, 0.22);

  /* Type */
  --display: "Cormorant Garamond", "Cormorant", "EB Garamond", Georgia, serif;
  --body: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;

  /* Ornament intensity (controlled by tweak) */
  --orn-opacity: 0.55;
  --orn-scale: 1;

  /* Sizes */
  --maxw: 1340px;
  --gutter: clamp(20px, 4vw, 56px);
}

/* === Palette variants === */
body[data-palette="terracotta"] {
  --navy: #2a1d18;
  --navy-soft: #3a2922;
  --navy-deep: #1d130f;
  --cream: #f4ebde;
  --cream-warm: #e8d8c0;
  --gold: #b66a3e;
  --gold-soft: #d2895d;
}
body[data-palette="olive"] {
  --navy: #2a2e1f;
  --navy-soft: #3a3f2c;
  --navy-deep: #1c1f14;
  --cream: #f3eedf;
  --cream-warm: #e3dcc4;
  --gold: #8a7a3a;
  --gold-soft: #b0a162;
}

/* === Font variants (tweak) === */
body[data-display="Playfair Display"] {
  --display: "Playfair Display", Georgia, serif;
}
body[data-display="Italiana"] {
  --display: "Italiana", "Cormorant Garamond", Georgia, serif;
}
body[data-body="DM Sans"] {
  --body: "DM Sans", -apple-system, sans-serif;
}
body[data-body="Manrope"] {
  --body: "Manrope", -apple-system, sans-serif;
}

body[data-ornaments="subtle"] { --orn-opacity: 0.3; --orn-scale: 0.85; }
body[data-ornaments="bold"]   { --orn-opacity: 0.85; --orn-scale: 1.15; }

/* === Reset ===  */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  background: var(--cream);
  color: var(--ink);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }

/* === Typography utilities === */
.script {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.eyebrow, .kicker {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 24px;
}
.kicker-light { color: var(--gold-soft); }
.ornament {
  color: var(--gold);
  letter-spacing: 0.1em;
  font-size: 14px;
  opacity: var(--orn-opacity);
}
.ornament-rule {
  margin: 56px auto 0;
  text-align: center;
}

/* ===========================================
   NAV
   =========================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 239, 226, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 10px var(--gutter);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
}
.logo-img {
  display: block;
  width: 42%;
  min-width: 160px;
  max-width: 400px;
  height: auto;
}
.logo-img-light {
  /* Knock out the white background on cream */
  mix-blend-mode: multiply;
}
.logo-img-dark {
  /* Pre-transparent logo for dark footer */
  height: 131px;
}
.logo-mark { width: 38px; height: 38px; color: var(--gold); }
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-line1 {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.logo-line1 em { font-style: italic; font-weight: 500; }
.logo-line2 {
  font-family: var(--body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.nav-links {
  display: flex;
  justify-content: center;
  gap: 36px;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--navy);
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.lang-toggle {
  display: flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
}
.lang-btn {
  background: transparent;
  border: 0;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--navy);
  opacity: 0.5;
  transition: all 0.2s;
}
.lang-btn.is-active {
  background: var(--navy);
  color: var(--cream);
  opacity: 1;
}
.btn-cta {
  background: var(--navy);
  color: var(--cream);
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: background 0.2s;
}
.btn-cta:hover { background: var(--navy-deep); }

/* ===========================================
   HERO
   =========================================== */
.hero {
  position: relative;
  padding: 56px var(--gutter) 80px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.hero-ornament-top {
  text-align: center;
  margin-bottom: 40px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 64px;
  align-items: center;
  min-height: 620px;
}
.hero-text {
  position: relative;
  z-index: 2;
}

/* ===== Solo Per Due wordmark ===== */
.eyebrow-presents {
  margin-bottom: 16px;
  color: var(--muted);
  font-weight: 400;
  font-style: italic;
  font-family: var(--display);
  text-transform: none;
  letter-spacing: 0.08em;
  font-size: 14px;
}
.wordmark {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.wordmark-rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
  max-width: 80px;
}
.wordmark-spark {
  color: var(--gold);
  font-size: 13px;
  opacity: var(--orn-opacity);
}
.wordmark-text {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(54px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.015em;
  color: var(--navy);
  margin: 0 0 14px;
  text-align: left;
}
.wordmark-text em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
}
.wordmark-sub {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
  max-width: 460px;
}
.display {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--navy);
  margin: 0 0 28px;
  text-wrap: balance;
}
.display .script {
  display: inline-block;
  font-weight: 500;
  color: var(--gold);
  padding-right: 0.08em;
}
.display-post {
  display: block;
  font-size: 0.4em;
  font-family: var(--display);
  font-style: italic;
  color: var(--muted);
  font-weight: 400;
  margin-top: 18px;
  letter-spacing: 0;
}
.hero-sub {
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 480px;
  margin: 0 0 36px;
}
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: var(--cream);
  padding: 16px 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border: 0;
  transition: all 0.25s;
}
.btn-primary:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-1px);
}
.cta-sub {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ===== Hero collage (4 image-slots in organic shapes) ===== */
.hero-collage {
  position: relative;
  height: 620px;
  color: var(--gold);
}
.hero-tile {
  position: absolute;
  background: var(--cream-warm);
  box-shadow: 0 24px 60px -32px rgba(14, 28, 48, 0.4);
}
.hero-tile-1 {
  /* big tall left, soft organic top */
  top: 0;
  left: 4%;
  width: 46%;
  height: 78%;
  clip-path: path("M 50,0 Q 0,30 4,180 L 4,520 Q 0,620 100,615 L 200,615 Q 280,610 282,520 L 282,90 Q 280,10 200,4 Z");
  border-radius: 0;
}
.hero-tile-2 {
  /* top right rounded */
  top: 8%;
  right: 0;
  width: 44%;
  height: 36%;
  border-radius: 180px 180px 240px 240px / 240px 240px 180px 180px;
}
.hero-tile-3 {
  /* circle bottom right */
  bottom: 14%;
  right: 18%;
  width: 32%;
  height: 32%;
  border-radius: 50%;
}
.hero-tile-4 {
  /* small bottom right square */
  bottom: 0;
  right: 0;
  width: 28%;
  height: 26%;
  border-radius: 8px 8px 60px 8px;
}
.hero-floral {
  position: absolute;
  color: var(--gold);
  opacity: var(--orn-opacity);
  pointer-events: none;
  transform: scale(var(--orn-scale));
}
.hero-floral-1 {
  width: 80px;
  height: 80px;
  top: 38%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(15deg) scale(var(--orn-scale));
  z-index: 3;
}

/* Image-slot styling override (so empty state matches the design) */
image-slot.hero-tile,
image-slot.destino-photo,
image-slot.masonry-tile {
  --is-bg: var(--cream-warm);
  --is-fg: var(--gold);
  --is-border: rgba(176, 138, 62, 0.4);
  --is-font: var(--display);
}

/* Ribbon */
.ribbon {
  margin-top: 56px;
  padding: 18px 32px;
  background: var(--navy);
  color: var(--cream);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  text-align: center;
  position: relative;
}
.ribbon::before,
.ribbon::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 16px;
  height: 100%;
  background: var(--navy);
  transform: translateY(-50%);
}
.ribbon::before {
  left: -10px;
  clip-path: polygon(100% 0, 100% 100%, 0 50%);
}
.ribbon::after {
  right: -10px;
  clip-path: polygon(0 0, 0 100%, 100% 50%);
}
.ribbon-text {
  font-family: var(--display);
  font-style: italic;
  font-size: 17px;
  letter-spacing: 0.08em;
  color: var(--cream);
}
.ribbon-spark {
  color: var(--gold-soft);
  font-size: 14px;
}

/* Hero stats */
.hero-stats {
  margin-top: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 32px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat {
  flex: 1;
  text-align: center;
  padding: 0 32px;
}
.stat-num {
  font-family: var(--display);
  font-size: 52px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-lbl {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.stat-divider {
  width: 1px;
  height: 56px;
  background: var(--line);
}

/* ===========================================
   STATEMENT
   =========================================== */
.statement {
  max-width: 920px;
  margin: 0 auto;
  padding: 120px var(--gutter) 80px;
  text-align: center;
}
.statement .kicker { margin-bottom: 32px; }
.statement-body {
  font-family: var(--display);
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.32;
  color: var(--navy);
  letter-spacing: -0.01em;
  font-weight: 400;
  margin: 0;
  text-wrap: pretty;
}
.statement-body .script {
  color: var(--gold);
  margin-right: 0.15em;
}

/* ===========================================
   SECTION HEAD (shared)
   =========================================== */
.section-head {
  max-width: var(--maxw);
  margin: 0 auto 64px;
  padding: 0 var(--gutter);
  text-align: center;
}
.section-head-narrow { max-width: 760px; }
.section-title {
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--navy);
  margin: 0;
  text-wrap: balance;
}
.section-title .script {
  display: block;
  color: var(--gold);
  font-weight: 500;
  margin-top: 4px;
}
.section-title-light { color: var(--cream); }
.section-title-light .script { color: var(--gold-soft); }
.section-sub {
  margin: 20px auto 0;
  max-width: 580px;
  font-size: 16px;
  color: var(--muted);
  text-wrap: pretty;
}

/* ===========================================
   DESTINOS
   =========================================== */
.destinos {
  padding: 100px 0 80px;
}
.collection-label {
  max-width: var(--maxw);
  margin: 56px auto 32px;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.collection-rule {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--line) 30%, var(--line) 70%, transparent);
}
.collection-name {
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  color: var(--gold);
  white-space: nowrap;
}
.destino-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.destino-grid-single {
  grid-template-columns: 1fr;
  max-width: 720px;
}

.destino-card {
  display: flex;
  flex-direction: column;
  position: relative;
}
.destino-photo-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: visible;
  margin-bottom: 24px;
}

/* ===== Placeholder slot overlays =====
   Show on slots that don't yet have a real photo — gives clients a
   strategic, attractive preview of which destination goes there. */
.slot-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  pointer-events: none;
  z-index: 3;
  padding: 24px;
  background: linear-gradient(
    180deg,
    rgba(14, 28, 48, 0.05) 0%,
    rgba(14, 28, 48, 0.18) 45%,
    rgba(14, 28, 48, 0.55) 100%
  );
}
.slot-overlay-eyebrow {
  font-family: var(--body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(246, 239, 226, 0.9);
  background: rgba(176, 138, 62, 0.85);
  padding: 5px 12px 5px 14px;
  margin-bottom: 16px;
  border-radius: 2px;
}
.slot-overlay-name {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 44px;
  line-height: 1;
  color: var(--cream);
  letter-spacing: -0.01em;
  text-shadow: 0 2px 24px rgba(14, 28, 48, 0.6);
}
.slot-overlay-rule {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold-soft);
  margin: 14px auto;
}
.slot-overlay-sub {
  font-family: var(--display);
  font-style: italic;
  font-size: 17px;
  color: var(--gold-soft);
  letter-spacing: 0.02em;
}

/* Gallery overlay — slightly smaller scale */
.slot-overlay-gallery {
  padding: 16px;
  background: linear-gradient(180deg, rgba(14,28,48,0.1) 0%, rgba(14,28,48,0.55) 100%);
}
.slot-overlay-gallery .slot-overlay-eyebrow {
  font-size: 9px;
  letter-spacing: 0.22em;
  padding: 4px 10px;
  margin-bottom: 10px;
}
.slot-overlay-gallery .slot-overlay-name {
  font-size: 32px;
}

/* Hero placeholder overlay — small tile */
.slot-overlay-hero {
  padding: 14px;
  border-radius: 40px;
}
.slot-overlay-hero .slot-overlay-eyebrow {
  font-size: 9px;
  padding: 3px 8px;
  margin-bottom: 8px;
}
.slot-overlay-hero .slot-overlay-name {
  font-size: 24px;
}
.hero-tile-4-overlay {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 28%;
  height: 26%;
}
image-slot.destino-photo {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}
.destino-flag {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  pointer-events: none;
  background: var(--cream);
  color: var(--navy);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 2px;
}
.destino-flag::before {
  content: "★";
  color: var(--gold);
  margin-right: 6px;
  font-size: 12px;
}
.destino-tag {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  pointer-events: none;
  background: var(--navy);
  color: var(--cream);
  font-family: var(--display);
  font-style: italic;
  font-size: 13px;
  padding: 8px 18px;
  border-radius: 999px;
  white-space: nowrap;
}
.destino-seal {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  pointer-events: none;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(246, 239, 226, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--display);
  font-style: italic;
  font-size: 11px;
  line-height: 1.1;
  color: var(--navy);
  letter-spacing: 0;
  border: 1px solid rgba(176, 138, 62, 0.45);
}
.destino-seal::before, .destino-seal::after {
  content: "✦";
  position: absolute;
  color: var(--gold);
  font-size: 8px;
}
.destino-seal::before { top: 8px; }
.destino-seal::after { bottom: 8px; }
.destino-seal span {
  position: relative;
  z-index: 1;
}

.destino-body {
  padding: 12px 4px 0;
}
.destino-name {
  font-family: var(--display);
  font-size: 36px;
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--navy);
  margin: 0 0 2px;
  line-height: 1.05;
}
.destino-script {
  font-family: var(--display);
  font-style: italic;
  font-size: 18px;
  color: var(--gold);
  margin: 0 0 14px;
  font-weight: 500;
}
.destino-loc {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 14px;
}
.destino-desc {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink);
  opacity: 0.78;
  margin: 0 0 18px;
}
.destino-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.destino-days {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.destino-cta {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s, gap 0.2s;
}
.destino-cta::after {
  content: "→";
  color: var(--gold);
  font-size: 14px;
}
.destino-cta:hover { color: var(--gold); gap: 12px; }

/* ===========================================
   LUXURY TRENDS
   =========================================== */
.luxury-trends {
  background: var(--cream-paper);
  padding: 120px 0 100px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.luxury-trends::before {
  content: "✦";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cream-paper);
  color: var(--gold);
  padding: 0 20px;
  font-size: 18px;
}
.luxury-trends-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.luxury-trends-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.luxury-trends-title {
  font-family: var(--display);
  font-size: clamp(38px, 4.6vw, 58px);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--navy);
  margin: 0 0 20px;
  text-wrap: balance;
}
.luxury-trends-title .script {
  display: block;
  color: var(--gold);
  font-weight: 500;
  margin-top: 4px;
}
.luxury-trends-sub {
  font-size: 16px;
  color: var(--muted);
  margin: 0 auto;
  max-width: 580px;
  text-wrap: pretty;
}
.luxury-trends-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.luxury-card {
  display: flex;
  flex-direction: column;
}
.luxury-photo-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  margin-bottom: 20px;
}
image-slot.luxury-photo {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  --is-bg: var(--cream-warm);
  --is-fg: var(--gold);
}
.luxury-rank {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  pointer-events: none;
  background: var(--navy);
  color: var(--gold-soft);
  font-family: var(--display);
  font-style: italic;
  font-size: 16px;
  padding: 6px 12px;
  border-radius: 2px;
  letter-spacing: 0.02em;
}
.luxury-body {
  padding: 0 2px;
}
.luxury-name {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin: 0 0 2px;
  line-height: 1.1;
}
.luxury-script {
  font-family: var(--display);
  font-style: italic;
  font-size: 16px;
  color: var(--gold);
  margin: 0 0 16px;
}
.luxury-stat {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 14px;
}
.luxury-stat-num {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: -0.01em;
  line-height: 1;
}
.luxury-stat-lbl {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.3;
}
.luxury-why {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink);
  opacity: 0.78;
  margin: 0;
}

@media (max-width: 980px) {
  .luxury-trends-list { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}
@media (max-width: 640px) {
  .luxury-trends-list { grid-template-columns: 1fr; }
}

/* ===========================================
   BANDA OSCURA (dark band)
   =========================================== */
.banda {
  background: var(--navy);
  color: var(--cream);
  padding: 100px var(--gutter);
  margin-top: 80px;
  position: relative;
}
.banda::before, .banda::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom, rgba(176, 138, 62, 0.06), transparent);
  pointer-events: none;
}
.banda::before { top: 0; }
.banda::after { bottom: 0; transform: scaleY(-1); }

.banda .kicker {
  text-align: center;
  margin-bottom: 56px;
}
.banda-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.banda-item {
  padding: 0 40px;
  border-left: 1px solid var(--line-light);
}
.banda-item:first-child { border-left: 0; padding-left: 0; }
.banda-item:last-child { padding-right: 0; }
.banda-num {
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  color: var(--gold-soft);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.banda-title {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 400;
  color: var(--cream);
  margin: 0 0 6px;
  line-height: 1.1;
}
.banda-script {
  font-family: var(--display);
  font-style: italic;
  font-size: 18px;
  color: var(--gold-soft);
  margin: 0 0 18px;
}
.banda-body {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(246, 239, 226, 0.78);
  margin: 0;
}

/* ===========================================
   EXPERIENCIAS
   =========================================== */
.experiencias {
  padding: 120px 0 80px;
}
.exp-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.exp-card {
  padding: 40px 32px;
  background: var(--cream-paper);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.exp-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--cream-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 4px;
}
.exp-icon svg { width: 32px; height: 32px; }
.exp-name {
  font-family: var(--display);
  font-style: italic;
  font-size: 26px;
  font-weight: 500;
  color: var(--navy);
  margin: 0;
  line-height: 1.1;
}
.exp-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink);
  opacity: 0.75;
  margin: 0;
}

/* ===========================================
   GALERÍA — masonry
   =========================================== */
.galeria {
  padding: 120px 0 100px;
  background: var(--cream-paper);
}
.masonry {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 80px;
  gap: 20px;
}
.masonry-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}
/* Varied spans for masonry feel */
.masonry-item:nth-child(1) { grid-row: span 5; grid-column: span 1; }
.masonry-item:nth-child(2) { grid-row: span 4; grid-column: span 2; }
.masonry-item:nth-child(3) { grid-row: span 6; grid-column: span 1; }
.masonry-item:nth-child(4) { grid-row: span 3; grid-column: span 1; }
.masonry-item:nth-child(5) { grid-row: span 4; grid-column: span 1; }
.masonry-item:nth-child(6) { grid-row: span 5; grid-column: span 2; }
.masonry-item:nth-child(7) { grid-row: span 4; grid-column: span 1; }
.masonry-item:nth-child(8) { grid-row: span 3; grid-column: span 1; }

image-slot.masonry-tile {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  border-radius: 4px;
}
.masonry-caption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  right: 16px;
  z-index: 2;
  color: var(--cream);
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
  pointer-events: none;
}
.masonry-label {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 4px 10px;
  margin-bottom: 8px;
  text-shadow: none;
  border-radius: 2px;
}
.masonry-name {
  font-family: var(--display);
  font-style: italic;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.masonry-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14, 28, 48, 0.65) 0%, transparent 40%);
  z-index: 1;
  pointer-events: none;
}
.masonry-caption {
  pointer-events: none;
}

/* ===========================================
   FORM
   =========================================== */
.form-section {
  background: var(--navy);
  color: var(--cream);
  padding: 120px var(--gutter);
  position: relative;
  overflow: hidden;
}
.form-section::before {
  content: "";
  position: absolute;
  top: -200px; left: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(176, 138, 62, 0.12), transparent 70%);
  pointer-events: none;
}
.form-section::after {
  content: "";
  position: absolute;
  bottom: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(176, 138, 62, 0.1), transparent 70%);
  pointer-events: none;
}
.form-wrap {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.form-intro .kicker { margin-bottom: 24px; }
.form-intro .section-title { text-align: left; }
.form-sub {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(246, 239, 226, 0.72);
  margin: 24px 0 36px;
  max-width: 460px;
}
.form-trust {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.form-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(246, 239, 226, 0.86);
}
.form-trust-item svg { color: var(--gold-soft); flex-shrink: 0; }

.lead-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 20px;
  background: rgba(246, 239, 226, 0.03);
  padding: 36px;
  border-radius: 4px;
  border: 1px solid var(--line-light);
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field-full { grid-column: 1 / -1; }
.field label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 500;
}
.field input,
.field select,
.field textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(246, 239, 226, 0.25);
  padding: 8px 0;
  color: var(--cream);
  font-family: var(--body);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
  font-weight: 400;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
}
.field input::placeholder, .field textarea::placeholder {
  color: rgba(246, 239, 226, 0.35);
  font-style: italic;
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%23c9a567' fill='none' stroke-width='1.5' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 28px;
  cursor: pointer;
}
.field select option {
  background: var(--navy);
  color: var(--cream);
}
.field select optgroup {
  background: var(--navy-deep);
  color: var(--gold);
  font-style: italic;
  font-weight: 500;
}
.field textarea {
  resize: vertical;
  border-bottom: 1px solid rgba(246, 239, 226, 0.25);
  min-height: 60px;
}
.field input[type="month"]::-webkit-calendar-picker-indicator {
  filter: invert(0.7) sepia(1) hue-rotate(15deg) saturate(2);
  cursor: pointer;
}

.form-bottom {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.btn-submit {
  background: var(--gold);
  color: var(--navy);
}
.btn-submit:hover {
  background: var(--gold-soft);
  color: var(--navy);
}
.btn-submit[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}
.legal {
  font-size: 11px;
  line-height: 1.5;
  color: rgba(246, 239, 226, 0.5);
  margin: 0;
  max-width: 360px;
  flex: 1;
  min-width: 200px;
}

/* Success state */
.form-success {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px 32px;
}
.success-seal {
  display: flex;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 24px;
  animation: seal-in 0.6s ease;
}
@keyframes seal-in {
  from { transform: scale(0.6); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.success-title {
  font-family: var(--display);
  font-size: 44px;
  font-weight: 400;
  color: var(--cream);
  margin: 0 0 24px;
  line-height: 1.1;
}
.success-title .script {
  display: block;
  color: var(--gold);
  font-size: 0.7em;
  margin-top: 8px;
}
.success-body {
  font-size: 16px;
  color: rgba(246, 239, 226, 0.78);
  max-width: 480px;
  margin: 0 auto 32px;
  line-height: 1.6;
}
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #25d366;
  color: white;
  padding: 16px 30px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.2s;
}
.btn-whatsapp:hover {
  background: #1ebd5d;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -10px rgba(37, 211, 102, 0.5);
}

/* ===========================================
   FAQ
   =========================================== */
.faq {
  padding: 120px 0 100px;
}
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  padding: 28px 4px;
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: var(--display);
  font-size: 24px;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  color: var(--gold);
  font-size: 32px;
  font-weight: 300;
  line-height: 1;
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item[open] summary::after {
  content: "−";
  transform: rotate(180deg);
}
.faq-answer {
  padding: 0 4px 32px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 680px;
}
.faq-answer strong {
  color: var(--navy);
  font-weight: 600;
}
.faq-answer em {
  font-style: italic;
  font-family: var(--display);
  font-size: 0.95em;
  color: var(--gold);
}

/* ===========================================
   FOOTER
   =========================================== */
.footer {
  background: var(--navy-deep);
  color: var(--cream);
  padding: 100px var(--gutter) 40px;
}
.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 80px;
}
.footer-brand .logo {
  color: var(--cream);
  margin-bottom: 32px;
}
.footer-brand .logo-line2 { color: var(--gold-soft); }
.footer-script {
  font-family: var(--display);
  font-style: italic;
  font-size: 26px;
  line-height: 1.3;
  color: var(--gold-soft);
  margin: 0 0 18px;
  max-width: 320px;
}
.footer-tag {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(246, 239, 226, 0.4);
  margin: 0;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer-col h4 {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 20px;
  color: var(--gold-soft);
  margin: 0 0 20px;
  letter-spacing: 0;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col a {
  font-size: 14px;
  color: rgba(246, 239, 226, 0.78);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold-soft); }
.footer-col li:not(:has(a)) {
  font-size: 14px;
  color: rgba(246, 239, 226, 0.78);
}
.footer-bottom {
  max-width: var(--maxw);
  margin: 64px auto 0;
  padding-top: 32px;
  border-top: 1px solid var(--line-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: rgba(246, 239, 226, 0.4);
}
.footer-bottom p { margin: 0; }
.footer-poweredby { font-style: italic; }

/* ===========================================
   FAB
   =========================================== */
.wa-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  box-shadow: 0 12px 32px -8px rgba(37, 211, 102, 0.6);
  transition: all 0.25s;
}
.wa-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 16px 40px -8px rgba(37, 211, 102, 0.7);
}

/* ===========================================
   TWEAKS PANEL
   =========================================== */
.tweaks-panel {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 280px;
  background: var(--cream-paper);
  color: var(--ink);
  border-radius: 8px;
  box-shadow: 0 24px 60px -16px rgba(14, 28, 48, 0.35);
  border: 1px solid var(--line);
  z-index: 99;
  font-family: var(--body);
  padding: 18px;
  display: none;
}
.tweaks-panel.is-open { display: block; }
.tweaks-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.tweaks-title {
  font-family: var(--display);
  font-style: italic;
  font-size: 18px;
  color: var(--navy);
}
.tweaks-close {
  background: transparent;
  border: 0;
  color: var(--muted);
  font-size: 20px;
  padding: 0;
  line-height: 1;
}
.tweak-group {
  margin-bottom: 14px;
}
.tweak-group:last-child { margin-bottom: 0; }
.tweak-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  font-weight: 500;
}
.tweak-options {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.tweak-opt {
  padding: 6px 12px;
  border-radius: 4px;
  border: 1px solid var(--line);
  background: white;
  font-size: 12px;
  color: var(--navy);
  transition: all 0.15s;
  cursor: pointer;
}
.tweak-opt.is-active {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
}
.tweak-swatch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.swatch-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.1);
}

/* ===========================================
   RESPONSIVE
   =========================================== */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-inner { grid-template-columns: auto 1fr auto; }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    min-height: auto;
  }
  .hero-collage {
    height: 480px;
    order: 2;
  }
  .destino-grid { grid-template-columns: repeat(2, 1fr); }
  .banda-grid { grid-template-columns: 1fr; gap: 40px; }
  .banda-item {
    border-left: 0;
    border-top: 1px solid var(--line-light);
    padding: 32px 0 0;
  }
  .banda-item:first-child { border-top: 0; padding-top: 0; }
  .exp-grid { grid-template-columns: repeat(2, 1fr); }
  .masonry {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 100px;
  }
  .masonry-item:nth-child(n) {
    grid-row: span 3;
    grid-column: span 1;
  }
  .masonry-item:nth-child(2),
  .masonry-item:nth-child(6) { grid-column: span 2; }
  .form-wrap { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 640px) {
  .hero-stats { flex-direction: column; gap: 24px; }
  .stat-divider { display: none; }
  .destino-grid { grid-template-columns: 1fr; }
  .exp-grid { grid-template-columns: 1fr; }
  .lead-form { grid-template-columns: 1fr; padding: 24px; }
  .footer-cols { grid-template-columns: 1fr; gap: 32px; }
  .ribbon { gap: 12px; padding: 14px 18px; }
  .ribbon-text { font-size: 14px; }
  .nav-right .lang-toggle { display: flex; }
}
