/* Andalus Tours — Main Stylesheet */

/* ===========================================
       1. DESIGN TOKENS
       =========================================== */
    :root {
      /* Palette */
      --ink:           #0a1840;
      --ink-soft:      #2c3a66;
      --parchment:     #f3f6fb;
      --parchment-lt:  #ffffff;
      --parchment-dk:  #e5ebf3;
      --azulejo:       #0a2475;
      --azulejo-deep:  #050f4a;
      --azulejo-light: #1c3a9e;
      --royal:         #0049ff;
      --royal-soft:    #3d6fff;
      --gold:          #b08f66;
      --gold-soft:     #c9a875;
      --gold-deep:     #8a6f4d;
      --saffron:       #b8742c;
      --terracotta:    #9c4a31;
      --sage:          #7d8a6c;
      --plum:          #4a2a52;

      /* Hairlines */
      --hairline:      rgba(10, 24, 64, 0.14);
      --hairline-lt:   rgba(243, 246, 251, 0.20);
      --hairline-gold: rgba(176, 143, 102, 0.40);

      /* Type */
      --font-hero:     'Tajawal', 'Cairo', 'Inter', sans-serif;
      --font-display:  'Tajawal', 'Cairo', 'Inter', sans-serif;
      --font-body:     'Tajawal', 'Cairo', 'Inter', system-ui, sans-serif;
      --font-accent:   'Tajawal', 'Cairo', 'Inter', sans-serif;
      --font-latin:    'Marcellus', 'Inter', serif;
      --font-latin-body: 'Inter', system-ui, sans-serif;

      /* Spacing */
      --space-1: 0.5rem;
      --space-2: 1rem;
      --space-3: 1.5rem;
      --space-4: 2rem;
      --space-5: 3rem;
      --space-6: 4rem;
      --space-7: 6rem;
      --space-8: 8rem;

      /* Layout */
      --container: 1240px;
      --container-narrow: 880px;
      --radius: 2px;
      --radius-lg: 6px;
      --shadow-sm: 0 1px 2px rgba(13, 52, 80, 0.06), 0 2px 8px rgba(13, 52, 80, 0.04);
      --shadow:    0 4px 14px rgba(13, 52, 80, 0.10), 0 12px 32px rgba(13, 52, 80, 0.08);
      --shadow-lg: 0 12px 32px rgba(13, 52, 80, 0.18), 0 30px 60px rgba(13, 52, 80, 0.12);
    }

    /* ===========================================
       2. RESET & BASE
       =========================================== */
    *, *::before, *::after { box-sizing: border-box; }
    html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

    /* Language-specific overrides for EN / ES — use Latin fonts and tighter line-height */
    body.lang-en,
    body.lang-es {
      --font-hero:     'Marcellus', Georgia, serif;
      --font-display:  'Marcellus', Georgia, serif;
      --font-body:     'Inter', system-ui, -apple-system, sans-serif;
      --font-accent:   'Inter', system-ui, sans-serif;
      line-height: 1.65;
      font-size: 16px;
    }
    /* Hide the redundant Latin sub-labels when already in a Latin language */
    body.lang-en .brand__lat,
    body.lang-es .brand__lat,
    body.lang-en .hero__title-lat,
    body.lang-es .hero__title-lat,
    body.lang-en .dest-card__name-lat,
    body.lang-es .dest-card__name-lat {
      display: none;
    }
    /* In LTR languages, the heading "ANDALUS" is shorter — keep the same display feel */
    body.lang-en .hero__title,
    body.lang-es .hero__title {
      letter-spacing: 0.02em;
      font-weight: 400;
    }
    /* Translate eyebrow caps in Spanish manually (no body change, only Spanish-specific) */
    body.lang-es .eyebrow::before { content: ''; }
    /* Direction-aware arrow class — flip arrows when in LTR */
    body.lang-en .arrow,
    body.lang-es .arrow {
      display: inline-block;
      transform: scaleX(-1);
    }

    body {
      margin: 0;
      font-family: var(--font-body);
      font-size: 17px;
      line-height: 1.75;
      color: var(--ink);
      background: var(--parchment-lt);
      font-weight: 400;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }
    img { max-width: 100%; height: auto; display: block; }
    a { color: inherit; text-decoration: none; transition: color 0.2s, opacity 0.2s; }
    button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
    h1, h2, h3, h4 { margin: 0; font-weight: 400; line-height: 1.25; }
    p { margin: 0 0 1em; }
    p:last-child { margin-bottom: 0; }
    ul { margin: 0; padding: 0; list-style: none; }

    /* Selection */
    ::selection { background: var(--gold); color: var(--ink); }

    /* Container */
    .container {
      width: 100%;
      max-width: var(--container);
      margin: 0 auto;
      padding: 0 var(--space-3);
    }
    .container--narrow { max-width: var(--container-narrow); }

    /* ===========================================
       3. TYPOGRAPHY HELPERS
       =========================================== */
    .h-display {
      font-family: var(--font-display);
      font-weight: 700;
      letter-spacing: -0.01em;
    }
    .h-hero {
      font-family: var(--font-hero);
      font-weight: 900;
      letter-spacing: -0.02em;
      line-height: 1.05;
    }
    .h-latin {
      font-family: var(--font-latin);
      letter-spacing: 0.18em;
      text-transform: uppercase;
      font-weight: 400;
      direction: ltr;
      display: inline-block;
    }
    .eyebrow {
      font-family: var(--font-latin);
      font-size: 0.78rem;
      letter-spacing: 0.32em;
      text-transform: uppercase;
      color: var(--gold-deep);
      direction: ltr;
      display: inline-block;
    }
    .eyebrow--light { color: var(--gold-soft); }

    /* ===========================================
       4. MOORISH ORNAMENT (signature element)
       =========================================== */
    .ornament {
      display: inline-block;
      width: 60px;
      height: 60px;
      flex-shrink: 0;
    }
    .ornament svg { width: 100%; height: 100%; display: block; }
    .ornament--sm { width: 28px; height: 28px; }
    .ornament--lg { width: 96px; height: 96px; }
    .ornament--xl { width: 180px; height: 180px; }

    /* Divider with ornament */
    .ornament-divider {
      display: flex;
      align-items: center;
      gap: var(--space-3);
      margin: var(--space-5) 0;
    }
    .ornament-divider::before,
    .ornament-divider::after {
      content: '';
      flex: 1;
      height: 1px;
      background: var(--hairline-gold);
    }

    /* ===========================================
       5. BUTTONS
       =========================================== */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      padding: 0.95rem 1.8rem;
      font-family: var(--font-accent);
      font-size: 1rem;
      font-weight: 500;
      letter-spacing: 0.02em;
      border-radius: var(--radius);
      transition: all 0.25s ease;
      cursor: pointer;
      line-height: 1;
      white-space: nowrap;
    }
    .btn--primary {
      background: var(--royal);
      color: #fff;
      box-shadow: 0 4px 12px rgba(0, 73, 255, 0.25);
    }
    .btn--primary:hover {
      background: var(--royal-soft);
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(0, 73, 255, 0.35);
    }
    .btn--outline {
      border: 1px solid var(--hairline-lt);
      color: var(--parchment);
    }
    .btn--outline:hover {
      border-color: var(--gold);
      color: var(--gold-soft);
    }
    .btn--ghost {
      color: var(--azulejo);
      border: 1px solid var(--azulejo);
    }
    .btn--ghost:hover { background: var(--azulejo); color: var(--parchment); }
    .btn--whatsapp {
      background: #25d366;
      color: #fff;
    }
    .btn--whatsapp:hover { background: #1fb858; transform: translateY(-2px); }
    .btn--lg { padding: 1.15rem 2.2rem; font-size: 1.05rem; }
    .btn .arrow {
      display: inline-block;
      transition: transform 0.25s;
    }
    .btn:hover .arrow { transform: translateX(-4px); }

    /* ===========================================
       6. TOP UTILITY BAR
       =========================================== */
    .utility-bar {
      background: var(--azulejo-deep);
      color: var(--parchment);
      font-family: var(--font-accent);
      font-size: 0.85rem;
      font-weight: 400;
      padding: 0.5rem 0;
      border-bottom: 1px solid var(--hairline-lt);
    }
    .utility-bar__inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: var(--space-3);
      flex-wrap: wrap;
    }
    .utility-bar__contact {
      display: flex;
      gap: var(--space-3);
      align-items: center;
      opacity: 0.9;
    }
    .utility-bar__contact a:hover { color: var(--gold-soft); }
    .lang-switch {
      display: flex;
      gap: 0.4rem;
      align-items: center;
      font-family: var(--font-latin);
      letter-spacing: 0.15em;
      font-size: 0.75rem;
      direction: ltr;
    }
    .lang-switch button {
      padding: 0.2rem 0.6rem;
      opacity: 0.55;
      border-radius: var(--radius);
      transition: opacity 0.2s;
    }
    .lang-switch button.active { opacity: 1; color: var(--gold-soft); }
    .lang-switch button:hover { opacity: 1; }
    .lang-switch .sep { opacity: 0.3; }

    /* ===========================================
       7. NAV
       =========================================== */
    .nav {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(13, 52, 80, 0.92);
      backdrop-filter: saturate(120%) blur(12px);
      -webkit-backdrop-filter: saturate(120%) blur(12px);
      color: var(--parchment);
      border-bottom: 1px solid var(--hairline-lt);
    }
    .nav__inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.1rem 0;
    }
    .brand {
      display: flex;
      align-items: center;
      gap: 0.85rem;
      text-decoration: none;
    }
    .brand__logo {
      width: 52px;
      height: 52px;
      object-fit: contain;
      border-radius: 10px;
      background: var(--parchment);
      padding: 4px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
      transition: transform 0.25s ease;
    }
    .brand:hover .brand__logo {
      transform: scale(1.05);
    }
    .brand__mark {
      width: 38px;
      height: 38px;
      display: grid;
      place-items: center;
      border: 1px solid var(--gold);
      color: var(--gold-soft);
    }
    .brand__text {
      display: flex;
      flex-direction: column;
      line-height: 1.1;
    }
    .brand__ar {
      font-family: var(--font-display);
      font-size: 1.15rem;
      font-weight: 600;
      color: var(--parchment);
      letter-spacing: 0.01em;
    }
    .brand__lat {
      font-family: var(--font-latin);
      font-size: 0.62rem;
      letter-spacing: 0.32em;
      color: var(--gold-soft);
      margin-top: 4px;
      direction: ltr;
    }
    .nav__links {
      display: flex;
      gap: var(--space-4);
      align-items: center;
      font-family: var(--font-accent);
      font-size: 0.97rem;
      font-weight: 500;
      letter-spacing: 0.01em;
    }
    .nav__links a {
      position: relative;
      padding: 0.4rem 0;
      opacity: 0.85;
    }
    .nav__links a::after {
      content: '';
      position: absolute;
      bottom: -2px;
      right: 0;
      width: 0;
      height: 1px;
      background: var(--gold);
      transition: width 0.3s;
    }
    .nav__links a:hover { opacity: 1; color: var(--gold-soft); }
    .nav__links a:hover::after { width: 100%; }
    .nav__cta { display: flex; gap: 0.7rem; align-items: center; }
    .nav__cta .btn--primary { padding: 0.7rem 1.3rem; font-size: 0.92rem; }
    .nav__menu-btn {
      display: none;
      width: 44px;
      height: 44px;
      align-items: center;
      justify-content: center;
    }
    .nav__menu-btn span {
      display: block;
      width: 22px;
      height: 1.5px;
      background: var(--parchment);
      position: relative;
    }
    .nav__menu-btn span::before,
    .nav__menu-btn span::after {
      content: '';
      position: absolute;
      right: 0;
      width: 22px;
      height: 1.5px;
      background: var(--parchment);
      transition: transform 0.3s;
    }
    .nav__menu-btn span::before { top: -7px; }
    .nav__menu-btn span::after { top: 7px; }
    .nav__drawer {
      display: none;
      position: fixed;
      top: 0;
      right: 0;
      width: 85%;
      max-width: 380px;
      height: 100vh;
      background: var(--azulejo-deep);
      color: var(--parchment);
      padding: var(--space-5) var(--space-3);
      z-index: 100;
      transform: translateX(100%);
      transition: transform 0.35s ease;
      overflow-y: auto;
    }
    .nav__drawer.open { transform: translateX(0); }
    .nav__drawer-close {
      position: absolute;
      top: var(--space-3);
      left: var(--space-3);
      width: 44px;
      height: 44px;
      font-size: 1.6rem;
    }
    .nav__drawer-links {
      display: flex;
      flex-direction: column;
      gap: var(--space-3);
      margin-top: var(--space-5);
      font-family: var(--font-display);
      font-size: 1.4rem;
    }
    .nav__drawer-links a { padding: 0.7rem 0; border-bottom: 1px solid var(--hairline-lt); }
    .nav__drawer-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.5);
      z-index: 99;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s;
    }
    .nav__drawer-overlay.open { opacity: 1; pointer-events: auto; }

    /* ===========================================
       8. HERO
       =========================================== */
    .hero {
      position: relative;
      background: var(--azulejo);
      color: var(--parchment);
      padding: var(--space-7) 0 var(--space-8);
      overflow: hidden;
      isolation: isolate;
    }
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        linear-gradient(135deg, rgba(10, 36, 117, 0.85) 0%, rgba(5, 15, 74, 0.92) 100%),
        url('https://images.unsplash.com/photo-1759434613657-422a87ff991a?w=2000&h=1200&fit=crop&auto=format&q=80') center/cover no-repeat;
      z-index: -2;
    }
    .hero__pattern {
      position: absolute;
      inset: 0;
      opacity: 0.06;
      z-index: -1;
      background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23c4992e' stroke-width='1'%3E%3Cpath d='M40 5 L55 20 L75 20 L60 35 L65 55 L40 45 L15 55 L20 35 L5 20 L25 20 Z'/%3E%3Ccircle cx='40' cy='40' r='12'/%3E%3C/g%3E%3C/svg%3E");
      background-size: 120px 120px;
    }
    .hero__ornament-bg {
      position: absolute;
      top: 50%;
      left: -100px;
      transform: translateY(-50%);
      width: 600px;
      height: 600px;
      opacity: 0.08;
      z-index: -1;
      color: var(--gold);
    }
    .hero__inner {
      position: relative;
      display: grid;
      grid-template-columns: 1fr;
      gap: var(--space-5);
      min-height: 70vh;
      align-items: center;
    }
    .hero__content { max-width: 760px; }
    .hero__eyebrow {
      display: flex;
      align-items: center;
      gap: var(--space-2);
      margin-bottom: var(--space-3);
    }
    .hero__title {
      font-size: clamp(3.5rem, 9vw, 7.5rem);
      color: var(--gold-soft);
      margin-bottom: var(--space-2);
    }
    .hero__title-lat {
      font-family: var(--font-latin);
      font-size: clamp(0.85rem, 1.4vw, 1.1rem);
      letter-spacing: 0.5em;
      color: var(--parchment);
      opacity: 0.7;
      margin-bottom: var(--space-4);
      direction: ltr;
    }
    .hero__lead {
      font-family: var(--font-display);
      font-size: clamp(1.3rem, 2.5vw, 1.85rem);
      line-height: 1.55;
      max-width: 680px;
      margin-bottom: var(--space-5);
      color: var(--parchment);
      font-weight: 400;
    }
    .hero__lead em {
      font-style: italic;
      color: var(--gold-soft);
    }
    .hero__cta {
      display: flex;
      gap: var(--space-2);
      flex-wrap: wrap;
      margin-bottom: var(--space-5);
    }
    .hero__meta {
      display: flex;
      gap: var(--space-5);
      flex-wrap: wrap;
      padding-top: var(--space-4);
      border-top: 1px solid var(--hairline-lt);
    }
    .hero__meta-item {
      display: flex;
      flex-direction: column;
      gap: 0.3rem;
    }
    .hero__meta-num {
      font-family: var(--font-hero);
      font-weight: 900;
      font-size: 2rem;
      color: var(--gold-soft);
      line-height: 1;
    }
    .hero__meta-label {
      font-family: var(--font-accent);
      font-size: 0.85rem;
      font-weight: 400;
      color: var(--parchment);
      opacity: 0.8;
      letter-spacing: 0.02em;
    }

    /* ===========================================
       9. INTRO / QUOTE STRIP
       =========================================== */
    .intro {
      background: var(--parchment);
      padding: var(--space-7) 0;
      text-align: center;
      position: relative;
    }
    .intro__quote {
      font-family: var(--font-display);
      font-size: clamp(1.3rem, 2.4vw, 1.8rem);
      line-height: 1.7;
      color: var(--ink);
      max-width: 760px;
      margin: 0 auto var(--space-3);
      font-style: italic;
    }
    .intro__quote::before,
    .intro__quote::after {
      content: '”';
      color: var(--gold);
      font-size: 2em;
      line-height: 0;
      vertical-align: -0.4em;
      margin: 0 0.1em;
      font-family: serif;
    }
    .intro__quote::before { content: '“'; }
    .intro__attr {
      font-family: var(--font-latin);
      letter-spacing: 0.25em;
      font-size: 0.78rem;
      color: var(--ink-soft);
      direction: ltr;
    }

    /* ===========================================
       10. SECTION HEADER
       =========================================== */
    .section { padding: var(--space-7) 0; position: relative; }
    .section--dark {
      background: var(--azulejo);
      color: var(--parchment);
    }
    .section--parchment { background: var(--parchment); }
    .section--parchment-lt { background: var(--parchment-lt); }
    .section-head {
      max-width: 760px;
      margin: 0 auto var(--space-6);
      text-align: center;
    }
    .section-head__eyebrow { margin-bottom: var(--space-2); }
    .section-head__title {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: clamp(2.2rem, 4.5vw, 3.5rem);
      margin-bottom: var(--space-3);
      letter-spacing: -0.01em;
    }
    .section-head__lead {
      font-family: var(--font-body);
      font-size: 1.1rem;
      line-height: 1.7;
      opacity: 0.85;
      max-width: 620px;
      margin: 0 auto;
    }
    .section-head .ornament {
      display: block;
      margin: 0 auto var(--space-3);
      color: var(--gold);
    }
    .section--dark .section-head .ornament { color: var(--gold-soft); }

    /* ===========================================
       11. DESTINATIONS GRID
       =========================================== */
    .destinations-grid {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      gap: var(--space-3);
    }
    .dest-card {
      position: relative;
      overflow: hidden;
      min-height: 360px;
      padding: var(--space-4);
      color: var(--parchment);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.5s;
      box-shadow: var(--shadow-sm);
      isolation: isolate;
    }
    .dest-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-lg);
    }
    .dest-card::before {
      content: '';
      position: absolute;
      inset: 0;
      z-index: -2;
      transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    }
    .dest-card:hover::before {
      transform: scale(1.08);
    }
    .dest-card::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.55) 100%);
      z-index: -1;
    }

    /* City color treatments — real photos with brand-colored overlays for readability */
    .dest-card--granada::before {
      background:
        linear-gradient(135deg, rgba(10, 36, 117, 0.55) 0%, rgba(5, 15, 74, 0.85) 100%),
        url('https://images.unsplash.com/photo-1564740603199-5f56138c6679?w=1600&h=900&fit=crop&auto=format&q=80') center/cover no-repeat;
    }
    .dest-card--sevilla::before {
      background:
        linear-gradient(135deg, rgba(19, 77, 110, 0.50) 0%, rgba(10, 40, 64, 0.85) 100%),
        url('https://images.unsplash.com/photo-1688404808661-92f72f2ea258?w=1600&h=900&fit=crop&auto=format&q=80') center/cover no-repeat;
    }
    .dest-card--cordoba::before {
      background:
        linear-gradient(135deg, rgba(10, 24, 64, 0.40) 0%, rgba(10, 24, 64, 0.80) 100%),
        url('https://images.unsplash.com/photo-1707327314218-d8cc8ad4b574?w=1600&h=900&fit=crop&auto=format&q=80') center/cover no-repeat;
      opacity: 1;
    }
    .dest-card--cordoba::after {
      background: linear-gradient(180deg, rgba(10, 24, 64, 0.20) 0%, rgba(10, 24, 64, 0.50) 100%);
    }
    .dest-card--malaga::before {
      background:
        linear-gradient(160deg, rgba(42, 105, 112, 0.45) 0%, rgba(15, 58, 64, 0.85) 100%),
        url('https://images.unsplash.com/photo-1560801514-704d01da7745?w=1600&h=900&fit=crop&auto=format&q=80') center/cover no-repeat;
    }
    .dest-card--ronda::before {
      background:
        linear-gradient(135deg, rgba(138, 111, 74, 0.40) 0%, rgba(74, 58, 37, 0.88) 100%),
        url('https://images.unsplash.com/photo-1571213198334-e8ffb58a8c7d?w=1600&h=900&fit=crop&auto=format&q=80') center/cover no-repeat;
    }
    .dest-card--madrid::before {
      background:
        linear-gradient(135deg, rgba(44, 58, 102, 0.45) 0%, rgba(10, 24, 64, 0.88) 100%),
        url('https://images.unsplash.com/photo-1539037116277-4db20889f2d4?w=1600&h=900&fit=crop&auto=format&q=80') center/cover no-repeat;
    }

    /* Grid placement (asymmetric layout) */
    .dest-card--granada    { grid-column: span 8; min-height: 460px; }
    .dest-card--sevilla    { grid-column: span 4; }
    .dest-card--cordoba    { grid-column: span 4; }
    .dest-card--malaga     { grid-column: span 4; }
    .dest-card--ronda      { grid-column: span 4; }
    .dest-card--madrid     { grid-column: span 12; min-height: 280px; }

    .dest-card__num {
      font-family: var(--font-latin);
      font-size: 0.78rem;
      letter-spacing: 0.32em;
      color: var(--gold-soft);
      opacity: 0.8;
      direction: ltr;
    }
    .dest-card__ornament {
      position: absolute;
      top: var(--space-3);
      left: var(--space-3);
      color: var(--gold-soft);
      opacity: 0.6;
      transition: opacity 0.4s, transform 0.6s;
    }
    .dest-card:hover .dest-card__ornament {
      opacity: 0.9;
      transform: rotate(45deg);
    }
    .dest-card__body { margin-top: auto; }
    .dest-card__name {
      font-family: var(--font-hero);
      font-weight: 800;
      font-size: clamp(2rem, 3.5vw, 2.8rem);
      color: var(--parchment);
      margin-bottom: 0.2rem;
      line-height: 1.1;
    }
    .dest-card--granada .dest-card__name { font-size: clamp(2.5rem, 4.5vw, 3.6rem); }
    .dest-card__name-lat {
      font-family: var(--font-latin);
      font-size: 0.85rem;
      letter-spacing: 0.32em;
      color: var(--gold-soft);
      margin-bottom: var(--space-3);
      direction: ltr;
      display: block;
    }
    .dest-card__desc {
      font-family: var(--font-body);
      font-size: 0.95rem;
      line-height: 1.7;
      opacity: 0.92;
      margin-bottom: var(--space-3);
    }
    .dest-card__highlights {
      display: flex;
      flex-wrap: wrap;
      gap: 0.4rem;
      margin-bottom: var(--space-3);
    }
    .dest-card__tag {
      font-size: 0.78rem;
      padding: 0.35rem 0.7rem;
      border: 1px solid var(--hairline-lt);
      border-radius: 100px;
      backdrop-filter: blur(4px);
      background: rgba(255, 255, 255, 0.05);
    }
    .dest-card__link {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--gold-soft);
      font-size: 0.9rem;
      font-weight: 500;
      border-bottom: 1px solid currentColor;
      padding-bottom: 0.2rem;
      width: max-content;
    }
    .dest-card__link:hover { color: var(--parchment); }

    /* ===========================================
       12. THEMES (Tour Packages)
       =========================================== */
    .themes {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: var(--space-3);
    }
    .theme-card {
      background: rgba(244, 236, 220, 0.04);
      border: 1px solid var(--hairline-lt);
      padding: var(--space-4);
      transition: all 0.35s;
      display: flex;
      flex-direction: column;
      gap: var(--space-3);
      position: relative;
      overflow: hidden;
    }
    .theme-card:hover {
      background: rgba(244, 236, 220, 0.07);
      border-color: var(--gold);
      transform: translateY(-4px);
    }
    .theme-card__head {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: var(--space-3);
    }
    .theme-card__icon {
      width: 56px;
      height: 56px;
      display: grid;
      place-items: center;
      color: var(--gold-soft);
      border: 1px solid var(--hairline-gold);
      flex-shrink: 0;
    }
    .theme-card__num {
      font-family: var(--font-latin);
      font-size: 0.78rem;
      letter-spacing: 0.32em;
      color: var(--gold-soft);
      direction: ltr;
      opacity: 0.7;
    }
    .theme-card__title {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 1.7rem;
      color: var(--parchment);
      margin-bottom: 0.4rem;
    }
    .theme-card__title-lat {
      font-family: var(--font-latin);
      font-size: 0.78rem;
      letter-spacing: 0.32em;
      color: var(--gold-soft);
      direction: ltr;
      display: block;
      margin-bottom: var(--space-2);
    }
    .theme-card__desc {
      font-size: 0.98rem;
      line-height: 1.75;
      opacity: 0.88;
    }
    .theme-card__features {
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
      padding-top: var(--space-3);
      border-top: 1px solid var(--hairline-lt);
    }
    .theme-card__features li {
      display: flex;
      align-items: center;
      gap: 0.7rem;
      font-family: var(--font-accent);
      font-size: 0.95rem;
      font-weight: 400;
      opacity: 0.9;
    }
    .theme-card__features li::before {
      content: '◆';
      color: var(--gold);
      font-size: 0.6em;
    }

    /* ===========================================
       13. SERVICES
       =========================================== */
    .services {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      border: 1px solid var(--hairline);
      background: var(--parchment);
    }
    .service {
      padding: var(--space-4) var(--space-3);
      border-left: 1px solid var(--hairline);
      transition: background 0.3s;
      text-align: center;
    }
    .service:last-child { border-left: 0; }
    .service:hover { background: var(--parchment-dk); }
    .service__icon {
      width: 48px;
      height: 48px;
      margin: 0 auto var(--space-3);
      color: var(--azulejo);
    }
    .service__title {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 1.3rem;
      color: var(--ink);
      margin-bottom: 0.5rem;
    }
    .service__desc {
      font-size: 0.92rem;
      line-height: 1.65;
      color: var(--ink-soft);
    }

    /* ===========================================
       14. LEAD FORM (Custom Trip Builder)
       =========================================== */
    .lead-form-section {
      background:
        radial-gradient(ellipse at top right, var(--azulejo-light) 0%, transparent 50%),
        radial-gradient(ellipse at bottom left, var(--azulejo-deep) 0%, transparent 60%),
        var(--azulejo);
      color: var(--parchment);
      padding: var(--space-7) 0;
      position: relative;
      overflow: hidden;
    }
    .lead-form-section::before {
      content: '';
      position: absolute;
      inset: 0;
      opacity: 0.04;
      background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23c4992e' stroke-width='0.8'%3E%3Cpath d='M50 5 L70 25 L95 25 L75 45 L82 70 L50 55 L18 70 L25 45 L5 25 L30 25 Z'/%3E%3Ccircle cx='50' cy='50' r='15'/%3E%3C/g%3E%3C/svg%3E");
      background-size: 150px;
    }
    .lead-form-wrap {
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      gap: var(--space-6);
      align-items: start;
    }
    .lead-form__intro {
      position: sticky;
      top: 100px;
    }
    .lead-form__intro .eyebrow { color: var(--gold-soft); margin-bottom: var(--space-2); display: inline-block;}
    .lead-form__intro h2 {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: clamp(2rem, 4vw, 3rem);
      margin-bottom: var(--space-3);
      line-height: 1.2;
    }
    .lead-form__intro p {
      opacity: 0.9;
      line-height: 1.75;
      margin-bottom: var(--space-3);
    }
    .lead-form__why {
      display: flex;
      flex-direction: column;
      gap: var(--space-2);
      margin-top: var(--space-4);
      padding-top: var(--space-4);
      border-top: 1px solid var(--hairline-lt);
    }
    .lead-form__why li {
      display: flex;
      gap: var(--space-2);
      align-items: flex-start;
      font-size: 0.95rem;
    }
    .lead-form__why-num {
      font-family: var(--font-latin);
      color: var(--gold-soft);
      font-size: 0.85rem;
      letter-spacing: 0.15em;
      flex-shrink: 0;
      direction: ltr;
    }

    /* Form */
    .form {
      background: var(--parchment-lt);
      color: var(--ink);
      padding: var(--space-5);
      box-shadow: var(--shadow-lg);
      position: relative;
    }
    .form__steps {
      display: flex;
      gap: 0.4rem;
      margin-bottom: var(--space-4);
    }
    .form__step-dot {
      flex: 1;
      height: 3px;
      background: var(--hairline);
      transition: background 0.3s;
    }
    .form__step-dot.active { background: var(--royal); }
    .form__step-dot.complete { background: var(--gold); }
    .form__step-label {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: var(--space-3);
      gap: var(--space-2);
    }
    .form__step-num {
      font-family: var(--font-latin);
      font-size: 0.78rem;
      letter-spacing: 0.32em;
      color: var(--gold-deep);
      direction: ltr;
    }
    .form__step-count {
      font-size: 0.85rem;
      color: var(--ink-soft);
      font-family: var(--font-latin-body);
    }
    .form__step {
      display: none;
      animation: fadeUp 0.4s ease;
    }
    .form__step.active { display: block; }
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .form__question {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 1.5rem;
      color: var(--ink);
      margin-bottom: 0.4rem;
    }
    .form__hint {
      color: var(--ink-soft);
      font-size: 0.9rem;
      margin-bottom: var(--space-3);
    }
    .form__group { margin-bottom: var(--space-3); }
    .form__label {
      display: block;
      font-family: var(--font-accent);
      font-size: 0.95rem;
      font-weight: 500;
      letter-spacing: 0.01em;
      margin-bottom: 0.5rem;
      color: var(--ink-soft);
    }
    .form__input,
    .form__textarea,
    .form__select {
      width: 100%;
      padding: 0.85rem 1rem;
      font-family: var(--font-accent);
      font-size: 1rem;
      border: 1px solid var(--hairline);
      background: #fff;
      color: var(--ink);
      border-radius: var(--radius);
      transition: border-color 0.2s, box-shadow 0.2s;
    }
    .form__input:focus,
    .form__textarea:focus,
    .form__select:focus {
      outline: none;
      border-color: var(--royal);
      box-shadow: 0 0 0 3px rgba(0, 73, 255, 0.15);
    }
    .form__textarea { resize: vertical; min-height: 100px; }
    .form__row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--space-2);
    }
    .form__options {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 0.7rem;
    }
    .form__option {
      position: relative;
      cursor: pointer;
    }
    .form__option input {
      position: absolute;
      opacity: 0;
      inset: 0;
      cursor: pointer;
    }
    .form__option-box {
      display: flex;
      align-items: center;
      gap: 0.7rem;
      padding: 0.9rem 1rem;
      border: 1px solid var(--hairline);
      background: #fff;
      transition: all 0.2s;
      border-radius: var(--radius);
      font-size: 0.95rem;
    }
    .form__option-box::before {
      content: '';
      width: 18px;
      height: 18px;
      border: 1.5px solid var(--hairline);
      border-radius: 50%;
      flex-shrink: 0;
      transition: all 0.2s;
    }
    .form__option input[type="checkbox"] + .form__option-box::before {
      border-radius: 3px;
    }
    .form__option input:checked + .form__option-box {
      border-color: var(--royal);
      background: rgba(0, 73, 255, 0.06);
    }
    .form__option input:checked + .form__option-box::before {
      background: var(--royal);
      border-color: var(--royal);
      box-shadow: inset 0 0 0 3px var(--parchment-lt);
    }
    .form__option input[type="checkbox"]:checked + .form__option-box::before {
      box-shadow: inset 0 0 0 2px var(--parchment-lt);
    }
    .form__actions {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: var(--space-2);
      margin-top: var(--space-4);
      padding-top: var(--space-3);
      border-top: 1px solid var(--hairline);
    }
    .form__back {
      color: var(--ink-soft);
      padding: 0.7rem 1rem;
      font-size: 0.95rem;
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
    }
    .form__back:hover { color: var(--ink); }
    .form__success {
      display: none;
      text-align: center;
      padding: var(--space-3) 0;
    }
    .form__success.show { display: block; }
    .form__success-icon {
      width: 80px;
      height: 80px;
      margin: 0 auto var(--space-3);
      color: var(--gold);
    }
    .form__success-title {
      font-family: var(--font-display);
      font-size: 1.8rem;
      margin-bottom: var(--space-2);
    }
    .form__success-text {
      color: var(--ink-soft);
      margin-bottom: var(--space-4);
    }
    .form__summary {
      background: var(--parchment-dk);
      padding: var(--space-3);
      text-align: right;
      font-size: 0.92rem;
      margin-bottom: var(--space-3);
      border-right: 3px solid var(--gold);
    }
    .form__summary dt {
      font-weight: 600;
      color: var(--ink);
      margin-bottom: 0.2rem;
    }
    .form__summary dd {
      margin: 0 0 0.7rem;
      color: var(--ink-soft);
    }

    /* ===========================================
       15. TRUST / WHY US
       =========================================== */
    .brand-feature {
      display: grid;
      grid-template-columns: 220px 1fr;
      gap: var(--space-5);
      align-items: center;
      padding: var(--space-5);
      background: #fff;
      border: 1px solid var(--hairline);
      border-radius: var(--radius-lg);
      margin-bottom: var(--space-6);
      box-shadow: 0 2px 12px rgba(10, 24, 64, 0.04);
    }
    .brand-feature__logo {
      width: 100%;
      height: auto;
      border-radius: var(--radius);
    }
    .brand-feature__lead {
      font-size: 1.15rem;
      line-height: 1.85;
      color: var(--ink);
      margin: 0;
    }
    .brand-feature__lead strong {
      color: var(--royal);
      font-weight: 600;
    }
    @media (max-width: 768px) {
      .brand-feature {
        grid-template-columns: 1fr;
        text-align: center;
        padding: var(--space-4) var(--space-3);
      }
      .brand-feature__logo {
        max-width: 180px;
        margin: 0 auto;
      }
    }

    .trust {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: var(--space-3);
      margin-bottom: var(--space-6);
    }
    .trust-item {
      text-align: center;
      padding: var(--space-3);
    }
    .trust-item__num {
      font-family: var(--font-hero);
      font-weight: 900;
      font-size: 3rem;
      color: var(--royal);
      line-height: 1;
      margin-bottom: var(--space-1);
    }
    .trust-item__label {
      font-family: var(--font-latin);
      font-size: 0.78rem;
      letter-spacing: 0.32em;
      color: var(--gold-deep);
      direction: ltr;
    }
    .trust-item__desc {
      font-size: 0.92rem;
      color: var(--ink-soft);
      margin-top: 0.5rem;
    }

    /* Testimonials */
    .testimonials {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: var(--space-3);
    }
    .testimonial {
      background: var(--parchment);
      padding: var(--space-4);
      border-top: 3px solid var(--gold);
      position: relative;
    }
    .testimonial__quote {
      font-family: var(--font-display);
      font-size: 1.05rem;
      line-height: 1.75;
      color: var(--ink);
      margin-bottom: var(--space-3);
      font-style: italic;
    }
    .testimonial__author {
      display: flex;
      align-items: center;
      gap: 0.8rem;
      padding-top: var(--space-2);
      border-top: 1px solid var(--hairline);
    }
    .testimonial__avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--azulejo);
      color: var(--parchment);
      display: grid;
      place-items: center;
      font-family: var(--font-display);
      font-size: 1.1rem;
      flex-shrink: 0;
    }
    .testimonial__name { font-weight: 600; font-size: 0.95rem; }
    .testimonial__meta { font-size: 0.82rem; color: var(--ink-soft); }

    /* ===========================================
       16. BLOG / GUIDE TEASER
       =========================================== */
    .guide-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: var(--space-3);
    }
    .guide-card {
      background: var(--parchment-lt);
      padding: var(--space-4);
      border: 1px solid var(--hairline);
      display: flex;
      flex-direction: column;
      transition: all 0.3s;
    }
    .guide-card:hover {
      border-color: var(--gold);
      transform: translateY(-3px);
      box-shadow: var(--shadow);
    }
    .guide-card__cat {
      font-family: var(--font-latin);
      font-size: 0.72rem;
      letter-spacing: 0.32em;
      color: var(--gold-deep);
      direction: ltr;
      margin-bottom: var(--space-2);
    }
    .guide-card__title {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 1.35rem;
      color: var(--ink);
      margin-bottom: var(--space-2);
      line-height: 1.35;
    }
    .guide-card__excerpt {
      font-size: 0.95rem;
      line-height: 1.7;
      color: var(--ink-soft);
      margin-bottom: var(--space-3);
      flex: 1;
    }
    .guide-card__meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: var(--space-2);
      border-top: 1px solid var(--hairline);
      font-family: var(--font-accent);
      font-size: 0.88rem;
      color: var(--ink-soft);
    }
    .guide-card__more {
      color: var(--azulejo);
      font-family: var(--font-accent);
      font-weight: 500;
      display: inline-flex;
      align-items: center;
      gap: 0.3rem;
    }
    .guide-card__more:hover { color: var(--gold-deep); }

    /* ===========================================
       17. ABOUT / CONTACT
       =========================================== */
    .contact-section {
      background: var(--azulejo);
      color: var(--parchment);
      padding: var(--space-7) 0 var(--space-6);
    }
    .contact-grid {
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: var(--space-6);
      align-items: start;
    }
    .contact-info { }
    .contact-info h2 {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: clamp(2rem, 4vw, 3rem);
      margin-bottom: var(--space-3);
      line-height: 1.2;
    }
    .contact-info p {
      opacity: 0.92;
      line-height: 1.8;
      margin-bottom: var(--space-3);
    }
    .contact-channels {
      display: flex;
      flex-direction: column;
      gap: var(--space-3);
      margin-top: var(--space-4);
    }
    .contact-channel {
      display: flex;
      align-items: center;
      gap: var(--space-3);
      padding: var(--space-2) 0;
      border-bottom: 1px solid var(--hairline-lt);
    }
    .contact-channel__icon {
      width: 44px;
      height: 44px;
      border: 1px solid var(--hairline-lt);
      display: grid;
      place-items: center;
      color: var(--gold-soft);
      flex-shrink: 0;
    }
    .contact-channel__label {
      font-family: var(--font-latin);
      font-size: 0.75rem;
      letter-spacing: 0.3em;
      color: var(--gold-soft);
      display: block;
      direction: ltr;
      margin-bottom: 0.2rem;
    }
    .contact-channel__value {
      font-size: 1.05rem;
      direction: ltr;
      text-align: right;
    }
    .contact-channel__value[dir="rtl"] { direction: rtl; }
    .contact-channel a:hover .contact-channel__value { color: var(--gold-soft); }

    /* ===========================================
       18. FOOTER
       =========================================== */
    .footer {
      background: var(--azulejo-deep);
      color: var(--parchment);
      padding: var(--space-6) 0 var(--space-3);
      border-top: 1px solid var(--hairline-lt);
    }
    .footer__grid {
      display: grid;
      grid-template-columns: 1.4fr repeat(3, 1fr);
      gap: var(--space-4);
      margin-bottom: var(--space-5);
    }
    .footer__brand { display: flex; flex-direction: column; gap: var(--space-2); }
    .footer__logo {
      width: 140px;
      height: 140px;
      background: var(--parchment);
      padding: 12px;
      border-radius: var(--radius);
      object-fit: contain;
      margin-bottom: var(--space-1);
      align-self: flex-start;
    }
    .footer__brand-text {
      font-family: var(--font-hero);
      font-weight: 800;
      font-size: 1.6rem;
      color: var(--gold-soft);
    }
    .footer__brand-tag {
      font-family: var(--font-latin);
      font-size: 0.75rem;
      letter-spacing: 0.32em;
      direction: ltr;
      opacity: 0.7;
      margin-bottom: var(--space-2);
    }
    .footer__brand-desc {
      font-size: 0.92rem;
      line-height: 1.75;
      opacity: 0.78;
    }
    .footer__col-title {
      font-family: var(--font-display);
      font-size: 1.15rem;
      color: var(--gold-soft);
      margin-bottom: var(--space-2);
    }
    .footer__links {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      font-family: var(--font-accent);
      font-size: 0.95rem;
      font-weight: 400;
      opacity: 0.88;
    }
    .footer__links a:hover { color: var(--gold-soft); opacity: 1; }
    .footer__bottom {
      padding-top: var(--space-3);
      border-top: 1px solid var(--hairline-lt);
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: var(--space-2);
      font-family: var(--font-accent);
      font-size: 0.85rem;
      opacity: 0.7;
    }
    .footer__legal { display: flex; gap: var(--space-3); }

    /* ===========================================
       19. FLOATING WHATSAPP
       =========================================== */
    .whatsapp-fab {
      position: fixed;
      bottom: 24px;
      left: 24px;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: #25d366;
      color: #fff;
      display: grid;
      place-items: center;
      z-index: 60;
      box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
      transition: transform 0.25s;
    }
    .whatsapp-fab:hover { transform: scale(1.08); }
    .whatsapp-fab svg { width: 28px; height: 28px; }

    /* ===========================================
       20. REVEAL ANIMATIONS
       =========================================== */
    .reveal {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    @media (prefers-reduced-motion: reduce) {
      .reveal, .reveal.visible { transition: none; opacity: 1; transform: none; }
      html { scroll-behavior: auto; }
      * { animation: none !important; transition: none !important; }
    }

    /* ===========================================
       21. RESPONSIVE
       =========================================== */
    @media (max-width: 1024px) {
      .lead-form-wrap { grid-template-columns: 1fr; gap: var(--space-4); }
      .lead-form__intro { position: static; }
      .contact-grid { grid-template-columns: 1fr; }
      .hero { padding: var(--space-6) 0; }
      .hero__inner { min-height: auto; }
    }

    @media (max-width: 880px) {
      :root { font-size: 16px; }
      .nav__links { display: none; }
      .nav__menu-btn { display: inline-flex; }
      .nav__drawer { display: block; }
      .nav__cta .btn--primary { display: none; }
      .section { padding: var(--space-5) 0; }
      .section-head { margin-bottom: var(--space-4); }

      /* Destinations re-grid */
      .destinations-grid { grid-template-columns: 1fr; }
      .dest-card--granada, .dest-card--sevilla, .dest-card--cordoba,
      .dest-card--malaga, .dest-card--ronda, .dest-card--madrid {
        grid-column: span 1;
        min-height: 320px;
      }

      .themes { grid-template-columns: 1fr; }
      .services { grid-template-columns: 1fr 1fr; }
      .service { border-bottom: 1px solid var(--hairline); }
      .service:nth-child(odd) { border-left: 1px solid var(--hairline); }
      .service:nth-child(even) { border-left: 0; }
      .trust { grid-template-columns: 1fr 1fr; }
      .testimonials { grid-template-columns: 1fr; }
      .guide-grid { grid-template-columns: 1fr; }
      .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--space-3); }
      .footer__brand { grid-column: span 2; }

      .form__options { grid-template-columns: 1fr; }
      .form__row { grid-template-columns: 1fr; }

      .hero__meta { gap: var(--space-3); }
      .utility-bar__contact { display: none; }

      .whatsapp-fab { width: 52px; height: 52px; bottom: 16px; left: 16px; }
      .whatsapp-fab svg { width: 24px; height: 24px; }
    }

    @media (max-width: 480px) {
      .services { grid-template-columns: 1fr; }
      .service { border-left: 0 !important; }
      .trust { grid-template-columns: 1fr; }
      .footer__grid { grid-template-columns: 1fr; }
      .footer__brand { grid-column: span 1; }
      .hero__cta { flex-direction: column; align-items: stretch; }
      .hero__cta .btn { justify-content: center; }
    }

