
  :root {
    --cream: #FAF6F0;
    --cream-dark: #F0E8DC;
    --brown: #5C3D2E;
    --brown-light: #8B6048;
    --gold: #C9A96E;
    --gold-light: #E8CFA0;
    --gold-pale: #F5ECD8;
    --text: #2A1A0E;
    --text-muted: #7A6055;
    --white: #FFFFFF;
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'DM Sans', sans-serif;
  }

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

  html { scroll-behavior: smooth; }

  body {
    background: var(--cream);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
  }

  /* ── NOISE TEXTURE OVERLAY ── */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
  }

  /* ── TYPOGRAPHY ── */
  h1, h2, h3 { font-family: var(--font-display); font-weight: 400; line-height: 1.15; }
  h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
  h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
  h3 { font-size: 1.4rem; }
  p { font-weight: 300; color: var(--text-muted); }

  /* ── UTILS ── */
  .container { max-width: 1160px; margin: 0 auto; padding: 0 2rem; }
  .gold-line {
    display: block;
    width: 48px; height: 1px;
    background: var(--gold);
    margin: 1rem 0;
  }
  .gold-line.center { margin: 1rem auto; }
  .eyebrow {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
  }

  /* ── BUTTONS ── */
  .btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--brown);
    color: var(--cream);
    padding: 14px 32px;
    border-radius: 2px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-decoration: none;
    border: none; cursor: pointer;
    transition: background 0.25s, transform 0.2s;
  }
  .btn-primary:hover { background: var(--brown-light); transform: translateY(-1px); }

  .btn-outline {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent;
    color: var(--brown);
    padding: 13px 32px;
    border-radius: 2px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-decoration: none;
    border: 1px solid var(--brown);
    cursor: pointer;
    transition: background 0.25s, color 0.25s;
  }
  .btn-outline:hover { background: var(--brown); color: var(--cream); }

  .btn-gold {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--gold);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 2px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-decoration: none;
    border: none; cursor: pointer;
    transition: background 0.25s, transform 0.2s;
  }
  .btn-gold:hover { background: #b8924d; transform: translateY(-1px); }

  /* ══════════════════════════════════════
     NAV
  ══════════════════════════════════════ */
  nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(250, 246, 240, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201, 169, 110, 0.2);
    transition: box-shadow 0.3s;
  }
  nav.scrolled { box-shadow: 0 2px 24px rgba(92,61,46,0.08); }
  .nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    max-width: 1160px; margin: 0 auto; padding: 0 2rem;
    height: 68px;
  }
  .nav-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--brown);
    text-decoration: none;
    letter-spacing: 0.02em;
  }
  .nav-logo span { color: var(--gold); }
  .nav-links { display: flex; gap: 2rem; list-style: none; }
  .nav-links a {
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--brown); }
  .nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
  .nav-hamburger span { display: block; width: 22px; height: 1.5px; background: var(--brown); transition: all 0.3s; }

  @media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }
    .nav-links.open {
      display: flex; flex-direction: column; gap: 0;
      position: absolute; top: 68px; left: 0; right: 0;
      background: var(--cream);
      border-bottom: 1px solid var(--cream-dark);
      padding: 1rem 2rem;
    }
    .nav-links.open a { padding: 0.75rem 0; border-bottom: 1px solid var(--cream-dark); }
    .nav-cta { display: none; }
  }

  /* ══════════════════════════════════════
     HERO
  ══════════════════════════════════════ */
  #hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding-top: 68px;
    position: relative;
    overflow: hidden;
  }
  .hero-pudding-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    }
  .hero-bg-accent {
    position: absolute;
    top: -80px; right: -80px;
    width: 520px; height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,169,110,0.12) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero-content { padding: 5rem 2rem 5rem 2rem; max-width: 580px; margin-left: auto; padding-right: 4rem; }
  .hero-content .eyebrow { margin-bottom: 1.5rem; }
  .hero-content h1 {
    font-style: italic;
    color: var(--brown);
    margin-bottom: 0.5rem;
  }
  .hero-content h1 em { font-style: normal; color: var(--gold); }
  .hero-content .hero-sub {
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-muted);
    margin: 1.5rem 0 2.5rem;
    max-width: 420px;
    line-height: 1.8;
  }
  .hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
  .hero-badge {
    margin-top: 3rem;
    display: flex; align-items: center; gap: 12px;
    font-size: 0.8rem; color: var(--text-muted); letter-spacing: 0.05em;
  }
  .hero-badge-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: #6DB88C;
    box-shadow: 0 0 0 3px rgba(109,184,140,0.2);
    animation: pulse 2s infinite;
  }
  @keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(109,184,140,0.2); }
    50% { box-shadow: 0 0 0 7px rgba(109,184,140,0.0); }
  }

  .hero-visual {
    position: relative;
    height: 100vh;
    display: flex; align-items: center; justify-content: center;
    background: var(--gold-pale);
    overflow: hidden;
  }
  .hero-visual-inner {
    position: relative;
    width: 380px; height: 440px;
  }
  .pudding-placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #E8CFA0 0%, #D4A96A 40%, #C4915A 70%, #A67040 100%);
    border-radius: 12px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
  }
  .pudding-placeholder::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 30%;
    background: linear-gradient(180deg, rgba(255,255,255,0.25) 0%, transparent 100%);
    border-radius: 12px 12px 50% 50%;
  }
  .pudding-placeholder-text {
    font-family: var(--font-display);
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-top: 2rem;
  }
  .hero-tag {
    position: absolute;
    background: var(--white);
    border-radius: 6px;
    padding: 10px 16px;
    box-shadow: 0 8px 32px rgba(92,61,46,0.12);
    font-size: 0.78rem;
  }
  .hero-tag-1 { top: 60px; left: -20px; }
  .hero-tag-2 { bottom: 80px; right: -20px; }
  .hero-tag .tag-label { color: var(--text-muted); font-size: 0.7rem; margin-bottom: 2px; }
  .hero-tag .tag-value { color: var(--brown); font-weight: 500; }

  @media (max-width: 900px) {
    #hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-content { padding: 5rem 2rem 3rem; margin: 0; max-width: 100%; }
    .hero-content h1 { font-size: 2.8rem; }
    .hero-visual { height: 360px; }
    .hero-visual-inner { width: 260px; height: 300px; }
  }

  /* ══════════════════════════════════════
     VALUE PROPS
  ══════════════════════════════════════ */
  #values {
    background: var(--brown);
    padding: 5rem 0;
  }
  .values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
  .value-item {
    padding: 2.5rem 2rem;
    border-right: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    transition: background 0.3s;
  }
  .value-item:last-child { border-right: none; }
  .value-item:hover { background: rgba(255,255,255,0.04); }
  .value-icon {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    display: block;
  }
  .value-item h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--gold-light);
    margin-bottom: 0.5rem;
  }
  .value-item p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
  }

  @media (max-width: 768px) {
    .values-grid { grid-template-columns: 1fr 1fr; }
    .value-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .value-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.08); }
  }

  /* ══════════════════════════════════════
     MENU SECTION
  ══════════════════════════════════════ */
  #menu {
    padding: 6rem 0;
    background: var(--cream);
  }
  .section-header { text-align: center; margin-bottom: 4rem; }
  .section-header h2 { color: var(--brown); font-style: italic; }
  .section-header p { max-width: 480px; margin: 1rem auto 0; font-size: 0.95rem; }

  .menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  .menu-card {
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(201,169,110,0.15);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .menu-card-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    }
  .menu-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(92,61,46,0.1); }

  .menu-card-img {
    height: 200px;
    position: relative;
    overflow: hidden;
  }
  .menu-card-img-inner {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-size: 3rem;
    letter-spacing: -1px;
  }
  .menu-card-body { padding: 1.5rem; }
  .menu-card-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--brown);
    margin-bottom: 0.4rem;
  }
  .menu-card-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
  }
  .menu-card-footer {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--cream-dark);
  }
  .menu-card-price {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--brown);
    font-weight: 500;
  }
  .menu-card-price span {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-family: var(--font-body);
    display: block;
    font-weight: 300;
  }
  .btn-order-sm {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--brown);
    background: var(--gold-pale);
    border: none;
    padding: 8px 16px;
    border-radius: 2px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s;
  }
  .btn-order-sm:hover { background: var(--gold-light); }

  @media (max-width: 900px) { .menu-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 560px) { .menu-grid { grid-template-columns: 1fr; } }

  /* ══════════════════════════════════════
     HOW TO ORDER
  ══════════════════════════════════════ */
  #order {
    padding: 6rem 0;
    background: var(--gold-pale);
  }
  .order-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    position: relative;
    margin-top: 3rem;
  }
  .order-steps::before {
    content: '';
    position: absolute;
    top: 28px; left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
  }
  .step-item { text-align: center; padding: 0 0.5rem; position: relative; }
  .step-num {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--white);
    border: 1.5px solid var(--gold);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.25rem;
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--gold);
    font-weight: 500;
    position: relative; z-index: 1;
    transition: background 0.3s, color 0.3s;
  }
  .step-item:hover .step-num { background: var(--gold); color: var(--white); }
  .step-title {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--brown);
    margin-bottom: 0.4rem;
    letter-spacing: 0.02em;
  }
  .step-desc { font-size: 0.75rem; color: var(--text-muted); line-height: 1.6; }

  @media (max-width: 768px) {
    .order-steps { grid-template-columns: 1fr; gap: 2rem; }
    .order-steps::before { display: none; }
  }

  /* ══════════════════════════════════════
     USE CASES
  ══════════════════════════════════════ */
  #usecase {
    padding: 6rem 0;
    background: var(--cream);
  }
  .usecase-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin-top: 3rem;
  }
  .usecase-item {
    background: var(--white);
    border: 1px solid rgba(201,169,110,0.2);
    border-radius: 4px;
    padding: 2rem 1rem;
    text-align: center;
    transition: border-color 0.3s, transform 0.3s;
  }
  .usecase-item:hover { border-color: var(--gold); transform: translateY(-2px); }
  .usecase-icon { font-size: 2rem; margin-bottom: 0.75rem; display: block; }
  .usecase-label { font-size: 0.82rem; font-weight: 500; color: var(--brown); }

  @media (max-width: 900px) { .usecase-grid { grid-template-columns: repeat(3, 1fr); } }
  @media (max-width: 480px) { .usecase-grid { grid-template-columns: repeat(2, 1fr); } }

  /* ══════════════════════════════════════
     TESTIMONIALS
  ══════════════════════════════════════ */
  #testimoni {
    padding: 6rem 0;
    background: var(--brown);
  }
  #testimoni .section-header h2 { color: var(--gold-light); }
  #testimoni .section-header p { color: rgba(255,255,255,0.5); }
  .testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
  }
  .testi-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    padding: 2rem;
    transition: background 0.3s;
  }
  .testi-card:hover { background: rgba(255,255,255,0.09); }
  .testi-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 1rem; letter-spacing: 2px; }
  .testi-text {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.05rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin-bottom: 1.5rem;
  }
  .testi-author { display: flex; align-items: center; gap: 10px; }
  .testi-avatar {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--white);
  }
  .testi-name { font-size: 0.82rem; font-weight: 500; color: rgba(255,255,255,0.7); }
  .testi-loc { font-size: 0.72rem; color: rgba(255,255,255,0.35); }

  @media (max-width: 900px) { .testi-grid { grid-template-columns: 1fr; } }

  /* ══════════════════════════════════════
     GALLERY
  ══════════════════════════════════════ */
  #gallery {
    padding: 6rem 0;
    background: var(--cream-dark);
  }
  .gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 0.75rem;
    margin-top: 3rem;
  }
  .gallery-item {
    border-radius: 4px;
    overflow: hidden;
    position: relative;
  }
  .gallery-item:first-child { grid-row: span 2; }
  .gallery-thumb {
    width: 100%;
    height: 100%;
    min-height: 160px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
  }
  .gallery-thumb.g1 { background: linear-gradient(135deg, #C4915A, #8B6048); min-height: 340px; }
  .gallery-thumb.g2 { background: linear-gradient(135deg, #7A4E3A, #5C3D2E); }
  .gallery-thumb.g3 { background: linear-gradient(135deg, #D4B896, #B09070); }
  .gallery-thumb.g4 { background: linear-gradient(135deg, #A87050, #7A5038); }
  .gallery-thumb.g5 { background: linear-gradient(135deg, #E8CFA0, #C9A96E); color: rgba(92,61,46,0.6); }

  /* ══════════════════════════════════════
     ABOUT
  ══════════════════════════════════════ */
  #tentang {
    padding: 6rem 0;
    background: var(--cream);
  }
  .about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }
  .about-img-wrap {
    position: relative;
    height: 480px;
  }
  .about-img-main {
    position: absolute;
    top: 0; left: 0;
    width: 80%; height: 85%;
    background: linear-gradient(135deg, #D4A96A, #A67040);
    border-radius: 4px;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
  }
  .about-img-accent {
    position: absolute;
    bottom: 0; right: 0;
    width: 55%; height: 50%;
    background: var(--brown);
    border-radius: 4px;
    display: flex; align-items: center; justify-content: center;
  }
  .about-quote {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1rem;
    color: var(--gold-light);
    text-align: center;
    padding: 1rem;
    line-height: 1.7;
  }
  .about-content .eyebrow { margin-bottom: 1rem; }
  .about-content h2 { color: var(--brown); font-style: italic; margin-bottom: 1.5rem; }
  .about-content p { margin-bottom: 1.25rem; font-size: 0.95rem; }
  .about-values { display: flex; gap: 2rem; margin-top: 2rem; }
  .about-val-item { text-align: center; }
  .about-val-num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--gold);
    font-weight: 300;
    line-height: 1;
  }
  .about-val-label { font-size: 0.75rem; color: var(--text-muted); margin-top: 4px; letter-spacing: 0.05em; }

  @media (max-width: 900px) {
    .about-inner { grid-template-columns: 1fr; gap: 3rem; }
    .about-img-wrap { height: 320px; }
  }

  /* ══════════════════════════════════════
     CTA BAND
  ══════════════════════════════════════ */
  #cta-band {
    padding: 6rem 0;
    background: var(--gold-pale);
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  #cta-band::before {
    content: 'Puding.ID';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    font-family: var(--font-display);
    font-size: 18vw;
    color: rgba(201,169,110,0.06);
    white-space: nowrap;
    pointer-events: none;
    font-style: italic;
  }
  #cta-band .eyebrow { margin-bottom: 1rem; }
  #cta-band h2 { font-style: italic; color: var(--brown); max-width: 600px; margin: 0 auto 0.5rem; }
  #cta-band p { font-size: 0.9rem; margin: 0.75rem auto 2rem; max-width: 400px; }
  .urgency-badge {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 0.75rem;
    color: #B85500;
    background: rgba(184,85,0,0.08);
    border: 1px solid rgba(184,85,0,0.2);
    border-radius: 20px;
    padding: 5px 14px;
    margin-top: 1.5rem;
  }
  .urgency-dot { width: 6px; height: 6px; border-radius: 50%; background: #B85500; }

  /* ══════════════════════════════════════
     FAQ
  ══════════════════════════════════════ */
  #faq {
    padding: 6rem 0;
    background: var(--cream);
  }
  .faq-list { max-width: 720px; margin: 3rem auto 0; }
  .faq-item {
    border-bottom: 1px solid var(--cream-dark);
    padding: 1.25rem 0;
  }
  .faq-q {
    display: flex; align-items: center; justify-content: space-between;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--brown);
    gap: 1rem;
    user-select: none;
  }
  .faq-q::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--gold);
    flex-shrink: 0;
    transition: transform 0.3s;
  }
  .faq-item.open .faq-q::after { transform: rotate(45deg); }
  .faq-a {
    display: none;
    font-size: 0.88rem;
    color: var(--text-muted);
    padding-top: 0.75rem;
    line-height: 1.8;
  }
  .faq-item.open .faq-a { display: block; }

  /* ══════════════════════════════════════
     FOOTER
  ══════════════════════════════════════ */
  footer {
    background: var(--text);
    padding: 4rem 0 2rem;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
  }
  .footer-brand .nav-logo { font-size: 1.6rem; display: block; margin-bottom: 1rem; color: var(--gold-light); }
  .footer-brand .nav-logo span { color: var(--gold); }
  .footer-brand p { font-size: 0.82rem; color: rgba(255,255,255,0.35); line-height: 1.8; }
  .footer-col h4 {
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.25rem;
  }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 0.6rem; }
  .footer-col ul a {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-col ul a:hover { color: var(--gold-light); }
  .footer-col p { font-size: 0.82rem; color: rgba(255,255,255,0.4); line-height: 1.8; }
  .footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex; align-items: center; justify-content: space-between;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.25);
  }

  @media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

  /* ══════════════════════════════════════
     SCROLL ANIMATIONS
  ══════════════════════════════════════ */
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(.22,.68,0,1.2), transform 0.7s cubic-bezier(.22,.68,0,1.2);
  }
  .reveal.visible { opacity: 1; transform: none; }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }
