   :root {
      --red: #c4131d;
      /*--gold: #f0b400;*/
      --gold: #D4A017;
      --ink: #151515;
      --gray: #303030;
      --cream: #f5efe3;
      --white: #fff;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    h1, h2, h3 {
        font-family: 'Merriweather', Georgia, serif;
    }
    body {
      font-family: 'Merriweather', Georgia, serif;
      color: var(--gray);
      background: var(--white);
      font-size: 1.1rem;
      line-height: 1.5;
      padding-left: 196px;
      padding-right: 196px;
    }


    header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 10;
      background: rgba(0,0,0,.40);
      backdrop-filter: blur(8px);
    }

    .nav {
      font-family: 'Merriweather', Georgia, serif;
      width: 100%;
      margin: auto;
      padding: 14px 28px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 30px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      color: white;
      text-decoration: none;
      font-weight: 700;
      letter-spacing: .03em;
      line-height: 1.15;
      font-family: 'Merriweather', Georgia, serif;
      font-size: 1rem;
    }

    .brand img {
      width: 62px;
      height: auto;
      display: block;
    }

    nav ul {
      list-style: none;
      display: flex;
      gap: 28px;
    }

    nav a {
      color: white;
      text-decoration: none;
      font-size: .95rem;
    }

    nav a:hover { color: var(--red); }

    #siteNav {
      display: flex;
      align-items: center;
      gap: 28px;
    }

    .nav-extra {
      display: flex;
      align-items: center;
      gap: 18px;
    }

    .lang-switch {
      display: flex;
      align-items: center;
      gap: 4px;
      font-size: .8rem;
      font-weight: 700;
    }

    .lang-option {
      color: rgba(255,255,255,.6);
      text-decoration: none;
      padding: 2px 4px;
    }

    .lang-option:hover,
    .lang-option.is-active {
      color: var(--red);
    }

    .lang-switch .lang-option:not(:last-child)::after {
      content: '/';
      margin-left: 4px;
      color: rgba(255,255,255,.3);
    }

    .button-login {
      padding: 8px 16px;
      font-size: .85rem;
      border: 1px solid rgba(255,255,255,.7);
      color: white;
      text-decoration: none;
      border-radius: 2px;
      font-weight: 700;
    }

    .button-login:hover {
      background: var(--gold);
      border-color: var(--gold);
      color: var(--ink);
    }

    .nav-toggle {
      position: relative;
      z-index: 2;
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 6px;
      width: 34px;
      height: 34px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 0;
    }

    .nav-toggle span {
      display: block;
      width: 100%;
      height: 3px;
      background: var(--white);
      transition: transform .25s ease, opacity .25s ease;
    }

    .nav-toggle.is-open span:nth-child(1) {
      transform: translateY(9px) rotate(45deg);
    }

    .nav-toggle.is-open span:nth-child(2) {
      opacity: 0;
    }

    .nav-toggle.is-open span:nth-child(3) {
      transform: translateY(-9px) rotate(-45deg);
    }

    @media (max-width: 800px) {
      .nav-toggle {
        display: flex;
        order: -1;
      }

      #siteNav {
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: min(78vw, 320px);
        background: rgba(0,0,0,.95);
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 34px;
        padding: 40px 32px;
        transform: translateX(-100%);
        transition: transform .3s ease;
      }

      #siteNav.is-open {
        transform: translateX(0);
      }

      #siteNav ul {
        flex-direction: column;
        gap: 40px;
      }

      #siteNav ul a {
        font-size: 1.9rem;
      }

      .nav-extra {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
      }
    }

    .hero {
      position: relative;
      min-height: 85vh;
      display: flex;
      align-items: end;
      overflow: hidden;
      color: white;
      padding-top: 150px;
      width: 100vw;
      margin-left: calc(50% - 50vw);
      margin-right: calc(50% - 50vw);
    }

    .hero-video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,.82) 0%, rgba(0,0,0,.25) 48%, rgba(0,0,0,.18) 100%);
      z-index: 1;
    }

    .hero-sound-toggle {
      position: absolute;
      right: 28px;
      bottom: 28px;
      z-index: 2;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,.7);
      background: rgba(0,0,0,.5);
      color: white;
      font-size: 1.1rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .hero-sound-toggle .icon-unmuted { display: none; }
    .hero-sound-toggle.is-unmuted .icon-muted { display: none; }
    .hero-sound-toggle.is-unmuted .icon-unmuted { display: inline; }

    .hero-sound-toggle:hover {
      border-color: var(--gold);
    }

    .hero-content {
      width: 100%;
      max-width: 1240px;
      margin: auto;
      padding: 0 28px 90px;
      position: relative;
      z-index: 2;
    }

    .eyebrow {
      color: var(--gold);
      text-transform: uppercase;
      letter-spacing: .10em;
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 14px;
    }

    .hero h1 {
      font-family: 'Merriweather', Georgia, serif;
      font-size: clamp(2.6rem, 6.5vw, 5.6rem);
      line-height: .95;
      max-width: 850px;
      font-weight: 400;
    }

    .hero p {
      max-width: 660px;
      margin-top: 22px;
      font-size: 1.18rem;
      line-height: 1.7;
      color: #eee;
    }

    .hero-actions {
      margin-top: 30px;
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }

    .button {
      display: inline-block;
      padding: 13px 20px;
      text-decoration: none;
      font-weight: 700;
      border-radius: 2px;
    }

    .button-primary {
      background: var(--red);
      color: white;
    }

    .button-secondary {
      border: 1px solid rgba(255,255,255,.7);
      color: white;
    }

    .section {
      padding: 95px 28px;
    }

    .section-first {
      padding-top: 40px;
    }

    .section h2 {
      font-family: 'Merriweather', Georgia, serif;
      font-size: clamp(2.2rem, 5vw, 3.6rem);
      font-weight: 400;
      line-height: 1.05;
      text-align: center;
      text-transform: uppercase;
      color: rgb(212 160 23 / 70%);
    }

    .section-subtitle {
      font-family: 'Merriweather', Georgia, serif;
      font-size: 1.4rem;
      font-weight: 400;
      margin-top: 6px;
      margin-bottom: 18px;
    }

    .next-up {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 16px;
      margin: 26px 0 40px;
      padding: 14px 22px;
      border-top: 1px solid var(--gold);
      border-bottom: 1px solid var(--gold);
    }

    .next-up-label {
      text-transform: uppercase;
      letter-spacing: .18em;
      font-size: .75rem;
      font-weight: 700;
      color: var(--red);
      white-space: nowrap;
    }

    .next-up-value {
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--ink);
    }

    footer {
      background: var(--gold);
      border-top: 2px solid var(--red);
      width: 100vw;
      margin-left: calc(50% - 50vw);
      margin-right: calc(50% - 50vw);
    }

    .footer-inner {
      max-width: 1240px;
      margin: auto;
      padding: 56px 28px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 22px;
      text-align: center;
    }

    .footer-logo {
      width: 56px;
      height: auto;
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 10px;
      font-size: .95rem;
      font-weight: 700;
    }

    .footer-links a {
      color: var(--ink);
      text-decoration: none;
      letter-spacing: .03em;
    }

    .footer-links a:hover {
      color: var(--white);
    }

    .footer-links span {
      color: rgba(21,21,21,.4);
    }

    .footer-social {
      display: flex;
      gap: 16px;
    }

    .footer-social a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 38px;
      height: 38px;
      border-radius: 50%;
      border: 1px solid var(--ink);
      color: var(--ink);
      transition: background .2s ease, color .2s ease;
    }

    .footer-social a:hover {
      background: var(--ink);
      color: var(--gold);
    }

    .footer-copy {
      font-size: .85rem;
      color: rgba(21,21,21,.75);
    }

    .auth-overlay {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 100;
      background: rgba(21,21,21,.72);
      backdrop-filter: blur(4px);
      align-items: center;
      justify-content: center;
      padding: 24px;
    }

    .auth-overlay.is-open {
      display: flex;
      font-size: 1.5rem;
    }

    .auth-card {
      position: relative;
      width: 100%;
      max-width: 420px;
      background: var(--white);
      border-top: 4px solid var(--gold);
      padding: 44px 36px 36px;
      box-shadow: 0 30px 60px rgba(0,0,0,.35);
    }

    .auth-close {
      position: absolute;
      top: 14px;
      right: 16px;
      background: none;
      border: none;
      font-size: 1.6rem;
      line-height: 1;
      color: var(--ink);
      cursor: pointer;
    }

    .auth-tabs {
      display: flex;
      gap: 26px;
      border-bottom: 1px solid rgba(21,21,21,.15);
      margin-bottom: 26px;
    }

    .auth-tab {
      background: none;
      border: none;
      padding: 0 0 12px;
      font-size: .9rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .08em;
      color: rgba(21,21,21,.45);
      cursor: pointer;
      border-bottom: 2px solid transparent;
    }

    .auth-tab.is-active {
      color: var(--ink);
      border-bottom-color: var(--gold);
    }

    .auth-title {
      font-family: 'Merriweather', Georgia, serif;
      font-size: 1.7rem;
      font-weight: 400;
      text-align: center;
      margin-bottom: 26px;
      color: var(--ink);
      text-transform: none;
    }

    .auth-error {
      display: none;
      font-family: Arial, Helvetica, sans-serif;
      font-size: .85rem;
      font-weight: 400;
      text-transform: none;
      letter-spacing: normal;
      color: var(--red);
      background: rgba(196,19,29,.06);
      border-left: 3px solid var(--red);
      padding: 10px 14px;
    }

    .auth-error:not(:empty) {
      display: block;
    }

    .auth-form {
      display: none;
      flex-direction: column;
      gap: 18px;
    }

    .auth-form.is-active {
      display: flex;
    }

    .auth-form label {
      display: flex;
      flex-direction: column;
      gap: 6px;
      font-size: .8rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .06em;
      color: rgba(21,21,21,.6);
    }

    .auth-form input {
      font: inherit;
      font-size: 1rem;
      font-weight: 400;
      text-transform: none;
      letter-spacing: normal;
      padding: 11px 14px;
      border: 1px solid rgba(21,21,21,.25);
      color: var(--ink);
    }

    .auth-form input:focus {
      outline: none;
      border-color: var(--gold);
    }

    .auth-forgot {
      align-self: flex-end;
      font-size: .8rem;
      color: rgba(21,21,21,.6);
      text-decoration: none;
      margin-top: -8px;
    }

    .auth-forgot:hover {
      color: var(--red);
    }

    .auth-submit {
      margin-top: 6px;
      text-align: center;
      border: none;
      cursor: pointer;
    }

    .contact-form {
      max-width: 640px;
      margin: 34px auto 0;
      display: flex;
      flex-direction: column;
      gap: 22px;
    }

    .contact-form-row {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
    }

    .contact-form-row label {
      flex: 1 1 220px;
    }

    .contact-form label {
      display: flex;
      flex-direction: column;
      gap: 8px;
      font-family: Arial, Helvetica, sans-serif;
      font-size: .8rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .06em;
      color: rgba(21,21,21,.6);
      text-align: left;
    }

    .contact-form input,
    .contact-form textarea {
      font-family: Arial, Helvetica, sans-serif;
      font-size: 1rem;
      font-weight: 400;
      text-transform: none;
      letter-spacing: normal;
      padding: 13px 14px;
      border: 1.5px solid rgba(21,21,21,.2);
      border-radius: 6px;
      background: var(--white);
      color: var(--ink);
      resize: vertical;
      transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
    }

    .contact-form input:focus,
    .contact-form textarea:focus {
      outline: none;
      border-color: var(--gold);
      box-shadow: 0 0 0 4px rgba(212,160,23,.18);
    }

    .field-error {
      display: none;
      align-items: center;
      gap: 6px;
      font-family: Arial, Helvetica, sans-serif;
      font-size: .78rem;
      font-weight: 700;
      text-transform: none;
      letter-spacing: normal;
      color: var(--red);
    }

    .field-error:not(:empty) {
      display: flex;
    }

    label.is-invalid input,
    label.is-invalid textarea {
      border-color: var(--red);
      background: rgba(196,19,29,.04);
      box-shadow: 0 0 0 4px rgba(196,19,29,.12);
      animation: field-shake .3s ease;
    }

    @keyframes field-shake {
      0%, 100% { transform: translateX(0); }
      25% { transform: translateX(-4px); }
      75% { transform: translateX(4px); }
    }

    .contact-submit {
      align-self: center;
      border: none;
      cursor: pointer;
    }

    .contact-alt {
      display: block;
      text-align: center;
      margin-top: 18px;
      font-family: Arial, Helvetica, sans-serif;
      font-size: .9rem;
      color: rgba(21,21,21,.6);
      text-decoration: none;
    }

    .contact-alt:hover {
      color: var(--red);
    }