/* ===========================================
   DESTINATION PAGES
   =========================================== */
.dest-page-hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: flex-end;
  padding: var(--space-6) 0 var(--space-5);
  color: var(--parchment);
  overflow: hidden;
  isolation: isolate;
}
.dest-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -2;
}
.dest-page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 24, 64, 0.45) 0%, rgba(10, 24, 64, 0.85) 100%);
  z-index: -1;
}
.dest-page-hero__eyebrow {
  font-family: var(--font-latin);
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: var(--space-3);
  display: block;
}
.dest-page-hero__title {
  font-family: var(--font-hero);
  font-weight: 900;
  font-size: clamp(3.5rem, 8vw, 6rem);
  line-height: 1;
  margin: 0 0 var(--space-2);
  letter-spacing: -0.02em;
}
.dest-page-hero__subtitle {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: var(--gold-soft);
  margin-bottom: var(--space-3);
}
.dest-page-hero__lead {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.75;
  max-width: 640px;
  opacity: 0.95;
}

.quick-facts {
  background: var(--parchment);
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--parchment-deep);
}
.quick-facts__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-3);
}
.quick-fact {
  text-align: center;
}
.quick-fact__label {
  font-family: var(--font-latin);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.3rem;
}
.quick-fact__value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  line-height: 1.4;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-4);
  margin-top: var(--space-5);
}
.reason-card {
  background: var(--parchment);
  padding: var(--space-4);
  border-right: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.reason-card__num {
  font-family: var(--font-hero);
  font-weight: 900;
  font-size: 1.8rem;
  color: var(--gold);
  display: block;
  margin-bottom: var(--space-2);
}
.reason-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--ink);
  margin: 0 0 var(--space-2);
}
.reason-card__desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

