 :root {
      --bg-main: #050509;
      --bg-elevated: rgba(255, 255, 255, 0.04);
      --border-soft: rgba(255, 255, 255, 0.08);
      --accent: #ffcc33;
      --accent-soft: rgba(255, 204, 51, 0.16);
      --accent-strong: #ffd950;
      --text-main: #ffffff;
      --text-soft: #d0d0d0;
      --text-muted: #9b9b9b;
      --danger: #ff4b6a;
      --radius-lg: 1.5rem;
      --radius-md: 1rem;
      --radius-pill: 999px;
      --shadow-soft: 0 24px 80px rgba(0, 0, 0, 0.75);
      --shadow-subtle: 0 16px 40px rgba(0, 0, 0, 0.6);
      --nav-height: 76px;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont,
        "Segoe UI", sans-serif;
      background: radial-gradient(circle at top, #111018 0, #050509 55%, #000 100%);
      color: var(--text-main);
      min-height: 100vh;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      position: relative;
      overflow-x: hidden;
    }

    /* Layout helpers */
    .page {
      position: relative;
      isolation: isolate;
    }

    .container {
      width: 100%;
      max-width: 1120px;
      margin: 0 auto;
      padding: 0 1.5rem;
    }

    /* Background Three.js canvas */
    #hero-canvas {
      position: fixed;
      inset: 0;
      width: 100%;
      height: 100%;
      z-index: -2;
      pointer-events: none;
      filter: saturate(110%) brightness(105%);
    }

    .hero-gradient-overlay {
      position: fixed;
      inset: -20%;
      background:
        radial-gradient(circle at 10% 0%, rgba(255, 204, 51, 0.12) 0, transparent 45%),
        radial-gradient(circle at 90% -10%, rgba(255, 204, 51, 0.08) 0, transparent 48%),
        radial-gradient(circle at 50% 110%, rgba(255, 204, 51, 0.14) 0, transparent 50%);
      opacity: 0.95;
      mix-blend-mode: screen;
      z-index: -1;
      pointer-events: none;
    }

    /* Navigation */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 20;
      backdrop-filter: blur(20px);
      background: linear-gradient(
          to bottom,
          rgba(5, 5, 9, 0.92),
          rgba(5, 5, 9, 0.86),
          rgba(5, 5, 9, 0.80),
          transparent
        );
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-inner {
      height: var(--nav-height);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1.5rem;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      text-decoration: none;
    }

    .brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 16px;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;      /* optional: remove gradient background */
  box-shadow: none;             /* optional: remove existing shadow */
}

