:root {
      --carbon: #0b0b0b;
      --carbon-soft: #111111;
      --concrete: #1a1a1a;
      --bronze: #b37a3a;
      --bronze-deep: #8c6735;
      --bronze-light: #c79a57;
      --aluminium: #5f6368;
      --quartz: #f5f5f3;
      --fire: #b11226;
      --line: rgba(179, 122, 58, 0.28);
      --glass: rgba(5, 5, 5, 0.78);
      --shadow: 0 26px 90px rgba(0, 0, 0, 0.58);
      --serif: "Cormorant Garamond", Georgia, serif;
      --sans: "Montserrat", Helvetica, Arial, sans-serif;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      background: var(--carbon);
    }

    body {
      margin: 0;
      min-width: 320px;
      color: var(--quartz);
      font-family: var(--sans);
      background:
        radial-gradient(circle at 18% 10%, rgba(179, 122, 58, 0.2), transparent 30rem),
        radial-gradient(circle at 84% 6%, rgba(199, 154, 87, 0.11), transparent 28rem),
        repeating-linear-gradient(135deg, rgba(245, 245, 243, 0.018) 0 1px, transparent 1px 9px),
        linear-gradient(180deg, #030303 0%, var(--carbon) 46%, #070707 100%);
      letter-spacing: 0;
    }

    body.nav-open {
      overflow: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      display: block;
      max-width: 100%;
    }

    button {
      font: inherit;
    }

    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 50;
      border-bottom: 1px solid rgba(179, 122, 58, 0.28);
      background: rgba(3, 3, 3, 0.82);
      backdrop-filter: blur(20px) saturate(120%);
      transition: background 220ms ease, border-color 220ms ease;
    }

    .site-header.is-scrolled {
      background: rgba(3, 3, 3, 0.94);
      border-bottom-color: rgba(199, 154, 87, 0.42);
    }

    .nav-wrap {
      height: 82px;
      max-width: 1440px;
      margin: 0 auto;
      padding: 0 34px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 22px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 154px;
      height: 100%;
    }

    .brand-mark {
      width: 150px;
      height: 150px;
      border-radius: 0;
      object-fit: contain;
      transform: translateY(34px);
      box-shadow: none;
      filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.62));
    }

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

    .nav-item {
      position: relative;
    }

    .nav-home {
      display: inline-flex;
      align-items: center;
      min-height: 82px;
      padding: 0 12px;
      color: rgba(245, 245, 243, 0.76);
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.02em;
      transition: color 180ms ease;
    }

    .nav-home:hover,
    .nav-home:focus-visible {
      color: var(--bronze-light);
      outline: none;
    }

    .nav-link {
      border: 0;
      border-radius: 0;
      background: transparent;
      color: rgba(245, 245, 243, 0.76);
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 7px;
      min-height: 82px;
      padding: 0 12px;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.02em;
      transition: color 180ms ease;
    }

    .nav-link::after {
      content: "";
      width: 5px;
      height: 5px;
      border-right: 1px solid currentColor;
      border-bottom: 1px solid currentColor;
      transform: rotate(45deg) translateY(-2px);
      opacity: 0.7;
    }

    .nav-link:hover,
    .nav-link:focus-visible,
    .nav-item.is-active .nav-link {
      color: var(--bronze-light);
      outline: none;
    }

    .nav-link.ticket {
      color: var(--bronze-light);
    }

    .dropdown {
      position: absolute;
      top: 76px;
      left: 50%;
      width: min(760px, calc(100vw - 48px));
      padding: 22px;
      transform: translate(-50%, 12px);
      border: 1px solid rgba(215, 178, 109, 0.22);
      background: rgba(8, 8, 8, 0.96);
      box-shadow: var(--shadow);
      opacity: 0;
      pointer-events: none;
      transition: opacity 180ms ease, transform 180ms ease;
    }

    .nav-item:hover .dropdown,
    .nav-item:focus-within .dropdown,
    .nav-item.is-active .dropdown {
      opacity: 1;
      pointer-events: auto;
      transform: translate(-50%, 0);
    }

    .dropdown-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
      gap: 18px;
    }

    .dropdown h3 {
      margin: 0 0 12px;
      color: var(--bronze-light);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
    }

    .dropdown a {
      display: block;
      padding: 10px 0;
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      color: rgba(245, 245, 243, 0.82);
      font-size: 13px;
      line-height: 1.35;
      transition: color 160ms ease, transform 160ms ease;
    }

    .dropdown a span {
      display: block;
      margin-top: 3px;
      color: rgba(183, 188, 195, 0.58);
      font-size: 11px;
      font-weight: 400;
    }

    .dropdown a:hover,
    .dropdown a:focus-visible {
      color: var(--bronze-light);
      outline: none;
      transform: translateX(3px);
    }

    .nav-ctas {
      display: flex;
      gap: 10px;
      align-items: center;
      justify-content: flex-end;
      min-width: 300px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      min-height: 44px;
      padding: 0 18px;
      border: 1px solid transparent;
      border-radius: 2px;
      cursor: pointer;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.02em;
      transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
      white-space: nowrap;
    }

    .btn:hover,
    .btn:focus-visible {
      transform: translateY(-2px);
      outline: none;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--bronze-light), var(--bronze) 52%, var(--bronze-deep));
      color: #050505;
      border-color: rgba(199, 154, 87, 0.74);
      box-shadow: 0 12px 30px rgba(179, 122, 58, 0.18);
    }

    .btn-secondary {
      color: var(--quartz);
      border-color: rgba(215, 178, 109, 0.5);
      background: rgba(156, 123, 82, 0.08);
    }

    .btn-secondary:hover,
    .btn-secondary:focus-visible {
      background: rgba(156, 123, 82, 0.2);
    }

    .btn-ghost {
      color: var(--quartz);
      border-color: rgba(245, 245, 243, 0.34);
      background: rgba(245, 245, 243, 0.04);
    }

    .btn-dark {
      color: var(--quartz);
      background: rgba(11, 11, 11, 0.72);
      border-color: rgba(215, 178, 109, 0.36);
    }

    .icon {
      width: 18px;
      height: 18px;
      flex: 0 0 auto;
      stroke: currentColor;
      stroke-width: 1.7;
      stroke-linecap: round;
      stroke-linejoin: round;
      fill: none;
    }

    .menu-toggle {
      display: none;
      width: 46px;
      height: 46px;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(215, 178, 109, 0.34);
      background: rgba(8, 8, 8, 0.5);
      color: var(--quartz);
      cursor: pointer;
    }

    .menu-toggle span,
    .menu-toggle span::before,
    .menu-toggle span::after {
      display: block;
      width: 20px;
      height: 2px;
      background: currentColor;
      content: "";
      transition: transform 180ms ease, opacity 180ms ease;
    }

    .menu-toggle span::before {
      transform: translateY(-7px);
    }

    .menu-toggle span::after {
      transform: translateY(5px);
    }

    .menu-toggle[aria-expanded="true"] span {
      transform: rotate(45deg);
    }

    .menu-toggle[aria-expanded="true"] span::before {
      transform: translateY(0) rotate(90deg);
    }

    .menu-toggle[aria-expanded="true"] span::after {
      opacity: 0;
    }

    .mobile-panel {
      display: none;
    }


    .hero {
      height: clamp(380px, 32vh, 300px);
      display: grid;
      align-items: end;
      padding: 104px 34px 26px;
      background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.5) 46%, rgba(0, 0, 0, 0.16)),
        linear-gradient(0deg, #0b0b0b 0%, rgba(11, 11, 11, 0.12) 36%),
        url("../cars-real/cam-roadster-1962-front.webp") center / cover,
        #050505;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
      background-size: 92px 92px;
      mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.78), transparent 74%);
      pointer-events: none;
    }

    .section-inner {
      width: min(1180px, 100%);
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 22px;
      color: var(--bronze-light);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.22em;
      text-transform: uppercase;
    }

    .eyebrow::before {
      content: "";
      width: 42px;
      height: 1px;
      background: var(--bronze-light);
    }

    h1,
    h2,
    h3,
    p {
      margin-top: 0;
    }

    h1 {
      max-width: 860px;
      margin-bottom: 18px;
      font-family: "Cormorant Garamond", Georgia, serif;
      font-size: clamp(2.35rem, 4.2vw, 4.15rem);
      font-weight: 700;
      line-height: 0.95;
      letter-spacing: 0;
    }

    .hero-copy {
      max-width: 780px;
      color: rgba(245, 245, 243, 0.82);
      font-size: clamp(0.96rem, 1.2vw, 1.08rem);
      line-height: 1.55;
      margin-bottom: 0;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 0;
    }

    .hero-quickbar {
      padding: 20px 34px;
      border-top: 1px solid rgba(215, 178, 109, 0.18);
      border-bottom: 1px solid rgba(215, 178, 109, 0.18);
      background: rgba(5, 5, 5, 0.88);
    }

    .hero-quickbar .section-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .hero-stats {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      width: min(580px, 100%);
      border: 1px solid rgba(215, 178, 109, 0.2);
      background: rgba(8, 8, 8, 0.62);
      backdrop-filter: blur(16px);
    }

    .stat {
      padding: 14px 16px;
      border-right: 1px solid rgba(215, 178, 109, 0.16);
    }

    .stat:last-child {
      border-right: 0;
    }

    .stat strong {
      display: block;
      color: var(--bronze-light);
      font-family: var(--serif);
      font-size: 30px;
      line-height: 0.9;
    }

    .stat span {
      display: block;
      margin-top: 8px;
      color: rgba(245, 245, 243, 0.76);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .section {
      padding: 96px 34px;
    }

    .section-head {
      display: grid;
      grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.55fr);
      gap: 52px;
      align-items: end;
      margin-bottom: 42px;
    }

    .section-title {
      margin-bottom: 0;
      font-family: var(--serif);
      font-size: clamp(2.2rem, 3.8vw, 3.8rem);
      font-weight: 700;
      line-height: 0.96;
      letter-spacing: 0;
    }

    .section-copy {
      color: rgba(183, 188, 195, 0.84);
      font-size: 15px;
      line-height: 1.8;
    }

    .filter-bar {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 26px;
    }

    .filter-btn {
      min-height: 40px;
      padding: 0 16px;
      border: 1px solid rgba(215, 178, 109, 0.28);
      background: rgba(245, 245, 243, 0.03);
      color: rgba(245, 245, 243, 0.78);
      cursor: pointer;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.09em;
      text-transform: uppercase;
      transition: background 180ms ease, color 180ms ease, transform 180ms ease;
    }

    .filter-btn:hover,
    .filter-btn:focus-visible,
    .filter-btn[aria-pressed="true"] {
      background: var(--bronze-light);
      color: #090909;
      transform: translateY(-2px);
      outline: none;
    }

    .collection-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    .vehicle-card {
      min-height: 510px;
      display: flex;
      flex-direction: column;
      border: 1px solid rgba(215, 178, 109, 0.18);
      background: rgba(17, 17, 17, 0.82);
      overflow: hidden;
      box-shadow: 0 18px 54px rgba(0, 0, 0, 0.22);
      transition: transform 200ms ease, border-color 200ms ease;
    }

    .vehicle-card:hover {
      transform: translateY(-4px);
      border-color: rgba(215, 178, 109, 0.44);
    }

    .vehicle-card.is-hidden {
      display: none;
    }

    .period-filter {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 26px;
    }

    .era-rail {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      border: 1px solid rgba(215, 178, 109, 0.18);
      background: rgba(8, 8, 8, 0.58);
    }

    .era-rail a {
      min-height: 180px;
      padding: 24px;
      border-right: 1px solid rgba(215, 178, 109, 0.14);
      transition: background 180ms ease, transform 180ms ease;
    }

    .era-rail a:last-child {
      border-right: 0;
    }

    .era-rail a:hover,
    .era-rail a:focus-visible {
      background: rgba(156, 123, 82, 0.16);
      transform: translateY(-3px);
      outline: none;
    }

    .era-rail strong {
      display: block;
      color: var(--bronze-light);
      font-family: var(--serif);
      font-size: 34px;
      line-height: 0.95;
    }

    .era-rail span {
      display: block;
      margin-top: 18px;
      color: rgba(245, 245, 243, 0.78);
      font-size: 14px;
      line-height: 1.55;
    }

    .moments-section {
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent), var(--carbon-soft);
      border-top: 1px solid rgba(215, 178, 109, 0.16);
      border-bottom: 1px solid rgba(215, 178, 109, 0.16);
    }

    .moment-list {
      position: relative;
      display: grid;
      gap: 18px;
    }

    .moment-list::before {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      left: 102px;
      width: 1px;
      background: rgba(215, 178, 109, 0.22);
    }

    .moment-card {
      position: relative;
      display: grid;
      grid-template-columns: 150px minmax(0, 1fr);
      min-height: 190px;
      border: 1px solid rgba(215, 178, 109, 0.18);
      background: rgba(8, 8, 8, 0.64);
      overflow: hidden;
      transition: transform 180ms ease, border-color 180ms ease;
    }

    .moment-card:hover {
      transform: translateY(-3px);
      border-color: rgba(215, 178, 109, 0.42);
    }

    .moment-card.is-hidden {
      display: none;
    }

    .moment-card.has-image {
      grid-template-columns: 150px minmax(240px, 0.42fr) minmax(0, 1fr);
    }

    .moment-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      min-height: 220px;
    }

    .moment-year {
      display: grid;
      place-items: center;
      color: var(--bronze-light);
      font-family: var(--serif);
      font-size: 48px;
      line-height: 1;
      border-right: 1px solid rgba(215, 178, 109, 0.16);
    }

    .moment-body {
      padding: 28px;
      align-self: center;
    }

    .moment-period {
      color: var(--bronze-light);
      font-size: 11px;
      font-weight: 900;
      letter-spacing: 0.16em;
      text-transform: uppercase;
    }

    .moment-body h3 {
      margin: 10px 0;
      font-family: var(--serif);
      font-size: clamp(2rem, 4vw, 3.3rem);
      line-height: 0.98;
      letter-spacing: 0;
    }

    .moment-body p {
      max-width: 760px;
      color: rgba(245, 245, 243, 0.74);
      font-size: 15px;
      line-height: 1.75;
    }

    .focus-layout {
      display: grid;
      grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
      gap: 42px;
      align-items: center;
    }

    .focus-copy p {
      color: rgba(245, 245, 243, 0.76);
      font-size: 16px;
      line-height: 1.85;
      margin: 24px 0 30px;
    }

    .focus-panel {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      border: 1px solid rgba(215, 178, 109, 0.2);
      background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.68)),
        url("../cars-real/cam-mercedes-pagoda.webp") center / cover;
    }

    .focus-panel div {
      min-height: 180px;
      padding: 24px;
      border-right: 1px solid rgba(215, 178, 109, 0.14);
      border-bottom: 1px solid rgba(215, 178, 109, 0.14);
      background: rgba(0, 0, 0, 0.38);
    }

    .focus-panel div:nth-child(2n) {
      border-right: 0;
    }

    .focus-panel div:nth-last-child(-n + 2) {
      border-bottom: 0;
    }

    .focus-panel strong {
      display: block;
      color: var(--bronze-light);
      font-family: var(--serif);
      font-size: 34px;
      line-height: 1;
    }

    .focus-panel span {
      display: block;
      margin-top: 12px;
      color: rgba(245, 245, 243, 0.78);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .linked-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    .linked-card {
      position: relative;
      min-height: 330px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 26px;
      overflow: hidden;
      border: 1px solid rgba(215, 178, 109, 0.18);
      background: var(--card-image) center / cover;
    }

    .linked-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.86));
      transition: background 180ms ease;
    }

    .linked-card:hover::before,
    .linked-card:focus-visible::before {
      background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.76));
    }

    .linked-card span,
    .linked-card strong {
      position: relative;
      z-index: 1;
    }

    .linked-card span {
      color: var(--bronze-light);
      font-size: 12px;
      font-weight: 900;
      letter-spacing: 0.16em;
      text-transform: uppercase;
    }

    .linked-card strong {
      margin-top: 10px;
      font-family: var(--serif);
      font-size: 34px;
      line-height: 1;
    }

    .vehicle-media {
      height: 275px;
      overflow: hidden;
      background: var(--concrete);
    }

    .vehicle-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transform: scale(1.01);
      transition: transform 420ms ease;
    }

    .vehicle-card:hover img {
      transform: scale(1.055);
    }

    .vehicle-body {
      flex: 1;
      display: flex;
      flex-direction: column;
      padding: 24px;
    }

    .vehicle-year {
      color: var(--bronze-light);
      font-size: 12px;
      font-weight: 900;
      letter-spacing: 0.16em;
      text-transform: uppercase;
    }

    .vehicle-body h3 {
      margin: 12px 0 10px;
      font-family: var(--serif);
      font-size: 33px;
      line-height: 1;
      letter-spacing: 0;
    }

    .vehicle-body p {
      color: rgba(245, 245, 243, 0.72);
      font-size: 14px;
      line-height: 1.65;
    }

    .vehicle-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: auto;
      padding-top: 22px;
    }

    .vehicle-meta span {
      padding: 6px 9px;
      border: 1px solid rgba(215, 178, 109, 0.18);
      color: rgba(183, 188, 195, 0.82);
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .feature-band {
      border-top: 1px solid rgba(215, 178, 109, 0.16);
      border-bottom: 1px solid rgba(215, 178, 109, 0.16);
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent),
        var(--carbon-soft);
    }

    .feature-layout {
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.7fr);
      gap: 34px;
      align-items: stretch;
    }

    .feature-image {
      min-height: 560px;
      border: 1px solid rgba(215, 178, 109, 0.18);
      background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.44)),
        url("../cars-real/cam-roadster-1962-front.webp") center / cover,
        var(--concrete);
    }

    .feature-panel {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 46px;
      border: 1px solid rgba(215, 178, 109, 0.22);
      background: rgba(8, 8, 8, 0.7);
    }

    .feature-panel h2 {
      margin: 20px 0 18px;
      font-family: var(--serif);
      font-size: clamp(2.2rem, 3.8vw, 3.8rem);
      line-height: 0.96;
      letter-spacing: 0;
    }

    .feature-panel p {
      color: rgba(245, 245, 243, 0.76);
      font-size: 16px;
      line-height: 1.8;
    }

    .specs {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      margin: 28px 0 32px;
      border: 1px solid rgba(215, 178, 109, 0.16);
    }

    .spec {
      padding: 16px 14px;
      border-right: 1px solid rgba(215, 178, 109, 0.14);
    }

    .spec:last-child {
      border-right: 0;
    }

    .spec strong {
      display: block;
      color: var(--quartz);
      font-size: 17px;
      line-height: 1.2;
    }

    .spec span {
      display: block;
      margin-top: 6px;
      color: rgba(183, 188, 195, 0.72);
      font-size: 11px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .timeline {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      border: 1px solid rgba(215, 178, 109, 0.18);
      background: rgba(8, 8, 8, 0.56);
    }

    .time-item {
      min-height: 190px;
      padding: 24px;
      border-right: 1px solid rgba(215, 178, 109, 0.14);
    }

    .time-item:last-child {
      border-right: 0;
    }

    .time-item strong {
      display: block;
      color: var(--bronze-light);
      font-family: var(--serif);
      font-size: 42px;
      line-height: 0.9;
    }

    .time-item span {
      display: block;
      margin-top: 18px;
      color: rgba(245, 245, 243, 0.82);
      font-size: 14px;
      line-height: 1.55;
    }

    .visit-strip {
      padding: 86px 34px;
      background:
        linear-gradient(90deg, rgba(8, 8, 8, 0.9), rgba(8, 8, 8, 0.66)),
        url("../cars-real/cam-mercedes-pagoda.webp") center / cover,
        #111;
    }

    .visit-content {
      max-width: 720px;
    }

    .visit-content h2 {
      margin-bottom: 18px;
      font-family: var(--serif);
      font-size: clamp(2.2rem, 3.8vw, 3.8rem);
      line-height: 0.96;
      letter-spacing: 0;
    }

    .visit-content p {
      color: rgba(245, 245, 243, 0.78);
      font-size: 16px;
      line-height: 1.8;
    }

    .footer {
      padding: 64px 34px 28px;
      border-top: 1px solid rgba(215, 178, 109, 0.2);
      background: #050505;
    }

    .footer-grid {
      width: min(1180px, 100%);
      margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(260px, 1.2fr) repeat(3, minmax(150px, 0.6fr));
      gap: 42px;
    }

    .footer-brand {
      display: flex;
      align-items: center;
      gap: 18px;
      margin-bottom: 22px;
    }

    .footer-logo {
      width: 132px;
      height: 132px;
      border-radius: 0;
      object-fit: contain;
      box-shadow: none;
      filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.58));
    }

    .footer h2 {
      margin: 0;
      color: var(--quartz);
      font-family: var(--serif);
      font-size: 34px;
      line-height: 1;
      letter-spacing: 0;
    }

    .footer p {
      max-width: 430px;
      color: rgba(183, 188, 195, 0.78);
      font-size: 14px;
      line-height: 1.8;
    }

    .footer h3 {
      margin-bottom: 16px;
      color: var(--bronze-light);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.15em;
      text-transform: uppercase;
    }

    .footer a,
    .footer li {
      color: rgba(245, 245, 243, 0.72);
      font-size: 14px;
      line-height: 1.9;
    }

    .footer a:hover,
    .footer a:focus-visible {
      color: var(--bronze-light);
      outline: none;
    }

    .footer ul {
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .footer-bottom {
      width: min(1180px, 100%);
      margin: 42px auto 0;
      padding-top: 22px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      border-top: 1px solid rgba(215, 178, 109, 0.16);
      color: rgba(183, 188, 195, 0.64);
      font-size: 12px;
    }

    .languages {
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }

    .languages a {
      width: 38px;
      height: 28px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(215, 178, 109, 0.3);
      background: rgba(255, 255, 255, 0.04);
      font-size: 20px;
      line-height: 1;
      transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
    }

    .languages a:hover,
    .languages a:focus-visible {
      background: rgba(215, 178, 109, 0.08);
      border-color: var(--bronze-light);
      transform: translateY(-2px);
    }

    .language-flag {
      display: block;
      transform: translateY(1px);
    }

    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }


    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 620ms ease, transform 620ms ease;
    }

    .reveal.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    :focus-visible {
      outline: 2px solid var(--bronze-light);
      outline-offset: 3px;
    }

    @media (max-width: 1180px) {
      .nav-wrap {
        padding: 0 22px;
      }

      .brand {
        min-width: auto;
      }

      .desktop-nav,
      .nav-ctas {
        display: none;
      }

      .menu-toggle {
        display: inline-flex;
      }

      .mobile-panel {
        position: fixed;
        inset: 82px 0 0;
        z-index: 49;
        display: block;
        overflow-y: auto;
        padding: 18px 22px 34px;
        background: rgba(5, 5, 5, 0.98);
        transform: translateX(100%);
        transition: transform 220ms ease;
      }

      .mobile-home {
        display: block;
        padding: 0 0 18px;
        margin-bottom: 2px;
        border-bottom: 1px solid rgba(215, 178, 109, 0.16);
        color: var(--bronze-light);
        font-size: 18px;
        font-weight: 800;
      }

      body.nav-open .mobile-panel {
        transform: translateX(0);
      }

      .mobile-group {
        border-bottom: 1px solid rgba(215, 178, 109, 0.16);
      }

      .mobile-trigger {
        width: 100%;
        min-height: 58px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border: 0;
        background: transparent;
        color: var(--quartz);
        cursor: pointer;
        font-size: 18px;
        font-weight: 700;
        text-align: left;
      }

      .mobile-trigger::after {
        content: "+";
        color: var(--bronze-light);
        font-size: 24px;
        font-weight: 400;
      }

      .mobile-trigger[aria-expanded="true"]::after {
        content: "-";
      }

      .mobile-links {
        display: none;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px 18px;
        padding: 0 0 18px;
      }

      .mobile-links.is-open {
        display: grid;
      }

      .mobile-links a {
        color: rgba(245, 245, 243, 0.74);
        font-size: 14px;
        line-height: 1.55;
      }

      .mobile-ctas {
        display: grid;
        gap: 10px;
        margin-top: 22px;
      }
    }


    @media (max-width: 940px) {
      .hero {
        height: clamp(380px, 32vh, 300px);
        padding: 112px 22px 30px;
      }

      .section,
      .visit-strip,
      .hero-quickbar {
        padding: 76px 22px;
      }

      .hero-quickbar {
        padding-top: 22px;
        padding-bottom: 22px;
      }

      .section-head,
      .feature-layout,
      .footer-grid,
      .hero-quickbar .section-inner {
        grid-template-columns: 1fr;
      }

      .hero-quickbar .section-inner {
        display: grid;
      }

      .collection-grid,
      .linked-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .era-rail,
      .focus-layout {
        grid-template-columns: 1fr;
      }

      .era-rail a {
        min-height: auto;
        border-right: 0;
        border-bottom: 1px solid rgba(215, 178, 109, 0.14);
      }

      .era-rail a:last-child {
        border-bottom: 0;
      }

      .moment-card,
      .moment-card.has-image {
        grid-template-columns: 1fr;
      }

      .moment-list::before {
        display: none;
      }

      .moment-year {
        min-height: 92px;
        border-right: 0;
        border-bottom: 1px solid rgba(215, 178, 109, 0.16);
      }

      .hero-stats,
      .timeline {
        grid-template-columns: 1fr;
      }

      .stat,
      .time-item {
        border-right: 0;
        border-bottom: 1px solid rgba(215, 178, 109, 0.14);
      }

      .stat:last-child,
      .time-item:last-child {
        border-bottom: 0;
      }

      .feature-image {
        min-height: 420px;
      }
    }

    @media (max-width: 640px) {
      .nav-wrap {
        height: 72px;
      }

      .brand {
        min-width: 74px;
      }

      .brand-mark {
        width: 64px;
        height: 64px;
        transform: none;
      }

      .mobile-panel {
        inset: 72px 0 0;
      }

      .hero {
        height: clamp(380px, 32vh, 300px);
        padding: 106px 18px 28px;
      }

      h1 {
        font-size: clamp(2.15rem, 8.8vw, 3rem);
      }

      .hero-actions,
      .visit-content .hero-actions {
        display: grid;
      }

      .btn {
        width: 100%;
      }

      .collection-grid,
      .linked-grid,
      .focus-panel,
      .specs {
        grid-template-columns: 1fr;
      }

      .focus-panel div,
      .focus-panel div:nth-child(2n),
      .focus-panel div:nth-last-child(-n + 2) {
        border-right: 0;
        border-bottom: 1px solid rgba(215, 178, 109, 0.14);
      }

      .focus-panel div:last-child {
        border-bottom: 0;
      }

      .vehicle-card {
        min-height: auto;
      }

      .feature-panel {
        padding: 28px;
      }

      .feature-image {
        min-height: 320px;
      }

      .spec {
        border-right: 0;
        border-bottom: 1px solid rgba(215, 178, 109, 0.14);
      }

      .spec:last-child {
        border-bottom: 0;
      }

      .footer {
        padding: 54px 20px 24px;
      }

      .footer-brand {
        align-items: flex-start;
        flex-direction: column;
      }

      .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
      }
    }

    .visit-card-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    .visit-card {
      min-height: 320px;
      padding: 28px;
      border: 1px solid rgba(215, 178, 109, 0.18);
      background: rgba(8, 8, 8, 0.64);
      display: flex;
      flex-direction: column;
      transition: transform 180ms ease, border-color 180ms ease;
    }

    .visit-card:hover {
      transform: translateY(-4px);
      border-color: rgba(215, 178, 109, 0.42);
    }

    .visit-card .tag {
      color: var(--bronze-light);
      font-size: 11px;
      font-weight: 900;
      letter-spacing: 0.15em;
      text-transform: uppercase;
    }

    .visit-card h3 {
      margin: 14px 0 12px;
      font-family: var(--serif);
      font-size: 34px;
      line-height: 1;
      letter-spacing: 0;
    }

    .visit-card p,
    .visit-list li,
    .info-panel p {
      color: rgba(245, 245, 243, 0.74);
      font-size: 14px;
      line-height: 1.7;
    }

    .visit-card .price {
      margin-top: auto;
      padding-top: 24px;
      color: var(--bronze-light);
      font-family: var(--serif);
      font-size: 30px;
      line-height: 1;
    }

    .visit-card .small-note {
      display: block;
      margin-top: 8px;
      color: rgba(183, 188, 195, 0.74);
      font-size: 12px;
      line-height: 1.5;
    }

    .visit-card .card-action {
      margin-top: 18px;
      align-self: flex-start;
    }

    .process-grid,
    .info-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
    }

    .process-step,
    .info-panel {
      padding: 24px;
      border: 1px solid rgba(215, 178, 109, 0.16);
      background: rgba(17, 17, 17, 0.72);
    }

    .process-step strong,
    .info-panel strong {
      display: block;
      color: var(--bronze-light);
      font-family: var(--serif);
      font-size: 32px;
      line-height: 1;
      margin-bottom: 12px;
    }

    .visit-list {
      margin: 16px 0 0;
      padding-left: 18px;
    }

    .schedule-table {
      display: grid;
      border: 1px solid rgba(215, 178, 109, 0.18);
      background: rgba(8, 8, 8, 0.62);
    }

    .schedule-row {
      display: grid;
      grid-template-columns: 0.7fr 1fr 1fr;
      gap: 18px;
      padding: 22px 26px;
      border-bottom: 1px solid rgba(215, 178, 109, 0.14);
      align-items: center;
    }

    .schedule-row:last-child {
      border-bottom: 0;
    }

    .schedule-row strong {
      color: var(--bronze-light);
      font-size: 13px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .schedule-row span {
      color: rgba(245, 245, 243, 0.82);
      font-size: 15px;
      line-height: 1.5;
    }

    .map-panel {
      min-height: 430px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(215, 178, 109, 0.18);
      background:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px),
        linear-gradient(135deg, rgba(156, 123, 82, 0.16), rgba(8, 8, 8, 0.85));
      background-size: 62px 62px, 62px 62px, auto;
      text-align: center;
      padding: 32px;
    }

    .map-panel strong {
      color: var(--bronze-light);
      font-family: var(--serif);
      font-size: 46px;
      line-height: 1;
    }

    .phone-demo {
      max-width: 360px;
      margin: 0 auto;
      padding: 18px;
      border: 1px solid rgba(215, 178, 109, 0.24);
      border-radius: 28px;
      background: linear-gradient(180deg, #171717, #050505);
      box-shadow: 0 24px 80px rgba(0,0,0,0.42);
    }

    .phone-screen {
      min-height: 560px;
      border: 1px solid rgba(215, 178, 109, 0.18);
      border-radius: 20px;
      padding: 24px;
      background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.84)),
        url("../cars-real/cam-roadster-1962-front.webp") center / cover;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
    }

    .phone-screen span {
      color: var(--bronze-light);
      font-size: 12px;
      font-weight: 900;
      letter-spacing: 0.15em;
      text-transform: uppercase;
    }

    .phone-screen h3 {
      margin: 10px 0 12px;
      font-family: var(--serif);
      font-size: 36px;
      line-height: 1;
    }

    .phone-screen p {
      color: rgba(245, 245, 243, 0.78);
      font-size: 14px;
      line-height: 1.65;
    }

    @media (max-width: 940px) {
      .visit-card-grid,
      .process-grid,
      .info-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .schedule-row {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 640px) {
      .visit-card-grid,
      .process-grid,
      .info-grid {
        grid-template-columns: 1fr;
      }

      .phone-demo {
        max-width: 100%;
      }
    }



    .club-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    .club-card,
    .club-panel,
    .partner-tile,
    .member-tier,
    .login-card {
      border: 1px solid rgba(215, 178, 109, 0.18);
      background: rgba(8, 8, 8, 0.64);
      padding: 28px;
      transition: transform 180ms ease, border-color 180ms ease;
    }

    .club-card:hover,
    .partner-tile:hover,
    .member-tier:hover {
      transform: translateY(-4px);
      border-color: rgba(215, 178, 109, 0.42);
    }

    .club-card h3,
    .club-panel h3,
    .partner-tile h3,
    .member-tier h3,
    .login-card h3 {
      margin: 0 0 12px;
      font-family: var(--serif);
      font-size: 32px;
      line-height: 1;
      letter-spacing: 0;
    }

    .club-card p,
    .club-panel p,
    .partner-tile p,
    .member-tier p,
    .login-card p,
    .club-list li {
      color: rgba(245, 245, 243, 0.72);
      font-size: 14px;
      line-height: 1.7;
    }

    .club-list {
      display: grid;
      gap: 14px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .club-list li {
      padding: 14px 0;
      border-bottom: 1px solid rgba(215, 178, 109, 0.14);
    }

    .club-list strong,
    .club-kpi strong {
      color: var(--bronze-light);
    }

    .club-kpis {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
      margin-top: 24px;
    }

    .club-kpi {
      border-top: 1px solid rgba(215, 178, 109, 0.26);
      padding-top: 16px;
    }

    .club-kpi strong {
      display: block;
      font-family: var(--serif);
      font-size: 34px;
      line-height: 1;
    }

    .club-kpi span {
      display: block;
      margin-top: 8px;
      color: rgba(245, 245, 243, 0.62);
      font-size: 12px;
      line-height: 1.5;
    }

    .club-quote {
      margin: 0;
      color: var(--quartz);
      font-family: var(--serif);
      font-size: clamp(2.8rem, 5vw, 4.6rem);
      line-height: 0.96;
      letter-spacing: 0;
    }

    .club-story-note {
      margin-top: 24px;
      border-left: 2px solid var(--bronze-light);
      padding-left: 18px;
      color: rgba(245, 245, 243, 0.74);
      font-size: 14px;
      line-height: 1.75;
    }

    .club-timeline {
      position: relative;
      display: grid;
      grid-template-columns: repeat(6, minmax(0, 1fr));
      gap: 0;
      border: 1px solid rgba(215, 178, 109, 0.18);
      background: rgba(8, 8, 8, 0.58);
    }

    .club-timeline::before {
      content: "";
      position: absolute;
      left: 24px;
      right: 24px;
      top: 39px;
      height: 1px;
      background: linear-gradient(90deg, rgba(215, 178, 109, 0.1), rgba(215, 178, 109, 0.72), rgba(215, 178, 109, 0.1));
    }

    .club-moment {
      position: relative;
      min-height: 230px;
      padding: 72px 22px 24px;
      border-right: 1px solid rgba(215, 178, 109, 0.14);
    }

    .club-moment:last-child {
      border-right: 0;
    }

    .club-moment::before {
      content: "";
      position: absolute;
      top: 32px;
      left: 22px;
      width: 13px;
      height: 13px;
      border: 2px solid var(--bronze-light);
      background: var(--carbon);
      transform: rotate(45deg);
    }

    .club-moment strong {
      display: block;
      color: var(--bronze-light);
      font-family: var(--serif);
      font-size: 34px;
      line-height: 0.9;
    }

    .club-moment span {
      display: block;
      margin-top: 14px;
      color: rgba(245, 245, 243, 0.82);
      font-size: 13px;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .club-moment p {
      margin: 12px 0 0;
      color: rgba(245, 245, 243, 0.68);
      font-size: 13px;
      line-height: 1.65;
    }

    .club-ritual-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 18px;
    }

    .club-ritual {
      min-height: 260px;
      border: 1px solid rgba(215, 178, 109, 0.18);
      background:
        linear-gradient(180deg, rgba(8, 8, 8, 0.2), rgba(8, 8, 8, 0.88)),
        var(--ritual-image) center / cover,
        #111;
      padding: 24px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      transition: transform 180ms ease, border-color 180ms ease;
    }

    .club-ritual:hover {
      transform: translateY(-4px);
      border-color: rgba(215, 178, 109, 0.42);
    }

    .club-ritual span {
      color: var(--bronze-light);
      font-size: 11px;
      font-weight: 900;
      letter-spacing: 0.15em;
      text-transform: uppercase;
    }

    .club-ritual h3 {
      margin: 12px 0 10px;
      font-family: var(--serif);
      font-size: 30px;
      line-height: 0.96;
      letter-spacing: 0;
    }

    .club-ritual p {
      margin: 0;
      color: rgba(245, 245, 243, 0.74);
      font-size: 13px;
      line-height: 1.6;
    }

    .club-form {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
      margin-top: 18px;
    }

    .club-form .field-full {
      grid-column: 1 / -1;
    }

    .club-form label {
      display: grid;
      gap: 8px;
      color: var(--bronze-light);
      font-size: 11px;
      font-weight: 900;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }

    .club-form input,
    .club-form select,
    .club-form textarea {
      min-height: 48px;
      border: 1px solid rgba(215, 178, 109, 0.22);
      background: rgba(245, 245, 243, 0.04);
      color: var(--quartz);
      padding: 0 14px;
      font: inherit;
    }

    .club-form textarea {
      min-height: 120px;
      padding-top: 14px;
      resize: vertical;
    }

    .partner-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
    }

    .partner-mark {
      display: inline-flex;
      width: 56px;
      height: 56px;
      align-items: center;
      justify-content: center;
      margin-bottom: 18px;
      border: 1px solid rgba(215, 178, 109, 0.34);
      color: var(--bronze-light);
      font-weight: 900;
      letter-spacing: 0.08em;
    }

    @media (max-width: 980px) {
      .club-grid,
      .club-ritual-grid,
      .partner-grid,
      .club-kpis {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .club-timeline {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .club-timeline::before {
        display: none;
      }

      .club-moment {
        border-top: 1px solid rgba(215, 178, 109, 0.14);
      }
    }

    @media (max-width: 640px) {
      .club-grid,
      .club-ritual-grid,
      .club-timeline,
      .partner-grid,
      .club-kpis,
      .club-form {
        grid-template-columns: 1fr;
      }
    }


    .news-layout {
      display: grid;
      grid-template-columns: 1.25fr 0.75fr;
      gap: 18px;
      align-items: stretch;
    }

    .news-grid,
    .agenda-grid,
    .gallery-grid,
    .social-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    .news-card,
    .agenda-card,
    .media-card,
    .social-card,
    .press-card,
    .detail-panel {
      border: 1px solid rgba(215, 178, 109, 0.18);
      background: rgba(8, 8, 8, 0.64);
      overflow: hidden;
      transition: transform 180ms ease, border-color 180ms ease;
    }

    .news-card:hover,
    .agenda-card:hover,
    .media-card:hover,
    .social-card:hover,
    .press-card:hover {
      transform: translateY(-4px);
      border-color: rgba(215, 178, 109, 0.42);
    }

    .news-image,
    .media-thumb,
    .social-thumb {
      width: 100%;
      aspect-ratio: 16 / 10;
      object-fit: cover;
      filter: saturate(0.92) contrast(1.04);
    }

    .news-content,
    .agenda-content,
    .media-content,
    .social-content,
    .press-card,
    .detail-panel {
      padding: 26px;
    }

    .news-meta,
    .agenda-meta,
    .media-meta,
    .social-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 8px 14px;
      margin-bottom: 14px;
      color: var(--bronze-light);
      font-size: 11px;
      font-weight: 900;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }

    .news-card h3,
    .agenda-card h3,
    .media-card h3,
    .social-card h3,
    .press-card h3,
    .detail-panel h3 {
      margin: 0 0 12px;
      font-family: var(--serif);
      font-size: 32px;
      line-height: 0.98;
      letter-spacing: 0;
    }

    .news-card p,
    .agenda-card p,
    .media-card p,
    .social-card p,
    .press-card p,
    .detail-panel p,
    .detail-list li {
      color: rgba(245, 245, 243, 0.72);
      font-size: 14px;
      line-height: 1.7;
    }

    .featured-story {
      min-height: 540px;
      display: flex;
      align-items: flex-end;
      border: 1px solid rgba(215, 178, 109, 0.2);
      background:
        linear-gradient(180deg, rgba(8, 8, 8, 0.08), rgba(8, 8, 8, 0.9)),
        var(--feature-image) center / cover,
        #111;
      padding: 34px;
    }

    .featured-story h2 {
      max-width: 760px;
      margin: 10px 0 14px;
      font-family: var(--serif);
      font-size: clamp(2.2rem, 3.8vw, 3.8rem);
      line-height: 0.96;
      letter-spacing: 0;
    }

    .featured-story p {
      max-width: 720px;
      color: rgba(245, 245, 243, 0.78);
      font-size: 17px;
      line-height: 1.65;
    }

    .agenda-date {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 18px;
      align-items: center;
      border-bottom: 1px solid rgba(215, 178, 109, 0.16);
      padding: 22px 26px;
    }

    .agenda-date strong {
      color: var(--bronze-light);
      font-family: var(--serif);
      font-size: 48px;
      line-height: 0.86;
    }

    .agenda-date span {
      display: block;
      color: rgba(245, 245, 243, 0.68);
      font-size: 11px;
      font-weight: 900;
      letter-spacing: 0.16em;
      text-transform: uppercase;
    }

    .filter-strip,
    .detail-strip {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 26px;
    }

    .filter-pill {
      border: 1px solid rgba(215, 178, 109, 0.24);
      background: rgba(245, 245, 243, 0.04);
      color: rgba(245, 245, 243, 0.82);
      padding: 10px 14px;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .detail-grid {
      display: grid;
      grid-template-columns: 0.76fr 1.24fr;
      gap: 18px;
      align-items: start;
    }

    .detail-list {
      display: grid;
      gap: 12px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .detail-list li {
      border-bottom: 1px solid rgba(215, 178, 109, 0.14);
      padding: 12px 0;
    }

    .detail-list strong {
      color: var(--bronze-light);
    }

    .schedule-table {
      display: grid;
      border: 1px solid rgba(215, 178, 109, 0.18);
      background: rgba(8, 8, 8, 0.52);
    }

    .schedule-row {
      display: grid;
      grid-template-columns: 150px 1fr;
      gap: 20px;
      padding: 18px 22px;
      border-bottom: 1px solid rgba(215, 178, 109, 0.14);
    }

    .schedule-row:last-child {
      border-bottom: 0;
    }

    .schedule-row strong {
      color: var(--bronze-light);
      font-family: var(--serif);
      font-size: 28px;
      line-height: 0.95;
    }

    .schedule-row span {
      color: rgba(245, 245, 243, 0.74);
      font-size: 14px;
      line-height: 1.65;
    }

    .gallery-grid {
      grid-template-columns: 1.15fr 0.85fr 0.85fr;
    }

    .gallery-grid .media-card:first-child {
      grid-row: span 2;
    }

    .gallery-grid .media-card:first-child .media-thumb {
      aspect-ratio: 4 / 5;
    }

    .play-chip {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 42px;
      height: 42px;
      margin-bottom: 14px;
      border: 1px solid rgba(215, 178, 109, 0.45);
      color: var(--bronze-light);
      font-weight: 900;
    }

    .insta-mock {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 10px;
      padding: 10px;
      border: 1px solid rgba(215, 178, 109, 0.18);
      background: rgba(8, 8, 8, 0.68);
    }

    .insta-mock img {
      width: 100%;
      aspect-ratio: 1;
      object-fit: cover;
      filter: saturate(0.92) contrast(1.05);
    }

    @media (max-width: 980px) {
      .news-layout,
      .detail-grid {
        grid-template-columns: 1fr;
      }

      .news-grid,
      .agenda-grid,
      .gallery-grid,
      .social-grid,
      .insta-mock {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 640px) {
      .news-grid,
      .agenda-grid,
      .gallery-grid,
      .social-grid,
      .insta-mock,
      .schedule-row {
        grid-template-columns: 1fr;
      }

      .featured-story {
        min-height: 420px;
        padding: 24px;
      }
    }
    /* mobile-panel final guard */
    .mobile-panel {
      display: none;
      transform: translateX(100%);
    }
    @media (max-width: 1180px) {
      .mobile-panel {
        display: block;
      }
    }
    @media (min-width: 1181px) {
      body.nav-open {
        overflow: auto;
      }
    }