.experiences-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  margin-top: var(--space-5);
}
.experience {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--space-4);
  align-items: start;
}
.experience__num {
  font-family: var(--font-hero);
  font-weight: 900;
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
  border-bottom: 3px solid var(--gold);
  padding-bottom: 0.4rem;
}
.experience__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--ink);
  margin: 0 0 var(--space-2);
}
.experience__desc {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--ink-soft);
}
.experience__tip {
  margin-top: var(--space-2);
  padding: var(--space-2) var(--space-3);
  background: var(--parchment);
  border-right: 3px solid var(--royal);
  font-size: 0.92rem;
  color: var(--ink);
}
.experience__tip strong {
  color: var(--royal);
}

.itinerary {
  margin-top: var(--space-5);
  display: grid;
  gap: var(--space-3);
}
.itinerary-day {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: var(--space-3);
  padding: var(--space-4);
  background: var(--parchment);
  border-radius: var(--radius);
}
.itinerary-day__label {
  font-family: var(--font-latin);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.itinerary-day__num {
  font-family: var(--font-hero);
  font-weight: 900;
  font-size: 2.4rem;
  color: var(--azulejo);
  line-height: 1;
  margin-top: 0.3rem;
}
.itinerary-day__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  margin: 0 0 0.5rem;
  color: var(--ink);
}
.itinerary-day__items {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
}
.itinerary-day__items li {
  padding-right: 1.5rem;
  position: relative;
  line-height: 1.7;
  color: var(--ink-soft);
}
.itinerary-day__items li::before {
  content: '•';
  position: absolute;
  right: 0;
  color: var(--gold);
  font-weight: bold;
}

