body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    background: #0b0b0c;
    color: #f5f5f5;
  }

  .cursor-glow {
    position: fixed;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212,175,55,0.15), transparent 60%);
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 0;
  }
  
  /* NAV */
  .nav {
    position: sticky;
    top: 0;
    background: rgba(11,11,12,0.8);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  
  .logo-container {
    background: black;
    padding: 10px 16px;
    border-radius: 10px;
    display: inline-block;
  }
  
  .logo {
    height: 40px;
    filter: invert(1) brightness(2);
  }

  .nav-actions {
    display: flex;
    align-items: center;
    gap: 24px;
  }

  .nav-btn {
    text-decoration: none;
    color: white;
    font-weight: 500;
  }
  
  /* HERO */
  .hero {
    position: relative;
    height: 95vh;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 60px;
    overflow: hidden;
  }

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

  .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    text-align: right;
    max-width: 560px;
  }
  
  .hero h1 {
    font-size: 58px;
    font-weight: 600;
    letter-spacing: -1px;
  }
  
  .hero p {
    max-width: 600px;
    margin: 20px auto;
    color: #aaa;
    font-size: 18px;
  }
  
  /* BUTTONS */
  
  .primary-btn:hover {
    background: #c6a85b;
    color: black;
  }
  .primary-btn {
    position: relative;
    overflow: hidden;
    display: inline-block;
    box-sizing: border-box;
    background: transparent;
    color: #e6c97a;
    border: 1px solid #c6a85b;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-family: inherit;
    font-size: inherit;
    font-weight: 600;
    line-height: 1.25;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
  }

  .form .primary-btn,
  .hero-content .primary-btn,
  .center .primary-btn {
    width: 100%;
    max-width: 400px;
  }

  .primary-btn::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    background: rgba(255,255,255,0.2);
    transition: 0.4s;
    pointer-events: none;
  }
  
  .primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212,175,55,0.3);
  }

  .primary-btn:hover::after {
    left: 100%;
  }
  
  .secondary-btn {
    border: 1px solid rgba(255,255,255,0.2);
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    color: white;
  }
  
  .divider {
    height: 1px;
    background: linear-gradient(to right, transparent, #d4af37, transparent);
    opacity: 0.3;
    margin: 60px 0;
  }

  /* SECTIONS */
  .section {
    padding: 120px 40px;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
  }
  
  .section.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  .alt {
    background: #111;
  }
  
  .center {
    text-align: center;
    max-width: 700px;
    margin: auto;
    color: #bbb;
  }
  /* Sliding image carousels – same size for both */
  .slider-wrap {
    overflow: hidden;
    max-width: 480px;
    max-height: 624px;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  }

  .slider-track {
    display: flex;
    transition: transform 0.6s ease-in-out;
  }

  .slider-slide {
    flex: 0 0 100%;
    min-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
  }

  .slider-slide img {
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: 624px;
    display: block;
    object-fit: contain;
  }
  
  /* GRID */
  .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
  }

  .grid .card {
    text-align: center;
    color: #bbb;
    font-size: 15px;
  }
  
  .card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(14px);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.08);
    padding: 20px;
    transition: all 0.3s ease;
  }

  .card:hover {
    transform: translateY(-6px);
    border-color: rgba(212,175,55,0.5);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  }
  
  .card img {
    width: 100%;
    display: block;
    filter: brightness(0.9) contrast(1.05);
  }

  /* images/ folder assets: 1/5 of previous display size */
  img[src^="images/"] {
    max-width: 20%;
    height: auto;
  }

  .card img[src^="images/"],
  .slider-slide > img[src^="images/"] {
    width: 20%;
  }
  
  /* SPLIT */
  .split {
    display: flex;
    gap: 60px;
  }
  
  .split h3 {
    margin-bottom: 10px;
  }
  
  .split p {
    color: #aaa;
  }

  .split .card ul {
    margin: 0;
    padding-left: 1.25em;
    color: #bbb;
  }

  .split .card li {
    margin-bottom: 8px;
  }
  
  /* FORM */
  .form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
    margin: auto;
  }
  
  .form input {
    padding: 14px;
    border-radius: 8px;
    border: none;
    background: #1a1a1a;
    color: white;
  }
  
  /* FOOTER */
  .footer {
    padding: 60px;
    text-align: center;
    background: #050505;
    color: #777;
  }