

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

    /* ── TOKENS ── */
    :root {
      --cream:    #F8EDD8;
      --sand:     #DCC19A;
      --rust:     #B5432A;
      --brown:    #4A3728;
      --strip-bg: #F2E4C8;
      --serif:    'Cormorant Garamond', Georgia, serif;
      --sans:     'Montserrat', system-ui, sans-serif;
      --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
      --ease-ink: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    html, body {
      background: #0f0906;
      font-family: var(--sans);
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
      width: 100%;
    }

    /* ══════════════════════════════════════
       KEYFRAMES — premium motion vocabulary
    ══════════════════════════════════════ */

    /* Parchment: warm amber light sweeps once left→right like dawn on paper */
    @keyframes light-sweep {
      0%   { transform: translateX(-120%) skewX(-18deg); opacity: 0; }
      15%  { opacity: 1; }
      85%  { opacity: 1; }
      100% { transform: translateX(220%) skewX(-18deg); opacity: 0; }
    }

    /* Nav: slides down from -100% */
    @keyframes nav-drop {
      from { transform: translateY(-100%); opacity: 0; }
      to   { transform: translateY(0);     opacity: 1; }
    }

    /* Eyebrow line: ruled pen stroke extends left→right */
    @keyframes line-draw {
      from { width: 0; opacity: 0; }
      to   { width: 1.6em; opacity: 1; }
    }

    /* Eyebrow text: fade after line draws */
    @keyframes text-appear {
      from { opacity: 0; }
      to   { opacity: 1; }
    }

    /*
      Headline: ink-on-parchment reveal.
      Each line is clipped right→left, exposing text like ink spreading.
      Uses clip-path inset, NOT translateY — editorial, not generic.
    */
    @keyframes ink-reveal {
      from { clip-path: inset(0 100% 0 0); opacity: 0.6; }
      to   { clip-path: inset(0 0%   0 0); opacity: 1; }
    }

    /* Divider: lines expand outward from the cross */
    @keyframes line-expand-right {
      from { flex-grow: 0; opacity: 0; }
      to   { flex-grow: 1; opacity: 1; }
    }
    @keyframes cross-appear {
      from { opacity: 0; transform: scale(0.5) rotate(-45deg); }
      to   { opacity: 0.8; transform: scale(1) rotate(0deg); }
    }

    /* Subcopy: slow opacity + micro blur lift */
    @keyframes subcopy-appear {
      from { opacity: 0; filter: blur(1.5px); }
      to   { opacity: 0.82; filter: blur(0); }
    }

    /* CTAs: slide in from left */
    @keyframes cta-slide {
      from { opacity: 0; transform: translateX(-14px); }
      to   { opacity: 1; transform: translateX(0); }
    }

    /* Route labels: trace the path — cities appear sequentially */
    @keyframes city-trace {
      from { opacity: 0; transform: translateY(6px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* Cards: settle from below like journal pages falling onto a desk */
    @keyframes card-settle {
      from { opacity: 0; transform: translateY(16px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* Cards ongoing: gentle perpetual float — like pages in a breeze */
    @keyframes card-float {
      0%, 100% { transform: translateY(0px); }
      50%       { transform: translateY(-4px); }
    }

    /* Polaroid: float with its rotation preserved */
    @keyframes polaroid-float {
      0%, 100% { transform: rotate(2deg) translateY(0px); }
      50%       { transform: rotate(2deg) translateY(-5px); }
    }

    /* Trust items: footsteps — left to right sequential appear */
    @keyframes step-appear {
      from { opacity: 0; transform: translateY(5px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* Destination dot: heartbeat pulse — the journey's end */
    @keyframes heartbeat {
      0%, 100% { transform: scale(1);   box-shadow: 0 0 0 0 rgba(181,67,42,0); }
      40%       { transform: scale(1.3); box-shadow: 0 0 0 4px rgba(181,67,42,0.25); }
      70%       { transform: scale(1.1); box-shadow: 0 0 0 8px rgba(181,67,42,0); }
    }

    /* ══════════════════════════════════════
       HERO WRAPPER
    ══════════════════════════════════════ */
    .hero {
      position: relative;
      width: 100%;
      min-height: 100vh;
      overflow: hidden;
      background: var(--cream);
      font-size: clamp(8px, 1.1111vw, 18px);
    }

    /* ══ BACKGROUND ══ */
    .hero__bg {
      position: absolute;
      inset: 0;
      z-index: 0;
    }

    /* Video background — full bleed, no controls */
    .hero__bg video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center center;
      display: block;
    }

    /* Left parchment gradient */
    .hero__bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to right,
        #F6EAD3 0%,
        #F6EAD3 18%,
        rgba(246,234,211,0.96) 24%,
        rgba(246,234,211,0.82) 30%,
        rgba(246,234,211,0.52) 38%,
        rgba(246,234,211,0.20) 46%,
        rgba(246,234,211,0.04) 54%,
        transparent 62%
      );
      pointer-events: none;
    }

    /*
      Warm light sweep overlay — a thin amber beam sweeps across the parchment
      once at load, like morning sun crossing the page.
      Lives on a pseudo element over the whole hero.
    */
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      z-index: 5;
      pointer-events: none;
      background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255,210,130,0.10) 40%,
        rgba(255,195,90,0.18) 50%,
        rgba(255,210,130,0.10) 60%,
        transparent 100%
      );
      width: 35%;
      /* initial position off-left */
      transform: translateX(-120%) skewX(-18deg);
      animation: light-sweep 2.4s var(--ease-ink) 0.2s both;
    }

    /* ══ NAV ══ */
    .nav {
      position: absolute;
      top: 0; left: 0; right: 0;
      z-index: 30;
      height: 8%;
      display: flex;
      align-items: center;
      padding: 0 2.6%;
      background: #F8EDD8;
      border-bottom: 1px solid rgba(74,55,40,0.13);
      animation: nav-drop 0.55s var(--ease-out) 0s both;
    }

    .nav__logo {
      display: flex;
      align-items: center;
      gap: 0.65em;
      text-decoration: none;
      flex: 0 0 auto;
    }

    .nav__cross {
      width: 2.2em;
      height: 2.8em;
      fill: var(--rust);
      flex-shrink: 0;
    }

    .nav__wordmark {
      display: flex;
      align-items: baseline;
      gap: 0.3em;
      line-height: 1;
    }

    .nav__alma, .nav__camino {
      font-family: var(--sans);
      font-size: 1.25em;
      font-weight: 700;
      letter-spacing: 0.13em;
      text-transform: uppercase;
      color: var(--brown);
    }

    .nav__del {
      font-family: var(--serif);
      font-size: 0.95em;
      font-weight: 400;
      font-style: italic;
      color: var(--brown);
      letter-spacing: 0.04em;
    }

    .nav__links {
      list-style: none;
      display: flex;
      align-items: center;
      gap: 2.6em;
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      white-space: nowrap;
    }

    .nav__links a {
      font-family: var(--sans);
      font-size: 0.72em;
      font-weight: 400;
      letter-spacing: 0.17em;
      text-transform: uppercase;
      color: var(--brown);
      text-decoration: none;
      opacity: 0.85;
      position: relative;
      transition: color 0.22s, opacity 0.22s;
    }

    /* Underline slide on hover */
    .nav__links a::after {
      content: '';
      position: absolute;
      bottom: -2px; left: 0;
      width: 0; height: 1px;
      background: var(--rust);
      transition: width 0.3s var(--ease-out);
    }
    .nav__links a:hover { color: var(--rust); opacity: 1; }
    .nav__links a:hover::after { width: 100%; }

    .nav__actions {
      display: flex;
      align-items: center;
      gap: 0.85em;
      margin-left: auto;
      flex: 0 0 auto;
    }

    .nav__shell { width: 1.7em; height: 1.7em; opacity: 0.5; flex-shrink: 0; transition: opacity 0.2s; }
    .nav__shell:hover { opacity: 0.8; }

    .btn-nav-ghost {
      font-family: var(--sans);
      font-size: 0.68em;
      font-weight: 400;
      letter-spacing: 0.13em;
      text-transform: uppercase;
      color: var(--brown);
      border: 1.5px solid rgba(74,55,40,0.3);
      border-radius: 2px;
      padding: 0.55em 1.2em;
      text-decoration: none;
      transition: border-color 0.22s, background 0.22s, transform 0.18s;
      white-space: nowrap;
    }
    .btn-nav-ghost:hover { border-color: var(--brown); background: rgba(74,55,40,0.06); transform: translateY(-1px); }

    .btn-nav-solid {
      font-family: var(--sans);
      font-size: 0.68em;
      font-weight: 700;
      letter-spacing: 0.13em;
      text-transform: uppercase;
      color: #fff;
      background: var(--rust);
      border: 1.5px solid var(--rust);
      border-radius: 2px;
      padding: 0.55em 1.3em;
      text-decoration: none;
      transition: background 0.22s, transform 0.18s, box-shadow 0.22s;
      white-space: nowrap;
    }
    .btn-nav-solid:hover { background: #9e3922; border-color: #9e3922; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(181,67,42,0.3); }

    /* ══ ROUTE LABELS ══ */
    .route {
      position: absolute;
      top: 0;
      left: 34%;
      right: 1.5%;
      height: 32%;
      z-index: 10;
      pointer-events: none;
    }

    .city {
      position: absolute;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.25em;
      /* initially hidden — JS or CSS will animate */
      opacity: 0;
      animation: city-trace 0.5s var(--ease-out) both;
    }

    .city__name {
      font-family: var(--sans);
      font-size: 0.58em;
      letter-spacing: 0.02em;
      color: var(--brown);
      line-height: 1.2;
      text-align: center;
      white-space: nowrap;
    }

    .city__dot {
      width: 0.5em;
      height: 0.5em;
      border-radius: 50%;
      background: #F6EAD3;
      border: 1.5px solid var(--rust);
      flex-shrink: 0;
    }

    .city__dot--end {
      width: 0.7em;
      height: 0.7em;
      background: var(--rust);
      border-color: #F6EAD3;
      border-width: 2px;
      /* heartbeat pulse — the destination lives */
      animation: heartbeat 2.4s ease-in-out 3.5s infinite !important;
    }

    /* Sequential delays — trace the Camino left→right */
    .city--stjean    { top: 44%; left: 0%;  animation-delay: 1.0s; }
    .city--logrono   { top: 55%; left: 16%; animation-delay: 1.2s; }
    .city--burgos    { top: 62%; left: 30%; animation-delay: 1.4s; }
    .city--leon      { top: 65%; left: 46%; animation-delay: 1.6s; }
    .city--ponferrada{ top: 68%; left: 60%; animation-delay: 1.8s; }
    .city--sarria    { top: 72%; left: 74%; animation-delay: 2.0s; }
    .city--santiago  { top: 76%; left: 88%; animation-delay: 2.2s; }

    /* ══ HERO CONTENT ══ */
    .hero__content {
      position: absolute;
      top: 8%;
      left: 0;
      width: 43%;
      bottom: 10.5%;
      z-index: 20;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding-left: 3.8%;
      padding-right: 1.5%;
    }

    /* Eyebrow */
    .eyebrow {
      display: flex;
      align-items: center;
      gap: 0.65em;
      margin-bottom: 0.9em;
      overflow: hidden;
    }

    .eyebrow__line {
      display: block;
      height: 1px;
      background: var(--rust);
      flex-shrink: 0;
      width: 0;
      opacity: 0;
      /* pen stroke: line draws before text appears */
      animation: line-draw 0.6s var(--ease-out) 0.5s both;
    }

    .eyebrow__text {
      font-family: var(--sans);
      font-size: 0.7em;
      font-weight: 700;
      letter-spacing: 0.24em;
      text-transform: uppercase;
      color: var(--rust);
      opacity: 0;
      animation: text-appear 0.5s ease 1.0s both;
    }

    /* Headline — each line has its own ink reveal */
    .headline {
      font-family: var(--serif);
      font-size: 3.85em;
      font-weight: 500;
      line-height: 1.09;
      color: var(--brown);
      letter-spacing: -0.01em;
      margin-bottom: 0.38em;
    }

    .headline em {
      font-style: italic;
      color: var(--rust);
      font-weight: 400;
    }

    /*
      Each .hl wraps one line.
      overflow:hidden clips the reveal.
      .hl-inner holds the text and animates the clip-path.
    */
    .hl {
      display: block;
      overflow: hidden;
    }

    .hl-inner {
      display: block;
      clip-path: inset(0 100% 0 0);
      animation: ink-reveal 0.85s var(--ease-out) both;
    }

    /* Staggered ink reveal — lines appear sequentially */
    .hl:nth-child(1) .hl-inner { animation-delay: 0.55s; }
    .hl:nth-child(2) .hl-inner { animation-delay: 0.72s; }
    .hl:nth-child(3) .hl-inner { animation-delay: 0.89s; }
    .hl:nth-child(4) .hl-inner { animation-delay: 1.06s; }

    /* Divider */
    .divider {
      display: flex;
      align-items: center;
      gap: 0.7em;
      margin-bottom: 0.8em;
    }

    .divider__line-left {
      flex: 1;
      height: 1px;
      background: rgba(74,55,40,0.15);
      transform-origin: right center;
      opacity: 0;
      animation: text-appear 0.5s ease 1.3s both;
    }

    .divider__cross {
      width: 0.75em;
      height: 0.75em;
      fill: var(--rust);
      flex-shrink: 0;
      opacity: 0;
      animation: cross-appear 0.5s var(--ease-out) 1.25s both;
    }

    .divider__line-right {
      flex: 3;
      height: 1px;
      background: rgba(74,55,40,0.15);
      opacity: 0;
      animation: text-appear 0.5s ease 1.3s both;
    }

    /* Subcopy */
    .subcopy {
      font-family: var(--sans);
      font-size: 0.9em;
      font-weight: 300;
      line-height: 1.72;
      color: var(--brown);
      opacity: 0;
      margin-bottom: 1.8em;
      animation: subcopy-appear 0.8s var(--ease-ink) 1.35s both;
    }

    /* CTAs */
    .cta-row {
      display: flex;
      gap: 0.85em;
      align-items: center;
      flex-wrap: wrap;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 0.6em;
      font-family: var(--sans);
      font-size: 0.76em;
      font-weight: 700;
      letter-spacing: 0.13em;
      text-transform: uppercase;
      color: #fff;
      background: var(--rust);
      border: 1.5px solid var(--rust);
      border-radius: 2px;
      padding: 0.9em 1.6em;
      text-decoration: none;
      white-space: nowrap;
      opacity: 0;
      animation: cta-slide 0.6s var(--ease-out) 1.55s both;
      transition: background 0.22s, transform 0.18s, box-shadow 0.22s;
      /* shimmer on hover */
      position: relative;
      overflow: hidden;
    }

    /* Shimmer sweep on hover */
    .btn-primary::before {
      content: '';
      position: absolute;
      top: 0; left: -100%;
      width: 60%; height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
      transition: left 0.5s;
    }
    .btn-primary:hover::before { left: 150%; }
    .btn-primary:hover {
      background: #9e3922;
      border-color: #9e3922;
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(181,67,42,0.35);
    }

    .btn-primary__icon {
      width: 0.85em; height: 0.85em;
      fill: #fff; flex-shrink: 0;
    }

    .btn-secondary {
      display: inline-flex;
      align-items: center;
      font-family: var(--sans);
      font-size: 0.76em;
      font-weight: 400;
      letter-spacing: 0.13em;
      text-transform: uppercase;
      color: var(--brown);
      background: transparent;
      border: 1.5px solid rgba(74,55,40,0.36);
      border-radius: 2px;
      padding: 0.9em 1.6em;
      text-decoration: none;
      white-space: nowrap;
      opacity: 0;
      animation: cta-slide 0.6s var(--ease-out) 1.7s both;
      transition: border-color 0.22s, background 0.22s, transform 0.18s;
    }
    .btn-secondary:hover {
      border-color: var(--brown);
      background: rgba(74,55,40,0.05);
      transform: translateY(-2px);
    }

    /* ══ FLOATING CARDS ══ */
    .card {
      position: absolute;
      background: rgba(253,247,235,0.97);
      border: 1px solid rgba(220,193,154,0.6);
      border-radius: 3px;
      box-shadow: 0 4px 20px rgba(46,31,20,0.16), 0 1px 3px rgba(46,31,20,0.08);
      z-index: 22;
    }

    /* Lift on card hover */
    .card:hover {
      box-shadow: 0 8px 32px rgba(46,31,20,0.22), 0 2px 6px rgba(46,31,20,0.1);
      transform: translateY(-3px) !important;
      z-index: 25;
      transition: box-shadow 0.3s, transform 0.3s;
    }

    /* Card 1 — Historia Local */
    .card--story {
      top: 27%;
      left: 60.5%;
      width: 11.5%;
      padding: 0.95em 1em 1.05em;
      /* settle in, then perpetual float */
      animation:
        card-settle 0.7s var(--ease-out) 1.6s both,
        card-float  4.5s ease-in-out 2.4s infinite;
    }

    .card__badge {
      font-family: var(--sans);
      font-size: 0.5em;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--rust);
      display: block;
      margin-bottom: 0.65em;
      line-height: 1.35;
    }

    .card__shell {
      width: 1.5em; height: 1.5em;
      display: block;
      margin-bottom: 0.5em;
      fill: var(--brown);
      opacity: 0.55;
    }

    .card__quote {
      font-family: var(--serif);
      font-size: 1.18em;
      font-weight: 500;
      line-height: 1.22;
      color: var(--brown);
    }

    /* Card 2 — Polaroid Santiago */
    .card--polaroid {
      top: 18%;
      left: 74%;
      width: 10.5%;
      padding: 0.45em 0.45em 0.9em;
      animation:
        card-settle    0.7s var(--ease-out) 1.8s both,
        polaroid-float 5.5s ease-in-out 2.7s infinite;
    }

    .card__photo-area {
      width: 100%;
      aspect-ratio: 1 / 0.85;
      border-radius: 1px;
      overflow: hidden;
      margin-bottom: 0.5em;
      background: linear-gradient(150deg, #d4aa70 0%, #8a5530 45%, #b88040 100%);
      position: relative;
    }

    .card__photo-area::before {
      content: '';
      position: absolute;
      bottom: 0; left: 50%;
      transform: translateX(-50%);
      width: 68%;
      height: 70%;
      background: rgba(25,12,5,0.48);
      clip-path: polygon(
        0% 100%, 0% 58%,
        8% 58%, 8% 32%, 14% 32%, 14% 15%,
        16% 15%, 16% 3%, 18% 0%, 20% 3%, 20% 15%,
        22% 15%, 22% 32%, 28% 32%, 28% 58%,
        36% 58%, 36% 48%, 41% 36%, 46% 48%, 46% 58%,
        54% 58%, 54% 48%, 59% 36%, 64% 48%, 64% 58%,
        72% 58%, 72% 32%, 78% 32%, 78% 15%,
        80% 15%, 80% 3%, 82% 0%, 84% 3%, 84% 15%,
        86% 15%, 86% 32%, 92% 32%, 92% 58%,
        100% 58%, 100% 100%
      );
    }

    .card__photo-area::after {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 60% 50% at 50% 60%, rgba(255,190,60,0.38), transparent 70%);
    }

    .card__label-sm {
      font-family: var(--sans);
      font-size: 0.48em;
      font-weight: 700;
      letter-spacing: 0.17em;
      text-transform: uppercase;
      color: var(--rust);
      display: block;
      margin-bottom: 0.22em;
    }

    .card__title-sm {
      font-family: var(--serif);
      font-size: 0.88em;
      font-weight: 500;
      color: var(--brown);
      line-height: 1.2;
    }

    /* Card 3 — O Cebreiro (2-col: text + thumb) */
    .card--place {
      bottom: 13%;
      left: 61.5%;
      width: 22%;
      display: flex;
      flex-direction: row;
      overflow: hidden;
      padding: 0;
      animation: card-settle 0.7s var(--ease-out) 2.0s both;
    }

    .card__place-body {
      flex: 1 1 0;
      padding: 0.75em 0.85em 0.8em;
      min-width: 0;
    }

    .card__place-name {
      font-family: var(--serif);
      font-size: 1.1em;
      font-weight: 600;
      color: var(--brown);
      line-height: 1.15;
      margin-bottom: 0.1em;
    }

    .card__place-sub {
      font-family: var(--sans);
      font-size: 0.56em;
      color: var(--brown);
      opacity: 0.6;
      display: block;
      margin-bottom: 0.65em;
    }

    .card__tags {
      display: flex;
      gap: 0.5em;
      flex-wrap: wrap;
      margin-bottom: 0.7em;
    }

    .card__tag {
      font-family: var(--sans);
      font-size: 0.5em;
      color: var(--brown);
      opacity: 0.7;
      display: flex;
      align-items: center;
      gap: 0.3em;
    }

    .card__tag::before {
      content: '';
      display: block;
      width: 0.6em; height: 0.6em;
      border-radius: 50%;
      background: currentColor;
      opacity: 0.45;
      flex-shrink: 0;
    }

    .card__place-link {
      display: inline-flex;
      align-items: center;
      font-family: var(--sans);
      font-size: 0.58em;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--rust);
      text-decoration: none;
      padding-top: 0.55em;
      border-top: 1px solid rgba(74,55,40,0.1);
      width: 100%;
      transition: opacity 0.2s, gap 0.2s;
    }
    .card__place-link:hover { opacity: 0.7; }

    .card__place-thumb {
      width: 38%;
      flex-shrink: 0;
      position: relative;
      overflow: hidden;
      background: linear-gradient(145deg, #6a8860 0%, #3d5c30 40%, #5a7048 70%, #8a7055 100%);
    }

    .card__place-thumb::before {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0; height: 60%;
      background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
    }

    .card__place-thumb::after {
      content: '';
      position: absolute;
      bottom: 18%; left: 50%;
      transform: translateX(-50%);
      width: 45%; height: 40%;
      background: rgba(20,12,5,0.55);
      clip-path: polygon(
        0% 100%, 0% 55%,
        25% 55%, 25% 30%, 40% 10%, 50% 0%, 60% 10%,
        75% 30%, 75% 55%, 100% 55%, 100% 100%
      );
    }

    /* ══ TRUST STRIP ══ */
    .trust {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 10.5%;
      z-index: 30;
      background: var(--strip-bg);
      border-top: 1px solid rgba(74,55,40,0.12);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .trust__item {
      display: flex;
      align-items: center;
      gap: 0.6em;
      padding: 0 2em;
      opacity: 0;
      animation: step-appear 0.45s var(--ease-out) both;
    }

    /* Footstep delays — left to right */
    .trust__item:nth-child(1)  { animation-delay: 1.8s; }
    .trust__item:nth-child(3)  { animation-delay: 1.95s; }
    .trust__item:nth-child(5)  { animation-delay: 2.1s; }
    .trust__item:nth-child(7)  { animation-delay: 2.25s; }
    .trust__item:nth-child(9)  { animation-delay: 2.4s; }
    .trust__item:nth-child(11) { animation-delay: 2.55s; }

    .trust__sep {
      color: var(--brown);
      opacity: 0.35;
      font-size: 0.7em;
      flex-shrink: 0;
      user-select: none;
    }

    .trust__icon {
      width: 1.75em; height: 1.75em;
      fill: var(--brown);
      opacity: 0.75;
      flex-shrink: 0;
      transition: opacity 0.2s, transform 0.2s;
    }
    .trust__item:hover .trust__icon { opacity: 1; transform: scale(1.12); }

    .trust__label {
      font-family: var(--sans);
      font-size: 0.6em;
      font-weight: 400;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--brown);
      white-space: nowrap;
      transition: color 0.2s;
    }
    .trust__item:hover .trust__label { color: var(--rust); }

    /* ══════════════════════════════════════
       prefers-reduced-motion — full respect
       All animations off, transitions minimal.
    ══════════════════════════════════════ */
    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        animation-delay: 0ms !important;
      }

      /* Ensure everything is visible even with animations stripped */
      .hero__bg img,
      .hero::before,
      .nav,
      .eyebrow__line,
      .eyebrow__text,
      .hl-inner,
      .divider__line-left,
      .divider__cross,
      .divider__line-right,
      .subcopy,
      .btn-primary,
      .btn-secondary,
      .city,
      .card,
      .trust__item {
        opacity: 1 !important;
        clip-path: none !important;
        transform: none !important;
        width: auto !important;
      }

      .city__dot--end {
        animation: none !important;
      }
    }

    /* ══════════════════════════════════════
       MAIN CONTENT LAYOUT (HOMEPAGE)
    ══════════════════════════════════════ */
    .container {
      width: 100%;
      max-width: 1440px;
      margin: 0 auto;
      padding: 0 5%;
    }

    .section {
      padding: 128px 0;
      background: var(--cream);
    }
    
    .section--dark {
      background: #110A07;
      color: var(--cream);
    }

    .grid-12 {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      gap: 24px;
    }

    /* Eyebrow para secciones */
    .section-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 1.5rem;
    }
    .section-eyebrow__line {
      width: 24px; height: 1px; background: var(--rust);
    }
    .section-eyebrow__text {
      font-family: var(--sans);
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--rust);
    }

    .h2-title {
      font-family: var(--serif);
      font-size: clamp(2.5rem, 4vw, 3.5rem);
      font-weight: 500;
      line-height: 1.1;
      color: var(--brown);
      margin-bottom: 1.5rem;
    }
    .section--dark .h2-title { color: var(--strip-bg); }

    .body-text {
      font-family: var(--sans);
      font-size: 1.125rem;
      font-weight: 400;
      line-height: 1.6;
      color: var(--brown);
      opacity: 0.85;
      margin-bottom: 1.5rem;
    }
    .section--dark .body-text { color: var(--sand); }

    /* Asimétrico: 45% / 55% */
    .split-layout {
      display: flex;
      min-height: 90vh;
      background: var(--cream);
    }
    .split-layout--reverse {
      flex-direction: row-reverse;
      background: #110A07;
    }

    .split__text {
      width: 45%;
      padding: 10% 6% 10% 8%;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .split-layout--reverse .split__text {
      padding: 10% 8% 10% 6%;
    }

    .split__image {
      width: 55%;
      position: relative;
    }
    .split__image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    /* Overlay to warm up images */
    .split__image::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(74,55,40,0.1);
      pointer-events: none;
    }

    /* Solution section */
    .solution-list {
      grid-column: 2 / 12;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
      margin-top: 64px;
    }
    .solution-item {
      padding: 40px;
      background: rgba(255,255,255,0.4);
      border: 1px solid rgba(74,55,40,0.1);
      border-radius: 2px;
    }
    .solution-item h3 {
      font-family: var(--serif);
      font-size: 1.5rem;
      font-weight: 500;
      color: var(--brown);
      margin-bottom: 1rem;
    }
    .solution-item p {
      font-family: var(--sans);
      font-size: 0.95rem;
      line-height: 1.5;
      color: var(--brown);
      opacity: 0.75;
    }

    /* Filter List */
    .filter-list {
      list-style: none;
      margin-top: 2rem;
    }
    .filter-list li {
      font-family: var(--sans);
      font-size: 1.1rem;
      line-height: 1.5;
      color: var(--sand);
      margin-bottom: 1.25rem;
      padding-left: 2rem;
      position: relative;
    }
    .filter-list li::before {
      content: '✦';
      position: absolute;
      left: 0;
      color: var(--rust);
      font-size: 1.2rem;
    }

    /* Benefits Grid */
    .benefits-grid {
      grid-column: 1 / 13;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 64px;
    }
    .benefit-card {
      padding: 48px 32px;
      border-top: 2px solid var(--rust);
      background: var(--strip-bg);
      transition: transform 0.3s ease;
    }
    .benefit-card:hover {
      transform: translateY(-4px);
    }
    .benefit-card h3 {
      font-family: var(--sans);
      font-size: 0.85rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--rust);
      margin-bottom: 1rem;
    }
    .benefit-card p {
      font-family: var(--serif);
      font-size: 1.25rem;
      line-height: 1.4;
      color: var(--brown);
    }

    /* Footer / CTA */
    .final-cta {
      text-align: center;
      padding: 128px 5%;
      background: var(--strip-bg);
      border-top: 1px solid rgba(74,55,40,0.1);
    }
    .final-cta .h2-title {
      max-width: 800px;
      margin: 0 auto 3rem auto;
    }
    .final-cta .cta-row {
      justify-content: center;
    }

    /* ══════════════════════════════════════
       RESPONSIVE (TABLET & MOBILE)
    ══════════════════════════════════════ */
    
    @media (max-width: 1024px) {
      .split-layout {
        flex-direction: column;
      }
      .split-layout.split-layout--reverse {
        flex-direction: column;
      }
      .split__text, .split__image {
        width: 100%;
        padding: 8vw;
      }
      .split__image {
        min-height: 400px;
      }
      .benefits-grid {
        grid-template-columns: repeat(2, 1fr) !important;
      }
      .h2-title {
        font-size: 3rem;
      }
      .hero__text h1 {
        font-size: 3.5rem;
      }
    }

    @media (max-width: 768px) {
      .hero {
        min-height: 100svh;
        font-size: 14px; /* fixed base for mobile */
      }
      
      .hero__bg::after {
        background: linear-gradient(
          to bottom,
          #F6EAD3 0%,
          #F6EAD3 10%,
          rgba(246,234,211,0.8) 40%,
          transparent 80%
        );
      }
      .hero__content {
        top: 15%;
        left: 5%;
        right: 5%;
        width: 90%;
        padding-left: 0;
        bottom: auto;
      }
      
      .hero__content h1 {
        font-size: 2.8rem;
        line-height: 1.1;
      }
      .hero__content .subcopy {
        font-size: 1.125rem;
        width: 100%;
      }
      
      /* Hide some decorative floating items on small screens to prevent overlap */
      .polaroid--lugo, .polaroid--santiago, .route-trace {
        display: none;
      }
      
      .card--santiago {
        right: 5%;
        bottom: 5%;
        transform: rotate(2deg) scale(0.8);
      }
      
      /* Nav adjustments */
      .nav {
        padding: 0 5%;
        justify-content: space-between;
      }
      
      .nav__links {
        display: none; /* Hide on mobile for now, can add hamburger later */
      }
      
      .nav__actions .btn-nav-ghost {
        display: none; /* Simplify nav on mobile */
      }
      
      /* Inner grids */
      .grid-12 > div {
        grid-column: 1 / 13 !important;
      }
      
      .benefits-grid {
        grid-template-columns: 1fr !important;
      }
      
      .section {
        padding: 64px 0;
      }
      
      .final-cta {
        padding: 64px 5%;
      }
      
      .cta-row {
        flex-direction: column;
        align-items: center;
      }
      
      .cta-row a {
        width: 100%;
        text-align: center;
        justify-content: center;
      }
      
      /* Form in contacto */
      .split__image form {
        padding: 32px !important;
      }
    }