.tips-list {
  margin-top: var(--space-5);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-4);
}
.tip-item {
  padding: var(--space-3) 0;
  border-top: 1px solid var(--parchment-deep);
}
.tip-item__icon {
  display: inline-block;
  width: 32px;
  height: 32px;
  background: var(--royal);
  color: var(--parchment);
  border-radius: 50%;
  text-align: center;
  line-height: 32px;
  font-weight: 700;
  margin-bottom: var(--space-2);
}
.tip-item__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  margin: 0 0 0.4rem;
  color: var(--ink);
}
.tip-item__desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

.page-cta {
  background: linear-gradient(135deg, var(--azulejo) 0%, var(--azulejo-deep) 100%);
  color: var(--parchment);
  padding: var(--space-6) 0;
  text-align: center;
}
.page-cta h2 {
  font-family: var(--font-hero);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 var(--space-2);
}
.page-cta p {
  font-size: 1.1rem;
  margin-bottom: var(--space-4);
  opacity: 0.9;
}

/* ===========================================
   ARTICLE PAGES
   =========================================== */
.article-hero {
  background: var(--parchment-lt);
  padding: var(--space-7) 0 var(--space-5);
  border-bottom: 1px solid var(--parchment-deep);
}
.article-hero__inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.article-hero__eyebrow {
  font-family: var(--font-latin);
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-block;
  padding: 0.4rem 1rem;
  border: 1px solid var(--gold);
  border-radius: 50px;
  margin-bottom: var(--space-3);
}
.article-hero__title {
  font-family: var(--font-hero);
  font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 var(--space-3);
  letter-spacing: -0.01em;
}
.article-hero__lead {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.2rem, 2.2vw, 1.45rem);
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: var(--space-4);
}
.article-meta {
  display: flex;
  justify-content: center;
  gap: var(--space-3);
  flex-wrap: wrap;
  font-family: var(--font-accent);
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.article-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.article-meta .sep {
  opacity: 0.4;
}

.article-body {
  max-width: 720px;
  margin: 0 auto;
  padding: var(--space-6) var(--space-3);
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--ink);
}
.article-body p {
  margin-bottom: var(--space-3);
}
.article-body h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-top: var(--space-5);
  margin-bottom: var(--space-3);
  color: var(--ink);
  letter-spacing: -0.01em;
  position: relative;
  padding-right: var(--space-3);
}
.article-body h2::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0.6em;
  width: 4px;
  height: 1em;
  background: var(--gold);
  border-radius: 2px;
}
.article-body h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  margin-top: var(--space-4);
  margin-bottom: var(--space-2);
  color: var(--ink);
}
.article-body ul, .article-body ol {
  margin-bottom: var(--space-3);
  padding-right: var(--space-4);
}
.article-body li {
  margin-bottom: 0.5rem;
}
.article-body strong {
  color: var(--azulejo);
}

