/* ════════════════════════════════════════════════════════════════
   Casa Victoria Travel — Editorial Layer
   Magazine identity layer over the foundational tokens
   ════════════════════════════════════════════════════════════════ */

:root {
  /* Cheerful warm canvas — Victoria asked for "more cheerful" / "mai vesele" */
  --paper:        #fefaf0;   /* warm white, lift from cream */
  --paper-2:     #faecd0;   /* sunny apricot tint */
  --paper-3:     #f5d8a8;   /* warm peach */
  --linen:        #fff8e7;
  --paper-mint:   #e8f5f0;  /* fresh sea breeze for resort sections */
  --paper-rose:   #fff1ed;  /* soft coral wash */
  --paper-sky:    #e0f2fe;  /* sky blue wash for trust sections */
  --ink:          #1a1814;
  --ink-2:        #2d2820;
  --ink-3:        #4a4133;
  --ink-mute:     #7a6f5e;
  --rule:         #d4cbb8;
  --rule-soft:    #ebe2c8;
  /* Vibrant teal — saturated for accent */
  --teal:         #14b8a6;
  --teal-deep:    #0d9488;
  --teal-glow:    #5eead4;
  /* Saturated gold — sun-kissed */
  --gold:         #f59e0b;
  --gold-deep:    #d97706;
  --gold-soft:    #fde68a;
  --gold-bright:  #fbbf24;
  /* Coral accent for badges, hot offers */
  --coral:        #f97316;
  --coral-deep:   #ea580c;
  --coral-soft:   #fed7aa;
  --rose:         #f43f5e;  /* brighter rose */
  --rust:         #ea580c;
  --azure:        #0ea5e9;  /* trust/info accent */
  --azure-deep:   #0284c7;

  --font-display: "Fraunces", "Source Serif Pro", Georgia, serif;
  --font-body:    "General Sans", "Manrope", system-ui, -apple-system, sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, monospace;
}

html { background: var(--paper); }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-feature-settings: "ss01", "ss02", "cv01", "cv11";
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0.4;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.07 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* MASTHEAD STRIP */
.ed-masthead {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 0;
  overflow: hidden;
  position: relative;
}
.ed-masthead-track {
  display: inline-flex;
  gap: 56px;
  white-space: nowrap;
  animation: ed-marquee 80s linear infinite;
}
.ed-masthead-track span { color: var(--paper); opacity: 0.7; }
.ed-masthead-track span + span::before { content: "◆"; margin-right: 56px; color: var(--gold); opacity: 0.6; }
@keyframes ed-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ed-masthead-track { animation: none; }
}

/* HEADER */
.ed-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(244, 239, 228, 0.92);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--rule-soft);
}
.ed-header-inner {
  display: flex; align-items: center; gap: 24px;
  height: 80px;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
}

/* Quick-search trigger in navbar */
.ed-nav-search {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px 8px 12px;
  background: var(--paper-2);
  border: 1px solid var(--rule);
  border-radius: 50px;
  color: var(--ink-mute);
  font-family: var(--font-display);
  font-size: 13px;
  font-style: italic;
  cursor: pointer;
  transition: all 200ms ease;
  font-variation-settings: "opsz" 14, "SOFT" 80;
  white-space: nowrap;
}
.ed-nav-search:hover { background: var(--paper); border-color: var(--gold); color: var(--ink); }
.ed-nav-search svg { width: 14px; height: 14px; color: var(--gold); }
@media (max-width: 1280px) { .ed-nav-search { padding: 8px; border-radius: 50%; } .ed-nav-search span { display: none; } }
@media (max-width: 1024px) { .ed-nav-search { margin-left: auto; margin-right: 8px; } }

/* Mega menu */
.ed-nav-item { position: relative; }
.ed-nav-item-trigger {
  background: transparent; border: 0;
  color: var(--ink-2);
  padding: 8px 14px;
  border-radius: 50px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.005em;
  display: inline-flex; align-items: center; gap: 6px;
  transition: background 200ms ease, color 200ms ease;
}
.ed-nav-item-trigger::after {
  content: "";
  width: 6px; height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-top: -3px;
  margin-left: 2px;
  transition: transform 250ms ease;
}
.ed-nav-item:hover .ed-nav-item-trigger { background: var(--paper-2); color: var(--ink); }
.ed-nav-item:hover .ed-nav-item-trigger::after { transform: rotate(45deg) translate(2px, 2px); }

.ed-mega {
  position: absolute;
  top: calc(100% + 12px);
  left: -20px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 8px;
  box-shadow: 0 32px 80px -24px rgba(26,24,20,0.32), 0 4px 12px -2px rgba(26,24,20,0.08);
  padding: 24px 28px;
  min-width: 720px;
  opacity: 0; visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 200ms ease, transform 200ms ease, visibility 200ms;
  z-index: 50;
}
.ed-nav-item:hover .ed-mega,
.ed-nav-item:focus-within .ed-mega { opacity: 1; visibility: visible; transform: translateY(0); }
.ed-mega::before {
  content: ""; position: absolute; top: -8px; left: 40px;
  width: 14px; height: 14px;
  background: var(--paper);
  border-left: 1px solid var(--rule); border-top: 1px solid var(--rule);
  transform: rotate(45deg);
}
.ed-mega-grid {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 32px;
}
.ed-mega-col h5 {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
  margin: 0 0 14px;
}
.ed-mega-col ul { list-style: none; padding: 0; margin: 0; }
.ed-mega-col li { margin-bottom: 4px; }
.ed-mega-col a {
  display: flex; align-items: center; gap: 10px;
  padding: 7px 10px;
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--ink-2);
  text-decoration: none;
  border-radius: 4px;
  transition: background 150ms ease, color 150ms ease;
}
.ed-mega-col a:hover { background: var(--paper-2); color: var(--ink); }
.ed-mega-col a strong { font-weight: 600; }
.ed-mega-col a em { font-style: italic; color: var(--ink-mute); font-size: 12px; margin-left: auto; font-family: var(--font-mono); letter-spacing: 0.08em; }

.ed-mega-feature {
  display: flex; flex-direction: column;
  padding: 16px;
  background: var(--paper-2);
  border-radius: 6px;
  text-decoration: none;
  color: var(--ink);
}
.ed-mega-feature-img {
  aspect-ratio: 4/3;
  background-size: cover; background-position: center;
  border-radius: 4px;
  margin-bottom: 12px;
}
.ed-mega-feature h4 {
  font-family: var(--font-display);
  font-size: 17px;
  font-variation-settings: "opsz" 18, "SOFT" 60, "wght" 600;
  margin: 0 0 4px;
  color: var(--ink);
}
.ed-mega-feature h4 em { font-style: italic; color: var(--teal-deep); }
.ed-mega-feature p { font-family: var(--font-body); font-size: 12.5px; color: var(--ink-3); margin: 0; }
.ed-mega-feature .ed-mega-feature-cta {
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); margin-top: 10px; font-weight: 600;
}

