/* Viamuseo landing styles. */
:root {
      --bone: #F5F1EA;
      --paper: #EDE6D8;
      --paper-2: #E4DBC8;
      --ink: #1A1612;
      --ink-soft: #3A332C;
      --ink-mute: #6B5F50;
      --terracotta: #B85C3E;
      --terracotta-deep: #8E3F23;
      --gold: #C9A961;
      --gold-soft: #D9C285;
      --sage: #7A8B6F;
      --shadow-sm: 0 1px 2px rgba(26,22,18,.06), 0 6px 18px rgba(26,22,18,.06);
      --shadow-md: 0 4px 10px rgba(26,22,18,.10), 0 18px 40px rgba(26,22,18,.10);
      --shadow-lg: 0 8px 30px rgba(26,22,18,.16), 0 30px 80px rgba(26,22,18,.18);
      --gutter: clamp(20px, 4vw, 64px);
      --section-pad: clamp(80px, 11vw, 160px);
      --max-width: 1440px;
      --radius: 4px;
      --serif: 'Cormorant Garamond', 'Times New Roman', serif;
      --sans: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
    }

    *, *::before, *::after { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    html, body { margin: 0; padding: 0; }
    body {
      background: var(--bone);
      color: var(--ink);
      font-family: var(--sans);
      font-size: 17px;
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      text-rendering: optimizeLegibility;
      overflow-x: hidden;
    }
    img { display: block; max-width: 100%; height: auto; }
    a { color: inherit; text-decoration: none; }
    button { font-family: inherit; cursor: pointer; }
    ::selection { background: var(--terracotta); color: var(--bone); }

    .wrap { max-width: var(--max-width); margin: 0 auto; padding: 0 var(--gutter); }
    .section { padding: var(--section-pad) 0; position: relative; }
    .section--ink { background: var(--ink); color: var(--bone); }
    .section--paper { background: var(--paper); }
    .eyebrow {
      font-family: var(--sans);
      font-size: 13px; letter-spacing: .22em; text-transform: uppercase; font-weight: 500;
      color: var(--gold);
      display: inline-flex; align-items: center; gap: 14px;
    }
    .eyebrow::before {
      content: ""; width: 36px; height: 1px; background: var(--gold); display: inline-block;
    }
    .section--ink .eyebrow { color: var(--gold-soft); }
    .section--ink .eyebrow::before { background: var(--gold-soft); }
    h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; letter-spacing: -0.01em; margin: 0; color: inherit; }
    h2 { font-size: clamp(40px, 5.5vw, 88px); line-height: 1.02; }
    h3 { font-size: clamp(24px, 2.4vw, 32px); line-height: 1.15; }
    em, .it { font-family: var(--serif); font-style: italic; font-weight: 500; }

    /* HEADER */
    header.nav {
      position: fixed; inset: 0 0 auto 0; z-index: 50;
      padding: 22px 0;
      transition: background .4s ease, padding .4s ease, box-shadow .4s ease;
    }
    header.nav.scrolled {
      background: rgba(245, 241, 234, 0.94);
      backdrop-filter: saturate(160%) blur(16px);
      -webkit-backdrop-filter: saturate(160%) blur(16px);
      padding: 14px 0;
      box-shadow: 0 1px 0 rgba(26,22,18,.08);
    }
    header.nav .row {
      display: flex; align-items: center; justify-content: space-between; gap: 24px;
    }
    .brand {
      font-family: var(--serif);
      font-size: 24px; font-weight: 600; letter-spacing: -0.01em;
      color: var(--bone);
      display: inline-flex; align-items: baseline; gap: 8px;
    }
    header.nav.scrolled .brand { color: var(--ink); }
    .brand small {
      font-family: var(--sans);
      font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
      color: var(--gold); margin-left: 4px; font-weight: 500;
    }
    header.nav.scrolled .brand small { color: var(--terracotta); }
    nav.top { display: flex; gap: 32px; align-items: center; }
    nav.top a {
      font-size: 14px; letter-spacing: .04em; color: var(--bone);
      position: relative; padding: 6px 0;
      transition: color .25s ease;
    }
    nav.top a::after {
      content: ""; position: absolute; left: 50%; bottom: 0; height: 1px; width: 0;
      background: var(--gold); transition: all .35s cubic-bezier(.2,.7,.2,1);
      transform: translateX(-50%);
    }
    nav.top a:hover::after { width: 100%; }
    header.nav.scrolled nav.top a { color: var(--ink); }
    header.nav.scrolled nav.top a::after { background: var(--terracotta); }
    .nav-cta {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 10px 18px; font-size: 13px; letter-spacing: .08em;
      color: var(--bone); border: 1px solid rgba(245,241,234,.4);
      border-radius: var(--radius); transition: all .25s ease;
    }
    .nav-cta:hover { border-color: var(--bone); }
    header.nav.scrolled .nav-cta { color: var(--ink); border-color: rgba(26,22,18,.3); }
    header.nav.scrolled .nav-cta:hover { border-color: var(--ink); }

    .nav-burger {
      display: none; width: 44px; height: 44px;
      background: transparent; border: 0; padding: 0;
      align-items: center; justify-content: center;
      color: var(--bone);
    }
    .nav-burger span {
      display: block; width: 22px; height: 1.5px; background: currentColor;
      position: relative; transition: all .3s ease;
    }
    .nav-burger span::before, .nav-burger span::after {
      content: ""; position: absolute; left: 0; width: 22px; height: 1.5px; background: currentColor;
      transition: all .3s ease;
    }
    .nav-burger span::before { top: -7px; }
    .nav-burger span::after { top: 7px; }
    .nav-burger.open span { background: transparent; }
    .nav-burger.open span::before { transform: translateY(7px) rotate(45deg); }
    .nav-burger.open span::after { transform: translateY(-7px) rotate(-45deg); }

    @media (max-width: 900px) {
      nav.top, .nav-cta { display: none; }
      .nav-burger { display: inline-flex; }
      header.nav.scrolled .nav-burger { color: var(--ink); }
    }

    /* LANGUAGE SWITCHER */
    .lang-switch {
      position: relative;
      margin-left: 4px;
    }
    .lang-btn {
      display: inline-flex; align-items: center; gap: 6px;
      background: transparent; border: 1px solid rgba(245,241,234,.4);
      color: var(--bone);
      padding: 9px 12px;
      border-radius: var(--radius);
      font-family: var(--sans); font-size: 12px; letter-spacing: .14em; font-weight: 500;
      cursor: pointer; transition: all .2s ease;
    }
    .lang-btn:hover { border-color: var(--bone); }
    .lang-btn .caret { width: 9px; height: 6px; opacity: .7; }
    header.nav.scrolled .lang-btn { color: var(--ink); border-color: rgba(26,22,18,.3); }
    header.nav.scrolled .lang-btn:hover { border-color: var(--ink); }
    .lang-menu {
      position: absolute; top: calc(100% + 8px); right: 0;
      background: var(--ink); color: var(--bone);
      border-radius: var(--radius);
      box-shadow: var(--shadow-md);
      min-width: 180px;
      padding: 6px;
      display: none;
      z-index: 60;
    }
    .lang-menu.open { display: block; }
    .lang-menu button {
      display: flex; align-items: center; gap: 12px; width: 100%;
      background: transparent; border: 0;
      padding: 10px 12px;
      color: var(--bone);
      font-family: var(--sans); font-size: 14px;
      text-align: left;
      border-radius: 2px;
      cursor: pointer;
      transition: background .15s ease;
    }
    .lang-menu button:hover { background: rgba(245,241,234,.08); }
    .lang-menu button[aria-checked="true"],
    .lang-menu button.active { background: rgba(184,92,62,.2); color: var(--gold-soft); }
    .lang-menu button .flag {
      display: inline-block; width: 28px; text-align: center;
      font-size: 11px; font-weight: 600; letter-spacing: .14em; opacity: .6;
    }
    @media (max-width: 900px) {
      .lang-switch { display: none; }
    }

    /* MOBILE MENU */
    .mobile-menu {
      position: fixed; inset: 0; z-index: 45;
      background: var(--ink);
      padding: 100px var(--gutter) var(--gutter);
      transform: translateX(100%);
      transition: transform .45s cubic-bezier(.2,.7,.2,1);
      display: flex; flex-direction: column; gap: 8px;
      overflow-y: auto;
    }
    .mobile-menu.open { transform: translateX(0); }
    .mobile-menu a {
      display: block;
      font-family: var(--serif);
      font-size: 32px; line-height: 1.2;
      color: var(--bone);
      padding: 12px 0;
      border-bottom: 1px solid rgba(245,241,234,.08);
    }
    .mobile-menu a.it { font-style: italic; color: var(--gold-soft); }
    .mobile-menu .nav-cta-mobile {
      margin-top: 32px;
      display: inline-flex; align-items: center; justify-content: center;
      padding: 16px 24px;
      background: var(--terracotta); color: var(--bone);
      border-radius: var(--radius);
      font-size: 14px; letter-spacing: .14em; text-transform: uppercase;
    }
    .mobile-lang {
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 8px;
      margin-top: 32px;
      padding-top: 24px;
      border-top: 1px solid rgba(245,241,234,.08);
    }
    @media (max-width: 480px) {
      .mobile-lang { grid-template-columns: repeat(2, 1fr); }
    }
    .mobile-lang button {
      display: flex; flex-direction: column; align-items: center; gap: 4px;
      background: transparent; border: 1px solid rgba(245,241,234,.15);
      color: var(--bone);
      padding: 10px 4px;
      border-radius: 2px;
      font-family: var(--sans); font-size: 13px; font-weight: 600; letter-spacing: .14em;
      cursor: pointer;
      transition: all .2s ease;
    }
    .mobile-lang button span {
      font-size: 10px; font-weight: 400; letter-spacing: .04em; opacity: .55; text-transform: none;
    }
    .mobile-lang button:hover { border-color: var(--gold-soft); color: var(--gold-soft); }
    .mobile-lang button.active { background: var(--terracotta); border-color: var(--terracotta); color: var(--bone); }
    .mobile-lang button.active span { opacity: .85; }

    /* HERO */
    .hero {
      position: relative;
      min-height: 100vh;
      display: grid;
      place-items: end start;
      overflow: hidden;
      background: var(--ink);
      color: var(--bone);
    }
    .hero__media {
      position: absolute; inset: 0; z-index: 0;
      background-image: url('../imgs/hero.jpg');
      background-size: cover;
      background-position: center;
      transform: scale(1.08);
      animation: kenburns 28s ease-in-out infinite alternate;
      will-change: transform;
    }
    @keyframes kenburns {
      0%   { transform: scale(1.08) translate3d(0,0,0); }
      100% { transform: scale(1.18) translate3d(-2%, -1.5%, 0); }
    }
    .hero::before {
      content: ""; position: absolute; inset: 0; z-index: 1;
      background:
        linear-gradient(180deg, rgba(245,241,234,.42) 0%, rgba(245,241,234,.10) 18%, rgba(26,22,18,.10) 48%, rgba(26,22,18,.78) 100%);
    }
    .hero::after {
      content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
      background:
        radial-gradient(60% 50% at 18% 92%, rgba(184,92,62,.25), transparent 70%),
        radial-gradient(50% 40% at 88% 8%, rgba(201,169,97,.18), transparent 70%);
    }
    .hero__content { position: relative; z-index: 2; padding: 0 var(--gutter) clamp(72px, 10vh, 140px); width: 100%; }
    .hero__eyebrow {
      color: var(--gold-soft);
      font-size: 13px; letter-spacing: .28em; text-transform: uppercase; font-weight: 500;
      margin-bottom: 24px;
    }
    .hero h1 {
      font-family: var(--serif);
      font-weight: 500;
      font-size: clamp(48px, 11vw, 184px);
      line-height: 0.96;
      letter-spacing: -0.025em;
      max-width: 14ch;
      text-wrap: balance;
    }
    .hero h1 .it { font-style: italic; color: var(--gold-soft); }
    .hero h1 .line { display: block; }
    .hero__sub {
      max-width: 56ch;
      margin-top: 28px;
      font-size: clamp(17px, 1.4vw, 20px);
      line-height: 1.55;
      color: rgba(245,241,234,.86);
    }
    .hero__cta { display: flex; gap: 14px; margin-top: 44px; flex-wrap: wrap; }

    /* BUTTONS */
    .btn {
      display: inline-flex; align-items: center; gap: 12px;
      padding: 16px 26px;
      font-family: var(--sans); font-size: 14px; font-weight: 500;
      letter-spacing: .14em; text-transform: uppercase;
      border: 1px solid currentColor;
      background: transparent;
      border-radius: var(--radius);
      cursor: pointer;
      transition: all .35s cubic-bezier(.2,.7,.2,1);
    }
    .btn .arrow {
      width: 18px; height: 1px; background: currentColor; position: relative;
      transition: width .35s cubic-bezier(.2,.7,.2,1);
    }
    .btn .arrow::after {
      content: ""; position: absolute; right: -1px; top: -3px; width: 8px; height: 7px;
      border-top: 1px solid currentColor; border-right: 1px solid currentColor;
      transform: rotate(45deg);
    }
    .btn:hover .arrow { width: 30px; }
    .btn--primary {
      background: var(--terracotta);
      color: var(--bone);
      border-color: var(--terracotta);
    }
    .btn--primary:hover { background: var(--terracotta-deep); border-color: var(--terracotta-deep); }
    .btn--ghost {
      color: var(--bone);
      border-color: rgba(245,241,234,.55);
    }
    .btn--ghost:hover { border-color: var(--bone); }
    .btn--ink {
      color: var(--ink); border-color: var(--ink);
    }
    .btn--ink:hover { background: var(--ink); color: var(--bone); }
    .btn--gold {
      color: var(--ink); background: var(--gold); border-color: var(--gold);
    }
    .btn--gold:hover { background: var(--gold-soft); border-color: var(--gold-soft); }

    .hero__scroll {
      position: absolute; z-index: 2; right: var(--gutter); bottom: clamp(28px, 6vh, 60px);
      display: flex; flex-direction: column; align-items: center; gap: 10px;
      color: rgba(245,241,234,.6);
      font-size: 11px; letter-spacing: .28em; text-transform: uppercase;
    }
    .hero__scroll .stem {
      width: 1px; height: 48px; background: rgba(245,241,234,.35); position: relative; overflow: hidden;
    }
    .hero__scroll .stem::after {
      content: ""; position: absolute; left: 0; top: -16px; width: 1px; height: 16px;
      background: var(--gold-soft);
      animation: stem 2.4s cubic-bezier(.6,.05,.4,.95) infinite;
    }
    @keyframes stem { 0% { top: -16px; } 100% { top: 100%; } }

    /* MANIFESTO */
    .section--manifesto .lede {
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: clamp(40px, 6vw, 96px);
      align-items: start;
    }
    .section--manifesto .lede .eyebrow { margin-bottom: 28px; }
    .section--manifesto .lede h2 { max-width: 12ch; }
    .section--manifesto .copy {
      font-size: clamp(18px, 1.5vw, 22px);
      line-height: 1.6;
      color: var(--ink-soft);
    }
    .section--manifesto .copy p + p { margin-top: 1.4em; }
    .section--manifesto .copy .it { color: var(--terracotta-deep); }
    @media (min-width: 900px) {
      .section--manifesto .copy { column-count: 2; column-gap: 56px; }
    }
    @media (max-width: 900px) {
      .section--manifesto .lede { grid-template-columns: 1fr; }
    }

    /* HOW IT WORKS */
    .how {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: clamp(24px, 4vw, 56px);
      margin-top: 72px;
    }
    @media (max-width: 900px) { .how { grid-template-columns: 1fr; } }
    .step {
      padding: 36px 32px 32px;
      background: var(--bone);
      border: 1px solid var(--paper-2);
      border-radius: var(--radius);
      position: relative;
    }
    .step .num {
      font-family: var(--serif);
      font-size: 56px; line-height: 1;
      color: var(--terracotta);
      font-style: italic;
      margin-bottom: 24px;
      display: block;
    }
    .step h3 {
      font-size: 28px; line-height: 1.2; margin-bottom: 14px;
    }
    .step p { color: var(--ink-soft); font-size: 15px; line-height: 1.6; margin: 0; }

    /* MAP */
    .section--map { background: var(--paper); padding-top: clamp(80px,10vw,140px); padding-bottom: clamp(80px,10vw,140px); }
    .map-explorer {
      margin-top: 64px;
      background: var(--bone); overflow: hidden;
      border-radius: var(--radius);
      box-shadow: var(--shadow-sm);
    }
    .map-explorer__stage { position: relative; padding: clamp(20px, 3vw, 40px); }
    .continent-map { width: 100%; height: auto; display: block; overflow: visible; }
    .country-path {
      fill: var(--paper-2); stroke: rgba(26,22,18,.22); stroke-width: .65;
      vector-effect: non-scaling-stroke; cursor: pointer;
      transition: fill .45s ease, opacity .45s ease, stroke .45s ease;
    }
    .country-path:hover,
    .country-path:focus { fill: var(--terracotta); outline: none; }
    .country-path.is-active { fill: var(--terracotta); stroke: var(--terracotta-deep); }
    .country-path.is-muted { opacity: .12; pointer-events: none; }
    .country-path.is-country-focus { fill: var(--terracotta); stroke: var(--gold-soft); stroke-width: 1.5; }
    .map-explorer[data-map-level="world"] .country-path.is-cycle-active { fill: var(--sage); stroke: var(--ink-soft); }
    .map-explorer__caption {
      position: absolute; left: clamp(36px, 6vw, 88px); bottom: clamp(36px, 6vw, 88px);
      max-width: 350px; padding: 26px 28px;
      background: rgba(245,241,234,.88); backdrop-filter: blur(12px);
      border: 1px solid rgba(26,22,18,.1); box-shadow: var(--shadow-md);
    }
    .map-explorer__caption .eyebrow { margin: 0 0 12px; }
    .map-explorer__caption h3 { font-size: clamp(30px, 3vw, 48px); line-height: .95; margin: 0 0 14px; }
    .map-explorer__caption p:last-child { color: var(--ink-soft); font-size: 14px; line-height: 1.55; margin: 0; }
    .map-explorer__controls {
      display: flex; flex-wrap: wrap; gap: 8px; padding: 20px clamp(20px, 3vw, 40px) 26px;
      border-top: 1px solid rgba(26,22,18,.08);
    }
    .map-explorer__controls button,
    .map-explorer__back {
      min-height: 40px; padding: 9px 14px; background: transparent;
      border: 1px solid rgba(26,22,18,.2); border-radius: 999px;
      color: var(--ink-soft); font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
      transition: color .2s ease, background .2s ease, border-color .2s ease;
    }
    .map-explorer__controls button:hover,
    .map-explorer__controls button:focus,
    .map-explorer__controls button.is-active,
    .map-explorer__back:hover,
    .map-explorer__back:focus {
      background: var(--ink); border-color: var(--ink); color: var(--bone); outline: none;
    }
    .map-explorer__selection {
      display: grid; grid-template-columns: auto 1fr; column-gap: 24px; align-items: start;
      padding: 28px clamp(20px, 3vw, 40px) 32px; background: var(--ink); color: var(--bone);
    }
    .map-explorer__selection[hidden] { display: none; }
    .map-explorer__selection .map-explorer__back { color: var(--bone); border-color: rgba(245,241,234,.35); }
    .map-explorer__selection .map-explorer__back:hover,
    .map-explorer__selection .map-explorer__back:focus { background: var(--bone); border-color: var(--bone); color: var(--ink); }
    .map-explorer__selection .eyebrow { grid-column: 2; margin: 0 0 8px; color: var(--gold-soft); }
    .map-explorer__selection h4 { grid-column: 2; font-size: 30px; line-height: 1; margin: 0 0 10px; }
    .map-explorer__selection p { grid-column: 2; margin: 0 0 16px; color: rgba(245,241,234,.72); font-size: 14px; }
    .map-explorer__cta { grid-column: 2; color: var(--gold-soft); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }
    @media (max-width: 700px) {
      .map-explorer__stage { padding: 16px; }
      .map-explorer__caption { position: static; margin-top: 16px; max-width: none; }
      .map-explorer__selection { grid-template-columns: 1fr; gap: 16px; }
      .map-explorer__selection .eyebrow, .map-explorer__selection h4, .map-explorer__selection p, .map-explorer__cta { grid-column: 1; }
    }

    /* ROOMS */
    .section--rooms .head {
      display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
      align-items: end; margin-bottom: 64px;
    }
    @media (max-width: 900px) { .section--rooms .head { grid-template-columns: 1fr; gap: 24px; } }
    .section--rooms .head .copy {
      color: var(--ink-soft); font-size: 16px; max-width: 46ch;
    }
    .grid-rooms {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }
    @media (max-width: 900px) { .grid-rooms { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 580px) { .grid-rooms { grid-template-columns: 1fr; } }
    .room {
      position: relative;
      overflow: hidden;
      border-radius: var(--radius);
      aspect-ratio: 4 / 5;
      cursor: pointer;
      background: var(--ink);
      isolation: isolate;
    }
    .room img {
      width: 100%; height: 100%; object-fit: cover;
      transform: scale(1.02);
      transition: transform 1.2s cubic-bezier(.2,.7,.2,1);
      filter: saturate(.95);
    }
    .room:hover img { transform: scale(1.08); filter: saturate(1.05); }
    .room .meta {
      position: absolute; left: 0; right: 0; bottom: 0;
      padding: 24px 22px 22px;
      color: var(--bone);
      background: linear-gradient(180deg, transparent 0%, rgba(26,22,18,.85) 100%);
      transform: translateY(8px);
      opacity: .92;
      transition: all .5s cubic-bezier(.2,.7,.2,1);
    }
    .room:hover .meta { transform: translateY(0); opacity: 1; }
    .room .meta .place {
      font-family: var(--sans); font-size: 11px; letter-spacing: .28em; text-transform: uppercase;
      color: var(--gold-soft); margin-bottom: 8px;
    }
    .room .meta h3 {
      font-family: var(--serif); font-size: 26px; font-weight: 500;
      line-height: 1.15; letter-spacing: -0.01em;
    }
    .room .meta .credit { font-size: 13px; color: rgba(245,241,234,.7); margin-top: 6px; font-style: italic; }

    /* SPLIT (curator, live) */
    .split {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: clamp(40px, 6vw, 96px); align-items: center;
    }
    @media (max-width: 900px) { .split { grid-template-columns: 1fr; } .split.flip > :first-child { order: 2; } }

    .feature-img {
      position: relative; border-radius: var(--radius);
      box-shadow: var(--shadow-md);
      overflow: hidden;
    }
    .feature-img img { width: 100%; height: auto; display: block; }
    .feature-img .tag {
      position: absolute; left: 20px; top: 20px;
      background: rgba(26,22,18,.7); backdrop-filter: blur(8px);
      padding: 8px 14px; border-radius: 999px;
      font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-soft);
      z-index: 2;
    }
    .feature-img .live-dot {
      position: absolute; top: 24px; right: 24px;
      width: 10px; height: 10px; background: var(--terracotta);
      border-radius: 50%; z-index: 2;
      box-shadow: 0 0 0 0 rgba(184,92,62,.5);
      animation: livepulse 1.6s ease-out infinite;
    }
    @keyframes livepulse {
      0%   { box-shadow: 0 0 0 0 rgba(184,92,62,.6); }
      100% { box-shadow: 0 0 0 14px rgba(184,92,62,0); }
    }

    .quote {
      margin-top: 48px;
      padding: 28px 32px;
      background: var(--paper);
      border-left: 3px solid var(--terracotta);
      font-family: var(--serif);
      font-style: italic;
      font-size: 21px;
      line-height: 1.4;
      color: var(--ink);
      border-radius: 2px;
    }
    .quote cite {
      display: block; margin-top: 14px;
      font-family: var(--sans); font-style: normal; font-size: 12px;
      letter-spacing: .22em; text-transform: uppercase; color: var(--ink-mute);
    }

    /* PILLARS */
    .pillars {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
      margin-top: 80px;
    }
    @media (max-width: 1000px) { .pillars { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 560px) { .pillars { grid-template-columns: 1fr; } }
    .pillar {
      padding: 36px 28px 32px;
      border-top: 1px solid rgba(245,241,234,.18);
      color: var(--bone);
    }
    .pillar .num {
      font-family: var(--serif);
      font-size: 14px;
      color: var(--gold-soft);
      letter-spacing: .12em;
      margin-bottom: 32px;
      display: block;
    }
    .pillar h3 { font-size: 28px; line-height: 1.18; margin-bottom: 14px; }
    .pillar p { font-size: 15px; line-height: 1.6; color: rgba(245,241,234,.74); margin: 0; }

    /* CHAT (dialogue) */
    .dialogue {
      display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(48px, 6vw, 96px); align-items: center;
    }
    @media (max-width: 900px) { .dialogue { grid-template-columns: 1fr; } }
    .chat {
      background: var(--ink);
      color: var(--bone);
      border-radius: var(--radius);
      padding: 36px 36px 30px;
      box-shadow: var(--shadow-md);
      max-width: 540px;
    }
    .chat .head {
      display: flex; align-items: center; gap: 12px; padding-bottom: 22px;
      border-bottom: 1px solid rgba(245,241,234,.12);
    }
    .chat .head .dot { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; }
    .chat .head .label { font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-soft); }
    .chat .bubble {
      padding: 18px 20px;
      border-radius: 14px;
      margin-top: 22px;
      font-size: 15px;
      line-height: 1.55;
      max-width: 92%;
    }
    .chat .bubble.user {
      background: var(--terracotta);
      color: var(--bone);
      margin-left: auto;
      border-bottom-right-radius: 4px;
    }
    .chat .bubble.guide {
      background: rgba(245,241,234,.07);
      border-bottom-left-radius: 4px;
    }
    .chat .bubble.guide .it { color: var(--gold-soft); }
    .chat .prompt { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 8px; }
    .chat .prompt span {
      padding: 8px 14px;
      border: 1px solid rgba(245,241,234,.2);
      border-radius: 999px;
      font-size: 12px; letter-spacing: .04em;
      color: rgba(245,241,234,.78);
    }

    .dialogue figure { margin: 0; position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
    .dialogue figure img { width: 100%; height: auto; }
    .dialogue figure figcaption {
      position: absolute; left: 24px; bottom: 24px;
      background: rgba(26,22,18,.7); backdrop-filter: blur(10px);
      padding: 10px 16px;
      font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-soft);
      border-radius: 2px;
    }

    /* PRICING */
    .pricing-toggle {
      display: inline-flex; gap: 0; padding: 4px;
      background: var(--bone);
      border: 1px solid var(--paper-2);
      border-radius: 999px;
      margin: 32px 0 56px;
    }
    .pricing-toggle button {
      background: transparent; border: 0;
      padding: 10px 22px; font-size: 13px; letter-spacing: .08em;
      color: var(--ink-soft); border-radius: 999px;
      transition: all .25s ease;
      display: inline-flex; align-items: center; gap: 8px;
    }
    .pricing-toggle button.active {
      background: var(--ink); color: var(--bone);
    }
    .pricing-toggle .save {
      font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
      background: var(--terracotta); color: var(--bone);
      padding: 3px 8px; border-radius: 999px;
    }

    .pricing {
      display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
      align-items: stretch;
    }
    @media (max-width: 800px) { .pricing { grid-template-columns: 1fr; } }
    .tier {
      padding: 40px 36px;
      background: var(--bone);
      border: 1px solid var(--paper-2);
      border-radius: var(--radius);
      display: flex; flex-direction: column;
      position: relative;
    }
    .tier--featured {
      background: var(--ink);
      color: var(--bone);
      border-color: var(--ink);
      box-shadow: var(--shadow-lg);
    }
    .tier .badge {
      position: absolute; top: -12px; right: 28px;
      background: var(--gold); color: var(--ink);
      padding: 6px 12px; border-radius: 999px;
      font-size: 10px; letter-spacing: .22em; text-transform: uppercase; font-weight: 600;
    }
    .tier .name {
      font-family: var(--serif);
      font-size: 36px; font-weight: 500; line-height: 1; margin-bottom: 8px;
    }
    .tier .sub {
      font-size: 14px; line-height: 1.5; opacity: .7; margin-bottom: 32px;
    }
    .tier .price {
      display: flex; align-items: baseline; gap: 6px;
      margin-bottom: 4px;
    }
    .tier .price .num {
      font-family: var(--serif);
      font-size: 64px; font-weight: 500; line-height: 1; letter-spacing: -0.02em;
    }
    .tier .price .per {
      font-size: 14px; opacity: .7;
    }
    .tier .price-note {
      font-size: 12px; opacity: .55; margin-bottom: 32px;
    }
    .tier .features {
      list-style: none; margin: 0 0 32px; padding: 0;
      display: grid; gap: 12px;
    }
    .tier .features li {
      display: flex; align-items: flex-start; gap: 10px;
      font-size: 15px; line-height: 1.5;
    }
    .tier .features li::before {
      content: "✓"; color: var(--terracotta); font-weight: 600; flex-shrink: 0;
      margin-top: 1px;
    }
    .tier--featured .features li::before { color: var(--gold-soft); }
    .tier .features li.no::before { content: "—"; color: var(--ink-mute); opacity: .5; }
    .tier .features li.no span { opacity: .5; text-decoration: line-through; }
    .tier .cta { margin-top: auto; }

    .price.yearly { display: none; }
    body[data-billing="yearly"] .price.monthly { display: none; }
    body[data-billing="yearly"] .price.yearly { display: flex; }

    /* FOR MUSEUMS */
    .museums {
      display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(40px, 6vw, 96px);
      align-items: center;
    }
    @media (max-width: 900px) { .museums { grid-template-columns: 1fr; } }
    .museums ul {
      list-style: none; padding: 0; margin: 24px 0 0;
      display: grid; gap: 14px;
    }
    .museums ul li {
      display: flex; align-items: flex-start; gap: 12px;
      font-size: 16px; line-height: 1.5;
      padding: 14px 0;
      border-top: 1px solid var(--paper-2);
    }
    .museums ul li::before {
      content: counter(mlist, decimal-leading-zero);
      counter-increment: mlist;
      font-family: var(--serif); font-style: italic;
      color: var(--terracotta);
      font-size: 20px; line-height: 1; flex-shrink: 0;
      min-width: 32px;
    }
    .museums ul { counter-reset: mlist; }

    /* DOWNLOAD */
    .download {
      display: grid; grid-template-columns: 1fr 1fr; gap: clamp(48px, 6vw, 96px);
      align-items: center;
    }
    @media (max-width: 900px) { .download { grid-template-columns: 1fr; } }
    .store-badges { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
    .store-badge {
      display: inline-flex; align-items: center; gap: 14px;
      padding: 16px 24px;
      background: var(--ink); color: var(--bone);
      border-radius: var(--radius);
      min-width: 220px;
      transition: all .3s ease;
    }
    .store-badge:hover { background: var(--terracotta); transform: translateY(-2px); }
    .store-badge svg { width: 28px; height: 28px; flex-shrink: 0; }
    .store-badge .label { display: flex; flex-direction: column; line-height: 1.2; }
    .store-badge .label .sm { font-size: 11px; opacity: .7; letter-spacing: .04em; }
    .store-badge .label .lg { font-size: 17px; font-weight: 500; }
    .download .feature-img { max-width: 360px; margin: 0 auto; transform: rotate(-2deg); }
    @media (max-width: 900px) { .download .feature-img { transform: none; } }

    /* CLOSING */
    .closing {
      text-align: center;
      padding: clamp(120px, 16vw, 200px) 0;
    }
    .closing .mark {
      width: 64px; height: 64px; border-radius: 50%;
      background: var(--gold); color: var(--ink);
      display: grid; place-items: center;
      margin: 0 auto 48px;
      font-family: var(--serif); font-size: 28px; font-style: italic; font-weight: 600;
    }
    .closing h2 {
      max-width: 18ch; margin: 0 auto;
      font-size: clamp(40px, 6.5vw, 96px);
      line-height: 1.04;
      text-wrap: balance;
    }
    .closing h2 .it { color: var(--terracotta); }
    .closing p.lede {
      max-width: 56ch; margin: 36px auto 0;
      font-size: 18px; line-height: 1.6; color: var(--ink-soft);
    }
    .closing .viamigo {
      margin-top: 56px;
      display: inline-flex; align-items: center; gap: 12px;
      font-size: 13px; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-mute);
    }
    .closing .viamigo .line { width: 24px; height: 1px; background: var(--ink-mute); }

    /* STICKY MOBILE DOWNLOAD */
    .sticky-dl {
      display: none;
      position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 40;
      background: var(--ink); color: var(--bone);
      padding: 14px 18px; border-radius: var(--radius);
      box-shadow: var(--shadow-md);
      align-items: center; justify-content: space-between; gap: 12px;
    }
    .sticky-dl.show { display: flex; }
    @media (min-width: 900px) { .sticky-dl { display: none !important; } }
    .sticky-dl .copy { font-size: 14px; line-height: 1.2; }
    .sticky-dl .copy small { display: block; font-size: 11px; opacity: .65; letter-spacing: .12em; text-transform: uppercase; }
    .sticky-dl a {
      padding: 10px 16px;
      background: var(--terracotta); color: var(--bone);
      border-radius: var(--radius);
      font-size: 12px; letter-spacing: .14em; text-transform: uppercase; font-weight: 500;
      flex-shrink: 0;
    }

    /* FOOTER */
    footer {
      background: var(--ink); color: rgba(245,241,234,.6);
      padding: 56px 0 36px;
      font-size: 14px;
    }
    .foot {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
      gap: 48px;
      padding-bottom: 48px;
      border-bottom: 1px solid rgba(245,241,234,.10);
    }
    @media (max-width: 900px) { .foot { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 520px) { .foot { grid-template-columns: 1fr; } }
    .foot h4 {
      font-family: var(--sans); font-size: 11px; letter-spacing: .28em; text-transform: uppercase;
      color: var(--gold-soft); margin: 0 0 18px; font-weight: 500;
    }
    .foot ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
    .foot ul a { transition: color .2s ease; }
    .foot ul a:hover { color: var(--bone); }
    .foot .brand {
      font-family: var(--serif); font-size: 28px; font-weight: 500; color: var(--bone); display: block; margin-bottom: 14px;
    }
    .copyright {
      padding-top: 28px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
      font-size: 12px; color: rgba(245,241,234,.45);
    }

    /* REVEAL */
    .reveal {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity .9s ease, transform .9s cubic-bezier(.2,.7,.2,1);
    }
    .reveal.in { opacity: 1; transform: translateY(0); }
    @media (prefers-reduced-motion: reduce) {
      .reveal { opacity: 1; transform: none; transition: none; }
      .hero__media { animation: none; transform: scale(1.05); }
      .hero__scroll .stem::after { animation: none; }
      .country-path { transition: none; }
      .feature-img .live-dot { animation: none; }
    }
