:root {
    --cream: #F5F0E8;
    --ivory: #FAF7F2;
    --sand: #E8DDD0;
    --taupe: #C4B5A0;
    --mocha: #8B6F5E;
    --espresso: #3D2B23;
    --gold: #C9A96E;
    --gold-light: #E8D4A8;
    --black: #1A1410;
  }

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

  html { scroll-behavior: smooth; }

  body {
    background: var(--ivory);
    color: var(--espresso);
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    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: 9999;
    opacity: 0.4;
  }

  /* ─── NAV ─── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.4rem 3rem;
    background: rgba(250,247,242,0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(196,181,160,0.25);
  }

  .nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 300;
    letter-spacing: 0.12em;
    color: var(--espresso);
    text-decoration: none;
  }

  .nav-logo span { color: var(--gold); }

  .nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
  }

  .nav-links a {
    text-decoration: none;
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--mocha);
    transition: color 0.3s;
  }

  .nav-links a:hover { color: var(--gold); }

  .nav-cta {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0.6rem 1.6rem;
    border: 1px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    transition: all 0.3s;
  }

  .nav-cta:hover {
    background: var(--gold);
    color: var(--ivory);
  }

  /* ─── HERO ─── */
  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
  }

  .hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10rem 4rem 6rem 6rem;
    position: relative;
  }

  .hero-eyebrow {
    font-size: 0.65rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    animation: fadeUp 1s ease both;
    animation-delay: 0.2s;
  }

  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.5rem, 6vw, 6.5rem);
    font-weight: 300;
    line-height: 1.0;
    color: var(--espresso);
    animation: fadeUp 1s ease both;
    animation-delay: 0.4s;
  }

  .hero-title em {
    font-style: italic;
    color: var(--gold);
  }

  .hero-subtitle {
    margin-top: 1.8rem;
    font-size: 0.9rem;
    line-height: 1.9;
    color: var(--mocha);
    max-width: 380px;
    animation: fadeUp 1s ease both;
    animation-delay: 0.6s;
  }

  .hero-actions {
    margin-top: 3rem;
    display: flex;
    gap: 1.2rem;
    align-items: center;
    animation: fadeUp 1s ease both;
    animation-delay: 0.8s;
  }

  .btn-primary {
    padding: 1rem 2.8rem;
    background: var(--espresso);
    color: var(--gold-light);
    font-family: 'Raleway', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.35s;
    position: relative;
    overflow: hidden;
  }

  .btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    transform: translateX(-100%);
    transition: transform 0.35s ease;
    z-index: 0;
  }

  .btn-primary:hover::after { transform: translateX(0); }
  .btn-primary span { position: relative; z-index: 1; }

  .btn-secondary {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--mocha);
    text-decoration: none;
    padding-bottom: 2px;
    border-bottom: 1px solid var(--taupe);
    transition: all 0.3s;
  }

  .btn-secondary:hover {
    color: var(--espresso);
    border-color: var(--espresso);
  }

  .hero-right {
    position: relative;
    background: var(--sand);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  /* Decorative veil illustration */
  .hero-visual {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-bg-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22vw;
    font-weight: 300;
    color: rgba(196,181,160,0.18);
    position: absolute;
    line-height: 1;
    user-select: none;
    letter-spacing: -0.05em;
    animation: fadeIn 2s ease both;
    animation-delay: 0.3s;
  }

  .hero-card {
    position: relative;
    z-index: 2;
    width: 72%;
    animation: scaleIn 1.2s cubic-bezier(0.16,1,0.3,1) both;
    animation-delay: 0.5s;
  }

  /* Decorative SVG veil shape */
  .veil-graphic {
    width: 100%;
    filter: drop-shadow(0 30px 60px rgba(61,43,35,0.15));
  }

  .hero-badge {
    position: absolute;
    bottom: 2.5rem;
    right: 2.5rem;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: rotate 20s linear infinite;
    z-index: 3;
  }

  .hero-badge-inner {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--ivory);
    line-height: 1;
  }

  .hero-badge-sub {
    font-size: 0.5rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(250,247,242,0.8);
    margin-top: 2px;
  }

  /* Gold line decoration */
  .hero-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 3rem;
    height: 1px;
    background: var(--gold);
    transform: translateY(-50%);
    animation: expandWidth 1s ease both;
    animation-delay: 1s;
  }

  /* ─── MARQUEE ─── */
  .marquee-section {
    background: var(--espresso);
    padding: 1.1rem 0;
    overflow: hidden;
    white-space: nowrap;
  }

  .marquee-track {
    display: inline-flex;
    gap: 0;
    animation: marquee 25s linear infinite;
  }

  .marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    padding: 0 2rem;
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold-light);
  }

  .marquee-dot {
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
  }

  /* ─── COLLECTION ─── */
  .collection {
    padding: 8rem 6rem;
    position: relative;
  }

  .section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 4rem;
  }

  .section-eyebrow {
    font-size: 0.6rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.8rem;
  }

  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 300;
    color: var(--espresso);
    line-height: 1.1;
  }

  .section-title em { font-style: italic; color: var(--gold); }

  .section-link {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--mocha);
    text-decoration: none;
    border-bottom: 1px solid var(--taupe);
    padding-bottom: 2px;
    transition: all 0.3s;
    white-space: nowrap;
    margin-bottom: 0.5rem;
  }

  .section-link:hover { color: var(--espresso); border-color: var(--espresso); }

  .products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .product-card {
    position: relative;
    cursor: pointer;
    group: true;
  }

  .product-img {
    width: 100%;
    aspect-ratio: 3/4;
    position: relative;
    overflow: hidden;
    background: var(--sand);
  }

  .product-img svg {
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
  }

  .product-card:hover .product-img svg {
    transform: scale(1.04);
  }

  .product-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 0.55rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0.3rem 0.8rem;
    background: var(--gold);
    color: var(--ivory);
  }

  .product-info {
    padding: 1.4rem 0 0;
  }

  .product-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--espresso);
    margin-bottom: 0.3rem;
  }

  .product-desc {
    font-size: 0.72rem;
    color: var(--mocha);
    line-height: 1.7;
    margin-bottom: 0.8rem;
  }

  .product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .product-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--espresso);
  }

  .product-add {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 0.45rem 1rem;
    cursor: pointer;
    background: none;
    transition: all 0.3s;
    font-family: 'Raleway', sans-serif;
  }

  .product-add:hover {
    background: var(--gold);
    color: var(--ivory);
  }

  /* ─── FEATURE STRIP ─── */
  .feature-strip {
    background: var(--sand);
    padding: 5rem 6rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    border-top: 1px solid var(--taupe);
    border-bottom: 1px solid var(--taupe);
  }

  .feature-item {
    text-align: center;
  }

  .feature-icon {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  .feature-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--espresso);
    margin-bottom: 0.4rem;
  }

  .feature-text {
    font-size: 0.72rem;
    color: var(--mocha);
    line-height: 1.7;
  }

  /* ─── ABOUT / STORY ─── */
  .story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 70vh;
  }

  .story-visual {
    background: var(--espresso);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .story-bg-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16vw;
    font-weight: 300;
    color: rgba(201,169,110,0.08);
    position: absolute;
    user-select: none;
    line-height: 1;
  }

  .story-svg {
    position: relative;
    z-index: 1;
    width: 60%;
  }

  .story-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6rem 5rem;
  }

  .story-content .section-eyebrow { margin-bottom: 1rem; }

  .story-content .section-title { margin-bottom: 2rem; }

  .story-body {
    font-size: 0.88rem;
    line-height: 2;
    color: var(--mocha);
    max-width: 440px;
  }

  .story-body p + p { margin-top: 1.2rem; }

  .story-cta {
    margin-top: 2.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--espresso);
    text-decoration: none;
    border-bottom: 1px solid var(--espresso);
    padding-bottom: 2px;
    transition: all 0.3s;
    width: fit-content;
  }

  .story-cta:hover { color: var(--gold); border-color: var(--gold); }

  /* ─── TIKTOK ─── */
  .tiktok-section {
    padding: 8rem 6rem;
    text-align: center;
    background: var(--cream);
  }

  .tiktok-section .section-eyebrow { text-align: center; margin-bottom: 0.8rem; }
  .tiktok-section .section-title { text-align: center; margin-bottom: 1.2rem; }

  .tiktok-handle {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: var(--mocha);
    margin-bottom: 4rem;
  }

  .tiktok-handle a {
    color: var(--gold);
    text-decoration: none;
  }

  .tiktok-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
  }

  .tiktok-card {
    aspect-ratio: 9/16;
    background: var(--sand);
    position: relative;
    overflow: hidden;
    cursor: pointer;
  }

  .tiktok-card::after {
    content: '▶';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: rgba(250,247,242,0.6);
    background: rgba(61,43,35,0);
    transition: all 0.3s;
  }

  .tiktok-card:hover::after {
    background: rgba(61,43,35,0.35);
    color: var(--gold);
  }

  .tiktok-card svg {
    width: 100%;
    height: 100%;
  }

  .tiktok-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2.5rem;
    background: var(--black);
    color: var(--ivory);
    text-decoration: none;
    font-size: 0.65rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    transition: all 0.3s;
  }

  .tiktok-btn:hover { background: var(--espresso); }

  /* ─── NEWSLETTER ─── */
  .newsletter {
    background: var(--espresso);
    padding: 7rem 6rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
  }

  .newsletter-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    color: var(--gold-light);
    line-height: 1.15;
  }

  .newsletter-title em { font-style: italic; color: var(--gold); }

  .newsletter-sub {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: var(--taupe);
    line-height: 1.8;
  }

  .newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .newsletter-input {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--mocha);
    padding: 0.9rem 0;
    color: var(--cream);
    font-family: 'Raleway', sans-serif;
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    outline: none;
    transition: border-color 0.3s;
  }

  .newsletter-input::placeholder { color: var(--mocha); }
  .newsletter-input:focus { border-color: var(--gold); }

  .newsletter-submit {
    margin-top: 0.5rem;
    padding: 1rem 2.5rem;
    background: var(--gold);
    color: var(--espresso);
    border: none;
    font-family: 'Raleway', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    align-self: flex-start;
    font-weight: 600;
  }

  .newsletter-submit:hover { background: var(--gold-light); }

  /* ─── FOOTER ─── */
  footer {
    background: var(--black);
    padding: 4rem 6rem 2.5rem;
  }

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

  .footer-brand-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 300;
    color: var(--gold-light);
    letter-spacing: 0.1em;
    margin-bottom: 1.2rem;
  }

  .footer-brand-logo span { color: var(--gold); }

  .footer-tagline {
    font-size: 0.75rem;
    line-height: 1.8;
    color: var(--mocha);
    max-width: 250px;
    margin-bottom: 2rem;
  }

  .footer-social {
    display: flex;
    gap: 1rem;
  }

  .footer-social a {
    width: 36px;
    height: 36px;
    border: 1px solid var(--mocha);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: var(--mocha);
    text-decoration: none;
    transition: all 0.3s;
  }

  .footer-social a:hover {
    border-color: var(--gold);
    color: var(--gold);
  }

  .footer-col-title {
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
  }

  .footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
  }

  .footer-links a {
    font-size: 0.76rem;
    color: var(--mocha);
    text-decoration: none;
    transition: color 0.3s;
  }

  .footer-links a:hover { color: var(--gold-light); }

  .footer-bottom {
    border-top: 1px solid rgba(139,111,94,0.2);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-copy {
    font-size: 0.65rem;
    color: rgba(139,111,94,0.6);
    letter-spacing: 0.05em;
  }

  .footer-tiktok {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s;
  }

  .footer-tiktok:hover { color: var(--gold-light); }

  /* ─── ANIMATIONS ─── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  @keyframes scaleIn {
    from { opacity: 0; transform: scale(0.92); }
    to { opacity: 1; transform: scale(1); }
  }

  @keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }

  @keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  @keyframes expandWidth {
    from { width: 0; }
    to { width: 3rem; }
  }

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

  /* ─── RESPONSIVE ─── */
  @media (max-width: 900px) {
    nav { padding: 1.2rem 1.5rem; }
    .nav-links { display: none; }
    .hero { grid-template-columns: 1fr; }
    .hero-right { min-height: 50vw; }
    .hero-left { padding: 8rem 2rem 4rem; }
    .collection { padding: 5rem 2rem; }
    .products-grid { grid-template-columns: 1fr 1fr; }
    .feature-strip { grid-template-columns: repeat(2,1fr); padding: 4rem 2rem; }
    .story { grid-template-columns: 1fr; }
    .story-content { padding: 4rem 2rem; }
    .tiktok-section { padding: 5rem 2rem; }
    .tiktok-grid { grid-template-columns: repeat(2,1fr); }
    .newsletter { grid-template-columns: 1fr; gap: 2rem; padding: 5rem 2rem; }
    footer { padding: 3rem 2rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  }