/* GLOBAL SEARCH OVERLAY */
.ed-search-overlay {
  position: fixed; inset: 0;
  background: rgba(26, 24, 20, 0.72);
  backdrop-filter: blur(8px);
  z-index: 200;
  opacity: 0; visibility: hidden;
  transition: opacity 300ms ease, visibility 300ms;
  display: flex; align-items: flex-start; justify-content: center;
  padding: 80px 20px;
}
.ed-search-overlay.is-open { opacity: 1; visibility: visible; }
.ed-search-overlay-inner {
  background: var(--paper);
  border-radius: 8px;
  max-width: 920px; width: 100%;
  padding: 32px;
  box-shadow: 0 40px 80px -16px rgba(0,0,0,0.4);
  transform: translateY(-20px);
  transition: transform 300ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.ed-search-overlay.is-open .ed-search-overlay-inner { transform: translateY(0); }
.ed-search-overlay-head {
  display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px;
}
.ed-search-overlay-head h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-variation-settings: "opsz" 36, "SOFT" 60, "wght" 500;
  margin: 0;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.ed-search-overlay-head h2 em { font-style: italic; color: var(--teal-deep); font-variation-settings: "opsz" 36, "SOFT" 90; }
.ed-search-overlay-close {
  background: transparent; border: 1px solid var(--rule); border-radius: 50%;
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink-mute); cursor: pointer;
  transition: all 200ms ease;
}
.ed-search-overlay-close:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }

@media (max-width: 540px) {
  .ed-search-overlay { padding: 16px; align-items: stretch; }
  .ed-search-overlay-inner { padding: 20px; }
}

/* Mobile mega-menu: collapses inside drawer */
@media (max-width: 1024px) {
  .ed-nav-item { display: block; width: 100%; }
  .ed-nav-item-trigger {
    width: 100%; text-align: left; padding: 14px 0;
    border-bottom: 1px solid var(--rule-soft);
    border-radius: 0; font-size: 15px;
  }
  .ed-nav-item-trigger::after {
    margin-left: auto;
  }
  .ed-mega {
    position: static; opacity: 1; visibility: visible;
    transform: none; box-shadow: none; border: 0;
    padding: 0; min-width: 0;
    max-height: 0; overflow: hidden;
    transition: max-height 300ms ease;
  }
  .ed-mega::before { display: none; }
  .ed-nav-item.is-open-mobile .ed-mega { max-height: 800px; padding: 12px 0 20px; }
  .ed-mega-grid { grid-template-columns: 1fr; gap: 16px; }
  .ed-mega-feature { display: none; }
}
@media (max-width: 768px) { .ed-header-inner { padding: 0 20px; height: 64px; } }

.ed-logo {
  display: inline-flex; align-items: baseline; gap: 6px;
  text-decoration: none; color: var(--ink);
  font-family: var(--font-display);
  font-size: 22px; font-weight: 600;
  letter-spacing: -0.025em;
  font-variation-settings: "opsz" 18, "SOFT" 50;
}
.ed-logo em {
  font-style: italic; font-weight: 400;
  font-variation-settings: "opsz" 18, "SOFT" 80, "wght" 400;
  color: var(--teal-deep);
}
.ed-logo::before {
  content: ""; display: inline-block;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin-right: 10px;
  align-self: center;
  transform: translateY(-2px);
}

.ed-nav {
  display: flex; gap: 4px;
  margin-left: auto;
  font-size: 13px;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.005em;
}
.ed-nav a {
  color: var(--ink-2);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 50px;
  transition: background 200ms ease, color 200ms ease;
}
.ed-nav a:hover { background: var(--paper-2); color: var(--ink); }
.ed-nav .ed-nav-cta {
  background: var(--ink);
  color: var(--paper);
  padding: 10px 18px;
}
.ed-nav .ed-nav-cta:hover { background: var(--teal-deep); color: var(--paper); }

.ed-burger { display: none; background: none; border: 0; padding: 8px; color: var(--ink); }
@media (max-width: 1024px) {
  .ed-nav { display: none; }
  .ed-burger { display: inline-flex; margin-left: auto; }
  .ed-nav.is-open {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--paper); border-top: 1px solid var(--rule-soft);
    padding: 16px 32px; box-shadow: 0 24px 40px -16px rgba(26,24,20,0.25);
  }
  .ed-nav.is-open a { padding: 14px 0; border-bottom: 1px solid var(--rule-soft); }
  .ed-nav.is-open .ed-nav-cta { background: var(--ink); color: var(--paper); margin-top: 12px; padding: 14px 24px; text-align: center; border: 0; }
}

/* SECTION PATTERN */
.ed-section { padding: 100px 32px; max-width: 1480px; margin: 0 auto; }
.ed-section-paper-2 { background: var(--paper-2); margin-top: 100px; padding-top: 100px; padding-bottom: 100px; max-width: 100%; }
.ed-section-paper-2 .ed-inner { max-width: 1480px; margin: 0 auto; padding: 0 32px; }
.ed-section-ink { background: var(--ink); color: var(--paper); padding: 100px 32px; max-width: 100%; }
.ed-section-ink .ed-inner { max-width: 1480px; margin: 0 auto; }
@media (max-width: 768px) {
  .ed-section { padding: 56px 20px; }
  .ed-section-paper-2 { padding: 56px 0; }
  .ed-section-paper-2 .ed-inner { padding: 0 20px; }
  .ed-section-ink { padding: 56px 20px; }
}

.ed-section-head {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 56px;
}
@media (max-width: 900px) { .ed-section-head { grid-template-columns: 1fr; gap: 32px; } }

.ed-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  display: inline-flex; align-items: center; gap: 14px;
  margin: 0 0 18px;
}
.ed-eyebrow::before { content: ""; width: 24px; height: 1px; background: currentColor; }
.ed-section-ink .ed-eyebrow { color: rgba(244, 239, 228, 0.6); }

.ed-section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 5.5rem);
  line-height: 0.94;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0;
  font-variation-settings: "opsz" 96, "SOFT" 40, "wght" 600;
}
.ed-section-title em {
  font-style: italic;
  font-variation-settings: "opsz" 96, "SOFT" 80, "wght" 500;
  color: var(--teal-deep);
}
.ed-section-ink .ed-section-title { color: var(--paper); }
.ed-section-ink .ed-section-title em { color: var(--gold); }

.ed-section-note {
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-3);
  max-width: 48ch;
  margin: 0;
  font-variation-settings: "opsz" 18, "SOFT" 50;
}
.ed-section-ink .ed-section-note { color: rgba(244, 239, 228, 0.78); }

