  :root {
    --obsidian: #0a0a0b;
    --charcoal: #141416;
    --ash: #1e1e22;
    --ember: #c8622a;
    --gold: #d4a853;
    --cream: #f0e8d8;
    --mist: #8a8a96;
    --white: #fafaf8;
  }

  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    background: var(--obsidian);
    color: var(--cream);
    font-family: 'Cormorant Garamond', serif;
    overflow-x: hidden;
    /* cursor: none; */
  }

  /* Custom cursor */
  /* .cursor {
    position: fixed;
    width: 8px; height: 8px;
    background: var(--ember);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s, width 0.3s, height 0.3s, background 0.3s;
  }
  .cursor-ring {
    position: fixed;
    width: 32px; height: 32px;
    border: 1px solid rgba(200,98,42,0.4);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.18s ease-out, width 0.3s, height 0.3s;
  }
  body:hover .cursor { opacity: 1; } */

  /* ─── HEADER ─── */
  header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 60px;
    mix-blend-mode: normal;
  }

  header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10,10,11,0.95) 0%, transparent 100%);
    pointer-events: none;
  }

  .logo {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--white);
    position: relative;
    z-index: 1;
  }
  .logo span { color: var(--ember); }

  .contact-btn {
    position: relative;
    z-index: 1;
    font-family: 'Syne', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cream);
    text-decoration: none;
    padding: 11px 28px;
    border: 1px solid rgba(200,98,42,0.5);
    transition: all 0.4s ease;
    background: transparent;
  }
  .contact-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--ember);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.76,0,0.24,1);
    z-index: -1;
  }
  .contact-btn:hover { color: var(--white); border-color: var(--ember); }
  .contact-btn:hover::before { transform: scaleX(1); }

  /* ─── HERO ─── */
  .hero {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  /* 3D Canvas background */
  #bg-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    pointer-events: none;
  }

  .hero-eyebrow {
    font-family: 'Syne', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--ember);
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 1s ease 0.3s forwards;
  }

  .hero-title {
    font-size: clamp(4rem, 12vw, 10rem);
    font-weight: 300;
    line-height: 0.9;
    letter-spacing: -0.02em;
    color: var(--white);
    opacity: 0;
    animation: fadeUp 1s ease 0.5s forwards;
  }
  .hero-title em {
    font-style: italic;
    color: var(--gold);
  }

  .hero-sub {
    font-size: clamp(1rem, 2vw, 1.4rem);
    color: var(--mist);
    margin-top: 28px;
    font-weight: 300;
    letter-spacing: 0.08em;
    opacity: 0;
    animation: fadeUp 1s ease 0.8s forwards;
  }

  /* .scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeUp 1s ease 1.2s forwards;
  }
  .scroll-hint span {
    font-family: 'Syne', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--mist);
  } */
  .scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--ember), transparent);
    animation: scrollAnim 2s ease-in-out infinite;
  }

  @keyframes scrollAnim {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.3); }
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* ─── PRODUCTS SECTION ─── */
  .products {
    position: relative;
    padding: 140px 60px;
    background: var(--charcoal);
  }

  .products::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--ember), transparent);
  }

  .section-label {
    font-family: 'Syne', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--ember);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .section-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(200,98,42,0.25);
  }

  .section-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 300;
    line-height: 1.05;
    margin-bottom: 80px;
    max-width: 700px;
    /* width: 100%; */
  }
  .section-title em { font-style: italic; color: var(--gold); }

  .products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
  }

  .product-card {
    position: relative;
    background: var(--ash);
    overflow: hidden;
    /* cursor: none; */
    group: true;
  }

  .product-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid transparent;
    transition: border-color 0.4s;
    pointer-events: none;
    z-index: 10;
  }
  .product-card:hover::after { border-color: var(--ember); }

  .card-img-wrap {
    position: relative;
    overflow: hidden;
    height: 600px;
    background: #0d0d0f;
  }

  .card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: brightness(0.85) contrast(1.05);
  }
  .product-card:hover .card-img-wrap img {
    transform: scale(1.06);
  }

  .card-overlay {
    position: absolute;
    inset: 0;
    /* background: linear-gradient(to top, rgba(10,10,11,0.9) 0%, rgba(10,10,11,0.1) 60%, transparent 100%); */
    z-index: 2;
  }

  .card-badge {
    position: absolute;
    top: 24px; right: 24px;
    font-family: 'Syne', sans-serif;
    font-size: 0.55rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    background: var(--ember);
    color: var(--white);
    padding: 6px 12px;
    z-index: 5;
  }

  .card-body {
    padding: 32px 36px 36px;
    position: relative;
  }

  .card-weight {
    font-family: 'Syne', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
    text-align: center;
  }

  .card-name {
    font-size: 1.7rem;
    font-weight: 300;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 20px;
  }
  .card-name em { font-style: italic; color: var(--gold); }

  .flavor-bars {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 28px;
  }

  .flavor-row {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .flavor-label {
    font-family: 'Syne', sans-serif;
    font-size: 0.55rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--mist);
    width: 80px;
    flex-shrink: 0;
  }

  .flavor-track {
    flex: 1;
    height: 2px;
    background: rgba(255,255,255,0.07);
    position: relative;
    overflow: hidden;
  }

  .flavor-fill {
    position: absolute;
    left: 0; top: 0; bottom: 0;
    background: linear-gradient(to right, var(--ember), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .product-card.in-view .flavor-fill { transform: scaleX(1); }

  .card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .price {
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--white);
  }
  .price em { font-style: italic; color: var(--gold); }
  .price sub {
    font-size: 1.1rem;
    color: var(--mist);
    vertical-align: baseline;
  }

  .buy-btn {
    font-family: 'Syne', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--obsidian);
    background: var(--cream);
    border: none;
    padding: 12px 24px;
    /* cursor: none; */
    position: relative;
    overflow: hidden;
    transition: color 0.3s;
    cursor: pointer;
  }
  .buy-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--ember);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.76,0,0.24,1);
  }
  .buy-btn:hover { color: var(--white); }
  .buy-btn:hover::before { transform: scaleX(1); }
  .buy-btn span { position: relative; z-index: 1; }

  /* ─── MARQUEE ─── */
  .marquee-section {
    padding: 50px 0;
    overflow: hidden;
    background: var(--obsidian);
    border-top: 1px solid rgba(200,98,42,0.12);
    border-bottom: 1px solid rgba(200,98,42,0.12);
  }

  .marquee-track {
    display: flex;
    gap: 60px;
    animation: marquee 18s linear infinite;
    width: max-content;
  }

  .marquee-item {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 300;
    white-space: nowrap;
    color: rgba(240,232,216,0.15);
    display: flex;
    align-items: center;
    gap: 60px;
  }
  .marquee-item::after {
    content: '◆';
    color: var(--ember);
    font-size: 0.6em;
    opacity: 0.6;
  }

  @keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  /* ─── FOOTER ─── */
  footer {
    position: relative;
    min-height: 80vh;
    background: var(--obsidian);
    display: grid;
    grid-template-rows: 1fr auto;
    overflow: hidden;
  }

  footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--ember), transparent);
  }

  /* .footer-bg-text {
    position: absolute;
    bottom: -60px;
    left: -20px;
    font-size: clamp(12rem, 22vw, 22rem);
    font-weight: 800;
    font-family: 'Syne', sans-serif;
    color: rgba(255,255,255,0.018);
    line-height: 1;
    pointer-events: none;
    white-space: nowrap;
  } */

  .footer-main {
    padding: 100px 60px 60px;
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 2;
  }

  .footer-brand .logo-large {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 2.2rem;
    letter-spacing: 0.15em;
    color: var(--white);
    margin-bottom: 20px;
    display: block;
  }
  .footer-brand .logo-large span { color: var(--ember); }

  .footer-brand p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--mist);
    max-width: 300px;
    font-weight: 300;
  }

  .footer-col h4 {
    font-family: 'Syne', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--ember);
    margin-bottom: 28px;
  }

  .footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .footer-col ul li {
    font-size: 1rem;
    color: var(--mist);
    font-weight: 300;
    transition: color 0.3s;
    cursor: default;
  }
  .footer-col ul li:hover { color: var(--cream); }

  .footer-col ul li a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-col ul li a:hover { color: var(--cream); }