.tldr-box {
  background: linear-gradient(135deg, rgba(0, 73, 255, 0.05) 0%, rgba(10, 36, 117, 0.08) 100%);
  border-right: 4px solid var(--royal);
  padding: var(--space-3) var(--space-4);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: var(--space-4) 0;
}
.tldr-box__label {
  font-family: var(--font-latin);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--royal);
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: block;
}
.tldr-box p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.7;
}

.season-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-3);
  margin: var(--space-4) 0;
}
.season-card {
  padding: var(--space-3);
  border-radius: var(--radius);
  background: var(--parchment);
}
.season-card--best {
  background: linear-gradient(135deg, rgba(0, 73, 255, 0.08), rgba(0, 73, 255, 0.04));
  border: 1px solid rgba(0, 73, 255, 0.15);
}
.season-card__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--ink);
  margin: 0 0 0.3rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.season-card__verdict {
  font-family: var(--font-accent);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-deep);
  margin-bottom: 0.8rem;
}
.season-card--best .season-card__verdict {
  color: var(--royal);
}
.season-card__desc {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0;
}

.pull-quote {
  font-family: var(--font-hero);
  font-weight: 900;
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  line-height: 1.5;
  color: var(--azulejo);
  text-align: center;
  margin: var(--space-5) 0;
  padding: var(--space-4) var(--space-3);
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
}

.related-articles {
  background: var(--parchment-lt);
  padding: var(--space-6) 0;
  border-top: 1px solid var(--parchment-deep);
}
.related-articles__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  text-align: center;
  color: var(--ink-soft);
  margin-bottom: var(--space-4);
  font-family: var(--font-latin);
  font-size: 0.85rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

/* Mobile responsive tweaks */
@media (max-width: 720px) {
  .experience { grid-template-columns: 60px 1fr; gap: var(--space-3); }
  .experience__num { font-size: 2rem; }
  .itinerary-day { grid-template-columns: 80px 1fr; }
  .itinerary-day__num { font-size: 1.8rem; }
  .article-body { padding: var(--space-4) var(--space-3); }
}