/* PAGE HEADER (compact hero pentru pagini interne) */
.ed-pagehead {
  max-width: 1480px;
  margin: 0 auto;
  padding: 80px 32px 60px;
}
@media (max-width: 768px) { .ed-pagehead { padding: 48px 20px 32px; } }
.ed-pagehead-meta {
  display: flex; align-items: center; gap: 14px; margin-bottom: 28px;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-mute);
}
.ed-pagehead-meta .ed-bar { width: 28px; height: 1px; background: var(--ink); }
.ed-pagehead-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 6.5rem);
  line-height: 0.96;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0;
  font-variation-settings: "opsz" 120, "SOFT" 50, "wght" 600;
  max-width: 18ch;
}
.ed-pagehead-title em { font-style: italic; color: var(--teal-deep); font-variation-settings: "opsz" 120, "SOFT" 90, "wght" 500; }
.ed-pagehead-title .gold { color: var(--gold); font-variation-settings: "opsz" 120, "SOFT" 30, "wght" 700; }
.ed-pagehead-sub {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.7vw, 1.35rem);
  line-height: 1.5;
  color: var(--ink-3);
  max-width: 48ch;
  margin: 24px 0 0;
  font-variation-settings: "opsz" 22, "SOFT" 50;
}
.ed-pagehead-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: end;
}
@media (max-width: 900px) { .ed-pagehead-grid { grid-template-columns: 1fr; gap: 40px; } }
.ed-pagehead-image {
  position: relative; aspect-ratio: 5/4;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 32px 60px -24px rgba(26,24,20,0.32);
}
.ed-pagehead-image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.92); }
.ed-pagehead-image::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(26,24,20,0.55) 100%);
  pointer-events: none;
}
.ed-pagehead-caption {
  position: absolute; left: 24px; bottom: 24px;
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  z-index: 2;
  display: flex; align-items: center; gap: 10px;
}
.ed-pagehead-caption::before { content: ""; width: 14px; height: 1px; background: var(--gold); }

/* BREADCRUMB */
.ed-crumb {
  max-width: 1480px;
  margin: 0 auto;
  padding: 24px 32px 0;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
@media (max-width: 768px) { .ed-crumb { padding: 16px 20px 0; } }
.ed-crumb ol { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 12px; }
.ed-crumb li { display: flex; align-items: center; gap: 12px; }
.ed-crumb li + li::before { content: "/"; color: var(--rule); }
.ed-crumb a { color: var(--ink-mute); text-decoration: none; }
.ed-crumb a:hover { color: var(--ink); text-decoration: underline; text-underline-offset: 4px; text-decoration-color: var(--gold); }
.ed-crumb [aria-current="page"] { color: var(--ink); }

/* PROSE — long-form editorial typography */
.ed-prose {
  max-width: 720px;
  margin: 0 auto;
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.65;
  color: var(--ink-2);
  font-variation-settings: "opsz" 20, "SOFT" 50;
}
.ed-prose > * + * { margin-top: 24px; }
.ed-prose h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-variation-settings: "opsz" 48, "SOFT" 50, "wght" 600;
  line-height: 1.1;
  margin-top: 56px;
  margin-bottom: 16px;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.ed-prose h2 em { font-style: italic; color: var(--teal-deep); font-variation-settings: "opsz" 48, "SOFT" 90, "wght" 500; }
.ed-prose h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-variation-settings: "opsz" 24, "SOFT" 50, "wght" 600;
  margin-top: 40px; margin-bottom: 12px;
  color: var(--ink);
}
.ed-prose p, .ed-prose ul, .ed-prose ol { color: var(--ink-2); }
.ed-prose ul, .ed-prose ol { padding-left: 24px; }
.ed-prose li { margin-bottom: 10px; }
.ed-prose strong { color: var(--ink); font-weight: 600; }
.ed-prose a { color: var(--teal-deep); text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: 4px; }

/* KPI EDITORIAL */
.ed-kpi-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: 4px;
  overflow: hidden;
  margin: 64px 0;
}
@media (max-width: 768px) { .ed-kpi-row { grid-template-columns: 1fr 1fr; } }
.ed-kpi {
  background: var(--paper);
  padding: 40px 24px;
}
.ed-kpi-val {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1;
  color: var(--ink);
  font-variation-settings: "opsz" 72, "SOFT" 30, "wght" 500;
  letter-spacing: -0.025em;
  margin-bottom: 8px;
}
.ed-kpi-val em { font-style: italic; color: var(--teal-deep); font-variation-settings: "opsz" 72, "SOFT" 80, "wght" 400; }
.ed-kpi-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* CARDS */
.ed-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .ed-card-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .ed-card-grid { grid-template-columns: 1fr; } }

.ed-card-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 768px) { .ed-card-grid-2 { grid-template-columns: 1fr; } }

.ed-card-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1024px) { .ed-card-grid-4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .ed-card-grid-4 { grid-template-columns: 1fr; } }

.ed-card {
  background: var(--linen);
  border: 1px solid var(--rule-soft);
  border-radius: 4px;
  overflow: hidden;
  display: flex; flex-direction: column;
  text-decoration: none; color: var(--ink);
  transition: transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 300ms ease;
}
.ed-card:hover { transform: translateY(-4px); box-shadow: 0 24px 48px -20px rgba(26,24,20,0.22); }
.ed-card-media {
  aspect-ratio: 4/3;
  background-size: cover; background-position: center;
  position: relative;
}
.ed-card-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(26,24,20,0.18) 100%);
}
.ed-card-tag {
  position: absolute; top: 16px; left: 16px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 2px;
  z-index: 2;
}
.ed-card-body { padding: 24px 24px 28px; flex: 1; display: flex; flex-direction: column; }
.ed-card-place {
  font-family: var(--font-mono);
  font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-mute); margin: 0 0 8px;
}
.ed-card-title {
  font-family: var(--font-display);
  font-size: 24px; line-height: 1.15; margin: 0 0 12px;
  font-variation-settings: "opsz" 26, "SOFT" 50, "wght" 600;
  letter-spacing: -0.015em; color: var(--ink);
}
.ed-card-title em { font-style: italic; color: var(--teal-deep); font-variation-settings: "opsz" 26, "SOFT" 90; }
.ed-card-text {
  font-family: var(--font-body);
  font-size: 14px; line-height: 1.55;
  color: var(--ink-3);
  margin: 0;
}

/* TILE — editorial style for grids */
.ed-tile {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  text-decoration: none;
  color: var(--paper);
  display: block;
  isolation: isolate;
  aspect-ratio: 4/3;
}
.ed-tile-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  z-index: 0;
  transition: transform 1400ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 800ms ease;
  filter: saturate(0.92);
}
.ed-tile:hover .ed-tile-img { transform: scale(1.05); filter: saturate(1.05); }
.ed-tile::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,24,20,0) 35%, rgba(26,24,20,0.78) 100%);
  z-index: 1; pointer-events: none;
}
.ed-tile-num {
  position: absolute; top: 18px; left: 22px;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.18em;
  color: var(--paper); z-index: 2; opacity: 0.8;
}
.ed-tile-arrow {
  position: absolute; top: 18px; right: 22px;
  width: 32px; height: 32px;
  border: 1px solid rgba(244,239,228,0.4);
  border-radius: 50%; z-index: 2;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--paper);
  transition: transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1), background 300ms ease, border-color 300ms ease;
}
.ed-tile:hover .ed-tile-arrow {
  background: var(--paper); color: var(--ink); border-color: var(--paper);
  transform: rotate(-45deg);
}
.ed-tile-body {
  position: absolute;
  left: 22px; right: 22px; bottom: 20px;
  z-index: 2;
}
.ed-tile-name {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1; margin: 0;
  font-variation-settings: "opsz" 48, "SOFT" 50, "wght" 600;
  letter-spacing: -0.02em;
  color: var(--paper);
}
.ed-tile-meta {
  font-family: var(--font-mono);
  font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(244,239,228,0.78);
  margin: 12px 0 0;
}
.ed-tile-price {
  position: absolute; right: 22px; bottom: 20px;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-style: italic;
  color: var(--gold);
  font-variation-settings: "opsz" 22, "SOFT" 80, "wght" 500;
  z-index: 2; text-align: right;
}
.ed-tile-price small {
  display: block;
  font-family: var(--font-mono);
  font-size: 9.5px; letter-spacing: 0.18em;
  color: rgba(244,239,228,0.6);
  font-style: normal;
  text-transform: uppercase;
  margin-bottom: 2px;
}

/* FAQ — editorial details */
.ed-faq { max-width: 760px; margin: 0 auto; }
.ed-faq h3 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-variation-settings: "opsz" 36, "SOFT" 60, "wght" 600;
  color: var(--teal-deep);
  margin: 48px 0 16px;
  letter-spacing: -0.02em;
}
.ed-faq h3:first-of-type { margin-top: 0; }
.ed-faq details {
  background: var(--linen);
  border: 1px solid var(--rule-soft);
  border-radius: 4px;
  padding: 0;
  margin-bottom: 10px;
  overflow: hidden;
}
.ed-faq summary {
  font-family: var(--font-display);
  font-size: 18px;
  font-variation-settings: "opsz" 18, "SOFT" 50, "wght" 600;
  color: var(--ink);
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 56px;
  line-height: 1.4;
}
.ed-faq summary::-webkit-details-marker { display: none; }
.ed-faq summary::after {
  content: "+";
  position: absolute;
  right: 24px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--gold);
  font-weight: 400;
  transition: transform 300ms ease;
}
.ed-faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.ed-faq details > p, .ed-faq details > div {
  padding: 0 24px 22px;
  margin: 0;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-3);
}
.ed-faq details a { color: var(--teal-deep); text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: 3px; }

/* CTA BLOCK */
.ed-cta-block {
  background: var(--ink);
  color: var(--paper);
  padding: 80px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ed-cta-block::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(700px 400px at 20% 50%, rgba(15,118,110,0.30), transparent 60%),
    radial-gradient(600px 400px at 80% 50%, rgba(217,119,6,0.18), transparent 60%);
  pointer-events: none;
}
.ed-cta-inner { position: relative; max-width: 800px; margin: 0 auto; }
.ed-cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: 1; margin: 0 0 20px;
  color: var(--paper);
  font-variation-settings: "opsz" 96, "SOFT" 60, "wght" 500;
}
.ed-cta-title em { font-style: italic; color: var(--gold); font-variation-settings: "opsz" 96, "SOFT" 100, "wght" 400; }
.ed-cta-sub { font-family: var(--font-display); font-size: 18px; color: rgba(244,239,228,0.78); max-width: 50ch; margin: 0 auto 32px; }
.ed-cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* BUTTON EDITORIAL */
.ed-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px;
  font-family: var(--font-body); font-size: 14px; font-weight: 600;
  letter-spacing: 0.005em;
  text-decoration: none;
  border-radius: 4px;
  transition: background 200ms ease, color 200ms ease, transform 400ms cubic-bezier(0.2, 0.8, 0.2, 1);
  cursor: pointer;
  border: 1px solid transparent;
}
.ed-btn-primary { background: var(--gold); color: var(--ink); }
.ed-btn-primary:hover { background: var(--gold-deep); color: var(--ink); }
.ed-btn-ink { background: var(--ink); color: var(--paper); }
.ed-btn-ink:hover { background: var(--teal-deep); }
.ed-btn-ghost { background: transparent; color: var(--paper); border: 1px solid rgba(244,239,228,0.3); }
.ed-btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.ed-btn-outline { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.ed-btn-outline:hover { background: var(--ink); color: var(--paper); }
.ed-btn-lg { padding: 18px 32px; font-size: 15px; }

/* INLINE LINK editorial */
.ed-link-arrow {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
  font-variation-settings: "opsz" 22, "SOFT" 80;
}
.ed-link-arrow:hover { color: var(--teal-deep); }

/* FORM EDITORIAL */
.ed-form-card {
  background: var(--linen);
  border: 1px solid var(--rule-soft);
  border-radius: 4px;
  padding: 32px;
}
.ed-form-field { margin-bottom: 20px; }
.ed-form-field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 6px;
}
.ed-form-field input,
.ed-form-field select,
.ed-form-field textarea {
  width: 100%;
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 12px 14px;
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--ink);
  font-variation-settings: "opsz" 18, "SOFT" 50;
  border-radius: 3px;
}
.ed-form-field input:focus,
.ed-form-field select:focus,
.ed-form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-soft);
}
.ed-form-field textarea { min-height: 120px; resize: vertical; font-family: var(--font-body); font-size: 15px; }
.ed-form-help { font-size: 12px; color: var(--ink-mute); margin-top: 6px; font-family: var(--font-body); }

/* SIDEBAR / ASIDE */
.ed-aside {
  background: var(--paper-2);
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 32px 28px;
  align-self: start;
  position: sticky;
  top: 100px;
}
.ed-aside h4 {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
  margin: 0 0 14px;
}
.ed-aside-list { list-style: none; padding: 0; margin: 0; }
.ed-aside-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
}
.ed-aside-list li:last-child { border-bottom: 0; }
.ed-aside-list a {
  text-decoration: none; color: var(--ink-2);
  display: block;
}
.ed-aside-list a strong {
  display: block;
  font-family: var(--font-display);
  font-size: 17px;
  font-variation-settings: "opsz" 18, "SOFT" 50, "wght" 600;
  color: var(--ink);
  margin-bottom: 2px;
}
.ed-aside-list a small {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-mute);
}
.ed-aside-list a:hover strong { color: var(--teal-deep); }
.ed-aside-price {
  background: var(--paper);
  padding: 20px 18px;
  margin: -8px 0 18px;
  border-radius: 4px;
  text-align: center;
}
.ed-aside-price .num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-variation-settings: "opsz" 60, "SOFT" 50, "wght" 600;
  color: var(--ink);
  letter-spacing: -0.025em;
  line-height: 1;
}
.ed-aside-price .num em { color: var(--gold); font-style: italic; }
.ed-aside-price .lbl {
  display: block;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 6px;
}