/* .footer-colTEMP{
  display: none;
} */

  .contact-highlight {
    margin-top: 20px;
    padding: 20px 24px;
    border: 1px solid rgba(200,98,42,0.2);
    background: rgba(200,98,42,0.05);
  }

  .contact-highlight p {
    font-size: 0.85rem;
    color: var(--mist);
    margin-bottom: 6px;
  }
  .contact-highlight a {
    font-size: 1.1rem;
    color: var(--cream);
    text-decoration: none;
    font-weight: 300;
  }
  .contact-highlight a:hover { color: var(--gold); }

  .footer-bottom {
    padding: 32px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255,255,255,0.05);
    position: relative;
    z-index: 2;
  }

  .footer-bottom p {
    font-family: 'Syne', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(138,138,150,0.5);
  }

  .footer-quality {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .quality-badge {
    font-family: 'Syne', sans-serif;
    font-size: 0.55rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ember);
    padding: 6px 14px;
    border: 1px solid rgba(200,98,42,0.3);
  }

  /* ─── NOISE OVERLAY ─── */
  .noise {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9990;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 200px;
  }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 1024px) {
    .products-grid { grid-template-columns: 1fr; gap: 2px; }
    .card-img-wrap { height: 360px; }
    .footer-main { grid-template-columns: 1fr 1fr; gap: 40px; }
    header { padding: 24px 32px; }
    .products { padding: 100px 32px; }
    .card-img-wrap{
      height: 500px;
    }
    .card-img-wrap img{
      object-fit: contain;
    }
  }
  @media (max-width: 640px) {
    header { padding: 20px 24px; }
    .products { padding: 80px 24px; }
    .footer-main { grid-template-columns: 1fr; padding: 60px 24px 40px; }
    .footer-bottom { padding: 24px; flex-direction: column; gap: 12px; text-align: center; }
    .card-img-wrap{
      height: 400px;
    }
    .card-img-wrap img{
      object-fit: contain;
    }
  }