/* Make your logo fit nicely in the container */
.brand-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;          /* or 'cover' if you want it to fill */
}
    

    .brand-mark::before,
    .brand-mark::after {
      content: "";
      position: absolute;
      border-radius: 999px;
      border: 2px solid rgba(0, 0, 0, 0.18);
      inset: 10%;
    }

    .brand-mark::after {
      inset: 30%;
      border-color: rgba(0, 0, 0, 0.28);
    }

    .brand-mark-dot {
      width: 9px;
      height: 9px;
      border-radius: 999px;
      background: #050509;
      box-shadow:
        0 0 0 3px rgba(255, 255, 255, 0.35),
        0 0 0 8px rgba(5, 5, 9, 0.45);
    }

    .brand-text {
      display: flex;
      flex-direction: column;
      gap: 0.1rem;
    }

    .brand-name {
      font-weight: 700;
      font-size: 1.1rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--accent-strong);
    }

    .brand-tagline {
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: var(--text-muted);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 1rem;
      font-size: 0.9rem;
    }

    .nav-links a {
      text-decoration: none;
      color: var(--text-soft);
      padding: 0.35rem 0.8rem;
      border-radius: 999px;
      border: 1px solid transparent;
      transition: all 160ms ease-out;
    }

    .nav-links a:hover {
      color: var(--accent-strong);
      border-color: rgba(255, 204, 51, 0.4);
      background: rgba(255, 204, 51, 0.04);
    }

    .nav-cta {
      padding: 0.55rem 1.1rem;
      border-radius: var(--radius-pill);
      border: 0;
      background: linear-gradient(135deg, #ffcc33, #ffe27a);
      color: #1b1500;
      font-weight: 600;
      font-size: 0.9rem;
      box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.72),
        0 0 0 1px rgba(0, 0, 0, 0.9);
      cursor: pointer;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      transition: transform 150ms ease-out, box-shadow 150ms ease-out, filter 150ms ease-out;
    }

    .nav-cta span {
      font-size: 1rem;
      transform: translateY(1px);
    }

    .nav-cta:hover {
      transform: translateY(-1px);
      filter: brightness(1.03);
      box-shadow:
        0 18px 50px rgba(0, 0, 0, 0.84),
        0 0 0 1px rgba(0, 0, 0, 0.9);
    }

    .nav-cta:active {
      transform: translateY(0);
      box-shadow:
        0 8px 22px rgba(0, 0, 0, 0.9),
        0 0 0 1px rgba(0, 0, 0, 0.9);
    }

    /* Hero / Home section */
    .hero {
      padding: 2.75rem 0 3.75rem;
    }

    @media (min-width: 900px) {
      .hero {
        padding: 3.75rem 0 4.5rem;
      }
    }

    .hero-grid {
      display: grid;
      gap: 2.25rem;
    }

    @media (min-width: 900px) {
      .hero-grid {
        grid-template-columns: minmax(0, 3.3fr) minmax(0, 2.7fr);
        align-items: center;
        gap: 2.75rem;
      }
    }

    .hero-copy-card {
      padding: 1.8rem 1.8rem 1.9rem;
      border-radius: var(--radius-lg);
      background: radial-gradient(
          circle at top left,
          rgba(255, 204, 51, 0.16),
          transparent 60%
        ),
        var(--bg-elevated);
      border: 1px solid var(--border-soft);
      box-shadow: var(--shadow-soft);
      backdrop-filter: blur(22px);
      position: relative;
      overflow: hidden;
    }

    .hero-chip-row {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 0.7rem;
      margin-bottom: 1.4rem;
    }

    .hero-chip {
      font-size: 0.72rem;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      padding: 0.35rem 0.8rem;
      border-radius: var(--radius-pill);
      border: 1px solid rgba(255, 204, 51, 0.5);
      background: rgba(255, 204, 51, 0.08);
      color: var(--accent-strong);
      display: inline-flex;
      align-items: center;
      gap: 0.3rem;
    }

    .hero-chip-dot {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: var(--accent-strong);
      box-shadow: 0 0 0 4px rgba(255, 204, 51, 0.28);
    }

    .hero-chip-sub {
      font-size: 0.72rem;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      padding: 0.35rem 0.8rem;
      border-radius: var(--radius-pill);
      border: 1px solid rgba(255, 255, 255, 0.16);
      color: var(--text-soft);
      background: rgba(5, 5, 9, 0.7);
    }

    .hero-heading {
      font-size: clamp(2.3rem, 4vw, 3.3rem);
      line-height: 1.1;
      margin-bottom: 0.85rem;
      letter-spacing: 0.02em;
    }

    .hero-heading span.highlight {
      color: var(--accent-strong);
      text-shadow: 0 0 30px rgba(255, 204, 51, 0.52);
    }

    .hero-subheading {
      font-size: 0.98rem;
      color: var(--text-soft);
      max-width: 32rem;
      margin-bottom: 1.6rem;
    }

    .hero-subheading-strong {
      color: var(--accent-soft);
      color: #ffcc33;
      font-weight: 500;
    }

    .hero-cta-row {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 0.9rem;
      margin-bottom: 1.7rem;
    }

    .btn-primary {
      border-radius: var(--radius-pill);
      border: 0;
      padding: 0.8rem 1.6rem;
      font-weight: 600;
      font-size: 0.94rem;
      background: radial-gradient(
          circle at 10% 0,
          #fff6bf 0,
          #ffcc33 48%,
          #ffb700 100%
        );
      color: #1b1500;
      box-shadow:
        0 18px 55px rgba(0, 0, 0, 0.9),
        0 0 0 1px rgba(0, 0, 0, 1);
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 0.55rem;
      text-decoration: none;
      transition: transform 150ms ease-out, box-shadow 150ms ease-out,
        filter 150ms ease-out;
    }

    .btn-primary span.icon {
      transform: translateY(1px);
      font-size: 1.1rem;
    }

    .btn-primary:hover {
      transform: translateY(-1px);
      filter: brightness(1.04);
      box-shadow:
        0 24px 70px rgba(0, 0, 0, 0.96),
        0 0 0 1px rgba(0, 0, 0, 1);
    }

    .btn-primary:active {
      transform: translateY(0);
      box-shadow:
        0 12px 28px rgba(0, 0, 0, 0.96),
        0 0 0 1px rgba(0, 0, 0, 1);
    }

    .btn-ghost {
      border-radius: var(--radius-pill);
      padding: 0.8rem 1.25rem;
      font-size: 0.9rem;
      background: rgba(5, 5, 9, 0.8);
      border: 1px solid rgba(255, 255, 255, 0.12);
      color: var(--text-soft);
      display: inline-flex;
      align-items: center;
      gap: 0.55rem;
      text-decoration: none;
      cursor: pointer;
      transition: all 150ms ease-out;
    }

    .btn-ghost .dot {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: var(--accent-strong);
      box-shadow: 0 0 0 3px rgba(255, 204, 51, 0.28);
    }

    .btn-ghost:hover {
      color: var(--accent-strong);
      border-color: rgba(255, 204, 51, 0.7);
      background: rgba(5, 5, 9, 0.9);
    }

    .hero-meta-row {
      display: flex;
      flex-wrap: wrap;
      gap: 1.25rem;
      font-size: 0.8rem;
      color: var(--text-muted);
    }

    .hero-meta-item {
      display: inline-flex;
      align-items: center;
      gap: 0.55rem;
      padding: 0.6rem 0.9rem;
      border-radius: var(--radius-pill);
      background: rgba(0, 0, 0, 0.85);
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .hero-meta-item strong {
      color: var(--accent-strong);
      font-weight: 600;
    }

    /* Hero media + carousel column */
    .hero-media-card {
      border-radius: var(--radius-lg);
      background: radial-gradient(
          circle at top right,
          rgba(255, 204, 51, 0.28),
          rgba(5, 5, 9, 0.96) 55%
        );
      border: 1px solid rgba(255, 255, 255, 0.12);
      box-shadow: var(--shadow-subtle);
      padding: 1.4rem 1.4rem 1.6rem;
      backdrop-filter: blur(20px);
      display: flex;
      flex-direction: column;
      gap: 1.1rem;
      position: relative;
      overflow: hidden;
    }

    @media (min-width: 900px) {
      .hero-media-card {
        padding: 1.7rem 1.7rem 1.9rem;
      }
    }

    .hero-media-heading {
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      color: var(--text-muted);
    }

    .hero-media-subtitle {
      font-size: 0.88rem;
      color: var(--text-soft);
    }

    .hero-emblem {
      position: absolute;
      top: 1.35rem;
      right: 1.35rem;
      padding: 0.5rem 0.9rem;
      border-radius: var(--radius-pill);
      border: 1px solid rgba(0, 0, 0, 0.75);
      background: radial-gradient(circle at 0% 0%, #fff6bf, #ffcc33 55%, #f6aa00 100%);
      color: #1b1500;
      font-size: 0.76rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      box-shadow:
        0 14px 34px rgba(0, 0, 0, 0.9),
        0 0 0 1px rgba(0, 0, 0, 1);
    }

    .hero-emblem span.badge-dot {
      width: 7px;
      height: 7px;
      border-radius: 999px;
      background: #1b1500;
      box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.4);
    }

    /* Infinite sliding carousel */
    .carousel-shell {
      margin-top: 0.9rem;
      border-radius: calc(var(--radius-lg) - 0.6rem);
      padding: 0.6rem;
      background: linear-gradient(
        135deg,
        rgba(255, 204, 51, 0.22),
        rgba(255, 255, 255, 0.06)
      );
      box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.9);
    }

    .carousel-window {
      overflow: hidden;
      border-radius: calc(var(--radius-lg) - 1.1rem);
      background: radial-gradient(circle at top, #131218 0, #050509 60%);
      position: relative;
    }

    .carousel-track {
      display: flex;
      width: max-content;
      animation: carousel-scroll 36s linear infinite;
    }

    .carousel-track:hover {
      animation-play-state: paused;
    }

    .carousel-item {
      position: relative;
      min-width: clamp(220px, 38vw, 320px);
      margin-right: 1.4rem;
      border-radius: 20px;
      overflow: hidden;
      flex-shrink: 0;
      background: #111018;
      box-shadow:
        0 16px 40px rgba(0, 0, 0, 0.92),
        0 0 0 1px rgba(0, 0, 0, 1);
    }

    .carousel-item img {
      width: 100%;
      display: block;
      height: 190px;
      object-fit: cover;
      transform-origin: center;
      transition: transform 600ms ease-out, filter 600ms ease-out;
    }

    .carousel-item::after {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(
        circle at top left,
        rgba(0, 0, 0, 0.1),
        transparent 50%
      );
      pointer-events: none;
    }

    .carousel-item-caption {
      position: absolute;
      left: 0.9rem;
      bottom: 0.9rem;
      padding: 0.35rem 0.7rem;
      border-radius: 999px;
      background: rgba(5, 5, 9, 0.8);
      border: 1px solid rgba(255, 255, 255, 0.17);
      font-size: 0.72rem;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: var(--text-soft);
    }

    .carousel-track:hover .carousel-item img {
      transform: scale(1.03);
      filter: brightness(1.05);
    }

    @keyframes carousel-scroll {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(-50%);
      }
    }

    /* Contact section */
    #contact {
      padding: 3.25rem 0 3.75rem;
    }

    @media (min-width: 900px) {
      #contact {
        padding: 4rem 0 4.5rem;
      }
    }

    .contact-grid {
      display: grid;
      gap: 2rem;
    }

    @media (min-width: 840px) {
      .contact-grid {
        grid-template-columns: minmax(0, 3fr) minmax(0, 2.4fr);
        align-items: center;
      }
    }

    .contact-card {
      border-radius: var(--radius-lg);
      padding: 1.9rem 1.9rem 2.1rem;
      background: linear-gradient(
          145deg,
          rgba(255, 204, 51, 0.16),
          rgba(255, 204, 51, 0.02),
          rgba(0, 0, 0, 0.96)
        );
      border: 1px solid var(--border-soft);
      box-shadow: var(--shadow-soft);
      backdrop-filter: blur(22px);
    }

    .contact-kicker {
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.2em;
      color: var(--text-muted);
      margin-bottom: 0.8rem;
    }

    .contact-heading {
      font-size: 1.7rem;
      margin-bottom: 0.7rem;
    }

    .contact-sub {
      font-size: 0.95rem;
      color: var(--text-soft);
      margin-bottom: 1.6rem;
      max-width: 32rem;
    }

    .contact-list {
      list-style: none;
      display: grid;
      gap: 1rem;
      margin-bottom: 1.7rem;
      font-size: 0.95rem;
    }

    .contact-label {
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: var(--text-muted);
      margin-bottom: 0.15rem;
    }

    .contact-value {
      color: var(--text-main);
    }

    .contact-map-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.9rem;
      align-items: center;
    }

    .btn-map {
      border-radius: var(--radius-pill);
      border: 0;
      padding: 0.75rem 1.4rem;
      font-size: 0.9rem;
      background: rgba(255, 204, 51, 0.14);
      border: 1px solid rgba(255, 204, 51, 0.7);
      color: var(--accent-strong);
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      cursor: pointer;
      text-decoration: none;
      transition: all 150ms ease-out;
    }

    .btn-map:hover {
      background: rgba(255, 204, 51, 0.22);
      transform: translateY(-1px);
    }

    .btn-map:active {
      transform: translateY(0);
    }

    .contact-note {
      font-size: 0.8rem;
      color: var(--text-muted);
    }

    .contact-map-card {
      border-radius: var(--radius-lg);
      background: var(--bg-elevated);
      border: 1px solid var(--border-soft);
      box-shadow: var(--shadow-subtle);
      padding: 1.1rem 1.1rem 1.25rem;
      backdrop-filter: blur(18px);
      display: flex;
      flex-direction: column;
      gap: 0.9rem;
    }

    .map-frame {
      border-radius: 1rem;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.16);
      box-shadow:
        0 14px 36px rgba(0, 0, 0, 0.9),
        0 0 0 1px rgba(0, 0, 0, 1);
    }

    .map-frame iframe {
      display: block;
      width: 100%;
      height: 260px;
      border: 0;
    }

    .map-caption {
      font-size: 0.8rem;
      color: var(--text-soft);
    }

    /* Footer */
    .site-footer {
      padding: 1.9rem 0 2.4rem;
      border-top: 1px solid rgba(255, 255, 255, 0.12);
      background: radial-gradient(circle at top, rgba(255, 204, 51, 0.08), transparent 55%);
    }

    .footer-inner {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      font-size: 0.78rem;
      color: var(--text-muted);
    }

    .footer-inner strong {
      color: var(--accent-strong);
      font-weight: 500;
    }

    /* Utilities */
    .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;
    }

    @media (max-width: 720px) {
      .nav-links {
        display: none;
      }

      .nav-inner {
        justify-content: space-between;
      }

      .hero-copy-card {
        padding: 1.5rem 1.35rem 1.6rem;
      }

      .hero-media-card {
        margin-top: -0.3rem;
      }

      .map-frame iframe {
        height: 220px;
      }
    }