/* TWO-COL LAYOUT */
.ed-2col {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 64px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 1024px) { .ed-2col { grid-template-columns: 1fr; padding: 0 20px; } }

/* FOOTER */
.ed-footer {
  background: var(--paper-3);
  color: var(--ink);
  padding: 80px 32px 40px;
}
.ed-footer-inner { max-width: 1480px; margin: 0 auto; }
.ed-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--rule);
}
@media (max-width: 900px) { .ed-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 540px) { .ed-footer-grid { grid-template-columns: 1fr; } }
.ed-footer-brand {
  font-family: var(--font-display);
  font-size: 32px;
  font-variation-settings: "opsz" 36, "SOFT" 50, "wght" 600;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  color: var(--ink);
}
.ed-footer-brand em { font-style: italic; color: var(--teal-deep); font-variation-settings: "opsz" 36, "SOFT" 90, "wght" 500; }
.ed-footer-tag {
  font-family: var(--font-display);
  font-size: 15px; line-height: 1.5;
  color: var(--ink-3);
  max-width: 32ch; margin: 0 0 28px;
  font-variation-settings: "opsz" 15, "SOFT" 60;
}
.ed-footer-addr {
  font-family: var(--font-mono);
  font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-mute);
  line-height: 1.8;
}
.ed-footer-col h4 {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-mute); font-weight: 500;
  margin: 0 0 16px;
}
.ed-footer-col ul { list-style: none; padding: 0; margin: 0; }
.ed-footer-col li { margin-bottom: 8px; }
.ed-footer-col a {
  font-family: var(--font-body); font-size: 14px;
  color: var(--ink-2); text-decoration: none;
  transition: color 200ms ease;
}
.ed-footer-col a:hover { color: var(--teal-deep); text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: 4px; }
.ed-footer-bottom {
  padding-top: 32px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-mute);
}
.ed-footer-bottom .ed-roman {
  font-family: var(--font-display); font-style: italic;
  font-size: 13px; color: var(--ink-3);
  letter-spacing: 0; text-transform: none;
  font-variation-settings: "opsz" 14, "SOFT" 80, "wght" 400;
}

/* REVEAL ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1000ms cubic-bezier(0.16, 1, 0.3, 1), transform 1200ms cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.is-revealed { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 80ms; }
.reveal-d2 { transition-delay: 160ms; }
.reveal-d3 { transition-delay: 240ms; }
.reveal-d4 { transition-delay: 320ms; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

.magnet {
  transform: translate3d(0,0,0);
  transition: transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}

.ed-topo {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--rule) 20%, var(--rule) 80%, transparent);
  max-width: 1480px;
  margin: 0 auto;
}

/* FEATURED OFFERS GRID — auto-rendered by /scripts/featured.js */
.ftr-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 1280px) { .ftr-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 900px)  { .ftr-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .ftr-grid { grid-template-columns: 1fr; } }

.ftr-meta {
  grid-column: 1 / -1;
  font-family: var(--font-mono);
  font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 8px;
  display: inline-flex; align-items: center; gap: 12px;
}
.ftr-meta::before {
  content: ""; width: 6px; height: 6px; background: #16a34a; border-radius: 50%;
  animation: ftr-pulse 2s ease-in-out infinite;
}
@keyframes ftr-pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.5; } }

.ftr-card {
  background: var(--linen);
  border: 1px solid var(--rule-soft);
  border-radius: 4px;
  overflow: hidden;
  display: flex; flex-direction: column;
  text-decoration: none; color: var(--ink);
  transition: transform 500ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 300ms ease;
}
.ftr-card:hover { transform: translateY(-3px); box-shadow: 0 20px 40px -16px rgba(26,24,20,0.2); }
.ftr-card-media {
  aspect-ratio: 4/3;
  background-size: cover; background-position: center;
  background-color: var(--paper-2);
  position: relative;
}
.ftr-card-tag {
  position: absolute; top: 10px; left: 10px;
  background: var(--gold); color: var(--ink);
  font-family: var(--font-mono); font-size: 9.5px;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 3px 8px; border-radius: 2px;
}
.ftr-card-stars {
  position: absolute; bottom: 10px; left: 10px;
  color: var(--gold); font-size: 12px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}
.ftr-card-body { padding: 14px 16px 16px; flex: 1; display: flex; flex-direction: column; }
.ftr-card-loc {
  font-family: var(--font-mono);
  font-size: 9.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-mute); margin: 0 0 4px;
  display: flex; align-items: center; gap: 5px;
}
.ftr-card-loc::before { content: ""; width: 3px; height: 3px; background: var(--gold); border-radius: 50%; }
.ftr-card-title {
  font-family: var(--font-display); font-size: 15px; line-height: 1.2;
  margin: 0 0 8px;
  font-variation-settings: "opsz" 18, "SOFT" 50, "wght" 600;
  letter-spacing: -0.01em; color: var(--ink);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.ftr-card-meta {
  font-family: var(--font-body); font-size: 11px;
  color: var(--ink-3);
  display: flex; flex-wrap: wrap; gap: 4px 10px;
  margin: 0 0 10px;
}
.ftr-card-foot {
  margin-top: auto; padding-top: 10px;
  border-top: 1px solid var(--rule-soft);
  display: flex; align-items: end; justify-content: space-between;
}
.ftr-card-from {
  font-family: var(--font-mono); font-size: 8.5px;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-mute);
}
.ftr-card-price {
  font-family: var(--font-display); font-size: 22px; line-height: 1;
  color: var(--ink);
  font-variation-settings: "opsz" 30, "SOFT" 40, "wght" 500;
  letter-spacing: -0.02em;
}
.ftr-card-price small { font-family: var(--font-mono); font-size: 9.5px; color: var(--ink-mute); margin-left: 3px; }

.ftr-skeleton { pointer-events: none; }
.ftr-skeleton .ftr-card-media { background: linear-gradient(90deg, var(--paper-2) 0%, var(--paper-3) 50%, var(--paper-2) 100%); background-size: 200% 100%; animation: ftr-shimmer 1.6s ease-in-out infinite; }
.ftr-skl-line { height: 12px; background: linear-gradient(90deg, var(--paper-2) 0%, var(--paper-3) 50%, var(--paper-2) 100%); background-size: 200% 100%; animation: ftr-shimmer 1.6s ease-in-out infinite; border-radius: 2px; margin-bottom: 8px; }
@keyframes ftr-shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

