    :root {
      --red: #c0392b;
      --red-dark: #922b21;
      --red-bright: #e8472e;
      --red-glow: rgba(192,57,43,0.25);
      --gold: #c9a84c;
      --gold-light: #e8c97a;
      --gold-dim: rgba(201,168,76,0.15);
      --dark: #080808;
      --dark-mid: #0f0f0f;
      --dark-surface: #141414;
      --dark-surface2: #1a1a1a;
      --dark-border: #222222;
      --dark-border2: #2e2e2e;
      --white: #f0ede8;
      --white-dim: rgba(240,237,232,0.55);
      --white-faint: rgba(240,237,232,0.12);
      --muted: #666660;
      --font-display: 'Bebas Neue', sans-serif;
      --font-cond: 'Barlow Condensed', sans-serif;
      --font-body: 'Barlow', sans-serif;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    body {
      background: var(--dark);
      color: var(--white);
      font-family: var(--font-body);
      font-weight: 300;
      overflow-x: hidden;
    }

    .menu-bar {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      height: 68px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 2.5rem;
      background: rgba(8,8,8,0.92);
      backdrop-filter: blur(20px) saturate(180%);
      -webkit-backdrop-filter: blur(20px) saturate(180%);
      border-bottom: 1px solid var(--dark-border);
    }

    .menu-bar::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg,
        transparent 0%,
        var(--red) 25%,
        var(--gold) 50%,
        var(--red) 75%,
        transparent 100%
      );
      opacity: 0.7;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
    }

    .logo-img-wrap {
      position: relative;
      width: 42px;
      height: 42px;
      flex-shrink: 0;
    }

    .logo-img-wrap::before {
      content: '';
      position: absolute;
      inset: -2px;
      border-radius: 6px;
      background: linear-gradient(135deg, var(--gold), var(--red));
      z-index: 0;
    }

    .logo-img-wrap img {
      position: relative;
      z-index: 1;
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 5px;
      display: block;
    }

    .logo-text {
      display: flex;
      flex-direction: column;
      line-height: 1;
    }

    .logo-name {
      font-family: var(--font-display);
      font-size: 20px;
      letter-spacing: 3px;
      color: var(--white);
    }

    .logo-sub {
      font-family: var(--font-cond);
      font-size: 9px;
      letter-spacing: 5px;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 600;
      margin-top: 4px;
    }

    .menu-bar ul {
      display: flex;
      align-items: center;
      list-style: none;
      height: 68px;
    }

    .menu-bar ul li a {
      display: flex;
      align-items: center;
      height: 68px;
      padding: 0 16px;
      font-family: var(--font-cond);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--muted);
      text-decoration: none;
      position: relative;
      transition: color 0.25s;
    }

    .menu-bar ul li a::before {
      content: '';
      position: absolute;
      bottom: 0; left: 16px; right: 16px;
      height: 1px;
      background: var(--gold);
      transform: scaleX(0);
      transform-origin: center;
      transition: transform 0.3s cubic-bezier(.4,0,.2,1);
    }

    .menu-bar ul li a:hover { color: var(--white); }
    .menu-bar ul li a:hover::before { transform: scaleX(1); }
    .menu-bar ul li.active a { color: var(--white); }
    .menu-bar ul li.active a::before { transform: scaleX(1); background: var(--red); }

    .menu-bar ul li.nav-cta a {
      background: transparent;
      color: var(--gold);
      border: 1px solid var(--gold);
      border-radius: 2px;
      margin-left: 8px;
      padding: 0 20px;
      height: 34px;
      font-size: 10px;
      letter-spacing: 3px;
      transition: background 0.2s, color 0.2s;
    }
    .menu-bar ul li.nav-cta a::before { display: none; }
    .menu-bar ul li.nav-cta a:hover { background: var(--gold); color: var(--dark); }

    .garage-door {
      position: fixed;
      inset: 0;
      z-index: 9999;
      background: var(--dark);
      display: flex;
      align-items: flex-start;
      justify-content: center;
      overflow: hidden;
      animation: garageLift 1.1s 0.6s cubic-bezier(.86,0,.07,1) forwards;
    }

    @keyframes garageLift { to { transform: translateY(-100%); } }

    .door {
      width: 100%;
      height: 100%;
      background: repeating-linear-gradient(
        180deg,
        #141414 0px, #141414 54px,
        #1e1e1e 54px, #1e1e1e 56px,
        #111 56px, #111 60px
      );
      position: relative;
    }

    .door::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(192,57,43,0.06) 0%, rgba(201,168,76,0.03) 40%, transparent 70%);
    }

    .door::after {
      content: 'RIVERA MOTORS';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-family: var(--font-display);
      font-size: 80px;
      letter-spacing: 12px;
      color: rgba(255,255,255,0.04);
      white-space: nowrap;
      pointer-events: none;
    }

    .handle {
      position: absolute;
      bottom: 36px;
      left: 50%;
      transform: translateX(-50%);
      width: 64px;
      height: 6px;
      background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
      border-radius: 3px;
    }

    #transition-door {
      position: fixed;
      inset: 0;
      z-index: 5000;
      pointer-events: none;
      overflow: hidden;
    }

    #transition-door .panel-top {
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 50%;
      transform: translateY(-100%);
      background: repeating-linear-gradient(
        180deg,
        #141414 0px, #141414 54px,
        #1e1e1e 54px, #1e1e1e 56px,
        #111 56px, #111 60px
      );
      will-change: transform;
    }

    #transition-door .panel-bottom {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 50%;
      transform: translateY(100%);
      background: repeating-linear-gradient(
        180deg,
        #141414 0px, #141414 54px,
        #1e1e1e 54px, #1e1e1e 56px,
        #111 56px, #111 60px
      );
      will-change: transform;
    }

    #transition-door .panel-top::after,
    #transition-door .panel-bottom::before {
      content: '';
      position: absolute;
      left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--red) 20%, var(--gold) 50%, var(--red) 80%, transparent);
    }

    #transition-door .panel-top::after { bottom: 0; }
    #transition-door .panel-bottom::before { top: 0; }

    #transition-door .td-handle {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 64px;
      height: 6px;
      background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
      border-radius: 3px;
      opacity: 0;
      transition: opacity 0.1s;
    }

    #transition-door.closing .panel-top  { animation: panelClose-top 0.5s cubic-bezier(.86,0,.07,1) forwards; }
    #transition-door.closing .panel-bottom { animation: panelClose-bottom 0.5s cubic-bezier(.86,0,.07,1) forwards; }
    #transition-door.closing .td-handle { opacity: 1; transition-delay: 0.22s; }
    #transition-door.opening .panel-top  { animation: panelOpen-top 0.5s cubic-bezier(.86,0,.07,1) forwards; }
    #transition-door.opening .panel-bottom { animation: panelOpen-bottom 0.5s cubic-bezier(.86,0,.07,1) forwards; }
    #transition-door.opening .td-handle { opacity: 0; }

    @keyframes panelClose-top    { from { transform: translateY(-100%); } to { transform: translateY(0); } }
    @keyframes panelClose-bottom { from { transform: translateY(100%);  } to { transform: translateY(0); } }
    @keyframes panelOpen-top     { from { transform: translateY(0); }    to { transform: translateY(-100%); } }
    @keyframes panelOpen-bottom  { from { transform: translateY(0); }    to { transform: translateY(100%); } }

    #main-content { padding-top: 68px; }

    .section {
      display: none;
      min-height: calc(100vh - 68px);
      animation: sectionIn 0.5s cubic-bezier(.4,0,.2,1) both;
    }
    .section.active { display: block; }

    #home { display: none; flex-direction: column; }
    #home.active { display: flex; }

    @keyframes sectionIn {
      from { opacity: 0; transform: translateY(12px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .carrusel {
      position: relative;
      width: 100%;
      height: calc(100vh - 68px);
      min-height: 560px;
      overflow: hidden;
    }

    .slides {
      display: flex;
      height: 100%;
      transition: transform 0.9s cubic-bezier(.77,0,.18,1);
    }

    .slides img {
      min-width: 100%;
      height: 100%;
      object-fit: cover;
      filter: brightness(0.38) saturate(0.8);
    }

    .carrusel-overlay {
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 2;
      background:
        radial-gradient(ellipse at center, transparent 30%, rgba(8,8,8,0.7) 100%),
        linear-gradient(180deg, rgba(8,8,8,0.3) 0%, transparent 35%, transparent 55%, rgba(8,8,8,0.95) 100%);
    }

    .carrusel-line {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--red) 20%, var(--gold) 50%, var(--red) 80%, transparent);
      z-index: 6;
    }

    .hero-text {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: 5;
      text-align: center;
      width: 100%;
      padding: 0 2rem;
      max-width: 860px;
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      font-family: var(--font-cond);
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 5px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1.5rem;
    }

    .hero-eyebrow::before,
    .hero-eyebrow::after {
      content: '';
      display: block;
      width: 36px;
      height: 1px;
      background: var(--gold);
      opacity: 0.6;
    }

    .hero-text h1 {
      font-family: var(--font-display);
      font-size: clamp(72px, 10vw, 130px);
      line-height: 0.88;
      letter-spacing: 3px;
      color: var(--white);
      margin-bottom: 2rem;
      text-shadow: 0 2px 40px rgba(0,0,0,0.5);
    }

    .hero-text h1 .solid-red { color: var(--red-bright); }

    .hero-actions {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1.25rem;
    }

    .btn-primary {
      font-family: var(--font-cond);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 4px;
      text-transform: uppercase;
      background: var(--red);
      color: var(--white);
      border: none;
      padding: 16px 44px;
      cursor: pointer;
      transition: background 0.2s, transform 0.15s;
      border-radius: 1px;
      clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
    }
    .btn-primary:hover { background: var(--red-bright); transform: translateY(-1px); }

    .btn-ghost {
      font-family: var(--font-cond);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 4px;
      text-transform: uppercase;
      background: transparent;
      color: rgba(240,237,232,0.55);
      border: 1px solid rgba(240,237,232,0.2);
      padding: 16px 44px;
      cursor: pointer;
      transition: border-color 0.2s, color 0.2s, transform 0.15s;
      border-radius: 1px;
    }
    .btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-1px); }

    .scroll-hint {
      position: absolute;
      bottom: 36px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 5;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
    }

    .scroll-hint span {
      font-family: var(--font-cond);
      font-size: 9px;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: rgba(240,237,232,0.3);
    }

    .scroll-line {
      width: 1px;
      height: 40px;
      background: linear-gradient(180deg, var(--gold), transparent);
      animation: scrollPulse 2s ease-in-out infinite;
    }

    @keyframes scrollPulse {
      0%, 100% { opacity: 0.3; }
      50%       { opacity: 1; }
    }

    .nav-dots {
      position: absolute;
      right: 2.5rem;
      top: 50%;
      transform: translateY(-50%);
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 5;
    }

    .dot {
      width: 2px;
      height: 24px;
      background: rgba(255,255,255,0.2);
      cursor: pointer;
      transition: background 0.3s, height 0.3s;
      border-radius: 2px;
    }

    .dot.active { background: var(--gold); height: 40px; }

    .section-inner {
      max-width: 1140px;
      margin: 0 auto;
      padding: 6rem 3rem;
    }

    .section-tag {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-family: var(--font-cond);
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 5px;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 1.25rem;
    }

    .section-tag::before {
      content: '';
      display: block;
      width: 20px;
      height: 1px;
      background: var(--red);
    }

    .section-title {
      font-family: var(--font-display);
      font-size: clamp(48px, 6vw, 76px);
      line-height: 0.92;
      letter-spacing: 2px;
      color: var(--white);
      margin-bottom: 1rem;
    }

    .section-title .gold { color: var(--gold); }

    .rule {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 3rem;
    }

    .rule::before {
      content: '';
      display: block;
      width: 40px;
      height: 1px;
      background: var(--red);
    }

    .rule::after {
      content: '';
      flex: 1;
      height: 1px;
      background: linear-gradient(90deg, var(--dark-border2), transparent);
    }

    .rule-diamond {
      width: 5px;
      height: 5px;
      background: var(--gold);
      transform: rotate(45deg);
      flex-shrink: 0;
    }

    .about-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: start;
    }

    .body-text {
      font-size: 15px;
      line-height: 2;
      color: rgba(240,237,232,0.55);
      font-weight: 300;
    }

    .body-text + .body-text { margin-top: 1.25rem; }

    .about-specialty {
      margin-top: 2rem;
      padding: 1.5rem 2rem;
      border-left: 2px solid var(--red);
      background: linear-gradient(90deg, rgba(192,57,43,0.06), transparent);
    }

    .about-specialty p {
      font-family: var(--font-cond);
      font-size: 13px;
      letter-spacing: 1px;
      color: rgba(240,237,232,0.55);
      line-height: 1.8;
    }

    .about-specialty strong { color: var(--gold); font-weight: 600; }

    .stat-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1px;
      background: var(--dark-border);
      border: 1px solid var(--dark-border);
    }

    .stat-card {
      background: var(--dark-surface);
      padding: 2rem 1.75rem;
      position: relative;
      overflow: hidden;
      transition: background 0.25s;
    }
    .stat-card:hover { background: var(--dark-surface2); }

    .stat-card::after {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--red), var(--gold));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s cubic-bezier(.4,0,.2,1);
    }
    .stat-card:hover::after { transform: scaleX(1); }

    .stat-number {
      font-family: var(--font-display);
      font-size: 54px;
      line-height: 1;
      color: var(--white);
      letter-spacing: 1px;
    }

    .stat-number sup {
      font-size: 24px;
      color: var(--gold);
      vertical-align: super;
      font-family: var(--font-cond);
      font-weight: 700;
      letter-spacing: 0;
    }

    .stat-label {
      font-family: var(--font-cond);
      font-size: 10px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--muted);
      margin-top: 6px;
    }

    .services-layout {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1px;
      background: var(--dark-border);
    }

    .service-card {
      background: var(--dark-surface);
      padding: 3rem 2.5rem;
      position: relative;
      overflow: hidden;
      transition: background 0.25s;
      cursor: default;
    }
    .service-card:hover { background: var(--dark-surface2); }

    .service-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(192,57,43,0.06) 0%, transparent 60%);
      opacity: 0;
      transition: opacity 0.3s;
    }
    .service-card:hover::before { opacity: 1; }

    .service-num {
      font-family: var(--font-display);
      font-size: 80px;
      line-height: 1;
      color: rgba(255,255,255,0.04);
      position: absolute;
      top: 1rem;
      right: 1.5rem;
      transition: color 0.3s;
    }
    .service-card:hover .service-num { color: rgba(192,57,43,0.08); }

    .service-icon-wrap {
      width: 48px;
      height: 48px;
      border: 1px solid var(--dark-border2);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.5rem;
      font-size: 20px;
      position: relative;
      transition: border-color 0.3s;
    }
    .service-card:hover .service-icon-wrap { border-color: var(--red); }

    .service-icon-wrap::after {
      content: '';
      position: absolute;
      bottom: -1px; left: -1px;
      width: 8px; height: 8px;
      border-bottom: 1px solid var(--gold);
      border-left: 1px solid var(--gold);
    }

    .service-name {
      font-family: var(--font-cond);
      font-size: 20px;
      font-weight: 700;
      letter-spacing: 2px;
      color: var(--white);
      text-transform: uppercase;
      margin-bottom: 0.75rem;
    }

    .service-desc {
      font-size: 13px;
      color: var(--muted);
      line-height: 1.8;
      font-weight: 300;
    }

    .service-arrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 1.5rem;
      font-family: var(--font-cond);
      font-size: 10px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--muted);
      transition: color 0.2s;
    }
    .service-card:hover .service-arrow { color: var(--gold); }

    .service-arrow::after { content: '→'; transition: transform 0.2s; }
    .service-card:hover .service-arrow::after { transform: translateX(4px); }

    .refs-layout {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: var(--dark-border);
    }

    .ref-card {
      background: var(--dark-surface);
      padding: 2.5rem;
      position: relative;
      overflow: hidden;
      transition: background 0.25s;
    }
    .ref-card:hover { background: var(--dark-surface2); }

    .ref-quote-mark {
      font-family: var(--font-display);
      font-size: 120px;
      line-height: 0.7;
      color: var(--red);
      opacity: 0.15;
      margin-bottom: -0.5rem;
      display: block;
      transition: opacity 0.3s;
    }
    .ref-card:hover .ref-quote-mark { opacity: 0.25; }

    .ref-stars {
      display: flex;
      gap: 3px;
      margin-bottom: 1rem;
    }

    .ref-stars span {
      display: block;
      width: 8px;
      height: 8px;
      background: var(--gold);
      clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    }

    .ref-text {
      font-size: 13px;
      line-height: 1.9;
      color: rgba(240,237,232,0.55);
      margin-bottom: 1.5rem;
      font-style: italic;
      font-weight: 300;
    }

    .ref-author-row {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .ref-author-line {
      width: 20px;
      height: 1px;
      background: var(--gold);
    }

    .ref-author {
      font-family: var(--font-cond);
      font-size: 11px;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 600;
    }


    .contact-layout {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1px;
      max-width: 780px;
      background: var(--dark-border);
    }

    .contact-item {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      background: var(--dark-surface);
      padding: 2.5rem 2rem;
      transition: background 0.25s;
      position: relative;
      overflow: hidden;
    }

    .contact-item::after {
      content: '';
      position: absolute;
      left: 0; top: 0; bottom: 0;
      width: 2px;
      background: linear-gradient(180deg, var(--red), var(--gold));
      transform: scaleY(0);
      transition: transform 0.3s;
    }
    .contact-item:hover::after { transform: scaleY(1); }
    .contact-item:hover { background: var(--dark-surface2); }

    .contact-icon {
      width: 50px;
      height: 50px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      border: 1px solid var(--dark-border2);
      position: relative;
    }

    .contact-icon::before {
      content: '';
      position: absolute;
      top: -1px; right: -1px;
      width: 7px; height: 7px;
      border-top: 1px solid var(--gold);
      border-right: 1px solid var(--gold);
    }

    .contact-label {
      font-family: var(--font-cond);
      font-size: 9px;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 6px;
    }

    .contact-value {
      font-family: var(--font-cond);
      font-size: 20px;
      font-weight: 600;
      color: var(--white);
      letter-spacing: 1px;
      line-height: 1.2;
    }


    .location-address {
      display: flex;
      align-items: flex-start;
      gap: 1.5rem;
      background: var(--dark-surface);
      border: 1px solid var(--dark-border);
      padding: 2rem 2.5rem;
      margin-bottom: 2rem;
      position: relative;
    }

    .location-address::before {
      content: '';
      position: absolute;
      top: 0; left: 0; bottom: 0;
      width: 2px;
      background: linear-gradient(180deg, var(--red), var(--gold));
    }

    .map-wrapper {
      position: relative;
      border: 1px solid var(--dark-border);
      overflow: hidden;
      height: 460px;
    }

    .map-wrapper::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--red), var(--gold), var(--red));
      z-index: 2;
    }

    .map-wrapper iframe {
      display: block;
      width: 100%;
      height: 100%;
      filter: grayscale(1) invert(1) contrast(0.85) brightness(0.75) sepia(0.2) hue-rotate(160deg);
      transition: filter 0.4s;
    }

    .map-wrapper:hover iframe {
      filter: grayscale(0.8) invert(1) contrast(0.85) brightness(0.8) sepia(0.15) hue-rotate(160deg);
    }

    footer {
      background: var(--dark-mid);
      border-top: 1px solid var(--dark-border);
      padding: 0 2.5rem;
      height: 64px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: relative;
    }

    footer::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--red) 30%, var(--gold) 50%, var(--red) 70%, transparent);
    }

    .footer-logo {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .footer-logo img {
      width: 28px;
      height: 28px;
      object-fit: cover;
      border-radius: 3px;
      opacity: 0.5;
      border: 1px solid var(--dark-border2);
    }

    .footer-name {
      font-family: var(--font-display);
      font-size: 14px;
      letter-spacing: 3px;
      color: var(--muted);
    }

    .footer-copy {
      font-family: var(--font-cond);
      font-size: 10px;
      letter-spacing: 2px;
      color: rgba(102,102,96,0.6);
      text-transform: uppercase;
    }

    .footer-divider {
      width: 1px;
      height: 20px;
      background: var(--dark-border2);
      
    }