﻿:root {
        --royal: #682a82;
        --royal-dark: #4a1d5e;
        --royal-light: #8b3aad;
        --gold: #eeca68;
        --gold-dark: #c9a23e;
        --gold-light: #f5dfa0;
        --cream: #f2f2f2;
        --black: #0a0a0a;
        --white: #ffffff;
      }

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

      html {
        scroll-behavior: smooth;
      }

      body {
        font-family: "Manrope", sans-serif;
        background: var(--black);
        color: var(--white);
        overflow-x: hidden;
        cursor: auto;
      }

      /* Custom cursor */
      .cursor {
        width: 12px;
        height: 12px;
        background: var(--gold);
        border-radius: 50%;
        position: fixed;
        pointer-events: none;
        z-index: 9999;
        transform: translate(-50%, -50%);
        transition:
          width 0.2s,
          height 0.2s,
          background 0.2s;
        mix-blend-mode: normal;
        opacity: 0;
      }
      .cursor-ring {
        width: 36px;
        height: 36px;
        border: 1px solid rgba(238, 202, 104, 0.5);
        border-radius: 50%;
        position: fixed;
        pointer-events: none;
        z-index: 9998;
        transform: translate(-50%, -50%);
        transition: all 0.12s ease;
        opacity: 0;
      }
      body:hover .cursor {
        opacity: 1;
      }

      @media (min-width: 1025px) and (pointer: fine) {
        body {
          cursor: none;
        }
        .cursor,
        .cursor-ring {
          opacity: 1;
        }
      }

      @media (max-width: 1024px), (pointer: coarse) {
        .cursor,
        .cursor-ring {
          display: none;
        }
      }

      /* Typography */
      .font-cinzel {
        font-family: "Marcellus", serif;
      }
      .font-cormorant {
        font-family: "Fraunces", serif;
      }
      .font-josefin {
        font-family: "Manrope", sans-serif;
      }

      /* Gold gradient text */
      .gold-text {
        background: linear-gradient(
          135deg,
          #c9a23e 0%,
          #eeca68 40%,
          #f5dfa0 60%,
          #c9a23e 100%
        );
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
      }

      /* 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: 9990;
        opacity: 0.4;
      }

      /* NAV */
      nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        padding: 1.5rem 4rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        transition: all 0.4s ease;
      }
      nav.scrolled {
        background: rgba(10, 10, 10, 0.92);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(238, 202, 104, 0.15);
        padding: 1rem 4rem;
      }
      .nav-logo {
        height: 36px;
      }
      .nav-links {
        display: flex;
        gap: 3rem;
        align-items: center;
      }
      .nav-links a {
        font-family: "Manrope", sans-serif;
        font-size: 0.7rem;
        letter-spacing: 0.25em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        transition: color 0.3s;
        position: relative;
      }
      .nav-links a::after {
        content: "";
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0;
        height: 1px;
        background: var(--gold);
        transition: width 0.3s ease;
      }
      .nav-links a:hover {
        color: var(--gold);
      }
      .nav-links a:hover::after {
        width: 100%;
      }
      .nav-cta {
        border: 1px solid rgba(238, 202, 104, 0.5);
        padding: 0.6rem 1.8rem;
        font-size: 0.65rem;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: var(--gold) !important;
        text-decoration: none;
        transition: all 0.3s !important;
      }
      .nav-cta:hover {
        background: var(--gold);
        color: var(--black) !important;
      }
      .nav-cta::after {
        display: none !important;
      }

      /* HERO */
      .hero {
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
        background: var(--black);
      }

      .hero-bg {
        position: absolute;
        inset: 0;
        background:
          radial-gradient(
            ellipse 80% 60% at 20% 60%,
            rgba(104, 42, 130, 0.3) 0%,
            transparent 60%
          ),
          radial-gradient(
            ellipse 60% 80% at 80% 30%,
            rgba(104, 42, 130, 0.2) 0%,
            transparent 50%
          ),
          radial-gradient(
            ellipse 40% 40% at 50% 80%,
            rgba(238, 202, 104, 0.05) 0%,
            transparent 50%
          );
      }

      .hero-photo {
        position: absolute;
        inset: 0;
        background:
          linear-gradient(
            180deg,
            rgba(10, 10, 10, 0.5) 0%,
            rgba(10, 10, 10, 0.75) 100%
          ),
          url("images/1920X860.png") center/cover no-repeat;
        opacity: 0.24;
        mix-blend-mode: screen;
        transform: scale(1.04);
      }

      .hero-orb {
        position: absolute;
        border-radius: 50%;
        filter: blur(80px);
        animation: orbFloat 8s ease-in-out infinite;
      }
      .hero-orb-1 {
        width: 500px;
        height: 500px;
        background: radial-gradient(
          circle,
          rgba(104, 42, 130, 0.4) 0%,
          transparent 70%
        );
        top: -100px;
        left: -100px;
      }
      .hero-orb-2 {
        width: 400px;
        height: 400px;
        background: radial-gradient(
          circle,
          rgba(238, 202, 104, 0.15) 0%,
          transparent 70%
        );
        bottom: 0;
        right: 0;
        animation-delay: -4s;
      }

      @keyframes orbFloat {
        0%,
        100% {
          transform: translate(0, 0) scale(1);
        }
        50% {
          transform: translate(30px, -30px) scale(1.05);
        }
      }

      /* Decorative lines */
      .hero-line {
        position: absolute;
        background: linear-gradient(
          to right,
          transparent,
          rgba(238, 202, 104, 0.3),
          transparent
        );
        height: 1px;
        width: 60%;
        left: 20%;
      }

      .hero-content {
        text-align: center;
        position: relative;
        z-index: 10;
        padding: 2rem;
      }

      .hero-eyebrow {
        font-family: "Manrope", sans-serif;
        font-size: 0.65rem;
        letter-spacing: 0.4em;
        color: var(--gold);
        text-transform: uppercase;
        margin-bottom: 2.5rem;
        opacity: 0;
        transform: translateY(20px);
        animation: fadeUp 0.8s ease 0.3s forwards;
      }

      .hero-logo-main {
        height: 100px;
        margin: 0 auto 2rem;
        opacity: 0;
        animation: fadeUp 0.8s ease 0.5s forwards;
        filter: drop-shadow(0 0 40px rgba(238, 202, 104, 0.3));
      }

      .hero-tagline {
        font-family: "Fraunces", serif;
        font-size: clamp(1.2rem, 3vw, 1.8rem);
        font-weight: 100;
        /* font-style: italic; */
        color: rgba(255, 255, 255, 0.7);
        letter-spacing: 0.1em;
        margin-bottom: 4rem;
        opacity: 0;
        animation: fadeUp 0.8s ease 0.7s forwards;
      }

      .hero-divider {
        width: 120px;
        height: 1px;
        background: linear-gradient(
          to right,
          transparent,
          var(--gold),
          transparent
        );
        margin: 0 auto 4rem;
        opacity: 0;
        animation: fadeUp 0.8s ease 0.9s forwards;
      }

      .hero-cta-group {
        display: flex;
        gap: 1.5rem;
        justify-content: center;
        opacity: 0;
        animation: fadeUp 0.8s ease 1.1s forwards;
      }

      .btn-gold {
        display: inline-block;
        background: linear-gradient(135deg, #c9a23e, #eeca68, #c9a23e);
        background-size: 200% 200%;
        color: var(--black);
        font-family: "Manrope", sans-serif;
        font-size: 0.65rem;
        letter-spacing: 0.25em;
        text-transform: uppercase;
        padding: 1rem 3rem;
        text-decoration: none;
        transition: all 0.3s ease;
        animation: shimmer 3s ease infinite;
      }
      .btn-gold:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 40px rgba(238, 202, 104, 0.3);
      }
      @keyframes shimmer {
        0% {
          background-position: 0% 50%;
        }
        50% {
          background-position: 100% 50%;
        }
        100% {
          background-position: 0% 50%;
        }
      }

      .btn-outline {
        display: inline-block;
        border: 1px solid rgba(238, 202, 104, 0.4);
        color: rgba(255, 255, 255, 0.8);
        font-family: "Manrope", sans-serif;
        font-size: 0.65rem;
        letter-spacing: 0.25em;
        text-transform: uppercase;
        padding: 1rem 3rem;
        text-decoration: none;
        transition: all 0.3s ease;
      }
      .btn-outline:hover {
        border-color: var(--gold);
        color: var(--gold);
        transform: translateY(-2px);
      }

      @keyframes fadeUp {
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      /* Scroll indicator */
      .scroll-indicator {
        position: absolute;
        bottom: 3rem;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        opacity: 0;
        animation: fadeUp 0.8s ease 1.5s forwards;
      }
      .scroll-indicator span {
        font-size: 0.55rem;
        letter-spacing: 0.3em;
        color: rgba(255, 255, 255, 0.3);
        text-transform: uppercase;
      }
      .scroll-line {
        width: 1px;
        height: 60px;
        background: linear-gradient(to bottom, var(--gold), transparent);
        animation: scrollPulse 2s ease infinite;
      }
      @keyframes scrollPulse {
        0%,
        100% {
          opacity: 0.3;
          transform: scaleY(1);
        }
        50% {
          opacity: 1;
          transform: scaleY(1.1);
        }
      }

      /* MARQUEE */
      .marquee-section {
        background: var(--royal);
        padding: 1.2rem 0;
        overflow: hidden;
        border-top: 1px solid rgba(238, 202, 104, 0.2);
        border-bottom: 1px solid rgba(238, 202, 104, 0.2);
      }
      .marquee-track {
        display: flex;
        gap: 4rem;
        white-space: nowrap;
        animation: marquee 20s linear infinite;
      }
      .marquee-item {
        font-family: "Marcellus", serif;
        font-size: 0.65rem;
        letter-spacing: 0.4em;
        color: var(--gold);
        display: flex;
        align-items: center;
        gap: 1.5rem;
        flex-shrink: 0;
      }
      .marquee-diamond {
        width: 6px;
        height: 6px;
        background: var(--gold);
        transform: rotate(45deg);
        flex-shrink: 0;
      }
      @keyframes marquee {
        0% {
          transform: translateX(0);
        }
        100% {
          transform: translateX(-50%);
        }
      }

      /* ABOUT SECTION */
      .section {
        padding: 8rem 0;
      }
      .container {
        max-width: 1300px;
        margin: 0 auto;
        padding: 0 4rem;
      }

      .section-label {
        font-family: "Manrope", sans-serif;
        font-size: 0.6rem;
        letter-spacing: 0.4em;
        color: var(--gold);
        text-transform: uppercase;
        margin-bottom: 1.5rem;
        display: flex;
        align-items: center;
        gap: 1rem;
      }
      .section-label::before {
        content: "";
        width: 30px;
        height: 1px;
        background: var(--gold);
      }

      .section-title {
        font-family: "Marcellus", serif;
        font-size: clamp(2.5rem, 5vw, 4.5rem);
        line-height: 1.1;
        font-weight: 400;
      }

      /* About grid */
      .about-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8rem;
        align-items: center;
      }

      .about-image-frame {
        position: relative;
        aspect-ratio: 4/5;
      }

      .about-image-bg {
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, var(--royal-dark), var(--royal));
        clip-path: polygon(0 5%, 95% 0, 100% 95%, 5% 100%);
      }

      .about-image-inner {
        position: absolute;
        inset: 20px;
        background: linear-gradient(
          180deg,
          rgba(104, 42, 130, 0.3) 0%,
          rgba(10, 10, 10, 0.8) 100%
        );
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .about-ornament {
        width: 200px;
        height: 200px;
        border: 1px solid rgba(238, 202, 104, 0.3);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
      }
      .about-ornament::before {
        content: "";
        position: absolute;
        inset: 15px;
        border: 1px solid rgba(238, 202, 104, 0.15);
        border-radius: 50%;
      }
      .about-ornament img {
        width: 100px;
        height: auto;
        display: block;
        object-fit: contain;
      }

      .about-corner {
        position: absolute;
        width: 30px;
        height: 30px;
        border-color: var(--gold);
        border-style: solid;
        opacity: 0.4;
      }
      .about-corner-tl {
        top: 10px;
        left: 10px;
        border-width: 1px 0 0 1px;
      }
      .about-corner-tr {
        top: 10px;
        right: 10px;
        border-width: 1px 1px 0 0;
      }
      .about-corner-bl {
        bottom: 10px;
        left: 10px;
        border-width: 0 0 1px 1px;
      }
      .about-corner-br {
        bottom: 10px;
        right: 10px;
        border-width: 0 1px 1px 0;
      }

      .about-text p {
        font-family: "Fraunces", serif;
        font-size: 1.2rem;
        line-height: 2;
        color: rgba(255, 255, 255, 0.7);
        margin-bottom: 2rem;
      }

      .about-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        margin-top: 3rem;
        padding-top: 3rem;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
      }

      .stat-number {
        font-family: "Fraunces", serif;
        font-size: 2.5rem;
        font-weight: 300;
        line-height: 1;
        margin-bottom: 0.5rem;
      }
      .stat-label {
        font-size: 0.6rem;
        letter-spacing: 0.2em;
        color: rgba(255, 255, 255, 0.9);
        text-transform: uppercase;
      }

      /* COLLECTIONS */
      .collections-bg {
        background: linear-gradient(180deg, var(--black) 0%, #0d0d0d 100%);
      }

      .collections-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2px;
        margin-top: 5rem;
      }

      .collection-card {
        position: relative;
        aspect-ratio: 3/4;
        overflow: hidden;
        cursor: pointer;
        background: var(--royal-dark);
      }

      .collection-card-bg {
        position: absolute;
        inset: 0;
        transition: transform 0.8s ease;
      }

      .collection-card-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        filter: saturate(0.9) contrast(1.05);
      }

      .card-1 .collection-card-bg {
        background: linear-gradient(
          160deg,
          #2d1040 0%,
          #682a82 50%,
          #1a0a28 100%
        );
      }
      .card-2 .collection-card-bg {
        background: linear-gradient(
          160deg,
          #1a0a28 0%,
          #4a1d5e 50%,
          #682a82 100%
        );
      }
      .card-3 .collection-card-bg {
        background: linear-gradient(
          160deg,
          #682a82 0%,
          #2d1040 50%,
          #4a1d5e 100%
        );
      }

      .collection-card:hover .collection-card-bg {
        transform: scale(1.05);
      }

      .collection-pattern {
        position: absolute;
        inset: 0;
        background:
          linear-gradient(
            180deg,
            rgba(12, 12, 12, 0.12) 0%,
            rgba(12, 12, 12, 0.76) 100%
          ),
          radial-gradient(
            circle at top right,
            rgba(238, 202, 104, 0.18),
            transparent 35%
          );
      }

      .collection-jewel {
        position: absolute;
        inset: 1.5rem 1.5rem auto auto;
        display: flex;
        align-items: flex-start;
        justify-content: flex-end;
        pointer-events: none;
      }

      .jewel-icon {
        width: 62px;
        height: 62px;
        border: 1px solid rgba(238, 202, 104, 0.35);
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        background: rgba(10, 10, 10, 0.38);
        backdrop-filter: blur(10px);
        transform: rotate(0deg);
        transition: transform 0.5s ease;
        border-radius: 999px;
      }
      .collection-card:hover .jewel-icon {
        transform: translateY(-4px);
      }
      .jewel-icon::before {
        content: "";
        position: absolute;
        inset: 8px;
        border: 1px solid rgba(238, 202, 104, 0.15);
        border-radius: 999px;
      }
      .jewel-symbol {
        transform: rotate(0deg);
        font-size: 0.72rem;
        letter-spacing: 0.28em;
        text-transform: uppercase;
        color: var(--gold);
        transition: transform 0.5s ease;
        padding-left: 0.28em;
      }
      .collection-card:hover .jewel-symbol {
        transform: rotate(0deg);
      }

      .collection-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(
          to top,
          rgba(0, 0, 0, 0.9) 0%,
          transparent 60%
        );
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 2.5rem;
        transform: translateY(20px);
        transition: transform 0.5s ease;
      }
      .collection-card:hover .collection-overlay {
        transform: translateY(0);
      }

      .collection-name {
        font-family: "Marcellus", serif;
        font-size: 1.3rem;
        letter-spacing: 0.1em;
        margin-bottom: 0.5rem;
      }
      .collection-desc {
        font-family: "Fraunces", serif;
        font-size: 0.95rem;
        color: rgba(255, 255, 255, 0.6);
        line-height: 1.6;
        margin-bottom: 1.5rem;
      }
      .collection-link {
        font-size: 0.6rem;
        letter-spacing: 0.3em;
        color: var(--gold);
        text-transform: uppercase;
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 1rem;
      }
      .collection-link::after {
        content: "";
        width: 0;
        height: 1px;
        background: var(--gold);
        transition: width 0.3s ease;
      }
      .collection-card:hover .collection-link::after {
        width: 40px;
      }

      .scroll-top {
        position: fixed;
        right: 1.5rem;
        bottom: 1.5rem;
        width: 56px;
        height: 56px;
        border-radius: 999px;
        border: 1px solid rgba(238, 202, 104, 0.45);
        background: rgba(10, 10, 10, 0.78);
        color: var(--gold);
        display: grid;
        place-items: center;
        box-shadow: 0 16px 35px rgba(0, 0, 0, 0.25);
        backdrop-filter: blur(12px);
        cursor: pointer;
        z-index: 1100;
        opacity: 0;
        visibility: hidden;
        transform: translateY(14px);
        transition:
          opacity 0.3s ease,
          transform 0.3s ease,
          visibility 0.3s ease,
          border-color 0.3s ease,
          background 0.3s ease;
      }

      .scroll-top.visible {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
      }

      .scroll-top:hover {
        background: rgba(74, 29, 94, 0.92);
        border-color: var(--gold);
      }

      .scroll-top span {
        font-size: 1.2rem;
        line-height: 1;
      }

      /* PROCESS */
      .process-section {
        background: var(--royal);
        position: relative;
        overflow: hidden;
      }
      .process-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(
          ellipse 80% 100% at 50% 50%,
          rgba(104, 42, 130, 0.5) 0%,
          rgba(74, 29, 94, 0.8) 100%
        );
      }

      .process-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 3rem;
        margin-top: 5rem;
      }

      .process-step {
        text-align: center;
        position: relative;
      }
      .process-step:not(:last-child)::after {
        content: "";
        position: absolute;
        top: 2.5rem;
        right: -1.5rem;
        width: 3rem;
        height: 1px;
        background: linear-gradient(
          to right,
          rgba(238, 202, 104, 0.4),
          transparent
        );
      }

      .step-number {
        font-family: "Fraunces", serif;
        font-size: 4rem;
        font-weight: 300;
        line-height: 1;
        margin-bottom: 1rem;
        opacity: 0.2;
      }
      .step-icon {
        width: 60px;
        height: 60px;
        border: 1px solid rgba(238, 202, 104, 0.3);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
        color: var(--gold);
        background: rgba(10, 10, 10, 0.18);
      }
      .step-icon svg,
      .next-card-icon svg {
        width: 24px;
        height: 24px;
        stroke: currentColor;
        fill: none;
        stroke-width: 1.7;
        stroke-linecap: round;
        stroke-linejoin: round;
      }
      .step-title {
        font-family: "Marcellus", serif;
        font-size: 0.9rem;
        letter-spacing: 0.15em;
        margin-bottom: 1rem;
        color: var(--gold);
      }
      .step-desc {
        font-family: "Fraunces", serif;
        font-size: 1rem;
        line-height: 1.8;
        color: rgba(255, 255, 255, 0.9);
      }

      /* VISION / MISSION */
      .vision-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4px;
      }

      .vision-card {
        padding: 5rem;
        position: relative;
        overflow: hidden;
      }
      .vision-card-1 {
        background: #111;
      }
      .vision-card-2 {
        background: var(--royal-dark);
      }

      .vision-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 60px;
        height: 60px;
        border-top: 1px solid rgba(238, 202, 104, 0.3);
        border-left: 1px solid rgba(238, 202, 104, 0.3);
      }

      .vision-quote-mark {
        font-family: "Fraunces", serif;
        font-size: 8rem;
        line-height: 0.5;
        color: rgba(238, 202, 104, 0.1);
        margin-bottom: 2rem;
      }

      .vision-text {
        font-family: "Fraunces", serif;
        font-size: 1.3rem;
        line-height: 1.9;
        color: rgba(255, 255, 255, 0.75);
      }

      /* WHAT'S NEXT */
      .next-section {
        background: linear-gradient(180deg, #0a0a0a 0%, #0d0a14 100%);
        position: relative;
        overflow: hidden;
      }

      .next-cards {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        margin-top: 5rem;
      }

      .next-card {
        border: 1px solid rgba(238, 202, 104, 0.1);
        padding: 3rem;
        position: relative;
        transition: all 0.3s ease;
        background: rgba(104, 42, 130, 0.05);
      }
      .next-card:hover {
        border-color: rgba(238, 202, 104, 0.3);
        background: rgba(104, 42, 130, 0.1);
        transform: translateY(-8px);
      }

      .next-card-icon {
        width: 64px;
        height: 64px;
        border: 1px solid rgba(238, 202, 104, 0.22);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 2rem;
        color: rgba(255, 255, 255, 0.92);
        background: rgba(255, 255, 255, 0.02);
      }
      .next-card-title {
        font-family: "Marcellus", serif;
        font-size: 1rem;
        letter-spacing: 0.1em;
        margin-bottom: 1rem;
        color: var(--gold);
      }
      .next-card-text {
        font-family: "Fraunces", serif;
        font-size: 1.05rem;
        line-height: 1.9;
        /* color: rgba(255, 255, 255, 0.6); */
      }

      .next-card-number {
        position: absolute;
        top: 2rem;
        right: 2rem;
        font-family: "Fraunces", serif;
        font-size: 5rem;
        font-weight: 300;
        color: rgba(104, 42, 130, 0.2);
        line-height: 1;
      }

      /* CUSTOMIZATION CTA */
      .cta-section {
        background: var(--royal);
        text-align: center;
        position: relative;
        overflow: hidden;
      }

      .cta-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background:
          radial-gradient(
            ellipse 60% 80% at 20% 50%,
            rgba(104, 42, 130, 0.5) 0%,
            transparent 70%
          ),
          radial-gradient(
            ellipse 60% 80% at 80% 50%,
            rgba(74, 29, 94, 0.5) 0%,
            transparent 70%
          );
      }

      .cta-big-text {
        font-family: "Marcellus", serif;
        font-size: clamp(3rem, 8vw, 7rem);
        line-height: 1;
        font-weight: 400;
        margin-bottom: 2rem;
        position: relative;
      }

      .cta-sub {
        font-family: "Fraunces", serif;
        font-size: 1.3rem;
        font-style: italic;
        color: rgba(255, 255, 255, 0.7);
        margin-bottom: 4rem;
        position: relative;
      }

      /* FOOTER */
      footer {
        background: #050505;
        padding: 5rem 0 2rem;
        border-top: 1px solid rgba(238, 202, 104, 0.1);
      }

      .footer-grid {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 5rem;
        margin-bottom: 5rem;
      }

      .footer-brand img {
        height: 40px;
        margin-bottom: 1.5rem;
      }
      .footer-brand p {
        font-family: "Fraunces", serif;
        font-size: 1rem;
        line-height: 1.9;
        color: rgba(255, 255, 255, 0.9);
        max-width: 280px;
      }

      .footer-social {
        display: flex;
        gap: 1rem;
        margin-top: 2rem;
      }
      .social-link {
        width: 36px;
        height: 36px;
        border: 1px solid rgba(255, 255, 255, 0.45);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.85rem;
        color: rgba(255, 255, 255, 1);
        transition: all 0.3s;
        text-decoration: none;
      }
      .social-link svg {
        width: 16px;
        height: 16px;
        fill: currentColor;
        display: block;
      }
      .social-link:hover {
        border-color: var(--gold);
        color: var(--gold);
      }

      .footer-col-title {
        font-family: "Marcellus", serif;
        font-size: 0.75rem;
        letter-spacing: 0.2em;
        color: var(--gold);
        margin-bottom: 1.5rem;
      }
      .footer-col ul {
        list-style: none;
      }
      .footer-col ul li {
        margin-bottom: 0.75rem;
      }
      .footer-col ul li a {
        font-size: 0.75rem;
        letter-spacing: 0.1em;
        color: rgba(255, 255, 255, 0.92);
        text-decoration: none;
        transition: color 0.3s;
      }
      .footer-col ul li a:hover {
        color: var(--gold);
      }

      .footer-contact-item {
        display: flex;
        flex-direction: column;
        gap: 0.25rem;
        margin-bottom: 1.25rem;
      }
      .footer-contact-label {
        font-size: 0.55rem;
        letter-spacing: 0.3em;
        color: rgba(255, 255, 255, 0.82);
        text-transform: uppercase;
      }
      .footer-contact-value {
        font-family: "Fraunces", serif;
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 1);
        text-decoration: none;
        transition: color 0.3s ease;
      }
      a.footer-contact-value:hover {
        color: var(--gold);
      }

      .footer-bottom {
        padding-top: 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        display: flex;
        justify-content: space-between;
        align-items: center;
      }
      .footer-copy {
        font-size: 0.6rem;
        letter-spacing: 0.15em;
        color: rgba(255, 255, 255, 0.78);
      }
      .footer-purity {
        display: flex;
        align-items: center;
        gap: 1rem;
      }
      .purity-badge {
        border: 1px solid rgba(255, 255, 255, 0.45);
        padding: 0.4rem 1rem;
        font-size: 0.55rem;
        letter-spacing: 0.25em;
        color: rgba(255, 255, 255, 0.95);
        text-transform: uppercase;
      }

      /* SCROLL REVEAL */
      .reveal {
        opacity: 0;
        transform: translateY(40px);
        transition:
          opacity 0.8s ease,
          transform 0.8s ease;
      }
      .reveal.visible {
        opacity: 1;
        transform: translateY(0);
      }

      /* Mobile hamburger */
      .hamburger {
        display: none;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        padding: 5px;
      }
      .hamburger span {
        display: block;
        width: 24px;
        height: 1px;
        background: var(--gold);
        transition: all 0.3s;
      }

      @media (max-width: 1024px) {
        nav {
          padding: 1.5rem 2rem;
          transform: translateY(0);
        }
        nav.scrolled {
          padding: 1rem 2rem;
        }
        nav.nav-hidden-mobile {
          transform: translateY(-110%);
        }
        .container {
          padding: 0 2rem;
        }
        .about-grid {
          grid-template-columns: 1fr;
          gap: 4rem;
        }
        .about-image-frame {
          aspect-ratio: 16/9;
        }
        .collections-grid {
          grid-template-columns: 1fr;
        }
        .collection-card {
          aspect-ratio: 4/3;
        }
        .process-grid {
          grid-template-columns: repeat(2, 1fr);
        }
        .vision-grid {
          grid-template-columns: 1fr;
        }
        .next-cards {
          grid-template-columns: 1fr;
        }
        .footer-grid {
          grid-template-columns: 1fr 1fr;
          gap: 3rem;
        }
      }

      @media (max-width: 768px) {
        .nav-links {
          display: none;
        }
        .hamburger {
          display: flex;
        }
        .hero-logo-main {
          height: 60px;
        }
        .section {
          padding: 5rem 0;
        }
        .vision-card {
          padding: 3rem;
        }
        .process-grid {
          grid-template-columns: 1fr;
        }
        .process-step::after {
          display: none;
        }
        .footer-grid {
          grid-template-columns: 1fr;
        }
        .footer-bottom {
          flex-direction: column;
          gap: 1rem;
          text-align: center;
        }
        .scroll-top {
          right: 1rem;
          bottom: 1rem;
          width: 50px;
          height: 50px;
        }
      }