.ftr-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 40px 20px;
  font-family: var(--font-display); font-size: 16px;
  color: var(--ink-3);
  background: var(--linen);
  border: 1px solid var(--rule-soft);
  border-radius: 4px;
}
.ftr-empty a { color: var(--teal-deep); text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: 3px; }

/* CHAT WIDGET — Victoria Travel AI agent */
.vt-chat-toggle {
  position: fixed;
  right: 20px; bottom: 20px;
  z-index: 80;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  border: 0;
  cursor: pointer;
  box-shadow: 0 8px 24px -4px rgba(26,24,20,0.4);
  display: inline-flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(20px);
  transition: opacity 400ms ease, transform 400ms cubic-bezier(0.2, 0.8, 0.2, 1), background 200ms ease;
}
.vt-chat-toggle.is-visible { opacity: 1; transform: translateY(0); }
.vt-chat-toggle:hover { background: var(--teal-deep); }
.vt-chat-toggle.is-active { background: var(--gold); color: var(--ink); }
.vt-chat-toggle svg { width: 26px; height: 26px; }
.vt-chat-toggle-dot {
  position: absolute; top: 8px; right: 10px;
  width: 12px; height: 12px;
  background: #16a34a; border: 2px solid var(--ink);
  border-radius: 50%;
}
@media (max-width: 768px) { .vt-chat-toggle { right: 16px; bottom: 96px; } }

.vt-chat-panel {
  position: fixed;
  right: 20px; bottom: 92px;
  z-index: 79;
  width: 380px; max-width: calc(100vw - 32px);
  height: 540px; max-height: calc(100vh - 140px);
  background: var(--paper);
  border-radius: 12px;
  box-shadow: 0 24px 60px -16px rgba(26,24,20,0.32), 0 4px 12px -2px rgba(26,24,20,0.1);
  border: 1px solid var(--rule);
  overflow: hidden;
  display: flex; flex-direction: column;
  opacity: 0; visibility: hidden;
  transform: translateY(20px) scale(0.96);
  transform-origin: bottom right;
  transition: opacity 250ms ease, transform 300ms cubic-bezier(0.2, 0.8, 0.2, 1), visibility 250ms;
}
.vt-chat-panel.is-open { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
@media (max-width: 540px) {
  .vt-chat-panel { right: 8px; left: 8px; bottom: 88px; width: auto; height: calc(100vh - 130px); }
}

.vt-chat-head { padding: 16px 18px; background: var(--ink); color: var(--paper); display: flex; align-items: center; gap: 12px; }
.vt-chat-head-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--gold-deep)); color: var(--ink); display: inline-flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; font-size: 14px; letter-spacing: -0.02em; }
.vt-chat-head-info { flex: 1; }
.vt-chat-head-info h4 { font-family: var(--font-display); font-size: 16px; margin: 0; font-variation-settings: "opsz" 18, "SOFT" 60, "wght" 600; color: var(--paper); }
.vt-chat-head-info h4 em { font-style: italic; color: var(--gold); font-variation-settings: "opsz" 18, "SOFT" 90; }
.vt-chat-head-status { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(244,239,228,0.65); display: inline-flex; align-items: center; gap: 6px; }
.vt-chat-head-status::before { content: ""; width: 6px; height: 6px; background: #16a34a; border-radius: 50%; animation: vt-chat-pulse 2s ease-in-out infinite; }
@keyframes vt-chat-pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.5; } }
.vt-chat-close { background: rgba(244,239,228,0.1); border: 0; color: var(--paper); width: 32px; height: 32px; border-radius: 50%; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; transition: background 200ms ease; }
.vt-chat-close:hover { background: rgba(244,239,228,0.2); }

.vt-chat-body { flex: 1; overflow-y: auto; padding: 20px 18px; display: flex; flex-direction: column; gap: 10px; background: var(--linen); }
.vt-chat-msg { max-width: 80%; padding: 10px 14px; border-radius: 14px; font-family: var(--font-display); font-size: 14.5px; line-height: 1.45; font-variation-settings: "opsz" 16, "SOFT" 50; word-wrap: break-word; }
.vt-chat-msg-bot { background: var(--paper-2); color: var(--ink-2); align-self: flex-start; border-bottom-left-radius: 4px; }
.vt-chat-msg-user { background: var(--ink); color: var(--paper); align-self: flex-end; border-bottom-right-radius: 4px; }
.vt-chat-msg a { color: var(--teal-deep); text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: 3px; }
.vt-chat-msg-user a { color: var(--gold); }
.vt-chat-typing { display: inline-flex; gap: 4px; padding: 12px 16px; max-width: max-content; }
.vt-chat-typing span { width: 7px; height: 7px; background: var(--ink-mute); border-radius: 50%; animation: vt-chat-typing 1.4s ease-in-out infinite; }
.vt-chat-typing span:nth-child(2) { animation-delay: 0.15s; }
.vt-chat-typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes vt-chat-typing { 0%, 60%, 100% { transform: translateY(0); opacity: 0.4; } 30% { transform: translateY(-4px); opacity: 1; } }
.vt-chat-quick { display: flex; flex-wrap: wrap; gap: 6px; margin: 6px 0 0; }
.vt-chat-quick button { background: var(--paper); border: 1px solid var(--rule); padding: 8px 12px; border-radius: 50px; font-family: var(--font-body); font-size: 12.5px; color: var(--ink-2); cursor: pointer; transition: all 200ms ease; }
.vt-chat-quick button:hover { border-color: var(--gold); color: var(--ink); }
.vt-chat-form { display: flex; gap: 6px; padding: 12px 14px; background: var(--paper); border-top: 1px solid var(--rule); }
.vt-chat-form input { flex: 1; background: var(--linen); border: 1px solid var(--rule); padding: 11px 14px; font-family: var(--font-display); font-size: 14.5px; font-variation-settings: "opsz" 16, "SOFT" 50; border-radius: 50px; color: var(--ink); }
.vt-chat-form input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-soft); }
.vt-chat-form button { background: var(--ink); color: var(--paper); border: 0; width: 42px; height: 42px; border-radius: 50%; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; transition: background 200ms ease; flex-shrink: 0; }
.vt-chat-form button:hover { background: var(--teal-deep); }
.vt-chat-form button:disabled { opacity: 0.5; cursor: not-allowed; }

/* DECK / FORM CARD */
.ed-deck {
  background: var(--linen);
  border: 1px solid var(--rule-soft);
  border-radius: 4px;
  padding: 32px;
  max-width: 440px;
  margin: 0 auto;
}

