
  :root {
    --jet: #0D0D0D;
    --jet2: #131313;
    --jet3: #1a1812;
    --jet4: #1f1d17;
    --gold-deep: #906B16;
    --gold-mid: #C5A048;
    --gold-light: #E8D18F;
    --gold-pale: #F5EDCC;
    --linen: #F2EEE9;
    --linen-dim: rgba(242,238,233,0.75);
    --linen-faint: rgba(242,238,233,0.45);
    --burgundy: #3D1A0E;
    --ink: #1C1409;
    --forest: #0B1F14;
    --sapphire: #091C2E;
    --plum: #1A0D22;
    --gold-glow: rgba(197,160,72,0.18);
    --gold-line: rgba(197,160,72,0.35);
    --gold-strong: rgba(197,160,72,0.7);
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Raleway', sans-serif;
    background: var(--jet);
    color: var(--linen);
    overflow-x: hidden;
    max-width: 100vw;
    cursor: auto;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 999;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.2rem 4rem;
    background: linear-gradient(180deg, rgba(13,13,13,0.98) 0%, rgba(13,13,13,0.85) 100%);
    border-bottom: 0.5px solid var(--gold-line);
    backdrop-filter: blur(12px);
    transition: padding 0.4s;
  }
  nav.scrolled { padding: 0.8rem 4rem; }
  .nav-logo { font-family: 'Cinzel', serif; font-size: 1.35rem; font-weight: 600; letter-spacing: 0.28em; color: var(--gold-mid); text-decoration: none; }
  .nav-links { display: flex; gap: 2.4rem; list-style: none; }
  .nav-links a { font-family: 'Raleway', sans-serif; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.32em; text-transform: uppercase; color: var(--linen-dim); text-decoration: none; transition: color 0.3s; }
  .nav-links a:hover { color: var(--gold-light); }
  .nav-cta { font-family: 'Raleway', sans-serif; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase; color: var(--jet); background: var(--gold-mid); padding: 0.6rem 1.5rem; text-decoration: none; transition: background 0.3s, color 0.3s; }
  .nav-cta:hover { background: var(--gold-light); }
  .nav-hamburger { display: none; flex-direction: column; gap: 6px; cursor: pointer; padding: 8px; margin: -8px; -webkit-tap-highlight-color: transparent; z-index: 1000; position: relative; }
  .nav-hamburger span { width: 26px; height: 2px; background: var(--gold-mid); display: block; transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s; border-radius: 2px; }

  /* ── HERO ── */
  #hero {
    min-height: 100vh;
    overflow: hidden;
    background: radial-gradient(ellipse 80% 70% at 70% 50%, rgba(144,107,22,0.12) 0%, transparent 60%),
                radial-gradient(ellipse 40% 60% at 20% 80%, rgba(61,26,14,0.3) 0%, transparent 55%),
                linear-gradient(160deg, #0D0D0D 0%, #131108 50%, #0D0D0D 100%);
    display: grid; grid-template-columns: 1fr 1fr; align-items: center;
    padding: 8rem 4rem 4rem;
    position: relative; overflow: hidden;
  }
  #hero::before {
    content: ''; position: absolute; inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(197,160,72,0.06) 1px, transparent 0);
    background-size: 48px 48px;
    pointer-events: none;
  }
  .hero-content { position: relative; z-index: 2; }
  .hero-eyebrow { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.5em; text-transform: uppercase; color: var(--gold-mid); margin-bottom: 1.5rem; display: flex; align-items: center; gap: 1rem; }
  .hero-eyebrow::before { content: ''; width: 40px; height: 0.5px; background: var(--gold-mid); }
  .hero-title { font-family: 'Cinzel', serif; font-size: clamp(2rem, 8vw, 5.5rem); font-weight: 600; line-height: 1.08; letter-spacing: 0.04em; margin-bottom: 1rem; }
  .hero-title .gold { background: linear-gradient(135deg, var(--gold-deep) 0%, var(--gold-light) 45%, var(--gold-mid) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
  .hero-subtitle { font-size: 0.95rem; font-weight: 300; line-height: 1.9; color: var(--linen-dim); max-width: 440px; margin-bottom: 2.5rem; }
  .hero-actions { display: flex; align-items: center; gap: 1.5rem; margin-bottom: 3.5rem; }
  .btn-primary { font-family: 'Raleway', sans-serif; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; background: var(--gold-mid); color: var(--jet); padding: 1rem 2.2rem; text-decoration: none; transition: 0.3s; border: 1.5px solid var(--gold-mid); display: inline-block; }
  .btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); }
  .btn-ghost { font-family: 'Raleway', sans-serif; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-light); padding: 1rem 2.2rem; text-decoration: none; border: 0.5px solid var(--gold-line); transition: 0.3s; display: inline-block; }
  .btn-ghost:hover { border-color: var(--gold-mid); color: var(--gold-mid); }
  .hero-badges { display: flex; align-items: center; flex-wrap: wrap; gap: 1.2rem 2.5rem; }
  .hero-badge { text-align: center; }
  .hero-badge .val { font-family: 'Cinzel', serif; font-size: 1.1rem; font-weight: 600; color: var(--gold-mid); display: block; }
  .hero-badge .lbl { font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--linen-faint); margin-top: 0.2rem; display: block; }
  .hero-divider { width: 0.5px; height: 30px; background: var(--gold-line); align-self: center; }

  .hero-visual { position: relative; display: flex; align-items: center; justify-content: center; min-height: 560px; overflow: hidden; }
  .bottle-glow { position: absolute; width: min(340px, 80vw); height: min(340px, 80vw); border-radius: 50%; background: radial-gradient(circle, rgba(197,160,72,0.2) 0%, transparent 70%); top: 50%; left: 50%; transform: translate(-50%, -50%); }
  .bottle-svg-wrap { position: relative; z-index: 2; animation: float 6s ease-in-out infinite; }
  @keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-18px)} }
  .feature-tags { position: absolute; z-index: 3; display: flex; flex-direction: column; gap: 1rem; right: 0; top: 50%; transform: translateY(-50%); }
  .feature-tag { background: rgba(13,13,13,0.9); border: 0.5px solid var(--gold-line); padding: 0.6rem 0.9rem; font-size: 0.62rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-light); white-space: nowrap; }
  .feature-tag span { display: block; font-size: 0.72rem; font-weight: 300; letter-spacing: 0; color: var(--linen-faint); margin-top: 0.15rem; }
  .feature-tag span { display: block; font-size: 0.72rem; font-weight: 300; letter-spacing: 0; color: var(--linen-faint); margin-top: 0.15rem; }

  /* ── SECTION COMMONS ── */
  section { position: relative; overflow: hidden; }
  .section-eyebrow { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.45em; text-transform: uppercase; color: var(--gold-mid); margin-bottom: 1rem; }
  .section-title { font-family: 'Cinzel', serif; font-size: clamp(1.5rem, 5vw, 3rem); font-weight: 600; line-height: 1.15; letter-spacing: 0.03em; margin-bottom: 1.2rem; }
  .section-body { font-size: 0.9rem; font-weight: 300; line-height: 2; color: var(--linen-dim); }
  .gold-rule { width: 48px; height: 0.5px; background: linear-gradient(90deg, var(--gold-mid), transparent); margin-bottom: 1.5rem; }
  .gold-rule.center { margin: 0 auto 1.5rem; }

  /* ── ESSENCE ── */
  #essence {
    background: linear-gradient(135deg, var(--forest) 0%, #0f1a0f 40%, var(--jet3) 100%);
    padding: 7rem 4rem;
    display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center;
  }
  #essence::before {
    content: ''; position: absolute; inset: 0;
    background: repeating-linear-gradient(45deg, transparent, transparent 60px, rgba(197,160,72,0.025) 60px, rgba(197,160,72,0.025) 61px);
    pointer-events: none;
  }
  .essence-manifesto { font-family: 'Cinzel', serif; font-size: clamp(1.6rem, 2.8vw, 2.4rem); font-weight: 400; line-height: 1.55; letter-spacing: 0.02em; color: var(--gold-light); font-style: italic; }
  .essence-manifesto em { font-style: normal; color: var(--linen); }
  .manifesto-sig { margin-top: 2rem; font-size: 0.65rem; letter-spacing: 0.45em; text-transform: uppercase; color: var(--gold-mid); border-top: 0.5px solid var(--gold-line); padding-top: 1.2rem; display: inline-block; }
  .essence-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .pillar-card { background: rgba(197,160,72,0.06); border: 0.5px solid var(--gold-line); padding: 1.6rem 1.4rem; transition: border-color 0.3s, background 0.3s; }
  .pillar-card:hover { border-color: var(--gold-mid); background: rgba(197,160,72,0.1); }
  .pillar-num { font-family: 'Cinzel', serif; font-size: 0.65rem; color: var(--gold-deep); letter-spacing: 0.2em; margin-bottom: 0.8rem; }
  .pillar-name { font-family: 'Cinzel', serif; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.08em; color: var(--gold-light); margin-bottom: 0.5rem; }
  .pillar-desc { font-size: 0.78rem; font-weight: 300; line-height: 1.75; color: var(--linen-faint); }

  /* ── GOLD ── */
  #gold {
    background: linear-gradient(160deg, var(--sapphire) 0%, #0d1520 40%, var(--jet3) 100%);
    padding: 7rem 4rem;
  }
  .gold-header { text-align: center; max-width: 680px; margin: 0 auto 5rem; }
  .gold-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5px; }
  .gold-cell { background: rgba(9,28,46,0.5); border: 0.5px solid rgba(197,160,72,0.15); padding: 2.5rem 2rem; transition: 0.35s; position: relative; overflow: hidden; }
  .gold-cell::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1.5px; background: linear-gradient(90deg, transparent, var(--gold-mid), transparent); opacity: 0; transition: opacity 0.35s; }
  .gold-cell:hover::before { opacity: 1; }
  .gold-cell:hover { background: rgba(197,160,72,0.07); transform: translateY(-4px); }
  .gold-icon { font-size: 1.8rem; margin-bottom: 1.2rem; }
  .gold-cell-title { font-family: 'Cinzel', serif; font-size: 0.88rem; font-weight: 600; letter-spacing: 0.1em; color: var(--gold-light); margin-bottom: 0.6rem; }
  .gold-cell-text { font-size: 0.8rem; font-weight: 300; line-height: 1.8; color: var(--linen-faint); }
  .ingredients-strip { margin-top: 4rem; display: flex; align-items: center; justify-content: center; gap: 0; border: 0.5px solid var(--gold-line); }
  .ingr { flex: 1; text-align: center; padding: 1.5rem 1rem; border-right: 0.5px solid var(--gold-line); }
  .ingr:last-child { border-right: none; }
  .ingr-label { font-size: 0.6rem; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 0.4rem; }
  .ingr-value { font-family: 'Cinzel', serif; font-size: 1rem; font-weight: 600; color: var(--gold-light); }

  /* ── HOSPITALITY ── */
  #hospitality {
    background: linear-gradient(135deg, var(--plum) 0%, #1a0e20 40%, var(--burgundy) 70%, var(--jet3) 100%);
    padding: 7rem 4rem;
  }
  .hosp-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
  .hosp-use-cases { display: grid; gap: 1px; margin-top: 2.5rem; }
  .use-case { padding: 1.6rem 1.8rem; border-left: 1.5px solid var(--gold-deep); margin-bottom: 0.5rem; background: rgba(197,160,72,0.04); transition: 0.3s; cursor: default; }
  .use-case:hover { border-left-color: var(--gold-light); background: rgba(197,160,72,0.09); }
  .use-case-title { font-family: 'Cinzel', serif; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.1em; color: var(--gold-light); margin-bottom: 0.5rem; }
  .use-case-desc { font-size: 0.8rem; font-weight: 300; line-height: 1.8; color: var(--linen-faint); }
  .hosp-credentials { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
  .cred-badge { background: rgba(197,160,72,0.07); border: 0.5px solid var(--gold-line); padding: 1.4rem 1.2rem; text-align: center; }
  .cred-icon { font-size: 1.5rem; display: block; margin-bottom: 0.6rem; }
  .cred-name { font-family: 'Cinzel', serif; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; color: var(--gold-mid); margin-bottom: 0.3rem; }
  .cred-sub { font-size: 0.7rem; font-weight: 300; color: var(--linen-faint); }

  /* ── PRODUCTS ── */
  #products {
    background: linear-gradient(180deg, var(--jet) 0%, #0f0e08 50%, var(--jet) 100%);
    padding: 7rem 4rem;
  }
  .products-header { text-align: center; margin-bottom: 4rem; }
  .products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
  .product-card { background: linear-gradient(160deg, rgba(30,26,10,0.8) 0%, rgba(13,13,13,0.9) 100%); border: 0.5px solid var(--gold-line); padding: 3rem 2rem 2.5rem; text-align: center; position: relative; transition: 0.4s; overflow: hidden; }
  .product-card::after { content: ''; position: absolute; inset: -1px; border: 1.5px solid transparent; transition: border-color 0.4s; pointer-events: none; }
  .product-card:hover::after { border-color: var(--gold-mid); }
  .product-card:hover { transform: translateY(-8px); background: linear-gradient(160deg, rgba(40,34,12,0.9) 0%, rgba(20,18,5,0.95) 100%); }
  .product-card.featured { border-color: var(--gold-mid); }
  .product-card.featured::before { content: 'MOST POPULAR'; position: absolute; top: 0; right: 0; background: var(--gold-mid); color: var(--jet); font-size: 0.55rem; font-weight: 600; letter-spacing: 0.25em; padding: 0.3rem 0.8rem; }
  .product-name { font-family: 'Cinzel', serif; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.3em; color: var(--gold-deep); margin-bottom: 0.5rem; text-transform: uppercase; }
  .product-size { font-family: 'Cinzel', serif; font-size: 3.5rem; font-weight: 600; color: var(--gold-mid); line-height: 1; margin-bottom: 0.2rem; }
  .product-unit { font-size: 0.7rem; letter-spacing: 0.2em; color: var(--linen-faint); margin-bottom: 1.5rem; }
  .product-desc { font-size: 0.78rem; font-weight: 300; line-height: 1.8; color: var(--linen-dim); margin-bottom: 1.8rem; }
  .product-price { font-family: 'Cinzel', serif; font-size: 1.6rem; font-weight: 600; color: var(--gold-light); margin-bottom: 1.2rem; }
  .product-price span { font-size: 0.85rem; color: var(--gold-deep); }
  .product-btn { display: inline-block; width: 100%; padding: 0.85rem; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; border: 0.5px solid var(--gold-mid); color: var(--gold-mid); text-decoration: none; transition: 0.3s; cursor: pointer; background: transparent; font-family: 'Raleway', sans-serif; }
  .product-btn:hover { background: var(--gold-mid); color: var(--jet); }
  .product-separator { width: 30px; height: 0.5px; background: var(--gold-deep); margin: 0 auto 1.5rem; }

  /* ── THE RITUAL ── */
  #ritual {
    background: linear-gradient(135deg, #0B1209 0%, #111810 50%, var(--forest) 100%);
    padding: 7rem 4rem;
  }
  .ritual-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
  .ritual-steps { display: flex; flex-direction: column; gap: 0; }
  .ritual-step { display: grid; grid-template-columns: 60px 1fr; gap: 1.5rem; padding: 2rem 0; border-bottom: 0.5px solid rgba(197,160,72,0.12); align-items: start; transition: 0.3s; cursor: default; }
  .ritual-step:hover { background: rgba(197,160,72,0.04); padding-left: 0.5rem; }
  .ritual-step:last-child { border-bottom: none; }
  .step-num { font-family: 'Cinzel', serif; font-size: 2.2rem; font-weight: 400; color: rgba(197,160,72,0.2); line-height: 1; }
  .step-content {}
  .step-title { font-family: 'Cinzel', serif; font-size: 0.88rem; font-weight: 600; letter-spacing: 0.1em; color: var(--gold-light); margin-bottom: 0.5rem; }
  .step-text { font-size: 0.8rem; font-weight: 300; line-height: 1.8; color: var(--linen-faint); }
  .ritual-art { position: relative; display: flex; align-items: center; justify-content: center; min-height: 500px; }
  .ritual-circle { width: min(320px, 80vw); height: min(320px, 80vw); border-radius: 50%; border: 0.5px solid var(--gold-line); display: flex; align-items: center; justify-content: center; position: relative; animation: slow-spin 40s linear infinite; }
  .ritual-circle::before { content: ''; position: absolute; width: min(260px, 65vw); height: min(260px, 65vw); border-radius: 50%; border: 0.5px solid rgba(197,160,72,0.15); }
  .ritual-circle::after { content: ''; position: absolute; width: min(200px, 50vw); height: min(200px, 50vw); border-radius: 50%; background: radial-gradient(circle, rgba(197,160,72,0.15) 0%, transparent 70%); }
  .ritual-text-center { text-align: center; position: relative; z-index: 2; }
  .ritual-text-center .big { font-family: 'Cinzel', serif; font-size: 1.4rem; font-weight: 600; color: var(--gold-mid); line-height: 1.4; }
  .ritual-text-center .sm { font-size: 0.65rem; letter-spacing: 0.4em; text-transform: uppercase; color: var(--linen-faint); margin-top: 0.5rem; }

  /* ── GIFTING ── */
  #gifting {
    background: linear-gradient(160deg, var(--ink) 0%, #1a1208 50%, var(--burgundy) 100%);
    padding: 7rem 4rem;
  }
  .gifting-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
  .gifting-features { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2.5rem; }
  .gift-feature { padding: 1.4rem 1.2rem; border: 0.5px solid var(--gold-line); background: rgba(197,160,72,0.04); transition: 0.3s; }
  .gift-feature:hover { background: rgba(197,160,72,0.09); border-color: var(--gold-mid); }
  .gift-icon { font-size: 1.3rem; margin-bottom: 0.6rem; }
  .gift-name { font-family: 'Cinzel', serif; font-size: 0.75rem; font-weight: 600; color: var(--gold-light); margin-bottom: 0.4rem; letter-spacing: 0.08em; }
  .gift-desc { font-size: 0.73rem; font-weight: 300; color: var(--linen-faint); line-height: 1.7; }
  .gifting-art { text-align: center; }
  .gift-box-visual { display: inline-block; position: relative; }
  .gift-box-outer { width: min(280px, 76vw); height: min(280px, 76vw); border: 1.5px solid var(--gold-mid); margin: 0 auto; display: flex; align-items: center; justify-content: center; position: relative; background: rgba(197,160,72,0.06); }
  .gift-box-inner { width: min(220px, 58vw); height: min(220px, 58vw); border: 0.5px solid var(--gold-line); display: flex; align-items: center; justify-content: center; }
  .gift-box-text { text-align: center; }
  .gift-box-text .logo-text { font-family: 'Cinzel', serif; font-size: 1.6rem; font-weight: 600; letter-spacing: 0.25em; color: var(--gold-mid); }
  .gift-box-text .sub { font-size: 0.6rem; letter-spacing: 0.4em; text-transform: uppercase; color: var(--linen-faint); margin-top: 0.4rem; }
  .corner-dec { position: absolute; width: 20px; height: 20px; }
  .corner-dec.tl { top: -1px; left: -1px; border-top: 1.5px solid var(--gold-light); border-left: 1.5px solid var(--gold-light); }
  .corner-dec.tr { top: -1px; right: -1px; border-top: 1.5px solid var(--gold-light); border-right: 1.5px solid var(--gold-light); }
  .corner-dec.bl { bottom: -1px; left: -1px; border-bottom: 1.5px solid var(--gold-light); border-left: 1.5px solid var(--gold-light); }
  .corner-dec.br { bottom: -1px; right: -1px; border-bottom: 1.5px solid var(--gold-light); border-right: 1.5px solid var(--gold-light); }

  /* ── ABOUT / FOUNDERS ── */
  #about {
    background: linear-gradient(145deg, var(--sapphire) 0%, #060f1c 30%, #080808 70%, var(--jet3) 100%);
    padding: 7rem 4rem;
  }
  .about-intro { max-width: 720px; margin: 0 auto 5rem; text-align: center; }
  .founders-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; max-width: 900px; margin: 0 auto 3rem; }
  .founder-card { background: rgba(197,160,72,0.05); border: 0.5px solid var(--gold-line); padding: 3rem 2.5rem; text-align: center; position: relative; transition: 0.4s; }
  .founder-card:hover { border-color: var(--gold-mid); background: rgba(197,160,72,0.09); transform: translateY(-6px); }
  .founder-avatar { width: 120px; height: 120px; border-radius: 50%; border: 1.5px solid var(--gold-mid); margin: 0 auto 1.5rem; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; background: linear-gradient(135deg, rgba(144,107,22,0.4) 0%, rgba(197,160,72,0.2) 100%); }
  .founder-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
  .founder-avatar-placeholder { font-family: 'Cinzel', serif; font-size: 2.2rem; font-weight: 600; color: var(--gold-mid); }
  .founder-role { font-size: 0.6rem; letter-spacing: 0.45em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 0.5rem; }
  .founder-name { font-family: 'Cinzel', serif; font-size: 1.3rem; font-weight: 600; color: var(--gold-light); margin-bottom: 0.3rem; letter-spacing: 0.06em; }
  .founder-title { font-size: 0.78rem; font-weight: 300; color: var(--linen-faint); margin-bottom: 1.2rem; }
  .founder-rule { width: 30px; height: 0.5px; background: var(--gold-mid); margin: 0 auto 1.2rem; }
  .founder-bio { font-size: 0.8rem; font-weight: 300; line-height: 1.85; color: var(--linen-dim); margin-bottom: 1.5rem; }
  .founder-contact { display: flex; flex-direction: column; gap: 0.5rem; }
  .founder-contact a { font-size: 0.72rem; color: var(--gold-mid); text-decoration: none; letter-spacing: 0.05em; transition: color 0.3s; display: flex; align-items: center; justify-content: center; gap: 0.4rem; }
  .founder-contact a:hover { color: var(--gold-light); }
  .founder-social { display: flex; justify-content: center; gap: 0.8rem; margin-top: 1rem; }
  .social-icon { width: 34px; height: 34px; border: 0.5px solid var(--gold-line); display: flex; align-items: center; justify-content: center; color: var(--gold-mid); text-decoration: none; font-size: 0.7rem; font-weight: 600; transition: 0.3s; letter-spacing: 0.1em; }
  .social-icon:hover { background: var(--gold-mid); color: var(--jet); border-color: var(--gold-mid); }

  .company-info { max-width: 700px; margin: 0 auto; border: 0.5px solid var(--gold-line); padding: 3rem; text-align: center; background: rgba(197,160,72,0.04); }
  .company-info h3 { font-family: 'Cinzel', serif; font-size: 1rem; font-weight: 600; color: var(--gold-light); letter-spacing: 0.1em; margin-bottom: 1.5rem; }
  .company-info-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1.5rem; }
  .info-item { }
  .info-label { font-size: 0.6rem; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 0.4rem; }
  .info-value { font-size: 0.82rem; font-weight: 300; color: var(--linen-dim); line-height: 1.6; }
  .info-value a { color: var(--gold-mid); text-decoration: none; }
  .info-value a:hover { color: var(--gold-light); }

  /* ── CONTACT / CTA ── */
  #contact {
    background: linear-gradient(160deg, #0c0c0c 0%, #111008 50%, #0D0D0D 100%);
    padding: 7rem 4rem;
    text-align: center;
  }
  .contact-inner { max-width: 680px; margin: 0 auto; }
  .contact-inner .section-title { font-size: clamp(2rem, 3vw, 2.8rem); }
  .contact-form { margin-top: 3.5rem; display: grid; gap: 1rem; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .form-group { display: flex; flex-direction: column; gap: 0.4rem; text-align: left; }
  .form-group label { font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-mid); }
  .form-group input, .form-group select, .form-group textarea {
    background: rgba(197,160,72,0.05); border: 0.5px solid var(--gold-line); color: var(--linen); font-family: 'Raleway', sans-serif; font-size: 0.82rem; font-weight: 300; padding: 0.85rem 1rem; outline: none; transition: border-color 0.3s; width: 100%; resize: none;
  }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold-mid); background: rgba(197,160,72,0.08); }
  .form-group select option { background: #1a1400; color: var(--linen); }
  .form-submit { margin-top: 0.5rem; }
  .form-submit button { width: 100%; padding: 1.1rem; font-family: 'Raleway', sans-serif; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.35em; text-transform: uppercase; background: var(--gold-mid); color: var(--jet); border: none; cursor: pointer; transition: 0.3s; }
  .form-submit button:hover { background: var(--gold-light); }
  .form-success { display: none; text-align: center; padding: 2rem; background: rgba(197,160,72,0.08); border: 0.5px solid var(--gold-mid); color: var(--gold-light); font-family: 'Cinzel', serif; font-size: 0.9rem; letter-spacing: 0.05em; }
  .alt-contact { margin-top: 2.5rem; font-size: 0.78rem; font-weight: 300; color: var(--linen-faint); }
  .alt-contact a { color: var(--gold-mid); text-decoration: none; }
  .alt-contact a:hover { color: var(--gold-light); }

  /* ── FOOTER ── */
  footer {
    background: var(--ink);
    border-top: 0.5px solid var(--gold-line);
    padding: 3.5rem 4rem 2rem;
  }
  .footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
  .footer-brand .logo { font-family: 'Cinzel', serif; font-size: 1.4rem; font-weight: 600; letter-spacing: 0.25em; color: var(--gold-mid); }
  .footer-brand p { font-size: 0.78rem; font-weight: 300; color: var(--linen-faint); margin-top: 0.8rem; line-height: 1.8; max-width: 260px; }
  .footer-social { display: flex; gap: 0.6rem; margin-top: 1.2rem; }
  .footer-col h4 { font-family: 'Cinzel', serif; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.2em; color: var(--gold-mid); margin-bottom: 1rem; text-transform: uppercase; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
  .footer-col ul li a { font-size: 0.78rem; font-weight: 300; color: var(--linen-faint); text-decoration: none; transition: color 0.3s; letter-spacing: 0.03em; }
  .footer-col ul li a:hover { color: var(--gold-light); }
  .footer-bottom { border-top: 0.5px solid rgba(197,160,72,0.12); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; }
  .footer-bottom p { font-size: 0.7rem; font-weight: 300; color: rgba(242,238,233,0.3); letter-spacing: 0.04em; }
  .footer-certbadges { display: flex; gap: 1.5rem; }
  .cert { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-deep); border: 0.5px solid var(--gold-deep); padding: 0.25rem 0.6rem; }

  /* ── LATTICE BG decoration ── */
  .lattice-bg { position: absolute; opacity: 0.04; width: 100%; height: 100%; top: 0; left: 0; pointer-events: none; overflow: hidden; }
  .lattice-bg svg { width: 100%; height: 100%; }

  /* ── SCROLL REVEAL ── */
  .reveal-delay-1 { transition-delay: 0.12s; }
  .reveal-delay-2 { transition-delay: 0.24s; }
  .reveal-delay-3 { transition-delay: 0.36s; }
  .reveal-delay-4 { transition-delay: 0.48s; }

  /* ── FLOATING PARTICLES ── */
  .particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
  .particle { position: absolute; width: 2px; height: 2px; border-radius: 50%; background: var(--gold-mid); opacity: 0; animation: particle-float linear infinite; }
  @keyframes particle-float {
    0% { transform: translateY(100vh) translateX(0); opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.3; }
    100% { transform: translateY(-10vh) translateX(var(--drift)); opacity: 0; }
  }

  /* ── WAVE DIVIDERS ── */
  .wave-divider { position: relative; width: 100%; overflow: hidden; line-height: 0; z-index: 2; }
  .wave-divider svg { display: block; width: 100%; }
  .wave-divider.flip { transform: scaleY(-1); }

  /* ── ELEGANT ENTRANCE TRANSITIONS ── */
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 1s cubic-bezier(0.22, 0.61, 0.36, 1),
                transform 1s cubic-bezier(0.22, 0.61, 0.36, 1);
  }
  .reveal.from-left {
    transform: translateX(-36px);
  }
  .reveal.from-right {
    transform: translateX(36px);
  }
  .reveal.visible {
    opacity: 1;
    transform: translate(0, 0);
  }

  /* ── GOLD SHIMMER LINE ANIMATION ── */
  @keyframes shimmer-line {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
  }
  .gold-rule-animate {
    width: 48px; height: 0.5px;
    background: linear-gradient(90deg, var(--gold-deep) 0%, var(--gold-light) 40%, var(--gold-mid) 60%, transparent 100%);
    background-size: 200% auto;
    animation: shimmer-line 3s linear infinite;
    margin-bottom: 1.5rem;
  }
  .gold-rule-animate.center { margin-left: auto; margin-right: auto; }

  /* ── SECTION TRANSITION: gentle fade between bg zones ── */
  section { isolation: isolate; }

  /* ── FOUNDER AVATAR SHIMMER ── */
  @keyframes avatar-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(197,160,72,0); }
    50% { box-shadow: 0 0 0 6px rgba(197,160,72,0.12); }
  }
  .founder-card:hover .founder-avatar {
    animation: avatar-pulse 2.4s ease-in-out infinite;
  }

  /* ── BOTTLE FLOAT ENHANCED ── */
  @keyframes float {
    0%   { transform: translateY(0) rotate(0deg); }
    25%  { transform: translateY(-10px) rotate(0.4deg); }
    50%  { transform: translateY(-18px) rotate(0deg); }
    75%  { transform: translateY(-8px) rotate(-0.4deg); }
    100% { transform: translateY(0) rotate(0deg); }
  }

  /* ── WAVE PATH ANIMATION ── */
  @keyframes wave-drift {
    0%   { d: path("M0,40 C200,80 400,0 600,40 C800,80 1000,0 1200,40 L1200,80 L0,80 Z"); }
    50%  { d: path("M0,60 C200,20 400,80 600,50 C800,20 1000,70 1200,40 L1200,80 L0,80 Z"); }
    100% { d: path("M0,40 C200,80 400,0 600,40 C800,80 1000,0 1200,40 L1200,80 L0,80 Z"); }
  }
  .wave-path-anim {
    animation: wave-drift 9s ease-in-out infinite;
  }

  /* ── RITUAL CIRCLE SLOW SPIN ── */
  @keyframes slow-spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
  }
  .ritual-circle { animation: slow-spin 40s linear infinite; }
  .ritual-text-center { animation: slow-spin 40s linear infinite reverse; }

  /* ════════════════════════════════════════════
     RESPONSIVE SYSTEM — mobile-first breakpoints
     ════════════════════════════════════════════ */

  /* ── BASE MOBILE SAFETY RULES (all screens) ── */
  img { max-width: 100%; height: auto; }
  * { word-break: break-word; }

  /* ── TABLET + MOBILE  ≤ 1024px ── */
  @media (max-width: 1024px) {
    nav { padding: 1rem 2rem; }
    nav.scrolled { padding: 0.8rem 2rem; }
    #hero { padding: 7rem 2rem 4rem; gap: 2rem; }
    #essence { padding: 5rem 2rem; gap: 3rem; }
    #gold { padding: 5rem 2rem; }
    #hospitality { padding: 5rem 2rem; }
    #products { padding: 5rem 2rem; }
    #ritual { padding: 5rem 2rem; }
    #gifting { padding: 5rem 2rem; }
    #about { padding: 5rem 2rem; }
    #contact { padding: 5rem 2rem; }
    footer { padding: 3rem 2rem 1.5rem; }

    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .gold-grid { grid-template-columns: repeat(2, 1fr); }
    .feature-tags { position: static; transform: none; flex-direction: row; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.5rem; }
    .feature-tag { white-space: normal; }
    .hosp-credentials { grid-template-columns: repeat(2, 1fr); }
    .essence-pillars { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }

    .hero-title { font-size: clamp(2.8rem, 5vw, 4rem); }
    .section-title { font-size: clamp(1.6rem, 3vw, 2.4rem); }
  }

  /* ── MOBILE  ≤ 768px ── */
  @media (max-width: 768px) {
    /* Nav */
    nav { padding: 0.9rem 1.25rem; }
    nav.scrolled { padding: 0.7rem 1.25rem; }
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .nav-hamburger { display: flex; cursor: pointer !important; }
    .nav-hamburger span { cursor: pointer !important; }
    .nav-links.open {
      display: flex; flex-direction: column;
      position: fixed; top: 56px; left: 0; right: 0; bottom: 0;
      background: rgba(10,9,6,0.98);
      padding: 2rem 1.5rem;
      gap: 0;
      border-top: 0.5px solid var(--gold-line);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      z-index: 998;
      overflow-y: auto;
      align-items: flex-start;
      justify-content: flex-start;
    }
    .nav-links.open li { width: 100%; border-bottom: 0.5px solid rgba(197,160,72,0.1); }
    .nav-links.open a {
      display: block; padding: 1.1rem 0;
      font-size: 1rem; letter-spacing: 0.25em; color: var(--linen-dim);
      cursor: pointer !important;
    }
    .nav-links.open a:hover { color: var(--gold-light); }
    /* Add Book a Call inside mobile menu */
    .mobile-menu-cta {
      display: block !important;
      margin-top: 1.5rem; width: 100%;
      text-align: center; padding: 1rem;
      background: var(--gold-mid); color: var(--jet);
      font-family: 'Raleway', sans-serif; font-size: 0.78rem;
      font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase;
      text-decoration: none; cursor: pointer !important;
    } var(--jet);
      font-family: 'Raleway', sans-serif; font-size: 0.78rem;
      font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase;
      text-decoration: none;
    }

    /* Hero — single column, compact */
    #hero {
      grid-template-columns: 1fr;
      padding: 6rem 1.25rem 3rem;
      min-height: auto;
      overflow: hidden;
    }
    .hero-visual { display: none; }
    .feature-tags { display: none; }
    .hero-title { font-size: clamp(2.4rem, 9vw, 3.2rem); letter-spacing: 0.02em; }
    .hero-subtitle { font-size: 0.88rem; line-height: 1.85; }
    .hero-actions { flex-direction: column; align-items: flex-start; gap: 0.9rem; }
    .btn-primary, .btn-ghost { width: 100%; text-align: center; padding: 0.95rem 1.5rem; }
    .hero-badges { flex-wrap: wrap; gap: 1.2rem; }
    .hero-divider { display: none; }
    .hero-badge .val { font-size: 0.95rem; }

    /* Essence */
    #essence { grid-template-columns: 1fr; padding: 4rem 1.25rem; gap: 2.5rem; }
    .essence-manifesto { font-size: clamp(1.2rem, 4.5vw, 1.6rem); }
    .essence-pillars { grid-template-columns: 1fr; gap: 1rem; }

    /* Gold */
    #gold { padding: 4rem 1.25rem; }
    .gold-header { margin-bottom: 2.5rem; }
    .gold-grid { grid-template-columns: 1fr; gap: 0; }
    .gold-cell { padding: 1.6rem 1.4rem; }
    .ingredients-strip { flex-wrap: wrap; }
    .ingr { flex: 1 1 33%; border-right: none; border-bottom: 0.5px solid var(--gold-line); }
    .ingr:nth-child(3) ~ .ingr { border-top: none; }

    /* Hospitality */
    #hospitality { padding: 4rem 1.25rem; }
    .hosp-layout { grid-template-columns: 1fr; gap: 2.5rem; }
    .hosp-credentials { grid-template-columns: repeat(2, 1fr); }

    /* Products */
    #products { padding: 4rem 1.25rem; }
    .products-grid { grid-template-columns: 1fr; gap: 1.2rem; }
    .product-card { padding: 0 1.5rem 2rem; }

    /* Ritual */
    #ritual { padding: 4rem 1.25rem; }
    .ritual-layout { grid-template-columns: 1fr; gap: 2.5rem; }
    .ritual-art { min-height: 280px; }
    .ritual-circle { width: 240px; height: 240px; }
    .ritual-circle::before { width: 190px; height: 190px; }

    /* Gifting */
    #gifting { padding: 4rem 1.25rem; }
    .gifting-layout { grid-template-columns: 1fr; gap: 2.5rem; }
    .gifting-features { grid-template-columns: 1fr 1fr; gap: 0.8rem; }
    .gift-box-outer { width: 220px; height: 220px; }
    .gift-box-inner { width: 172px; height: 172px; }

    /* About / Founders */
    #about { padding: 4rem 1.25rem; }
    .founders-grid { grid-template-columns: 1fr; gap: 1.5rem; max-width: 100%; }
    .founder-card { padding: 2rem 1.5rem; }
    .company-info { padding: 2rem 1.25rem; }
    .company-info-grid { grid-template-columns: 1fr; gap: 1.2rem; }

    /* Contact */
    #contact { padding: 4rem 1.25rem; }
    .form-row { grid-template-columns: 1fr; gap: 0.9rem; }
    .contact-inner { max-width: 100%; }

    /* Footer */
    footer { padding: 2.5rem 1.25rem 1.25rem; }
    .footer-top { grid-template-columns: 1fr; gap: 2rem; }
    .footer-brand p { max-width: 100%; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
    .footer-certbadges { justify-content: center; }

    /* Section titles */
    .section-title { font-size: clamp(1.5rem, 6vw, 2.2rem); }
    .section-body { font-size: 0.85rem; }

    /* Wave dividers — reduce height on mobile */
    .wave-divider svg { height: 48px !important; }

    /* Ritual image height */
    .ritual-art img { height: 160px !important; }

    /* Gift box art scale */
    .gift-box-visual { transform: scale(0.85); transform-origin: center top; }
  }

  /* ── SMALL MOBILE  ≤ 480px ── */
  @media (max-width: 480px) {
    .hero-title { font-size: clamp(2rem, 10vw, 2.8rem); }
    .hero-subtitle { font-size: 0.82rem; }

    .essence-manifesto { font-size: clamp(1.1rem, 5vw, 1.4rem); }
    .pillar-card { padding: 1.2rem 1rem; }

    .gold-cell { padding: 1.2rem 1rem; }
    .ingredients-strip { flex-direction: column; }
    .ingr { border-right: none; border-bottom: 0.5px solid var(--gold-line); }
    .ingr:last-child { border-bottom: none; }

    .use-case { padding: 1.2rem 1.2rem; }
    .hosp-credentials { grid-template-columns: 1fr 1fr; gap: 0.8rem; }

    .gifting-features { grid-template-columns: 1fr; }

    .section-title { font-size: clamp(1.4rem, 7vw, 1.9rem); }
    .hero-badge .val { font-size: 0.85rem; }
    .hero-badge .lbl { font-size: 0.55rem; }

    .btn-primary, .btn-ghost { font-size: 0.65rem; letter-spacing: 0.22em; padding: 0.85rem 1.2rem; }

    .footer-top { gap: 1.5rem; }
    .footer-col h4 { font-size: 0.62rem; }
    .footer-col ul li a { font-size: 0.72rem; }

    /* Nav logo smaller */
    .nav-logo { font-size: 1.1rem; letter-spacing: 0.22em; }

    /* Product card image height */
    .product-card > div:first-child { height: 150px !important; }

    /* Founder avatar */
    .founder-avatar { width: 100px !important; height: 100px !important; }

    /* Company info */
    .company-info-grid { gap: 1rem; }

    /* Form */
    .form-group input, .form-group select, .form-group textarea { font-size: 0.78rem; padding: 0.75rem 0.9rem; }
    .form-group label { font-size: 0.58rem; }
    .form-submit button { font-size: 0.65rem; padding: 0.95rem; }

    /* Feature tags — hide on tiny screens */
    .feature-tags { display: none; }
  }

  /* ── EXTRA TINY  ≤ 360px ── */
  @media (max-width: 360px) {
    .hero-title { font-size: 1.9rem; }
    nav { padding: 0.8rem 1rem; }
    .nav-logo { font-size: 1rem; letter-spacing: 0.18em; }
    .hero-badges { gap: 0.8rem; }
    .section-title { font-size: 1.35rem; }
    .founders-grid { gap: 1.2rem; }
    .company-info { padding: 1.5rem 1rem; }
    #contact, #about, #gifting, #ritual, #products, #hospitality, #gold, #essence {
      padding-left: 1rem; padding-right: 1rem;
    }
  }

  /* ── GOLDEN CURSOR — desktop pointer only ── */

  /* Default: cursor elements hidden; JS activates only on real mouse */
  #golden-cursor,
  #golden-cursor-ring {
    display: none;
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 99999;
    will-change: left, top;
  }

  /* Only on real mouse (hover + fine pointer) */
  @media (hover: hover) and (pointer: fine) {

    body.has-mouse *, body.has-mouse *::before, body.has-mouse *::after {
      cursor: none !important;
    }

    body.has-mouse #golden-cursor {
      display: block;
      width: 18px; height: 18px;
      transform: translate(-50%, -50%);
      transition: transform 0.06s ease, opacity 0.2s ease;
    }

    body.has-mouse #golden-cursor-ring {
      display: block;
      width: 36px; height: 36px;
      transform: translate(-50%, -50%);
      border: 1.5px solid rgba(197, 160, 72, 0.5);
      border-radius: 50%;
      transition: width 0.22s ease, height 0.22s ease, border-color 0.22s ease;
    }

    body.has-mouse.cursor-hover #golden-cursor { transform: translate(-50%, -50%) scale(1.5); }
    body.has-mouse.cursor-hover #golden-cursor-ring { width: 54px; height: 54px; border-color: rgba(232,209,143,0.85); }
    body.has-mouse.cursor-clicking #golden-cursor { transform: translate(-50%, -50%) scale(0.55); }
    body.has-mouse.cursor-clicking #golden-cursor-ring { width: 26px; height: 26px; border-color: rgba(232,209,143,1); }
  }

  /* Touch/mobile: always native cursors — never override with none */
  @media (hover: none), (pointer: coarse) {
    #golden-cursor, #golden-cursor-ring { display: none !important; }
    * { cursor: auto; }
    a, button, [onclick], label,
    .nav-hamburger, .nav-cta, .btn-primary, .btn-ghost,
    .product-btn, .social-icon, .v3d-thumb,
    input, select, textarea { cursor: pointer !important; }
  }


  /* ── MOBILE MENU LINKS ── */
  .mobile-nav-link {
    display: block;
    padding: 1.1rem 0;
    font-family: 'Raleway', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--linen-dim);
    text-decoration: none;
    border-bottom: 0.5px solid rgba(197,160,72,0.12);
    transition: color 0.25s, padding-left 0.25s;
  }
  .mobile-nav-link:hover, .mobile-nav-link:active {
    color: var(--gold-light);
    padding-left: 0.5rem;
  }
  /* Hide desktop nav-links on mobile */
  @media (max-width: 768px) {
    .nav-desktop { display: none !important; }
  }

