    /* ── CSS Variables ── */
    :root {
      --brown-deep: #1a0e08;
      --brown-dark: #2c1810;
      --brown-mid: #4a2c1a;
      --brown-warm: #6b3a24;
      --gold: #c8922a;
      --gold-light: #e0ad3e;
      --gold-pale: #f5d88a;
      --cream: #f5efe6;
      --cream-dark: #e8dfd2;
      --white: #fdfcfa;
      --text-dark: #1a0e08;
      --text-light: #f5efe6;
      --font-display: 'Cormorant Garamond', Georgia, serif;
      --font-body: 'Outfit', sans-serif;
    }

    /* ── Reset & Base ── */
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; font-size: 16px; }
    body {
      font-family: var(--font-body);
      color: var(--text-dark);
      background: var(--cream);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }
    img { max-width: 100%; display: block; }
    a { text-decoration: none; color: inherit; }
    button { font-family: inherit; cursor: pointer; border: none; background: none; }

    /* ── Utility ── */
    .container { max-width: 1280px; margin: 0 auto; padding: 0 clamp(1.5rem, 4vw, 4rem); }

    /* ── Animated African Pattern Border ── */
    .pattern-border {
      width: 100%;
      height: 48px;
      background:
        linear-gradient(135deg, var(--gold) 25%, transparent 25%) -20px 0/ 40px 40px,
        linear-gradient(225deg, var(--gold) 25%, transparent 25%) -20px 0/ 40px 40px,
        linear-gradient(315deg, var(--brown-mid) 25%, transparent 25%) 0 0/ 40px 40px,
        linear-gradient(45deg, var(--brown-mid) 25%, transparent 25%) 0 0/ 40px 40px;
      opacity: 0.6;
    }
    .pattern-border-thin {
      width: 100%;
      height: 6px;
      background: repeating-linear-gradient(
        90deg,
        var(--gold) 0, var(--gold) 12px,
        var(--brown-mid) 12px, var(--brown-mid) 18px,
        var(--cream) 18px, var(--cream) 24px
      );
    }

    /* ── Loader ── */
    #loader {
      position: fixed; inset: 0; z-index: 9999;
      background: var(--brown-deep);
      display: flex; align-items: center; justify-content: center; flex-direction: column;
      transition: opacity 0.6s ease, visibility 0.6s ease;
    }
    #loader.hidden { opacity: 0; visibility: hidden; }
    #loader .brand { font-family: var(--font-display); font-size: 2.4rem; color: var(--gold); letter-spacing: 0.08em; }
    #loader .bar-track { width: 200px; height: 2px; background: rgba(200,146,42,0.2); margin-top: 2rem; border-radius: 2px; overflow: hidden; }
    #loader .bar-fill { width: 0; height: 100%; background: var(--gold); animation: loaderFill 1.6s ease forwards; }
    @keyframes loaderFill { to { width: 100%; } }

    /* ── Navigation ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      padding: 1.2rem 0;
      transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
    }
    nav.scrolled {
      background: rgba(26,14,8,0.95);
      backdrop-filter: blur(12px);
      box-shadow: 0 2px 40px rgba(0,0,0,0.3);
      padding: 0.8rem 0;
    }
    nav .container { display: flex; align-items: center; justify-content: space-between; }
    .nav-logo {
      font-family: var(--font-display);
      font-size: 1.6rem; font-weight: 700;
      color: var(--gold);
      letter-spacing: 0.06em;
    }
    .nav-links { display: flex; gap: 2.4rem; align-items: center; }
    .nav-links a {
      font-size: 0.85rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--cream); opacity: 0.8;
      transition: opacity 0.3s ease;
      position: relative;
    }
    .nav-links a::after {
      content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
      height: 1px; background: var(--gold); transform: scaleX(0);
      transition: transform 0.3s ease;
    }
    .nav-links a:hover { opacity: 1; }
    .nav-links a:hover::after { transform: scaleX(1); }
    .nav-cta {
      background: var(--gold); color: var(--brown-deep);
      padding: 0.6rem 1.6rem; border-radius: 2px;
      font-size: 0.8rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
      transition: background 0.3s ease, transform 0.2s ease;
    }
    .nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

    /* Mobile menu */
    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 110; }
    .hamburger span { display: block; width: 24px; height: 2px; background: var(--cream); transition: all 0.3s ease; }
    .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

    @media (max-width: 768px) {
      .hamburger { display: flex; }
      .nav-links {
        position: fixed; top: 0; right: -100%; width: 75vw; height: 100vh;
        flex-direction: column; justify-content: center; gap: 2rem;
        background: var(--brown-deep); padding: 2rem;
        transition: right 0.4s cubic-bezier(0.65, 0, 0.35, 1);
      }
      .nav-links.open { right: 0; }
    }

    /* ── Hero Section ── */
    .hero {
      min-height: 100vh;
      background: var(--brown-deep);
      display: flex; align-items: center;
      position: relative; overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 80% 70% at 65% 50%, rgba(200,146,42,0.06), transparent),
        radial-gradient(ellipse 50% 70% at 20% 70%, rgba(107,58,36,0.12), transparent);
    }
    .hero-grain {
      position: absolute; 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='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
      opacity: 0.5;
    }
    /* Silk wave decoration */
    .hero-silk {
      position: absolute; bottom: 0; left: 0; right: 0; height: 40%;
      background: linear-gradient(180deg, transparent, rgba(44,24,16,0.4));
      pointer-events: none;
    }
    /* Decorative golden line accents */
    .hero-decor-line {
      position: absolute; width: 1px; background: linear-gradient(180deg, transparent, var(--gold), transparent);
      opacity: 0.08;
    }
    .hero-decor-line:nth-child(1) { left: 10%; height: 100%; top: 0; }
    .hero-decor-line:nth-child(2) { left: 30%; height: 60%; top: 20%; opacity: 0.05; }
    .hero-decor-line:nth-child(3) { right: 15%; height: 80%; top: 10%; opacity: 0.06; }

    .hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; position: relative; z-index: 2; }
    .hero-content { padding: 2rem 0; }
    .hero-tag {
      font-size: 0.7rem; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 2rem;
      display: inline-flex; align-items: center; gap: 1rem;
      opacity: 0; animation: heroFadeUp 0.8s 2s ease forwards;
      padding-top: 80px;
    }
    .hero-tag::before { content: ''; width: 40px; height: 1px; background: var(--gold); }
    .hero-title {
      font-family: var(--font-display);
      font-size: clamp(2.8rem, 5.5vw, 5rem);
      font-weight: 700; line-height: 1.08;
      color: var(--cream);
      margin-bottom: 1.5rem;
      opacity: 0; animation: heroFadeUp 0.8s 2.15s ease forwards;
    }
    .hero-title em { font-style: italic; color: var(--gold); }
    .hero-title .line { display: block; overflow: hidden; }
    .hero-desc {
      font-size: 1rem; line-height: 1.9; color: var(--cream-dark); opacity: 0;
      max-width: 440px; margin-bottom: 2.5rem; font-weight: 300;
      animation: heroFadeUp 0.8s 2.3s ease forwards;
    }
    .hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; opacity: 0; animation: heroFadeUp 0.8s 2.45s ease forwards; }
    @keyframes heroFadeUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .btn-primary {
      background: var(--gold); color: var(--brown-deep);
      padding: 1rem 2.4rem; border-radius: 2px;
      font-size: 0.8rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
      transition: all 0.3s ease;
      position: relative; overflow: hidden;
    }
    .btn-primary::before {
      content: ''; position: absolute; inset: 0;
      background: var(--gold-light); transform: translateX(-101%);
      transition: transform 0.4s ease;
    }
    .btn-primary:hover::before { transform: translateX(0); }
    .btn-primary span { position: relative; z-index: 1; }
    .btn-outline {
      border: 1px solid rgba(200,146,42,0.4); color: var(--gold);
      padding: 1rem 2.4rem; border-radius: 2px;
      font-size: 0.8rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase;
      transition: all 0.3s ease;
    }
    .btn-outline:hover { border-color: var(--gold); background: rgba(200,146,42,0.08); }

    /* ── Hero Visual: Cinematic Product Stage ── */
    .hero-visual {
      display: flex; justify-content: center; align-items: center;
      position: relative; min-height: 500px;
    }
    /* Outer gold ring pulse */
    .hero-ring {
      position: absolute; width: 420px; height: 420px;
      border: 1px solid rgba(200,146,42,0.08);
      border-radius: 50%; top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      animation: ringPulse 4s ease-in-out infinite;
    }
    .hero-ring:nth-child(2) {
      width: 340px; height: 340px;
      border-color: rgba(200,146,42,0.05);
      animation-delay: 1s;
    }
    .hero-ring:nth-child(3) {
      width: 500px; height: 500px;
      border-color: rgba(200,146,42,0.04);
      animation-delay: 2s;
    }
    @keyframes ringPulse {
      0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
      50% { transform: translate(-50%, -50%) scale(1.05); opacity: 0.5; }
    }
    /* Spotlight glow behind product */
    .hero-spotlight {
      position: absolute; width: 350px; height: 350px;
      background: radial-gradient(circle, rgba(200,146,42,0.14) 0%, rgba(200,146,42,0.04) 50%, transparent 70%);
      border-radius: 50%; top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      animation: spotlightBreath 5s ease-in-out infinite;
    }
    @keyframes spotlightBreath {
      0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
      50% { transform: translate(-50%, -50%) scale(1.15); opacity: 0.7; }
    }
    /* Floating golden particles */
    .hero-particles {
      position: absolute; inset: 0; overflow: hidden; pointer-events: none;
    }
    .particle {
      position: absolute; width: 3px; height: 3px;
      background: var(--gold); border-radius: 50%;
      opacity: 0; animation: particleFloat linear infinite;
    }
    @keyframes particleFloat {
      0% { opacity: 0; transform: translateY(0) scale(0); }
      10% { opacity: 0.6; transform: scale(1); }
      90% { opacity: 0.3; }
      100% { opacity: 0; transform: translateY(-400px) scale(0.5); }
    }
    /* Product image */
    .hero-img-wrapper {
      position: relative; z-index: 5;
      width: 400px; max-width: 85%;
      opacity: 0; animation: heroProductReveal 1.2s 2.5s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    }
    @keyframes heroProductReveal {
      from { opacity: 0; transform: translateY(60px) scale(0.92); }
      to { opacity: 1; transform: translateY(0) scale(1); }
    }
    .hero-img-wrapper img {
      border-radius: 6px;
      filter: drop-shadow(0 25px 60px rgba(0,0,0,0.5)) drop-shadow(0 0 80px rgba(200,146,42,0.08));
      animation: heroFloat 6s 3.5s ease-in-out infinite;
    }
    @keyframes heroFloat {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-14px); }
    }
    /* Small diamond decorative accents */
    .hero-diamond {
      position: absolute; width: 12px; height: 12px;
      border: 1px solid var(--gold); transform: rotate(45deg);
      opacity: 0.15;
    }
    .hero-diamond:nth-of-type(1) { top: 15%; left: 10%; animation: diamondFade 3s 3s ease infinite; }
    .hero-diamond:nth-of-type(2) { bottom: 20%; right: 8%; width: 8px; height: 8px; animation: diamondFade 4s 4s ease infinite; }
    .hero-diamond:nth-of-type(3) { top: 60%; left: 5%; width: 6px; height: 6px; animation: diamondFade 3.5s 3.5s ease infinite; }
    @keyframes diamondFade {
      0%, 100% { opacity: 0.15; } 50% { opacity: 0.4; }
    }
    /* Reflection / surface line under product */
    .hero-surface {
      position: absolute; bottom: 18%; left: 50%;
      transform: translateX(-50%);
      width: 320px; height: 1px;
      background: linear-gradient(90deg, transparent, rgba(200,146,42,0.2), transparent);
      z-index: 4;
    }
    .hero-surface::after {
      content: ''; position: absolute; top: 4px; left: 10%; right: 10%;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(200,146,42,0.08), transparent);
    }

    /* ── Scroll indicator ── */
    .scroll-hint {
      position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
      display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
      color: var(--gold); opacity: 0.5; z-index: 5;
    }
    .scroll-hint span { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; }
    .scroll-mouse {
      width: 20px; height: 32px; border: 1.5px solid var(--gold); border-radius: 10px;
      position: relative;
    }
    .scroll-mouse::after {
      content: ''; width: 2px; height: 6px; background: var(--gold);
      border-radius: 2px; position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
      animation: scrollDot 2s ease-in-out infinite;
    }
    @keyframes scrollDot {
      0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
      50% { opacity: 0.3; transform: translateX(-50%) translateY(10px); }
    }

    /* ── Stats Bar ── */
    .stats-bar {
      background: var(--brown-dark);
      padding: 3rem 0;
      border-top: 1px solid rgba(200,146,42,0.15);
      border-bottom: 1px solid rgba(200,146,42,0.15);
    }
    .stats-bar .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
    .stat-item h3 {
      font-family: var(--font-display);
      font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 700;
      color: var(--gold); margin-bottom: 0.3rem;
    }
    .stat-item p { font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--cream-dark); opacity: 0.6; font-weight: 500; }

    @media (max-width: 768px) {
      .stats-bar .container { grid-template-columns: repeat(2, 1fr); }
    }

    /* ── Section Titles ── */
    .section-tag {
      font-size: 0.7rem; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 1rem;
      display: inline-flex; align-items: center; gap: 0.8rem;
    }
    .section-tag::before { content: ''; width: 30px; height: 1px; background: var(--gold); }
    .section-title {
      font-family: var(--font-display);
      font-size: clamp(2.2rem, 4vw, 3.5rem);
      font-weight: 700; line-height: 1.15;
      margin-bottom: 1rem;
    }
    .section-subtitle {
      font-size: 1rem; line-height: 1.8; opacity: 0.6; max-width: 540px; font-weight: 300;
    }

    /* ── About Section ── */
    .about {
      padding: clamp(5rem, 10vw, 10rem) 0;
      background: var(--cream);
      position: relative;
    }
    .about .container { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem, 6vw, 8rem); align-items: center; }
    .about-visual { position: relative; }
    .about-img-block {
      position: relative;
      background: var(--brown-dark);
      border-radius: 4px;
      aspect-ratio: 4/5;
      overflow: hidden;
      display: flex; align-items: center; justify-content: center;
    }
    .about-img-block .pattern-fill {
      position: absolute; inset: 0;
      opacity: 0.08;
      background:
        repeating-linear-gradient(0deg, var(--gold) 0, var(--gold) 1px, transparent 1px, transparent 30px),
        repeating-linear-gradient(90deg, var(--gold) 0, var(--gold) 1px, transparent 1px, transparent 30px);
    }
    .about-img-block .inner-text {
      position: relative; z-index: 1; text-align: center; padding: 3rem;
    }
    .about-img-block .inner-text .big-K {
      font-family: var(--font-display); font-size: 8rem; font-weight: 700;
      color: var(--gold); line-height: 1; opacity: 0.2;
    }
    .about-img-block .inner-text p {
      font-family: var(--font-display); font-size: 1.6rem;
      color: var(--cream); font-style: italic; line-height: 1.5;
    }
    .about-accent {
      position: absolute; bottom: -20px; right: -20px;
      width: 140px; height: 140px;
      border: 2px solid var(--gold); border-radius: 2px; opacity: 0.3;
    }
    .about-text .values { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.5rem; }
    .value-item { display: flex; gap: 1rem; align-items: flex-start; }
    .value-icon {
      width: 40px; height: 40px; flex-shrink: 0;
      background: var(--gold); border-radius: 2px;
      display: flex; align-items: center; justify-content: center;
      color: var(--brown-deep); font-weight: 700; font-size: 1rem;
    }
    .value-item h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.2rem; }
    .value-item p { font-size: 0.88rem; line-height: 1.6; opacity: 0.6; font-weight: 300; }

    /* ── Products Section ── */
    .products {
      padding: clamp(5rem, 10vw, 10rem) 0;
      background: var(--brown-deep);
      position: relative;
    }
    .products::before {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(ellipse 50% 50% at 50% 0%, rgba(200,146,42,0.05), transparent);
    }
    .products .section-tag, .products .section-title, .products .section-subtitle {
      color: var(--cream);
    }
    .products-header { text-align: center; margin-bottom: 4rem; position: relative; z-index: 1; }
    .products-header .section-subtitle { margin: 0 auto; }
    .products-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 2rem; position: relative; z-index: 1;
    }
    .product-card {
      background: linear-gradient(160deg, rgba(74,44,26,0.6), rgba(26,14,8,0.9));
      border: 1px solid rgba(200,146,42,0.12);
      border-radius: 6px; overflow: hidden;
      transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.5s ease, border-color 0.5s ease;
      position: relative;
    }
    .product-card::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      opacity: 0; transition: opacity 0.5s ease;
    }
    .product-card:hover::before { opacity: 1; }
    .product-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 30px 60px rgba(0,0,0,0.4), 0 0 40px rgba(200,146,42,0.06);
      border-color: rgba(200,146,42,0.25);
    }
    .product-info { padding: 2.5rem; }
    .product-category {
      font-size: 0.65rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 0.8rem;
    }
    .product-name {
      font-family: var(--font-display);
      font-size: 1.6rem; font-weight: 700;
      color: var(--cream); margin-bottom: 0.6rem;
    }
    .product-desc {
      font-size: 0.88rem; line-height: 1.7; color: var(--cream-dark); opacity: 0.6;
      font-weight: 300;
    }

    @media (max-width: 900px) { .products-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; } }

    /* ── Process / Story Section ── */
    .process {
      padding: clamp(5rem, 10vw, 10rem) 0;
      background: var(--cream);
    }
    .process-header { text-align: center; margin-bottom: 5rem; }
    .process-header .section-subtitle { margin: 0 auto; }
    .process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
    .process-steps::before {
      content: ''; position: absolute; top: 32px; left: 12%; right: 12%;
      height: 2px;
      background: repeating-linear-gradient(90deg, var(--gold) 0, var(--gold) 8px, transparent 8px, transparent 16px);
      opacity: 0.3;
    }
    .step { text-align: center; position: relative; padding: 0 1rem; }
    .step-num {
      width: 64px; height: 64px; border-radius: 50%;
      background: var(--brown-deep); color: var(--gold);
      display: inline-flex; align-items: center; justify-content: center;
      font-family: var(--font-display); font-size: 1.4rem; font-weight: 700;
      margin-bottom: 1.5rem; position: relative; z-index: 2;
      border: 2px solid var(--gold);
    }
    .step h4 { font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; }
    .step p { font-size: 0.85rem; line-height: 1.7; opacity: 0.55; font-weight: 300; }

    @media (max-width: 768px) {
      .process-steps { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
      .process-steps::before { display: none; }
    }

    /* ── Testimonials ── */
    .testimonials {
      padding: clamp(5rem, 10vw, 8rem) 0;
      background: var(--brown-dark);
    }
    .testimonials .section-tag, .testimonials .section-title { color: var(--cream); }
    .testimonials-header { text-align: center; margin-bottom: 4rem; }
    .testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
    .testimonial-card {
      background: rgba(74,44,26,0.3);
      border: 1px solid rgba(200,146,42,0.08);
      border-radius: 6px; padding: 2.5rem;
      transition: transform 0.4s ease;
    }
    .testimonial-card:hover { transform: translateY(-4px); }
    .testimonial-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 1.2rem; letter-spacing: 0.15em; }
    .testimonial-text {
      font-family: var(--font-display); font-size: 1.1rem;
      font-style: italic; line-height: 1.7;
      color: var(--cream); opacity: 0.85; margin-bottom: 1.5rem;
    }
    .testimonial-author { display: flex; align-items: center; gap: 0.8rem; }
    .testimonial-avatar {
      width: 40px; height: 40px; border-radius: 50%;
      background: var(--gold); display: flex; align-items: center; justify-content: center;
      font-weight: 700; font-size: 0.85rem; color: var(--brown-deep);
    }
    .testimonial-name { font-size: 0.85rem; font-weight: 600; color: var(--cream); }
    .testimonial-role { font-size: 0.75rem; color: var(--cream-dark); opacity: 0.5; }

    @media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; } }

    /* ── CTA Section ── */
    .cta {
      padding: clamp(5rem, 10vw, 8rem) 0;
      background: var(--cream); text-align: center;
    }
    .cta-inner {
      background: var(--brown-deep); border-radius: 8px;
      padding: clamp(3rem, 6vw, 5rem); position: relative; overflow: hidden;
    }
    .cta-inner::before {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(ellipse 60% 60% at 50% 100%, rgba(200,146,42,0.1), transparent);
    }
    .cta-inner .section-title { color: var(--cream); position: relative; }
    .cta-inner .section-subtitle { color: var(--cream-dark); margin: 0 auto 2.5rem; position: relative; }
    .cta-form {
      display: flex; gap: 0.8rem; max-width: 480px; margin: 0 auto;
      position: relative; z-index: 1;
    }
    .cta-form input {
      flex: 1; padding: 1rem 1.4rem;
      background: rgba(245,239,230,0.08); border: 1px solid rgba(200,146,42,0.2);
      border-radius: 2px; color: var(--cream);
      font-family: var(--font-body); font-size: 0.9rem;
      outline: none; transition: border-color 0.3s ease;
    }
    .cta-form input::placeholder { color: rgba(245,239,230,0.35); }
    .cta-form input:focus { border-color: var(--gold); }
    .cta-form button {
      padding: 1rem 2rem; background: var(--gold); color: var(--brown-deep);
      border-radius: 2px; font-size: 0.8rem; font-weight: 600;
      letter-spacing: 0.12em; text-transform: uppercase;
      transition: background 0.3s ease;
    }
    .cta-form button:hover { background: var(--gold-light); }

    @media (max-width: 540px) { .cta-form { flex-direction: column; } }

    /* ── Footer ── */
    footer {
      background: var(--brown-deep);
      padding: 4rem 0 2rem;
      border-top: 1px solid rgba(200,146,42,0.1);
    }
    .footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
    .footer-brand .nav-logo { margin-bottom: 1rem; }
    .footer-brand p { font-size: 0.85rem; line-height: 1.7; color: var(--cream-dark); opacity: 0.5; max-width: 280px; font-weight: 300; }
    .footer-col h5 {
      font-size: 0.7rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 1.2rem;
    }
    .footer-col a {
      display: block; font-size: 0.88rem; color: var(--cream-dark); opacity: 0.5;
      margin-bottom: 0.7rem; transition: opacity 0.3s ease; font-weight: 300;
    }
    .footer-col a:hover { opacity: 1; }
    .footer-bottom {
      border-top: 1px solid rgba(200,146,42,0.08);
      padding-top: 2rem;
      display: flex; justify-content: space-between; align-items: center;
      font-size: 0.78rem; color: var(--cream-dark); opacity: 0.35;
    }

    @media (max-width: 768px) {
      .hero { padding-top: 5rem; }
      .hero .container { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
      .hero-content { order: 2; }
      .hero-visual { order: 1; min-height: 300px; padding-top: 1rem; }
      .hero-img-wrapper { width: 320px; }
      .hero-desc { margin: 0 auto 2.5rem; }
      .hero-buttons { justify-content: center; }
      .hero-tag { justify-content: center; }
      .hero-tag::before { display: none; }
      .hero-ring { display: none; }
      .hero-spotlight { width: 250px; height: 250px; }
      .about .container { grid-template-columns: 1fr; }
      .footer-top { grid-template-columns: 1fr 1fr; }
      .footer-bottom { flex-direction: column; gap: 0.8rem; text-align: center; }
    }

    /* ── Reveal Animations ── */
    .reveal {
      opacity: 0; transform: translateY(40px);
      transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1), transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .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; }