/* ============================================================ */
/* Weather widget (.wx)                                          */
/* ============================================================ */
.wx {
  background: var(--linen);
  border: 1px solid var(--rule-soft);
  border-radius: 4px;
  padding: 24px;
  max-width: 720px;
}
.wx-loading,
.wx-empty {
  color: var(--ink-3);
  font-family: var(--font-sans);
  text-align: center;
  padding: 32px;
  font-size: 14px;
}
.wx-now {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--rule-soft);
}
.wx-now-icon { font-size: 56px; line-height: 1; }
.wx-now-temp {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 500;
  line-height: 1;
  color: var(--ink);
}
.wx-now-desc {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--ink-2);
  margin-top: 4px;
}
.wx-now-loc {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-3);
  margin-top: 6px;
}
.wx-now-meta {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-2);
  display: grid;
  gap: 6px;
  text-align: right;
}
.wx-week {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  margin-top: 20px;
}
.wx-day {
  background: var(--paper);
  border: 1px solid var(--rule-soft);
  border-radius: 3px;
  padding: 10px 6px;
  text-align: center;
  font-family: var(--font-sans);
}
.wx-day-label {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-3);
}
.wx-day-icon { font-size: 26px; margin: 4px 0; line-height: 1; }
.wx-day-temp { font-size: 13px; color: var(--ink-2); }
.wx-day-temp strong { color: var(--ink); font-weight: 600; }
.wx-day-rain {
  font-family: var(--font-mono);
  font-size: 10px;
  color: #2563eb;
  margin-top: 4px;
}
.wx-foot {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-3);
  text-align: right;
  margin-top: 16px;
}
@media (max-width: 640px) {
  .wx-week { grid-template-columns: repeat(4, 1fr); }
}

/* ============================================================ */
/* Destination info (.vti)                                       */
/* ============================================================ */
.vti {
  padding: 56px 0;
}
.vti-empty {
  color: var(--ink-3);
  font-family: var(--font-sans);
  padding: 48px;
  text-align: center;
}
.vti-head { max-width: 720px; margin-bottom: 36px; }
.vti-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-3);
  margin: 0 0 12px;
}
.vti-head h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  line-height: 1.1;
  margin: 0 0 16px;
  color: var(--ink);
}
.vti-head h2 em {
  font-style: italic;
  color: var(--ink-2);
  text-transform: capitalize;
}
.vti-lead {
  font-family: var(--font-serif);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 640px;
}
.vti-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
@media (max-width: 880px) { .vti-grid { grid-template-columns: 1fr; gap: 32px; } }

.vti-col { display: grid; gap: 28px; }

.vti-block {
  background: var(--linen);
  border: 1px solid var(--rule-soft);
  border-radius: 4px;
  padding: 24px;
}
.vti-block h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-3);
  font-weight: 600;
  margin: 0 0 14px;
}
.vti-block ul {
  list-style: none;
  margin: 0; padding: 0;
  font-family: var(--font-serif);
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-2);
}
.vti-block ul li {
  padding: 8px 0;
  border-bottom: 1px solid var(--rule-soft);
}
.vti-block ul li:last-child { border-bottom: 0; }
.vti-where li strong {
  font-family: var(--font-sans);
  color: var(--ink);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.vti-cal {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 4px;
  margin-bottom: 12px;
}
.vti-month {
  text-align: center;
  padding: 8px 2px;
  background: var(--paper);
  border-radius: 3px;
  cursor: help;
  position: relative;
}
.vti-month-name {
  font-family: var(--font-mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-3);
  display: block;
}
.vti-month-dot {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--c);
  margin: 6px auto 0;
}
.vti-legend {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  color: var(--ink-3);
  letter-spacing: 0.06em;
  margin-top: 8px;
}
.vti-leg {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--c);
  margin-right: 2px;
  vertical-align: middle;
}

.vti-holidays {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-sans);
  font-size: 13px;
}
.vti-holidays td {
  padding: 8px 4px;
  border-bottom: 1px solid var(--rule-soft);
  color: var(--ink-2);
  vertical-align: top;
}
.vti-holidays tr:last-child td { border-bottom: 0; }
.vti-holidays td:first-child {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink);
  white-space: nowrap;
  padding-right: 12px;
}
.vti-imp {
  font-family: var(--font-mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 2px 6px;
  border-radius: 3px;
  background: var(--paper);
}
.vti-imp-minor { color: var(--ink-3); }
.vti-imp-moderat { color: #b45309; background: #fef3c7; }
.vti-imp-major { color: #b91c1c; background: #fee2e2; }

.vti-visa p {
  font-family: var(--font-serif);
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0 0 12px;
}
.vti-visa p:last-child { margin-bottom: 0; }
.vti-mute { color: var(--ink-3) !important; font-size: 13px !important; }

.vti-facts dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 16px;
  font-family: var(--font-sans);
  font-size: 13px;
  margin: 0;
}
.vti-facts dt {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-3);
}
.vti-facts dd {
  margin: 0;
  color: var(--ink-2);
}

/* ============================================================ */
/* FIX above-the-fold visibility — hero apare instant fără JS    */
/* ============================================================ */
.hp-hero .reveal,
.hp-hero .reveal-d1,
.hp-hero .reveal-d2,
.hp-hero .reveal-d3,
.hp-hero .reveal-d4,
.ed-hero .reveal,
.ed-hero .reveal-d1,
.ed-hero .reveal-d2 {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

/* ============================================================ */
/* P2-14: Culori mai vesele — accent overlays                    */
/* Victoria a cerut explicit: paleta sa nu fie palida            */
/* ============================================================ */

/* Section backgrounds: introduce gentle color washes */
.ed-section-paper-2 {
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
}
.hp-search { background: var(--paper-rose); border-top: 3px solid var(--coral); border-bottom: 3px solid var(--coral); }
.hp-map-block { background: var(--paper-sky); }

/* Featured grid cards — gold ring on hover + coral price */
.ftr-card { transition: box-shadow 240ms ease, transform 240ms ease; }
.ftr-card:hover {
  box-shadow: 0 12px 32px -12px rgba(245, 158, 11, 0.45), 0 0 0 2px var(--gold);
  transform: translateY(-3px);
}
.ftr-card-price { color: var(--coral-deep) !important; font-weight: 700 !important; }
.ftr-card-tag { background: var(--coral) !important; color: white !important; }
.ftr-meta { color: var(--teal-deep); font-weight: 500; }

/* Search result cards — warmer hover */
.offer-card:hover {
  box-shadow: 0 16px 40px -16px rgba(249, 115, 22, 0.35), 0 0 0 1px var(--gold-bright) !important;
}
.offer-card-price { color: var(--coral-deep) !important; }
.offer-card-from { color: var(--teal-deep); }
.offer-card-reserve {
  color: var(--coral-deep);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 11px;
}

/* Primary buttons get sun-kissed gradient */
.ed-btn-primary,
.search-btn,
.hp-cta-primary {
  background: linear-gradient(135deg, var(--coral) 0%, var(--gold) 100%) !important;
  color: white !important;
  border: 0 !important;
  font-weight: 600 !important;
  box-shadow: 0 8px 24px -8px rgba(245, 158, 11, 0.5);
  transition: box-shadow 200ms ease, transform 200ms ease;
}
.ed-btn-primary:hover,
.search-btn:hover,
.hp-cta-primary:hover {
  box-shadow: 0 12px 32px -10px rgba(245, 158, 11, 0.7);
  transform: translateY(-2px);
}

/* Masthead marquee: gold sparkle */
.ed-masthead {
  background: linear-gradient(90deg, var(--ink) 0%, #2a2014 50%, var(--ink) 100%);
}
.ed-masthead-track span:nth-child(odd) { color: var(--gold-bright); }

/* Navbar CTA Cont — vibrant */
.ed-nav-cta {
  background: linear-gradient(135deg, var(--coral) 0%, var(--gold) 100%);
  color: white !important;
  box-shadow: 0 4px 16px -4px rgba(249, 115, 22, 0.4);
}

/* Stars / badges get a glow */
.ftr-card-stars,
.offer-card-stars { color: var(--gold-bright); text-shadow: 0 1px 2px rgba(245, 158, 11, 0.3); }

/* Partners ticker — alternating colors */
.hp-partners {
  background: linear-gradient(90deg, var(--paper-mint) 0%, var(--paper-rose) 50%, var(--paper-mint) 100%);
  border-top: 1px solid var(--teal-glow);
  border-bottom: 1px solid var(--teal-glow);
}
.hp-partners .item em { color: var(--coral-deep); font-style: normal; font-weight: 600; }

/* Pulse dot for "live" indicators — coral */
.ftr-meta::before {
  content: "●";
  color: var(--coral);
  animation: vt-pulse 1.6s ease-in-out infinite;
  margin-right: 6px;
}
@keyframes vt-pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ============================================================ */
/* Destination gallery (.vt-gallery-*)                           */
/* ============================================================ */
.vt-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.vt-gallery-tile {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  color: white;
  display: block;
  transition: transform 240ms ease, box-shadow 240ms ease;
}
.vt-gallery-tile:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 36px -16px rgba(245, 158, 11, 0.5);
}
.vt-gallery-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 600ms ease;
}
.vt-gallery-tile:hover .vt-gallery-img { transform: scale(1.06); }
.vt-gallery-tile::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(26,24,20,0.7) 100%);
  z-index: 1;
}
.vt-gallery-cap {
  position: absolute;
  left: 16px; right: 16px; bottom: 14px;
  z-index: 2;
  font-family: var(--font-display);
}
.vt-gallery-cap span {
  display: block;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.1;
  font-variation-settings: "opsz" 30, "SOFT" 60;
}
.vt-gallery-cap small {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-bright);
  margin-top: 6px;
  display: block;
}
.vt-gallery-empty {
  font-family: var(--font-sans);
  color: var(--ink-mute);
  text-align: center;
  padding: 32px;
}

/* ============================================================ */
/* P2-FINAL: Polish UX                                           */
/* ============================================================ */

/* Smooth scroll page-wide */
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

/* Focus visible — accessibility */
:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 2px;
  border-radius: 3px;
}
button:focus-visible, a:focus-visible {
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.3);
}

/* Better card hover (everywhere) */
.ed-card, .ed-tile, .edition {
  transition: transform 280ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 280ms ease;
}
.ed-card:hover, .ed-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px -16px rgba(26, 24, 20, 0.18);
}

/* Skeleton states for content loading */
.vt-skeleton {
  background: linear-gradient(90deg, var(--paper-2) 0%, var(--paper-3) 50%, var(--paper-2) 100%);
  background-size: 200% 100%;
  animation: vt-shimmer 1.4s ease-in-out infinite;
  border-radius: 3px;
}
.vt-skeleton-text { height: 12px; margin: 6px 0; }
.vt-skeleton-title { height: 24px; margin: 10px 0; }
.vt-skeleton-img { aspect-ratio: 16/9; }
@keyframes vt-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Mobile bottom bar: hide on desktop, show on mobile (already set, but ensure z-index) */
.ed-bottombar { z-index: 90; }

/* Better tap targets on mobile (min 44×44) */
@media (max-width: 768px) {
  .ed-nav a, .ed-nav button, .ed-burger, .ed-nav-cta { min-height: 44px; min-width: 44px; }
  .offer-card-heart { min-width: 44px; min-height: 44px; }
}

/* Smooth modal/overlay transitions */
.ed-search-overlay {
  transition: opacity 200ms ease;
  opacity: 0;
  pointer-events: none;
}
.ed-search-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}
.ed-search-overlay-inner {
  transform: translateY(-12px);
  transition: transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.ed-search-overlay.is-open .ed-search-overlay-inner {
  transform: translateY(0);
}

/* Page transitions — subtle fade on load */
body { animation: vt-page-in 360ms ease both; }
@keyframes vt-page-in {
  from { opacity: 0.85; }
  to { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  body { animation: none; }
}

/* Better link underline */
.ed-link-arrow, .ed-prose a {
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 3px;
  transition: text-decoration-color 200ms ease;
}
.ed-link-arrow:hover, .ed-prose a:hover {
  text-decoration-color: var(--coral);
}

/* Toast/notification styling (for newsletter/contact success) */
.vt-toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--ink);
  color: var(--paper);
  padding: 14px 22px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 14px;
  box-shadow: 0 16px 32px -12px rgba(26, 24, 20, 0.3);
  z-index: 100;
  opacity: 0;
  transition: opacity 240ms ease, transform 240ms ease;
  max-width: calc(100% - 32px);
}
.vt-toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.vt-toast.is-success { background: #16a34a; }
.vt-toast.is-error { background: #dc2626; }

/* Chat toggle button — pulse subtle to draw attention first time */
.vt-chat-toggle.is-visible {
  animation: vt-pulse-shadow 2.4s ease-in-out 3;
}
@keyframes vt-pulse-shadow {
  0%, 100% { box-shadow: 0 8px 24px -8px rgba(245, 158, 11, 0.5); }
  50% { box-shadow: 0 8px 32px -4px rgba(245, 158, 11, 0.9); }
}

/* Print-friendly */
@media print {
  .ed-masthead, .ed-header, .ed-bottombar, .vt-chat-toggle, .ed-footer { display: none !important; }
  body { background: white; color: black; }
  a { color: black; text-decoration: underline; }
}
