    /* ═══════════════════════════════════════════════════
   PALETTE — extreta de la caixa del 1713 Menorca
   Pergamí clar:   #F5C990  (fons principal)
   Pergamí mig:    #E8B070  (seccions alt)
   Or marc:        #F4B06F  (marc daurat)
   Or fosc:        #C88040  (ombres daurades)
   Tinta:          #4E2507  (text principal)
   Marró suau:     #7A4820  (text secundari)
   Blau marí RNC:  #1A3A5C  (accent principal)
   Mar Mediterrani:#3A6186  (zona marítima)
═══════════════════════════════════════════════════ */
    :root {
      --parch-light: #F5C990;
      --parch-mid: #E8B070;
      --parch-dark: #D09858;
      --parch-deep: #B07840;
      --ink: #4E2507;
      --ink-soft: #7A4820;
      --ink-faint: #A06030;
      --red: #900504;
      --red-mid: #A81808;
      --gold: #C88040;
      --gold-light: #F4B06F;
      --gold-pale: #F8D09A;
      --sea: #3A6186;
      --navy: #1A3A5C;
      --shadow: rgba(78, 37, 7, 0.15);
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      background: var(--parch-light);
      color: var(--ink);
      font-family: 'Crimson Pro', serif;
      font-size: 18px;
      line-height: 1.75;
      overflow-x: hidden;
    }

    /* Texture noise */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 0;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
    }

    /* Hex pattern */
    body::after {
      content: '';
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 0;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='64' height='74'%3E%3Cpolygon points='32,3 61,19 61,55 32,71 3,55 3,19' fill='none' stroke='%23C88040' stroke-width='0.6' opacity='0.13'/%3E%3C/svg%3E");
      background-size: 64px 74px;
    }

    nav,
    .hero,
    .page-content,
    footer,
    .modal-overlay {
      position: relative;
      z-index: 1;
    }

    /* ══════════════════════════════════════
   TOP NAV
══════════════════════════════════════ */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 500;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0 28px;
      height: 50px;
      background: rgba(245, 201, 144, 0.97);
      border-bottom: 2px solid var(--gold);
      backdrop-filter: blur(6px);
      box-shadow: 0 2px 12px rgba(78, 37, 7, 0.14);
    }

    .nav-brand {
      font-family: 'Cinzel Decorative', serif;
      font-size: 12px;
      letter-spacing: 3px;
      color: var(--navy);
      font-weight: 700;
      text-decoration: none;
      cursor: pointer;
      white-space: nowrap;
      transition: opacity .2s;
    }

    .nav-brand:hover {
      opacity: .75;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 2px;
      flex: 1;
      justify-content: center;
    }

    .nav-link {
      background: transparent;
      border: none;
      font-family: 'Cinzel', serif;
      font-size: 9px;
      letter-spacing: 2px;
      color: var(--ink-soft);
      text-transform: uppercase;
      padding: 6px 12px;
      cursor: pointer;
      transition: all .2s;
      white-space: nowrap;
    }

    .nav-link:hover {
      color: var(--navy);
    }

    .nav-link,
    .nav-link:visited,
    .nav-link:hover,
    .nav-link:focus {
      text-decoration: none;
    }

    .nav-link.active {
      color: var(--navy);
      font-weight: 700;
    }

    .nav-langs {
      display: flex;
      gap: 3px;
    }

    .page-content {
      background: var(--parch-light);
    }

    /* ══════════════════════════════════════
   ORNAMENTAL UTILS
══════════════════════════════════════ */
    .framed {
      position: relative;
      border: 2px solid var(--gold);
      box-shadow: inset 0 0 0 5px var(--parch-light), inset 0 0 0 7px var(--parch-mid), 4px 4px 20px var(--shadow);
    }

    .framed::before {
      content: '';
      position: absolute;
      inset: 10px;
      border: 1px solid rgba(200, 128, 64, 0.3);
      pointer-events: none;
      z-index: 1;
    }

    .framed::after {
      content: '\2726';
      font-size: 10px;
      color: var(--gold-light);
      position: absolute;
      top: 3px;
      left: 50%;
      transform: translateX(-50%);
      pointer-events: none;
      z-index: 2;
    }

    /* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
    .hero {
      min-height: 100vh;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      padding-top: 50px;
      background: linear-gradient(160deg, #F2C48E 0%, #F5CA96 40%, #d4c4a0 100%);
      overflow: hidden;
    }

    .hero-left {
      padding: 60px 36px 60px 60px;
    }

    .hero-eyebrow {
      display: flex;
      align-items: center;
      gap: 12px;
      font-family: 'Cinzel', serif;
      font-size: 10px;
      letter-spacing: 5px;
      color: var(--navy);
      text-transform: uppercase;
      margin-bottom: 16px;
    }

    .eyebrow-rule {
      flex: 0 0 36px;
      height: 1px;
      background: var(--navy);
    }

    .hero-year {
      font-family: 'Cinzel Decorative', serif;
      font-size: clamp(55px, 7.5vw, 100px);
      font-weight: 700;
      line-height: 0.9;
      color: var(--navy);
      text-shadow: 3px 4px 0 rgba(26, 58, 92, 0.22), 6px 7px 16px rgba(26, 58, 92, 0.10);
      animation: slideUp 1s cubic-bezier(.16, 1, .3, 1) both;
    }

    .hero-title-block {
      margin: 10px 0 22px;
      padding: 14px 20px;
      background: rgba(26, 58, 92, 0.08);
      border-left: 3px solid var(--navy);
      animation: slideUp 1s .15s cubic-bezier(.16, 1, .3, 1) both;
    }

    .hero-title {
      font-family: 'Cinzel', serif;
      font-size: clamp(18px, 2.5vw, 28px);
      font-weight: 700;
      color: var(--ink);
      letter-spacing: 2px;
      line-height: 1.2;
    }

    .hero-subtitle {
      font-family: 'IM Fell English', serif;
      font-style: italic;
      font-size: clamp(14px, 1.5vw, 17px);
      color: var(--ink-soft);
      margin-top: 4px;
    }

    .hero-ornament {
      display: flex;
      align-items: center;
      gap: 10px;
      margin: 22px 0;
      animation: slideUp 1s .3s cubic-bezier(.16, 1, .3, 1) both;
    }

    .ornament-line {
      flex: 1;
      height: 1px;
      background: linear-gradient(90deg, var(--navy), transparent);
      max-width: 140px;
    }

    .ornament-sym {
      font-size: 18px;
      color: var(--navy);
      line-height: 1;
    }

    .hero-desc {
      font-family: 'IM Fell English', serif;
      font-size: clamp(15px, 1.4vw, 17px);
      color: var(--ink-soft);
      line-height: 1.85;
      max-width: 440px;
      animation: slideUp 1s .45s cubic-bezier(.16, 1, .3, 1) both;
    }

    .hero-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 28px;
      animation: slideUp 1s .6s cubic-bezier(.16, 1, .3, 1) both;
    }

    .badge {
      border: 1px solid var(--navy);
      color: var(--navy);
      padding: 5px 16px;
      font-family: 'Cinzel', serif;
      font-size: 10px;
      letter-spacing: 2px;
      background: rgba(26, 58, 92, 0.08);
      text-transform: uppercase;
    }

    .hero-right {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 40px 50px 40px 10px;
      animation: slideRight 1.2s .2s cubic-bezier(.16, 1, .3, 1) both;
    }

    .box-wrap {
      position: relative;
      max-width: 380px;
      width: 100%;
    }

    .box-wrap img {
      width: 100%;
      display: block;
      filter: drop-shadow(6px 8px 30px rgba(78, 37, 7, 0.4)) drop-shadow(0 0 15px rgba(200, 128, 64, 0.15));
      transition: transform .6s ease, filter .6s ease;
    }

    .box-wrap img:hover {
      transform: scale(1.04) rotate(1.5deg);
      filter: drop-shadow(8px 12px 40px rgba(78, 37, 7, 0.55)) drop-shadow(0 0 25px rgba(200, 128, 64, 0.3));
    }

    .box-glow {
      position: absolute;
      bottom: -20px;
      left: 50%;
      transform: translateX(-50%);
      width: 70%;
      height: 40px;
      background: radial-gradient(ellipse, rgba(78, 37, 7, 0.3), transparent 70%);
      filter: blur(12px);
    }

    /* ══════════════════════════════════════
   SECTION WRAPPERS
══════════════════════════════════════ */
    .section-wrap {
      padding: 72px 0;
      background: var(--parch-light);
    }

    .section-wrap.alt {
      background: linear-gradient(180deg, #FAE4C4 0%, #F5D9B0 50%, #FAE4C4 100%);
    }

    .section-inner {
      max-width: 1080px;
      margin: 0 auto;
      padding: 0 36px;
    }

    .sec-label {
      font-family: 'Cinzel', serif;
      font-size: 10px;
      letter-spacing: 5px;
      color: var(--navy);
      text-transform: uppercase;
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 10px;
    }

    .sec-label-line {
      flex: 0 0 50px;
      height: 1px;
      background: var(--navy);
    }

    .sec-title {
      font-family: 'Cinzel', serif;
      font-size: clamp(24px, 3vw, 40px);
      font-weight: 700;
      color: var(--ink);
      line-height: 1.1;
      margin-bottom: 14px;
    }

    .sec-title .accent {
      color: var(--navy);
    }

    .sec-rule {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 32px;
    }

    .sec-rule-line {
      flex: 0 0 60px;
      height: 2px;
      background: linear-gradient(90deg, var(--navy), var(--gold));
    }

    .sec-rule-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--gold);
    }

    .full-divider {
      position: relative;
      z-index: 1;
      height: 28px;
      background: var(--parch-mid);
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .full-divider::before,
    .full-divider::after {
      content: '';
      position: absolute;
      left: 0;
      right: 0;
      height: 1px;
      background: var(--gold);
    }

    .full-divider::before {
      top: 6px;
    }

    .full-divider::after {
      bottom: 6px;
    }

    .div-ornament {
      font-family: 'Cinzel', serif;
      font-size: 10px;
      letter-spacing: 8px;
      color: var(--gold);
      background: var(--parch-mid);
      padding: 0 16px;
    }

    /* ══════════════════════════════════════
   MAP
══════════════════════════════════════ */
    .map-wrap {
      position: relative;
      margin: 28px auto 0;
      max-width: 680px;
    }

    .map-wrap img {
      width: 100%;
      display: block;
      border: 2px solid var(--gold);
      box-shadow: 4px 4px 20px var(--shadow);
    }

    /* ══════════════════════════════════════
   CARDS (overview)
══════════════════════════════════════ */
    .cards-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 20px;
      margin-top: 24px;
    }

    .card {
      background: rgba(245, 201, 144, 0.6);
      border: 1px solid var(--parch-dark);
      padding: 24px 20px;
      position: relative;
      box-shadow: 2px 2px 10px var(--shadow);
      transition: transform .3s, box-shadow .3s;
    }

    .card:hover {
      transform: translateY(-4px);
      box-shadow: 4px 6px 18px var(--shadow);
    }

    .card::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--navy), var(--gold), transparent);
    }

    .card-icon {
      font-size: 28px;
      margin-bottom: 10px;
      display: block;
    }

    .card-icon i,
    .comp-ico i,
    .bk-ch-t i,
    .nav-mobile-link i,
    .div-ornament i,
    .contact-icon i,
    .agr-role i {
      color: inherit;
    }

    .card-title {
      font-family: 'Cinzel', serif;
      font-size: 13px;
      font-weight: 600;
      color: var(--ink);
      margin-bottom: 8px;
      letter-spacing: .5px;
    }

    .card-text {
      font-family: 'IM Fell English', serif;
      font-size: 15px;
      color: var(--ink-soft);
      line-height: 1.7;
    }

    /* ══════════════════════════════════════
   FLOW STEPS
══════════════════════════════════════ */
    .flow-steps {
      margin-top: 28px;
      display: flex;
      flex-direction: column;
      position: relative;
    }

    .flow-steps::before {
      content: '';
      position: absolute;
      left: 27px;
      top: 20px;
      bottom: 20px;
      width: 2px;
      background: linear-gradient(180deg, var(--navy), var(--gold), var(--sea));
    }

    .flow-step {
      display: flex;
      gap: 24px;
      align-items: flex-start;
      padding: 16px 0;
    }

    .step-num {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Cinzel', serif;
      font-size: 17px;
      font-weight: 700;
      flex-shrink: 0;
      border: 2px solid var(--gold);
      background: var(--parch-light);
      color: var(--navy);
      position: relative;
      z-index: 1;
    }

    .step-title {
      font-family: 'Cinzel', serif;
      font-size: 14px;
      font-weight: 600;
      color: var(--ink);
      margin-bottom: 5px;
      padding-top: 6px;
    }

    .step-desc {
      font-family: 'IM Fell English', serif;
      font-size: 15px;
      color: var(--ink-soft);
      line-height: 1.7;
    }

    .step-desc strong {
      color: var(--ink);
    }

    .event-step {
      background: var(--parch-light);
      border: 2px solid var(--gold);
      color: var(--navy);
      font-size: 18px;
    }

    /* ══════════════════════════════════════
   TRAINS TABLE (Vaixells)
══════════════════════════════════════ */
    .trains-table {
      width: 100%;
      margin-top: 24px;
      border-collapse: collapse;
    }

    .trains-table th {
      font-family: 'Cinzel', serif;
      font-size: 9px;
      letter-spacing: 2px;
      color: var(--parch-light);
      background: var(--navy);
      padding: 12px 14px;
      text-align: left;
      text-transform: uppercase;
    }

    .trains-table td {
      padding: 10px 14px;
      font-family: 'IM Fell English', serif;
      font-size: 15px;
      color: var(--ink-soft);
      background: rgba(245, 201, 144, 0.5);
      border-bottom: 1px solid var(--parch-dark);
    }

    .trains-table tr:hover td {
      background: rgba(26, 58, 92, 0.07);
    }

    .t-num {
      font-family: 'Cinzel Decorative', serif;
      font-size: 20px;
      color: var(--sea);
    }

    .t-num.diesel {
      color: var(--gold);
    }

    .t-yellow {
      color: #9A7800;
      font-weight: 600;
    }

    .t-green {
      color: #2A5A30;
      font-weight: 600;
    }

    .t-brown {
      color: #6A3A10;
      font-weight: 600;
    }

    .t-grey {
      color: #5A5A5A;
      font-weight: 600;
    }

    /* ══════════════════════════════════════
   COMPANIES
══════════════════════════════════════ */
    .companies-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 16px;
      margin-top: 16px;
    }

    .co-card {
      background: var(--parch-light);
      border: 1px solid var(--parch-dark);
      padding: 18px 18px 16px;
      position: relative;
      box-shadow: 2px 2px 10px var(--shadow);
      transition: transform .3s, box-shadow .3s;
    }

    .co-card:hover {
      transform: translateY(-4px);
      box-shadow: 4px 6px 18px var(--shadow);
    }

    .co-stripe {
      width: 100%;
      height: 4px;
      margin-bottom: 14px;
    }

    .co-abbr {
      font-family: 'Cinzel Decorative', serif;
      font-size: 22px;
      letter-spacing: 2px;
      margin-bottom: 2px;
    }

    .co-name {
      font-family: 'IM Fell English', serif;
      font-style: italic;
      font-size: 14px;
      color: var(--ink-soft);
      margin-bottom: 8px;
    }

    .co-detail {
      font-size: 14px;
      color: var(--ink-faint);
      line-height: 1.6;
      font-family: 'Crimson Pro', serif;
    }

    .co-detail em {
      color: var(--ink-soft);
      font-style: italic;
      font-size: 13px;
    }

    /* ══════════════════════════════════════
   PRIVADES
══════════════════════════════════════ */
    .priv-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 14px;
      margin-top: 20px;
    }

    .priv-card {
      background: var(--parch-light);
      border: 1px solid var(--parch-dark);
      padding: 16px 18px;
      position: relative;
      box-shadow: 2px 2px 8px var(--shadow);
    }

    .priv-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      width: 3px;
      background: var(--gold);
    }

    .priv-abbr {
      font-family: 'Cinzel Decorative', serif;
      font-size: 13px;
      color: var(--navy);
      letter-spacing: 1px;
    }

    .priv-name {
      font-family: 'Cinzel', serif;
      font-size: 13px;
      color: var(--ink);
      font-weight: 600;
      margin-bottom: 6px;
    }

    .priv-meta {
      display: flex;
      gap: 16px;
      margin-bottom: 8px;
    }

    .priv-badge {
      font-family: 'Cinzel', serif;
      font-size: 10px;
      letter-spacing: 1px;
      padding: 3px 10px;
      border: 1px solid var(--parch-dark);
      color: var(--ink-soft);
      background: rgba(200, 128, 64, 0.1);
    }

    .priv-desc {
      font-family: 'IM Fell English', serif;
      font-size: 14px;
      color: var(--ink-soft);
      line-height: 1.65;
    }

    /* ══════════════════════════════════════
   FASES
══════════════════════════════════════ */
    .fases-list {
      display: flex;
      flex-direction: column;
      gap: 14px;
      margin-top: 20px;
    }

    .fase-row {
      display: grid;
      grid-template-columns: auto 1fr auto;
      gap: 16px;
      align-items: center;
      padding: 16px 20px;
      background: rgba(245, 201, 144, 0.6);
      border: 1px solid var(--parch-dark);
      border-left: 4px solid var(--navy);
    }

    .fase-num {
      font-family: 'Cinzel Decorative', serif;
      font-size: 28px;
      color: var(--navy);
      line-height: 1;
    }

    .fase-name {
      font-family: 'Cinzel', serif;
      font-size: 14px;
      color: var(--ink);
      font-weight: 600;
    }

    .fase-years {
      font-family: 'IM Fell English', serif;
      font-style: italic;
      font-size: 13px;
      color: var(--ink-soft);
    }

    .fase-ship {
      font-family: 'Cinzel', serif;
      font-size: 11px;
      letter-spacing: 1px;
      text-transform: uppercase;
      padding: 6px 14px;
      background: var(--navy);
      color: var(--parch-light);
    }

    /* ══════════════════════════════════════
   CONTACT
══════════════════════════════════════ */
    .contact-body {
      max-width: 720px;
      margin: 0 auto;
      padding: 72px 36px;
    }

    .contact-title {
      font-family: 'Cinzel Decorative', serif;
      font-size: clamp(28px, 4vw, 44px);
      color: var(--navy);
      margin-bottom: 20px;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 16px;
      margin: 24px 0 36px;
    }

    .contact-card {
      border: 1px solid var(--parch-dark);
      padding: 22px 18px;
      background: rgba(245, 201, 144, 0.5);
      text-align: center;
      transition: transform .3s;
    }

    .contact-card:hover {
      transform: translateY(-3px);
    }

    .contact-icon {
      font-size: 28px;
      margin-bottom: 8px;
    }

    .contact-type {
      font-family: 'Cinzel', serif;
      font-size: 10px;
      letter-spacing: 3px;
      color: var(--navy);
      text-transform: uppercase;
      margin-bottom: 6px;
    }

    .contact-val {
      font-family: 'Crimson Pro', serif;
      font-size: 15px;
      color: var(--ink-soft);
    }

    .contact-form {
      margin-top: 32px;
    }

    .form-field {
      margin-bottom: 16px;
    }

    .form-field label {
      display: block;
      font-family: 'Cinzel', serif;
      font-size: 10px;
      letter-spacing: 2px;
      color: var(--ink-soft);
      text-transform: uppercase;
      margin-bottom: 6px;
    }

    .form-field input,
    .form-field textarea {
      width: 100%;
      padding: 10px 14px;
      background: rgba(245, 201, 144, 0.7);
      border: 1px solid var(--parch-dark);
      font-family: 'IM Fell English', serif;
      font-size: 16px;
      color: var(--ink);
      outline: none;
      transition: border .2s;
    }

    .form-field input:focus,
    .form-field textarea:focus {
      border-color: var(--navy);
    }

    .form-field textarea {
      height: 120px;
      resize: vertical;
    }

    .form-submit {
      background: var(--navy);
      color: var(--parch-light);
      border: none;
      font-family: 'Cinzel', serif;
      font-size: 11px;
      letter-spacing: 3px;
      text-transform: uppercase;
      padding: 13px 32px;
      cursor: pointer;
      transition: background .2s;
    }

    .form-submit:hover {
      background: var(--sea);
    }

    /* ══════════════════════════════════════
   LEGAL MODALS
══════════════════════════════════════ */
    .modal-overlay {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 800;
      background: rgba(26, 58, 92, 0.65);
      backdrop-filter: blur(4px);
      align-items: center;
      justify-content: center;
    }

    .modal-overlay.open {
      display: flex;
    }

    .modal-box {
      background: var(--parch-light);
      max-width: 720px;
      width: 90%;
      max-height: 80vh;
      overflow-y: auto;
      border: 2px solid var(--gold);
      padding: 40px 36px;
      position: relative;
      box-shadow: 0 20px 60px rgba(26, 58, 92, 0.35);
    }

    .modal-close {
      position: absolute;
      top: 12px;
      right: 16px;
      background: none;
      border: none;
      font-size: 22px;
      color: var(--ink-soft);
      cursor: pointer;
      transition: color .2s;
    }

    .modal-close:hover {
      color: var(--navy);
    }

    .modal-title {
      font-family: 'Cinzel', serif;
      font-size: 22px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 20px;
    }

    .modal-content p {
      font-family: 'IM Fell English', serif;
      font-size: 15px;
      color: var(--ink-soft);
      line-height: 1.8;
      margin-bottom: 12px;
    }

    .modal-content h4 {
      font-family: 'Cinzel', serif;
      font-size: 13px;
      font-weight: 600;
      color: var(--ink);
      margin: 16px 0 6px;
      letter-spacing: .5px;
    }

    /* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
    footer {
      background: linear-gradient(180deg, #1A3A5C 0%, #0E2340 100%);
      border-top: 3px solid var(--gold);
      padding: 40px 28px 24px;
      position: relative;
      z-index: 1;
      overflow: hidden;
    }

    footer::before {
      content: '1713 Menorca';
      position: absolute;
      font-family: 'Cinzel Decorative', serif;
      font-size: 160px;
      color: rgba(244, 176, 111, 0.05);
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      pointer-events: none;
      line-height: 1;
    }

    .foot-main {
      max-width: 1080px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      gap: 20px;
    }

    .foot-logo {
      font-family: 'Cinzel Decorative', serif;
      font-size: 18px;
      letter-spacing: 3px;
      color: var(--gold-pale);
    }

    .foot-nav-links {
      display: flex;
      gap: 4px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .foot-nav-btn {
      background: none;
      border: none;
      text-decoration: none;
      font-family: 'Cinzel', serif;
      font-size: 9px;
      letter-spacing: 2px;
      color: rgba(244, 176, 111, 0.5);
      text-transform: uppercase;
      cursor: pointer;
      padding: 4px 8px;
      transition: color .2s;
    }

    .foot-nav-btn:hover {
      text-decoration: none;
      color: var(--gold-light);
    }

    .foot-social {
      display: flex;
      gap: 14px;
      justify-content: flex-end;
      flex-wrap: wrap;
    }

    .foot-social a {
      font-family: 'Cinzel', serif;
      font-size: 9px;
      letter-spacing: 2px;
      color: rgba(244, 176, 111, 0.5);
      text-decoration: none;
      text-transform: uppercase;
      transition: color .2s;
    }

    .foot-social a:hover {
      color: var(--gold-light);
    }

    .foot-rule {
      max-width: 1080px;
      margin: 20px auto;
      height: 1px;
      background: rgba(200, 128, 64, 0.25);
    }

    .foot-legal {
      max-width: 1080px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
    }

    .foot-copy {
      font-family: 'Crimson Pro', serif;
      font-size: 12px;
      color: rgba(244, 176, 111, 0.35);
    }

    .foot-copy a {
      color: inherit;
      text-decoration: none;
      transition: color .2s;
    }

    .foot-copy a:hover {
      color: var(--gold-light);
    }

    .foot-legal-links {
      display: flex;
      gap: 16px;
    }

    .foot-legal-btn {
      background: none;
      border: none;
      text-decoration: none;
      font-family: 'Cinzel', serif;
      font-size: 9px;
      letter-spacing: 2px;
      color: rgba(244, 176, 111, 0.4);
      text-transform: uppercase;
      cursor: pointer;
      text-decoration: none;
      transition: color .2s;
    }

    .foot-legal-btn:hover {
      text-decoration: none;
      color: var(--gold-light);
    }

    .foot-attrib {
      max-width: 1080px;
      margin: 10px auto 0;
      text-align: center;
      font-family: 'Crimson Pro', serif;
      font-size: 11px;
      font-style: italic;
      color: rgba(244, 176, 111, 0.25);
    }

    /* ══════════════════════════════════════
   AUTOR PAGE
══════════════════════════════════════ */
    .autor-wrap {
      min-height: 100vh;
      padding-top: 50px;
      background: linear-gradient(160deg, #F2C48E 0%, #F5CA96 40%, #d4c4a0 100%);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .autor-card {
      max-width: 680px;
      width: 90%;
      margin: 60px auto;
      background: rgba(245, 201, 144, 0.55);
      border: 2px solid var(--gold);
      box-shadow: 6px 8px 36px rgba(26, 58, 92, 0.18), inset 0 0 0 5px rgba(245, 201, 144, 0.4);
      padding: 52px 52px 44px;
      position: relative;
      text-align: center;
    }

    .autor-card::before {
      content: '';
      position: absolute;
      inset: 10px;
      border: 1px solid rgba(200, 128, 64, 0.3);
      pointer-events: none;
    }

    .autor-card::after {
      content: '\2726';
      font-size: 11px;
      color: var(--gold-light);
      position: absolute;
      top: 4px;
      left: 50%;
      transform: translateX(-50%);
    }

    .autor-eyebrow {
      font-family: 'Cinzel', serif;
      font-size: 9px;
      letter-spacing: 5px;
      color: var(--navy);
      text-transform: uppercase;
      margin-bottom: 10px;
    }

    .autor-name {
      font-family: 'Cinzel Decorative', serif;
      font-size: clamp(26px, 4vw, 40px);
      color: var(--ink);
      margin-bottom: 6px;
    }

    .autor-rule {
      display: flex;
      align-items: center;
      gap: 10px;
      justify-content: center;
      margin: 18px 0 24px;
    }

    .autor-rule-line {
      width: 60px;
      height: 1px;
      background: var(--gold);
    }

    .autor-rule-sym {
      font-size: 14px;
      color: var(--gold);
    }

    .autor-bio {
      text-decoration: none;
      font-family: 'IM Fell English', serif;
      font-size: 17px;
      color: var(--ink-soft);
      line-height: 1.95;
      text-align: left;
      max-width: 520px;
      margin: 0 auto;
    }

    .autor-bio p {
      margin-bottom: 16px;
    }

    .autor-bio .highlight {
      font-style: italic;
      color: var(--navy);
    }

    .autor-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      justify-content: center;
      margin-top: 32px;
    }

    .autor-tag {
      border: 1px solid var(--gold);
      color: var(--ink-soft);
      padding: 5px 16px;
      font-family: 'Cinzel', serif;
      font-size: 9px;
      letter-spacing: 2px;
      background: rgba(200, 128, 64, 0.08);
      text-transform: uppercase;
    }

    .bgg-user-link,
    .bgg-user-link:visited,
    .bgg-user-link:hover,
    .bgg-user-link:active {
      color: inherit;
      text-decoration: none;
    }

    /* ══════════════════════════════════════
   BOOKLET HISTORIC CSS
══════════════════════════════════════ */
    .bk-hero {
      position: relative;
      overflow: hidden;
      background: linear-gradient(150deg, #0E2340 0%, #1A3A5C 60%, #0E2340 100%);
      padding: 90px 36px 56px;
      min-height: 36vh;
      display: flex;
      align-items: flex-end;
    }

    .bk-hero-bg {
      position: absolute;
      right: -20px;
      bottom: -60px;
      font-family: 'Cinzel Decorative', serif;
      font-size: clamp(120px, 22vw, 300px);
      color: rgba(244, 176, 111, 0.07);
      line-height: 1;
      pointer-events: none;
      user-select: none;
    }

    .bk-hero-inner {
      position: relative;
      z-index: 1;
      max-width: 820px;
    }

    .bk-hero-eyebrow {
      font-family: 'Cinzel', serif;
      font-size: .72rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 14px;
    }

    .bk-hero-title {
      font-family: 'Cinzel Decorative', serif;
      font-size: clamp(28px, 5vw, 58px);
      color: var(--gold-pale);
      line-height: 1.1;
      margin-bottom: 12px;
    }

    .bk-hero-sub {
      font-family: 'IM Fell English', serif;
      font-style: italic;
      font-size: clamp(14px, 2vw, 18px);
      color: var(--gold-light);
    }

    .bk-body {
      max-width: 820px;
      margin: 0 auto;
      padding: 48px 36px 80px;
    }

    .bk-index {
      background: var(--parch-mid);
      border: 1px solid var(--parch-dark);
      border-left: 4px solid var(--navy);
      padding: 20px 20px 16px;
      margin-bottom: 40px;
    }

    .bk-index-title {
      font-family: 'Cinzel', serif;
      font-size: .8rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--ink);
      margin-bottom: 14px;
    }

    .bk-index-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 4px;
    }

    .bk-idx {
      background: none;
      border: none;
      font-family: 'Cinzel', serif;
      font-size: .72rem;
      letter-spacing: .4px;
      color: var(--ink);
      padding: 7px 8px;
      text-align: left;
      cursor: pointer;
      display: flex;
      align-items: flex-start;
      gap: 8px;
      border-radius: 2px;
      transition: background .15s, color .15s;
      line-height: 1.3;
    }

    .bk-idx:hover {
      background: var(--parch-dark);
      color: var(--navy);
    }

    .bk-idx span {
      background: var(--navy);
      color: #fff;
      font-size: .65rem;
      font-weight: 700;
      min-width: 18px;
      height: 18px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 1px;
    }

    .bk-prefaci {
      border-left: 3px solid var(--navy);
      padding: 20px 24px;
      background: rgba(26, 58, 92, 0.06);
      margin-bottom: 40px;
      font-family: 'IM Fell English', serif;
      font-size: 17px;
      color: var(--ink-soft);
      line-height: 1.9;
    }

    .bk-prefaci p {
      margin-bottom: 16px;
    }

    .bk-prefaci .bk-signoff {
      font-style: italic;
      color: var(--navy);
      text-align: right;
    }

    .bk-sep {
      text-align: center;
      font-family: 'Cinzel', serif;
      font-size: 14px;
      letter-spacing: 8px;
      color: var(--gold);
      margin: 36px 0;
    }

    .bk-ch {
      margin-bottom: 48px;
    }

    .bk-ch-hd {
      display: flex;
      align-items: flex-start;
      gap: 18px;
      margin-bottom: 20px;
      padding-bottom: 12px;
      border-bottom: 1px solid var(--parch-mid);
    }

    .bk-ch-n {
      font-family: 'Cinzel Decorative', serif;
      font-size: 2.5rem;
      color: var(--navy);
      line-height: 1;
      flex-shrink: 0;
    }

    .bk-ch-t {
      font-family: 'Cinzel', serif;
      font-size: clamp(1rem, 2.5vw, 1.4rem);
      color: var(--ink);
      font-weight: 700;
      padding-top: 8px;
      line-height: 1.3;
    }

    .bk-ch-b {
      font-family: 'IM Fell English', serif;
      font-size: 17px;
      color: var(--ink-soft);
      line-height: 1.9;
    }

    .bk-ch-b p {
      margin-bottom: 16px;
    }

    .bk-sub {
      font-family: 'Cinzel', serif;
      font-size: .9rem;
      color: var(--ink);
      margin: 24px 0 10px;
      letter-spacing: .5px;
      border-left: 3px solid var(--gold);
      padding-left: 10px;
    }

    .bk-nota {
      display: flex;
      gap: 14px;
      align-items: flex-start;
      background: rgba(26, 58, 92, 0.07);
      border: 1px solid rgba(26, 58, 92, 0.2);
      padding: 16px 18px;
      margin: 24px 0 0;
      font-size: .9rem;
    }

    .bk-nota svg {
      flex-shrink: 0;
      margin-top: 2px;
    }

    .bk-nota p {
      margin: 0;
      font-family: 'Crimson Pro', serif;
      font-size: .92rem;
      color: var(--ink-soft);
      line-height: 1.7;
    }

    /* ══════════════════════════════════════
   HAMBURGER & MOBILE MENU
══════════════════════════════════════ */
    .nav-hamburger {
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      background: transparent;
      border: none;
      color: var(--ink);
      font-size: 1.3rem;
      cursor: pointer;
      padding: 0;
      width: 36px;
      height: 36px;
      border-radius: 4px;
      flex-shrink: 0;
    }

    @media (min-width:821px) {
      .nav-hamburger {
        display: none;
      }
    }

    .nav-hamburger:hover {
      color: var(--navy);
    }

    .nav-mobile-menu {
      display: none;
      flex-direction: column;
      background: var(--navy);
      border-top: 2px solid var(--gold);
      position: fixed;
      top: 50px;
      left: 0;
      right: 0;
      z-index: 600;
      box-shadow: 0 8px 24px rgba(0, 0, 0, .5);
      max-height: calc(100vh - 50px);
      overflow-y: auto;
    }

    .nav-mobile-menu.open {
      display: flex;
    }

    .nav-mobile-link {
      background: none;
      border: none;
      border-bottom: 1px solid rgba(255, 255, 255, .08);
      color: var(--parch-light);
      font-family: 'Cinzel', serif;
      font-size: .85rem;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 16px 24px;
      text-align: left;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 12px;
      transition: background .15s;
    }

    .nav-mobile-link:hover {
      background: rgba(255, 255, 255, .07);
      color: var(--gold);
    }

    .nav-lang-switcher {
      display: flex;
      gap: 2px;
      align-items: center;
      margin-right: 8px;
    }

    .nav-lang {
      background: transparent;
      border: 1px solid var(--parch-dark);
      font-family: 'Cinzel', serif;
      font-size: 9px;
      letter-spacing: 1px;
      color: var(--ink-soft);
      padding: 3px 7px;
      cursor: pointer;
      text-decoration: none;
      transition: all .2s;
    }

    .nav-lang:hover {
      text-decoration: none;
      color: var(--navy);
      border-color: var(--navy);
    }

    .nav-lang.active {
      background: var(--navy);
      color: var(--parch-light);
      border-color: var(--navy);
    }

    /* ══════ FASE LORE ══════ */
    .fase-meta {
      margin: 4px 0 6px;
      font-family: 'IM Fell English', serif;
      font-size: 13px;
      color: var(--ink-faint);
      font-style: italic;
    }

    .fase-canvis {
      font-family: 'IM Fell English', serif;
      font-size: 13px;
      color: var(--ink-faint);
      margin: 2px 0 5px;
    }

    .fase-lore {
      font-family: 'IM Fell English', serif;
      font-size: 14px;
      color: var(--ink-soft);
      line-height: 1.75;
      margin-top: 7px;
      padding-top: 7px;
      border-top: 1px solid var(--parch-mid);
    }

    .reveal {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity .7s ease, transform .7s ease;
    }

    .reveal.in {
      opacity: 1;
      transform: translateY(0);
    }

    @keyframes slideUp {
      from {
        opacity: 0;
        transform: translateY(36px)
      }

      to {
        opacity: 1;
        transform: translateY(0)
      }
    }

    @keyframes slideRight {
      from {
        opacity: 0;
        transform: translateX(60px) rotate(2deg)
      }

      to {
        opacity: 1;
        transform: translateX(0) rotate(0)
      }
    }

    /* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
    @media (max-width:820px) {
      .nav-links {
        display: none;
      }

      .nav-brand {
        font-size: 10px;
      }

      .nav-hamburger {
        display: flex;
      }

      .hero {
        grid-template-columns: 1fr;
        padding-top: 50px;
      }

      .hero-left {
        padding: 24px 16px 12px;
      }

      .hero-right {
        padding: 0 16px 36px;
      }

      .box-wrap {
        max-width: 280px;
        margin: 0 auto;
      }

      .section-inner {
        padding-left: 16px;
        padding-right: 16px;
      }

      .companies-grid {
        grid-template-columns: 1fr !important;
      }

      .foot-main {
        grid-template-columns: 1fr;
        text-align: center;
      }

      .foot-social {
        justify-content: center;
      }

      .foot-legal {
        justify-content: center;
        text-align: center;
      }

      .bk-body {
        padding: 32px 16px 60px;
      }

      .contact-body {
        padding: 48px 16px;
      }

      .autor-card {
        padding: 36px 24px 32px;
      }
    }

    /* ══════ COMPONENTS MANIFEST ══════ */
    .comp-manifest {
      border: 1px solid var(--parch-dark);
      overflow: hidden;
      margin-top: 16px;
      background: linear-gradient(180deg, rgba(26, 58, 92, 0.05) 0%, rgba(245, 201, 144, 0.2) 100%);
    }

    .comp-section-hd {
      background: var(--navy);
      color: var(--gold-pale);
      font-family: 'Cinzel', serif;
      font-size: 9px;
      letter-spacing: 4px;
      text-transform: uppercase;
      padding: 8px 20px;
    }

    .comp-row {
      display: flex;
      align-items: baseline;
      gap: 12px;
      padding: 11px 20px;
      border-bottom: 1px solid rgba(200, 128, 64, 0.18);
      transition: background .15s;
    }

    .comp-row:hover {
      background: rgba(26, 58, 92, 0.06);
    }

    .comp-row-last {
      border-bottom: none;
    }

    .comp-ico {
      font-size: 18px;
      flex-shrink: 0;
      width: 26px;
      text-align: center;
    }

    .comp-nm {
      font-family: 'IM Fell English', serif;
      font-size: 15px;
      color: var(--ink);
      flex: 1;
      line-height: 1.5;
    }

    .comp-nm em {
      color: var(--ink-soft);
      font-style: italic;
    }

    .comp-qt {
      font-family: 'Cinzel Decorative', serif;
      font-size: 14px;
      color: var(--navy);
      white-space: nowrap;
      flex-shrink: 0;
    }

    /* ══════ BIBLIOGRAFIA + COLOFON ══════ */
    .bk-bib {
      list-style: none;
      padding: 0;
      margin: 10px 0 20px;
    }

    .bk-bib li {
      font-family: 'Crimson Pro', serif;
      font-size: 15px;
      color: var(--ink-soft);
      line-height: 1.7;
      padding: 7px 0;
      border-bottom: 1px solid var(--parch-mid);
    }

    .bk-bib li em {
      font-style: italic;
    }

    .bk-bib-web li {
      border: none;
      display: flex;
      gap: 8px;
      align-items: baseline;
    }

    .bk-bib-web a {
      color: var(--navy);
      text-decoration: none;
    }

    .bk-bib-web a:hover {
      text-decoration: none;
    }

    .bk-colofon {
      text-align: center;
      padding: 32px 0 16px;
    }

    .bk-col-title {
      font-family: 'Cinzel Decorative', serif;
      font-size: 1rem;
      color: var(--ink);
      margin-bottom: 6px;
    }

    .bk-col-sub {
      font-family: 'IM Fell English', serif;
      font-style: italic;
      font-size: .88rem;
      color: var(--ink-faint);
    }
