/*
Theme Name: Rwin Scent Studio
Theme URI: https://rwinscentstudio.com
Author: Arvin Ebrahimi
Description: Custom luxury fragrance house theme for Rwin Scent Studio
Version: 1.0
*/

  :root {
    --navy:    #0F1E35;
    --navy-mid:#151E2E;
    --navy-lt: #1C3260;
    --blue:    #1E3A5F;
    --mist:    #9DB5CF;
    --pale:    #D4E2F0;
    --off-wht: #F0EDE8;
    --white:   #FFFFFF;
    --gold:    #A8936A;
  }

  @font-face {
    font-family: 'ErasLight';
    /* fallback stack that best approximates Eras Light */
    src: local('ITC Eras LT Light'), local('Eras Light ITC'), local('ErasITC-Light');
  }

  * { margin:0; padding:0; box-sizing:border-box; }
  html { scroll-behavior:smooth; }

  body {
    background: var(--navy);
    color: var(--off-wht);
    font-family: 'Jost', sans-serif;
    font-weight: 200;
    overflow-x: hidden;
    cursor: default;
  }

  /* ─── LANGUAGE TOGGLE ─── */
  .lang-bar {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 999;
    display: flex;
    gap: .15rem;
  }
  .lang-bar button {
    background: transparent;
    border: 1px solid rgba(200,214,229,.2);
    color: var(--mist);
    font-family: 'Jost', sans-serif;
    font-size: .6rem;
    font-weight: 300;
    letter-spacing: .22em;
    padding: .35rem .8rem;
    cursor: pointer;
    transition: all .3s;
  }
  .lang-bar button.active {
    background: var(--off-wht);
    color: var(--navy);
    border-color: var(--off-wht);
  }

  /* ─── NAV ─── */
  nav {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 900;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2.5rem;
    mix-blend-mode: normal;
    transition: background .5s;
  }
  nav.scrolled {
    background: rgba(11,22,40,.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(200,214,229,.07);
  }

  /* LOGO uses Eras Light style via font stack */
  .logo {
    font-family: 'ErasLight', 'Jost', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: .55em;
    text-transform: uppercase;
    color: var(--off-wht);
    text-decoration: none;
  }

  .nav-links {
    display: flex;
    gap: 1.8rem;
    list-style: none;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .nav-links::-webkit-scrollbar { display: none; }
  .nav-links a {
    font-size: .55rem;
    font-weight: 300;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--mist);
    text-decoration: none;
    transition: color .3s;
    white-space: nowrap;
    position: relative;
  }
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -.3rem;
    left: 0; right: 0;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform .3s;
  }
  .nav-links a:hover { color: var(--off-wht); }
  .nav-links a:hover::after { transform: scaleX(1); }

  /* ─── HERO ─── */
  .hero {
    height: 100vh;
    min-height: 700px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 2.5rem 5rem;
    position: relative;
    overflow: hidden;
  }

  /* Background: real photo */
  .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: url('<?php echo get_template_directory_uri(); ?>/images/hero-bg.jpg') center center / cover no-repeat;
  }
  .hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to right,
      rgba(11,22,40,.96) 0%,
      rgba(11,22,40,.82) 45%,
      rgba(11,22,40,.35) 100%
    );
  }
  .hero-bg::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    height: 45%;
    background: linear-gradient(to top, var(--navy) 15%, transparent);
  }

  /* Big vertical rule */
  .hero-rule {
    position: absolute;
    top: 12vh; right: 30%;
    width: 1px;
    height: 40vh;
    background: linear-gradient(to bottom, transparent, rgba(168,147,106,.35), transparent);
    z-index: 1;
    animation: fadeIn 2s 1s both;
  }

  /* Rotating ring */
  .hero-ring {
    position: absolute;
    top: 50%; right: 18%;
    transform: translate(50%, -50%);
    width: 380px; height: 380px;
    border-radius: 50%;
    border: 1px solid rgba(142,164,192,.12);
    z-index: 1;
    animation: spin 40s linear infinite;
  }
  .hero-ring::before {
    content: '';
    position: absolute;
    top: -2px; left: 50%;
    width: 4px; height: 4px;
    background: var(--gold);
    border-radius: 50%;
    transform: translateX(-50%);
  }
  .hero-ring-2 {
    width: 240px; height: 240px;
    border-color: rgba(142,164,192,.07);
    animation-direction: reverse;
    animation-duration: 25s;
  }

  /* Scent number label */
  .hero-number {
    position: absolute;
    top: 18vh; left: 2.5rem;
    font-size: .55rem;
    letter-spacing: .35em;
    color: rgba(142,164,192,.4);
    writing-mode: vertical-rl;
    text-transform: uppercase;
    z-index: 2;
    animation: fadeIn 1.5s 1.2s both;
  }

  .hero-content { position: relative; z-index: 2; }

  .hero-label {
    font-size: .58rem;
    letter-spacing: .4em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeUp .8s .5s forwards;
  }

  /* Main headline: Eras Light feel */
  .hero h1 {
    font-family: 'ErasLight', 'Jost', sans-serif;
    font-size: clamp(3.2rem, 7vw, 7rem);
    font-weight: 200;
    line-height: .95;
    letter-spacing: -.01em;
    text-transform: uppercase;
    color: var(--off-wht);
    opacity: 0;
    animation: fadeUp .9s .7s forwards;
  }
  .hero h1 .italic-word {
    font-family: 'EB Garamond', serif;
    font-style: italic;
    font-size: .75em;
    color: var(--mist);
    text-transform: none;
    letter-spacing: .04em;
  }

  .hero-sub {
    margin-top: 2.5rem;
    font-size: .82rem;
    font-weight: 200;
    letter-spacing: .06em;
    line-height: 1.9;
    color: var(--mist);
    max-width: 420px;
    opacity: 0;
    animation: fadeUp .8s .95s forwards;
  }

  .hero-actions {
    margin-top: 3.5rem;
    display: flex;
    align-items: center;
    gap: 3rem;
    opacity: 0;
    animation: fadeUp .8s 1.1s forwards;
  }

  .btn-ghost {
    font-family: 'Jost', sans-serif;
    font-size: .6rem;
    font-weight: 300;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--off-wht);
    text-decoration: none;
    border-bottom: 1px solid rgba(240,237,232,.3);
    padding-bottom: .3rem;
    transition: border-color .3s, color .3s;
  }
  .btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

  .btn-solid {
    font-family: 'Jost', sans-serif;
    font-size: .6rem;
    font-weight: 300;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--navy);
    background: var(--off-wht);
    text-decoration: none;
    padding: .85rem 2.2rem;
    transition: background .3s, color .3s;
  }
  .btn-solid:hover { background: var(--gold); }

  /* ─── MANIFESTO ─── */
  .manifesto {
    padding: 12rem 2.5rem;
    display: grid;
    grid-template-columns: 1fr 2.5fr;
    gap: 4rem;
    border-top: 1px solid rgba(200,214,229,.08);
    background: #121E30;
  }

  .manifesto-label {
    font-size: .55rem;
    letter-spacing: .35em;
    text-transform: uppercase;
    color: var(--gold);
    padding-top: .5rem;
    position: sticky;
    top: 6rem;
    height: fit-content;
  }

  .manifesto-text h2 {
    font-family: 'ErasLight', 'Jost', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 3.2rem);
    font-weight: 200;
    line-height: 1.15;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--off-wht);
    margin-bottom: 3rem;
  }

  .manifesto-text p {
    font-size: .85rem;
    font-weight: 200;
    line-height: 2;
    color: var(--mist);
    max-width: 580px;
    margin-bottom: 1.5rem;
  }

  .manifesto-line {
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    margin: 3rem 0;
  }

  .manifesto-quote {
    font-family: 'EB Garamond', serif;
    font-style: italic;
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--pale);
    line-height: 1.6;
    max-width: 480px;
  }

  /* ─── COLLECTION ─── */
  .collection {
    padding: 4rem 0 10rem;
    border-top: 1px solid rgba(200,214,229,.08);
    background: #0D1828;
  }

  .collection-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0 2.5rem;
    margin-bottom: 5rem;
  }

  .collection-header h2 {
    font-family: 'ErasLight', 'Jost', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.8rem);
    font-weight: 200;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--off-wht);
  }

  .collection-header a {
    font-size: .58rem;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--mist);
    text-decoration: none;
    transition: color .3s;
  }
  .collection-header a:hover { color: var(--gold); }

  /* Horizontal scroll feel */
  .collection-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: rgba(200,214,229,.06);
  }

  .scent-card {
    background: #121F30;
    padding: 4rem 2.5rem;
    position: relative;
    overflow: hidden;
    transition: background .5s;
    cursor: pointer;
  }
  .scent-card:hover { background: #1B2840; }

  .scent-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 2px;
    background: linear-gradient(to right, var(--gold), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .6s;
  }
  .scent-card:hover::before { transform: scaleX(1); }

  .scent-number {
    font-size: .52rem;
    letter-spacing: .38em;
    color: rgba(142,164,192,.3);
    margin-bottom: 3rem;
    display: block;
  }

  .scent-family {
    font-size: .55rem;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
  }

  .scent-name {
    font-family: 'ErasLight', 'Jost', sans-serif;
    font-size: 2.2rem;
    font-weight: 200;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--off-wht);
    margin-bottom: 1.5rem;
    line-height: 1;
  }

  .scent-desc {
    font-family: 'EB Garamond', serif;
    font-style: italic;
    font-size: .95rem;
    color: var(--mist);
    line-height: 1.8;
    margin-bottom: 2rem;
  }

  .scent-notes {
    font-size: .6rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(142,164,192,.5);
    line-height: 2;
  }

  .scent-price {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(200,214,229,.1);
    font-size: .75rem;
    letter-spacing: .1em;
    color: var(--pale);
  }

  /* Big decorative letter */
  .scent-glyph {
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    font-family: 'ErasLight', 'Jost', sans-serif;
    font-size: 9rem;
    font-weight: 200;
    color: rgba(142,164,192,.04);
    line-height: 1;
    pointer-events: none;
    text-transform: uppercase;
    transition: color .5s;
  }
  .scent-card:hover .scent-glyph { color: rgba(168,147,106,.06); }

  /* ─── SHOP ─── */
  .shop {
    background: #141F32;
    padding: 10rem 2.5rem;
    border-top: 1px solid rgba(200,214,229,.08);
  }

  .shop-intro {
    text-align: center;
    margin-bottom: 7rem;
  }
  .shop-intro .eyebrow {
    font-size: .55rem;
    letter-spacing: .38em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
  }
  .shop-intro h2 {
    font-family: 'ErasLight', 'Jost', sans-serif;
    font-size: clamp(2rem, 4vw, 3.8rem);
    font-weight: 200;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--off-wht);
    margin-bottom: 1.5rem;
  }
  .shop-intro p {
    font-size: .78rem;
    color: var(--mist);
    letter-spacing: .1em;
  }

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

  .shop-item {
    position: relative;
    border: 1px solid rgba(200,214,229,.1);
    background: #132030;
    transition: border-color .4s;
    cursor: pointer;
  }
  .shop-item:hover { border-color: rgba(168,147,106,.3); }

  .shop-visual {
    height: 220px;
    background: #1E2E48;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }
  .shop-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 100%, rgba(168,147,106,.1), transparent 60%);
  }

  .shop-visual-text {
    font-family: 'ErasLight', 'Jost', sans-serif;
    font-size: 3rem;
    font-weight: 200;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: rgba(200,214,229,.12);
  }

  .shop-info {
    padding: 1.5rem;
  }
  .shop-info h4 {
    font-family: 'ErasLight', 'Jost', sans-serif;
    font-size: 1rem;
    font-weight: 200;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--off-wht);
    margin-bottom: .4rem;
  }
  .shop-info .volume {
    font-size: .58rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--mist);
    margin-bottom: 1.2rem;
  }
  .shop-info-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(200,214,229,.08);
  }
  .shop-info-footer .price { font-size: .8rem; color: var(--pale); }
  .cart-btn {
    font-family: 'Jost', sans-serif;
    font-size: .55rem;
    font-weight: 300;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--navy);
    background: var(--off-wht);
    border: none;
    padding: .5rem 1rem;
    cursor: pointer;
    transition: background .3s;
  }
  .cart-btn:hover { background: var(--gold); }

  /* ─── CONTACT ─── */
  .contact {
    padding: 12rem 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    border-top: 1px solid rgba(200,214,229,.08);
    background: #101C2E;
  }

  .contact-left h2 {
    font-family: 'ErasLight', 'Jost', sans-serif;
    font-size: clamp(1.8rem, 3vw, 3rem);
    font-weight: 200;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--off-wht);
    line-height: 1.1;
    margin-bottom: 3rem;
  }

  .contact-left p {
    font-size: .82rem;
    font-weight: 200;
    line-height: 2;
    color: var(--mist);
    margin-bottom: 3rem;
    max-width: 380px;
  }

  .contact-links { display: flex; flex-direction: column; gap: 1.2rem; }
  .contact-links a {
    font-size: .62rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--mist);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: color .3s;
  }
  .contact-links a::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 1px;
    background: var(--gold);
    flex-shrink: 0;
  }
  .contact-links a:hover { color: var(--off-wht); }

  /* Form */
  .contact-form { display: flex; flex-direction: column; gap: 2rem; }

  .field { display: flex; flex-direction: column; gap: .6rem; }
  .field label {
    font-size: .55rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: rgba(142,164,192,.5);
  }
  .field input,
  .field textarea,
  .field select {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(200,214,229,.15);
    padding: .9rem 0;
    font-family: 'Jost', sans-serif;
    font-size: .85rem;
    font-weight: 200;
    color: var(--off-wht);
    outline: none;
    transition: border-color .4s;
    width: 100%;
    letter-spacing: .05em;
  }
  .field input::placeholder,
  .field textarea::placeholder { color: rgba(142,164,192,.2); }
  .field input:focus,
  .field textarea:focus { border-color: var(--gold); }
  .field textarea { resize: none; height: 90px; }
  .field select { color: var(--mist); }
  .field select option { background: var(--navy-mid); }

  .form-send {
    font-family: 'Jost', sans-serif;
    font-size: .6rem;
    font-weight: 300;
    letter-spacing: .32em;
    text-transform: uppercase;
    color: var(--navy);
    background: var(--off-wht);
    border: none;
    padding: 1rem 2.8rem;
    cursor: pointer;
    transition: background .3s;
    align-self: flex-start;
    margin-top: .5rem;
  }
  .form-send:hover { background: var(--gold); }

  /* ─── FOOTER ─── */
  footer {
    border-top: 1px solid rgba(200,214,229,.08);
    padding: 5rem 2.5rem 3rem;
    background: #0C1622;
  }

  .footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 5rem;
  }

  .footer-logo-block .f-logo {
    font-family: 'ErasLight', 'Jost', sans-serif;
    font-size: 1.1rem;
    font-weight: 200;
    letter-spacing: .5em;
    text-transform: uppercase;
    color: var(--off-wht);
    display: block;
    margin-bottom: .6rem;
  }
  .footer-logo-block .f-sub {
    font-size: .55rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--mist);
  }

  .footer-cols { display: flex; gap: 5rem; }
  .footer-col h5 {
    font-size: .52rem;
    letter-spacing: .32em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
  }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .8rem; }
  .footer-col a {
    font-size: .72rem;
    font-weight: 200;
    color: rgba(142,164,192,.5);
    text-decoration: none;
    letter-spacing: .06em;
    transition: color .3s;
  }
  .footer-col a:hover { color: var(--off-wht); }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(200,214,229,.06);
    font-size: .55rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(142,164,192,.25);
  }

  /* ─── REVEAL ─── */
  .reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity .9s, transform .9s;
  }
  .reveal.up { opacity: 1; transform: translateY(0); }
  /* Show reveal elements inside sections that are directly navigated to */
  #education .reveal,
  #bespoke .reveal,
  #manifesto .reveal,
  #shop .reveal,
  #contact .reveal,
  #birthday-club .reveal { opacity: 1; transform: translateY(0); }

  /* ─── ANIMATIONS ─── */
  @keyframes fadeUp {
    from { opacity:0; transform:translateY(20px); }
    to   { opacity:1; transform:translateY(0); }
  }
  @keyframes fadeIn {
    from { opacity:0; } to { opacity:1; }
  }
  @keyframes spin {
    from { transform: translate(50%,-50%) rotate(0deg); }
    to   { transform: translate(50%,-50%) rotate(360deg); }
  }


  /* ─── PAGE SYSTEM ─── */
  .page-about {
    display: none;
    min-height: 100vh;
  }

  .back-btn {
    position: fixed;
    top: 2rem;
    left: 2.5rem;
    z-index: 950;
    display: none;
    align-items: center;
    gap: .7rem;
    font-family: 'Jost', sans-serif;
    font-size: .6rem;
    font-weight: 300;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--mist);
    cursor: pointer;
    background: rgba(11,22,40,.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(200,214,229,.1);
    padding: .6rem 1.2rem;
    text-decoration: none;
    transition: color .3s, border-color .3s;
  }
  .back-btn:hover { color: var(--off-wht); border-color: var(--gold); }
  .back-btn.visible { display: flex; }
  .back-btn::before {
    content: '←';
    font-size: .8rem;
  }

  .main-content.hidden > *:not(.page-about) {
    display: none !important;
  }
  .main-content.hidden .page-about {
    display: block !important;
  }


  /* ─── COLLECTION PAGE ─── */
  .page-collection {
    display: none;
    min-height: 100vh;
    background: var(--navy);
    padding-top: 8rem;
  }

  .collection-page-hero {
    padding: 4rem 2.5rem 5rem;
    border-bottom: 1px solid rgba(200,214,229,.08);
  }

  .collection-page-hero .eyebrow {
    font-size: .55rem;
    letter-spacing: .38em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    display: block;
  }

  .collection-page-hero h1 {
    font-family: 'ErasLight','Jost',sans-serif;
    font-size: clamp(2.5rem, 5vw, 5rem);
    font-weight: 200;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--off-wht);
    line-height: 1;
    margin-bottom: 1.5rem;
  }

  .collection-page-hero p {
    font-size: .85rem;
    font-weight: 200;
    color: var(--mist);
    letter-spacing: .06em;
    line-height: 1.9;
    max-width: 500px;
  }

  .collection-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(200,214,229,.06);
    margin: 0;
  }

  .collection-page-item {
    background: #0F1822;
    display: flex;
    flex-direction: column;
  }

  .collection-page-photo {
    height: 420px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
  }

  .collection-page-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,16,24,.9) 0%, transparent 60%);
  }

  .collection-page-info {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: .8rem;
    border-top: 1px solid rgba(200,214,229,.06);
  }

  .collection-page-family {
    font-size: .52rem;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--gold);
  }

  .collection-page-name {
    font-family: 'ErasLight','Jost',sans-serif;
    font-size: 1.8rem;
    font-weight: 200;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--off-wht);
    line-height: 1;
  }

  .collection-page-desc {
    font-family: 'EB Garamond', serif;
    font-style: italic;
    font-size: .9rem;
    color: var(--mist);
    line-height: 1.8;
  }

  .collection-page-details {
    margin-top: auto;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(200,214,229,.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .collection-page-price {
    font-size: .85rem;
    color: var(--pale);
    letter-spacing: .06em;
  }

  .collection-order-btn {
    font-family: 'Jost',sans-serif;
    font-size: .55rem;
    font-weight: 300;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--navy);
    background: var(--off-wht);
    border: none;
    padding: .55rem 1.2rem;
    cursor: pointer;
    transition: background .3s;
  }
  .collection-order-btn:hover { background: var(--gold); }

  .discovery-card {
    background: #0F1822;
    grid-column: span 3;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 0;
    border-top: 1px solid rgba(200,214,229,.06);
  }

  .discovery-visual {
    background: linear-gradient(135deg, #0F1B2D, #1E2E48);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 3rem;
  }

  .discovery-info {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    border-left: 1px solid rgba(200,214,229,.06);
  }

  .discovery-info h3 {
    font-family: 'ErasLight','Jost',sans-serif;
    font-size: 2rem;
    font-weight: 200;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--off-wht);
  }

  .discovery-info p {
    font-size: .82rem;
    font-weight: 200;
    line-height: 1.9;
    color: var(--mist);
    max-width: 400px;
  }

  .discovery-info .price {
    font-size: 1rem;
    color: var(--gold);
    letter-spacing: .08em;
  }

  @media (max-width: 900px) {
    .collection-page-grid { grid-template-columns: 1fr; }
    .discovery-card { grid-column: span 1; grid-template-columns: 1fr; }
  }


  /* ─── PRODUCT PAGE ─── */
  .page-product {
    display: none;
    min-height: 100vh;
    background: var(--navy);
    padding-top: 6rem;
  }

  .product-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 70vh;
  }

  .product-photo {
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 500px;
  }
  .product-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 60%, var(--navy) 100%);
  }

  .product-info {
    padding: 4rem 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
  }

  .product-tag {
    font-size: .52rem;
    letter-spacing: .35em;
    text-transform: uppercase;
    color: var(--gold);
  }

  .product-title {
    font-family: 'ErasLight','Jost',sans-serif;
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 200;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--off-wht);
    line-height: .95;
  }

  .product-subtitle {
    font-family: 'EB Garamond', serif;
    font-style: italic;
    font-size: 1rem;
    color: var(--mist);
    letter-spacing: .04em;
  }

  .product-desc {
    font-size: .85rem;
    font-weight: 200;
    line-height: 2;
    color: var(--mist);
    max-width: 420px;
    border-left: 1px solid rgba(168,147,106,.3);
    padding-left: 1.5rem;
  }

  .product-meta {
    display: flex;
    gap: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(200,214,229,.08);
  }

  .product-meta-item {
    display: flex;
    flex-direction: column;
    gap: .3rem;
  }
  .product-meta-label {
    font-size: .48rem;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: rgba(157,181,207,.4);
  }
  .product-meta-val {
    font-size: .75rem;
    font-weight: 200;
    letter-spacing: .1em;
    color: var(--pale);
  }

  .product-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(200,214,229,.08);
  }
  .product-price-big {
    font-family: 'ErasLight','Jost',sans-serif;
    font-size: 1.6rem;
    font-weight: 200;
    color: var(--gold);
    letter-spacing: .04em;
  }
  .product-order-btn {
    font-family: 'Jost',sans-serif;
    font-size: .62rem;
    font-weight: 300;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--navy);
    background: var(--off-wht);
    border: none;
    padding: 1rem 2.5rem;
    cursor: pointer;
    transition: background .3s;
  }
  .product-order-btn:hover { background: var(--gold); }

  /* Pyramid */
  .product-pyramid {
    padding: 5rem 2.5rem;
    border-top: 1px solid rgba(200,214,229,.08);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
  }

  .pyramid-left h3 {
    font-family: 'ErasLight','Jost',sans-serif;
    font-size: 1.5rem;
    font-weight: 200;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--off-wht);
    margin-bottom: 3rem;
  }

  .pyramid-notes {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
  }

  .pyramid-tier {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
  }

  .pyramid-tier-label {
    width: 80px;
    flex-shrink: 0;
  }
  .pyramid-tier-label span {
    font-size: .48rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: .3rem;
  }
  .pyramid-tier-label small {
    font-size: .42rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: rgba(157,181,207,.3);
  }

  .pyramid-tier-line {
    width: 1px;
    background: linear-gradient(to bottom, var(--gold), rgba(168,147,106,.1));
    align-self: stretch;
    flex-shrink: 0;
    min-height: 40px;
  }

  .pyramid-tier-notes {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    padding-top: .2rem;
  }

  .note-pill {
    font-size: .65rem;
    font-weight: 200;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--pale);
    background: rgba(200,214,229,.06);
    border: 1px solid rgba(200,214,229,.1);
    padding: .4rem .9rem;
    transition: border-color .3s;
  }
  .note-pill:hover { border-color: var(--gold); }

  /* Seasons */
  .pyramid-right h3 {
    font-family: 'ErasLight','Jost',sans-serif;
    font-size: 1.5rem;
    font-weight: 200;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--off-wht);
    margin-bottom: 3rem;
  }

  .seasons-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 1px;
    background: rgba(200,214,229,.06);
    margin-bottom: 2.5rem;
  }

  .season-item {
    background: #0F1E30;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    align-items: flex-start;
  }
  .season-icon { font-size: 1.5rem; }
  .season-name {
    font-size: .62rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--mist);
  }
  .season-bar {
    height: 2px;
    background: var(--gold);
    border-radius: 1px;
    transition: width .5s;
  }

  .product-family-tag {
    display: inline-block;
    font-size: .55rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(168,147,106,.3);
    padding: .6rem 1.2rem;
    margin-bottom: .5rem;
  }

  .family-desc {
    font-size: .78rem;
    font-weight: 200;
    line-height: 1.9;
    color: var(--mist);
    margin-top: 1rem;
  }

  @media (max-width: 900px) {
    .product-hero { grid-template-columns: 1fr; }
    .product-pyramid { grid-template-columns: 1fr; gap: 3rem; }
    .seasons-grid { grid-template-columns: repeat(2,1fr); }
  }



  /* ─── BIRTHDAY CLUB ─── */
  .birthday-club {
    padding: 10rem 2.5rem;
    border-top: 1px solid rgba(200,214,229,.08);
    background: #0A1520;
    position: relative;
    overflow: hidden;
  }

  .birthday-club::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(168,147,106,.05) 0%, transparent 70%);
    pointer-events: none;
  }

  .club-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: center;
    position: relative;
    z-index: 2;
  }

  .club-left {}

  .club-eyebrow {
    font-size: .55rem;
    letter-spacing: .38em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2rem;
    display: block;
  }

  .club-left h2 {
    font-family: 'ErasLight','Jost',sans-serif;
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 200;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--off-wht);
    line-height: 1.1;
    margin-bottom: 2rem;
  }

  .club-left p {
    font-size: .85rem;
    font-weight: 200;
    line-height: 2;
    color: var(--mist);
    max-width: 400px;
    margin-bottom: 1.5rem;
  }

  .club-how {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2.5rem;
  }

  .club-step {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
  }

  .club-step-num {
    font-family: 'ErasLight','Jost',sans-serif;
    font-size: 1.4rem;
    font-weight: 200;
    color: rgba(168,147,106,.3);
    line-height: 1;
    flex-shrink: 0;
    width: 2rem;
  }

  .club-step-text {}
  .club-step-text h4 {
    font-size: .72rem;
    font-weight: 300;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--off-wht);
    margin-bottom: .3rem;
  }
  .club-step-text p {
    font-size: .75rem;
    font-weight: 200;
    line-height: 1.7;
    color: var(--mist);
  }

  /* Right: code input form */
  .club-right {
    background: #0F1E30;
    padding: 3.5rem;
    border: 1px solid rgba(200,214,229,.06);
    position: relative;
  }

  .club-right::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(to right, var(--gold), transparent);
  }

  .club-form-title {
    font-family: 'ErasLight','Jost',sans-serif;
    font-size: 1.3rem;
    font-weight: 200;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--off-wht);
    margin-bottom: .6rem;
  }

  .club-form-sub {
    font-size: .75rem;
    font-weight: 200;
    color: var(--mist);
    margin-bottom: 3rem;
    line-height: 1.8;
  }

  .club-form {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
  }

  .club-field {
    display: flex;
    flex-direction: column;
    gap: .5rem;
  }

  .club-field label {
    font-size: .52rem;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: rgba(157,181,207,.45);
  }

  .club-field input,
  .club-field select {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(200,214,229,.12);
    padding: .9rem 0;
    font-family: 'Jost',sans-serif;
    font-size: .9rem;
    font-weight: 200;
    color: var(--off-wht);
    outline: none;
    transition: border-color .3s;
    width: 100%;
    letter-spacing: .06em;
  }
  .club-field input:focus { border-color: var(--gold); }
  .club-field select option { background: #0F1E30; }

  /* Code input special style */
  .club-code-input {
    font-family: 'ErasLight','Jost',sans-serif !important;
    font-size: 1.4rem !important;
    letter-spacing: .35em !important;
    text-transform: uppercase;
    color: var(--gold) !important;
    text-align: center;
  }
  .club-code-input::placeholder {
    color: rgba(168,147,106,.2) !important;
    font-size: 1rem !important;
    letter-spacing: .2em !important;
  }

  .club-bday-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .club-submit {
    font-family: 'Jost',sans-serif;
    font-size: .62rem;
    font-weight: 300;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--navy);
    background: var(--off-wht);
    border: none;
    padding: 1.1rem 2.5rem;
    cursor: pointer;
    transition: background .3s;
    width: 100%;
    margin-top: .5rem;
  }
  .club-submit:hover { background: var(--gold); }

  .club-privacy {
    font-size: .55rem;
    font-weight: 200;
    letter-spacing: .08em;
    color: rgba(157,181,207,.25);
    text-align: center;
    line-height: 1.8;
  }

  .club-success {
    display: none;
    text-align: center;
    padding: 2rem;
  }
  .club-success-icon { font-size: 3rem; margin-bottom: 1rem; }
  .club-success h4 {
    font-family: 'ErasLight','Jost',sans-serif;
    font-size: 1.2rem;
    font-weight: 200;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .8rem;
  }
  .club-success p {
    font-size: .78rem;
    color: var(--mist);
    line-height: 1.9;
  }

  @media (max-width: 900px) {
    .club-inner { grid-template-columns: 1fr; gap: 3rem; }
    .club-bday-row { grid-template-columns: 1fr 1fr; }
  }


  /* ─── MODAL ─── */
  .modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.85);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
  }
  .modal-overlay.open { display: flex; }

  .modal-box {
    background: #0F1E30;
    border: 1px solid rgba(200,214,229,.1);
    padding: 3rem;
    width: 100%;
    max-width: 580px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
  }
  .modal-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(to right, var(--gold), transparent);
  }
  .modal-close {
    position: absolute;
    top: 1.2rem; right: 1.5rem;
    background: none;
    border: none;
    color: var(--mist);
    font-size: 1.2rem;
    cursor: pointer;
    line-height: 1;
    transition: color .3s;
  }
  .modal-close:hover { color: var(--off-wht); }
  .modal-title {
    font-family: 'ErasLight','Jost',sans-serif;
    font-size: 1.3rem;
    font-weight: 200;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--off-wht);
    margin-bottom: .5rem;
  }
  .modal-sub {
    font-size: .72rem;
    color: var(--mist);
    margin-bottom: 2.5rem;
    line-height: 1.8;
  }
  .modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .modal-field {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    margin-bottom: 1.5rem;
  }
  .modal-field label {
    font-size: .52rem;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: rgba(157,181,207,.45);
  }
  .modal-field input,
  .modal-field select,
  .modal-field textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(200,214,229,.15);
    padding: .8rem 0;
    font-family: 'Jost',sans-serif;
    font-size: .88rem;
    font-weight: 200;
    color: var(--off-wht);
    outline: none;
    transition: border-color .3s;
    width: 100%;
  }
  .modal-field input:focus,
  .modal-field textarea:focus { border-color: var(--gold); }
  .modal-field select option { background: #0F1E30; }
  .modal-field textarea { resize: none; height: 80px; }
  .modal-submit {
    font-family: 'Jost',sans-serif;
    font-size: .62rem;
    font-weight: 300;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--navy);
    background: var(--off-wht);
    border: none;
    padding: 1rem;
    cursor: pointer;
    width: 100%;
    transition: background .3s;
    margin-top: .5rem;
  }
  .modal-submit:hover { background: var(--gold); }
  .modal-success {
    display: none;
    text-align: center;
    padding: 2rem 0;
  }
  .modal-success p {
    color: var(--gold);
    font-size: .8rem;
    letter-spacing: .15em;
    line-height: 2;
  }

  /* ─── RESPONSIVE ─── */

  /* ─── BESPOKE ─── */
  .bespoke {
    padding: 10rem 2.5rem;
    border-top: 1px solid rgba(200,214,229,.08);
    background: #0C1824;
    position: relative;
    overflow: hidden;
  }

  .bespoke::before {
    content: 'BESPOKE';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'ErasLight','Jost',sans-serif;
    font-size: 14rem;
    font-weight: 200;
    color: rgba(142,164,192,.03);
    white-space: nowrap;
    pointer-events: none;
    letter-spacing: .2em;
  }

  .bespoke-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
    position: relative;
    z-index: 2;
  }

  .bespoke-left {}

  .bespoke-eyebrow {
    font-size: .55rem;
    letter-spacing: .38em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2rem;
    display: block;
  }

  .bespoke-left h2 {
    font-family: 'ErasLight','Jost',sans-serif;
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 200;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--off-wht);
    line-height: 1.1;
    margin-bottom: 2rem;
  }

  .bespoke-left p {
    font-size: .85rem;
    font-weight: 200;
    line-height: 2;
    color: var(--mist);
    max-width: 440px;
    margin-bottom: 1.5rem;
  }

  .bespoke-divider {
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin: 2.5rem 0;
    opacity: .5;
  }

  .bespoke-cta {
    display: inline-block;
    font-family: 'Jost',sans-serif;
    font-size: .6rem;
    font-weight: 300;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--navy);
    background: var(--off-wht);
    text-decoration: none;
    padding: .9rem 2.4rem;
    transition: background .3s;
    margin-top: 1rem;
  }
  .bespoke-cta:hover { background: var(--gold); }

  .bespoke-right {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: rgba(200,214,229,.06);
  }

  .bespoke-card {
    background: #0F1E30;
    padding: 2.2rem 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: background .4s;
    position: relative;
    overflow: hidden;
  }
  .bespoke-card::after {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 2px;
    background: var(--gold);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform .5s;
  }
  .bespoke-card:hover { background: #152535; }
  .bespoke-card:hover::after { transform: scaleY(1); }

  .bespoke-card-num {
    font-family: 'ErasLight','Jost',sans-serif;
    font-size: 1.8rem;
    font-weight: 200;
    color: rgba(168,147,106,.2);
    line-height: 1;
    flex-shrink: 0;
    width: 2rem;
  }

  .bespoke-card-body {}

  .bespoke-card-title {
    font-family: 'ErasLight','Jost',sans-serif;
    font-size: .95rem;
    font-weight: 200;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--off-wht);
    margin-bottom: .6rem;
  }

  .bespoke-card-desc {
    font-size: .75rem;
    font-weight: 200;
    line-height: 1.8;
    color: var(--mist);
  }


  /* ─── EDUCATION ─── */
  .education {
    padding: 10rem 2.5rem;
    border-top: 1px solid rgba(200,214,229,.08);
    background: #0A1520;
    position: relative;
    overflow: hidden;
  }

  .edu-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    margin-bottom: 6rem;
    align-items: end;
  }

  .edu-header-left {}

  .edu-eyebrow {
    font-size: .55rem;
    letter-spacing: .38em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2rem;
    display: block;
  }

  .edu-header h2 {
    font-family: 'ErasLight','Jost',sans-serif;
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 200;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--off-wht);
    line-height: 1.1;
  }

  .edu-header-right p {
    font-size: .85rem;
    font-weight: 200;
    line-height: 2;
    color: var(--mist);
    margin-bottom: 1.5rem;
  }

  .edu-duration {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
  }
  .edu-duration-num {
    font-family: 'ErasLight','Jost',sans-serif;
    font-size: 3rem;
    font-weight: 200;
    color: var(--gold);
    line-height: 1;
  }
  .edu-duration-label {
    font-size: .6rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--mist);
    line-height: 1.8;
  }

  /* Course cards */
  .edu-courses {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: rgba(200,214,229,.06);
    margin-bottom: 5rem;
  }

  .edu-course-card {
    background: #0F1E30;
    padding: 3rem 2.5rem;
    position: relative;
    overflow: hidden;
    transition: background .4s;
  }
  .edu-course-card:hover { background: #152535; }

  .edu-course-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(to right, var(--gold), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .6s;
  }
  .edu-course-card:hover::before { transform: scaleX(1); }

  .edu-course-tag {
    font-size: .52rem;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.2rem;
    display: block;
  }

  .edu-course-title {
    font-family: 'ErasLight','Jost',sans-serif;
    font-size: 1.3rem;
    font-weight: 200;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--off-wht);
    margin-bottom: 1rem;
    line-height: 1.2;
  }

  .edu-course-desc {
    font-size: .78rem;
    font-weight: 200;
    line-height: 1.9;
    color: var(--mist);
    margin-bottom: 1.5rem;
  }

  .edu-course-modules {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    border-top: 1px solid rgba(200,214,229,.08);
    padding-top: 1.5rem;
    margin-top: 1rem;
  }

  .edu-module {
    font-size: .65rem;
    font-weight: 200;
    letter-spacing: .08em;
    color: rgba(157,181,207,.5);
    display: flex;
    align-items: center;
    gap: .8rem;
  }
  .edu-module::before {
    content: '';
    width: 14px; height: 1px;
    background: var(--gold);
    flex-shrink: 0;
    opacity: .4;
  }

  /* Certificate strip */
  .edu-cert-strip {
    border: 1px solid rgba(168,147,106,.2);
    padding: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    position: relative;
  }
  .edu-cert-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(168,147,106,.04), transparent);
    pointer-events: none;
  }

  .edu-cert-left {}
  .edu-cert-title {
    font-family: 'ErasLight','Jost',sans-serif;
    font-size: 1.4rem;
    font-weight: 200;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--off-wht);
    margin-bottom: .8rem;
  }
  .edu-cert-desc {
    font-size: .78rem;
    font-weight: 200;
    line-height: 1.9;
    color: var(--mist);
    max-width: 480px;
  }

  .edu-cert-seal {
    width: 110px; height: 110px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
  }
  .edu-cert-seal::before {
    content: '';
    position: absolute;
    inset: 6px;
    border-radius: 50%;
    border: 1px solid rgba(168,147,106,.15);
  }
  .edu-cert-seal-r {
    font-family: 'ErasLight','Jost',sans-serif;
    font-size: 1.4rem;
    font-weight: 200;
    color: var(--gold);
    line-height: 1;
    z-index: 1;
  }
  .edu-cert-seal-text {
    font-size: .3rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--gold);
    z-index: 1;
    opacity: .6;
    text-align: center;
    line-height: 1.6;
  }

  .edu-apply-btn {
    font-family: 'Jost',sans-serif;
    font-size: .6rem;
    font-weight: 300;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--navy);
    background: var(--off-wht);
    text-decoration: none;
    padding: .9rem 2.4rem;
    transition: background .3s;
    flex-shrink: 0;
    border: none;
    cursor: pointer;
  }
  .edu-apply-btn:hover { background: var(--gold); }


  /* ─── ABOUT ─── */
  .about {
    padding: 10rem 2.5rem;
    border-top: 1px solid rgba(200,214,229,.08);
    background: #0D1928;
    position: relative;
    overflow: hidden;
  }

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

  .about-left {
    position: relative;
  }

  /* Big decorative initial */
  .about-initial {
    position: absolute;
    top: -2rem;
    left: -1rem;
    font-family: 'ErasLight','Jost',sans-serif;
    font-size: 16rem;
    font-weight: 200;
    color: rgba(168,147,106,.04);
    line-height: 1;
    pointer-events: none;
    z-index: 0;
  }

  .about-eyebrow {
    font-size: .55rem;
    letter-spacing: .38em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2rem;
    display: block;
    position: relative;
    z-index: 1;
  }

  .about-left h2 {
    font-family: 'ErasLight','Jost',sans-serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 200;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--off-wht);
    line-height: 1.1;
    margin-bottom: .5rem;
    position: relative;
    z-index: 1;
  }

  .about-left h2 em {
    font-family: 'EB Garamond', serif;
    font-style: italic;
    font-size: .75em;
    color: var(--mist);
    text-transform: none;
    letter-spacing: .04em;
    display: block;
  }

  .about-timeline {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    z-index: 1;
  }

  .about-timeline::before {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    left: 38px;
    width: 1px;
    background: linear-gradient(to bottom, var(--gold), rgba(168,147,106,.1));
  }

  .timeline-item {
    display: flex;
    gap: 1.8rem;
    align-items: flex-start;
    padding-bottom: 2rem;
  }

  .timeline-year {
    font-family: 'ErasLight','Jost',sans-serif;
    font-size: .65rem;
    font-weight: 200;
    letter-spacing: .18em;
    color: var(--gold);
    flex-shrink: 0;
    width: 52px;
    padding-top: .15rem;
    text-align: right;
  }

  .timeline-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
    margin-top: .25rem;
    position: relative;
    z-index: 2;
  }

  .timeline-text {
    font-size: .78rem;
    font-weight: 200;
    line-height: 1.8;
    color: var(--mist);
  }

  /* Right side */
  .about-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .about-quote {
    font-family: 'EB Garamond', serif;
    font-style: italic;
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--pale);
    line-height: 1.6;
    border-left: 1px solid var(--gold);
    padding-left: 2rem;
    margin-bottom: 1rem;
  }

  .about-body p {
    font-size: .85rem;
    font-weight: 200;
    line-height: 2;
    color: var(--mist);
    margin-bottom: 1.2rem;
  }

  .about-credentials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(200,214,229,.06);
    margin-top: 1rem;
  }

  .credential-item {
    background: #0F1E30;
    padding: 1.5rem 1.2rem;
    text-align: center;
  }

  .credential-num {
    font-family: 'ErasLight','Jost',sans-serif;
    font-size: 2rem;
    font-weight: 200;
    color: var(--gold);
    line-height: 1;
    margin-bottom: .4rem;
    display: block;
  }

  .credential-label {
    font-size: .52rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--mist);
    line-height: 1.6;
  }

  @media (max-width: 900px) {
    .about-inner { grid-template-columns: 1fr; gap: 3rem; }
    .about-credentials { grid-template-columns: repeat(3,1fr); }
  }

  @media (max-width: 900px) {
    .edu-header { grid-template-columns: 1fr; gap: 2rem; }
    .edu-courses { grid-template-columns: 1fr; }
    .edu-cert-strip { flex-direction: column; text-align: center; }
  }

  @media (max-width: 900px) {
    .bespoke-inner { grid-template-columns: 1fr; gap: 3rem; }
    .bespoke::before { font-size: 6rem; }
  }

  @media (max-width: 900px) {
    .collection-grid { grid-template-columns: 1fr; }
    .shop-grid { grid-template-columns: repeat(2,1fr); }
    .contact { grid-template-columns: 1fr; gap: 4rem; }
    .manifesto { grid-template-columns: 1fr; gap: 2rem; }
    .footer-top { flex-direction: column; gap: 3rem; }
    .hero-ring, .hero-ring-2 { display: none; }
    nav { padding: 1.5rem; }
  }

  /* ─── FA MODE ─── */
  body.fa {
    direction: rtl;
    text-align: right;
  }
  .fa * {
    font-family: 'Vazirmatn', 'Jost', sans-serif;
    word-break: keep-all;
    overflow-wrap: break-word;
    text-align: right;
    direction: rtl;
  }
  .fa h1, .fa h2, .fa h3 {
    font-weight: 200;
    letter-spacing: 0 !important;
    word-break: keep-all;
    hyphens: none;
  }
  .fa .manifesto-text h2 {
    font-size: clamp(1.4rem, 5vw, 3.2rem);
    line-height: 1.4;
  }
  .fa .hero-title {
    font-size: clamp(1.8rem, 8vw, 6rem);
    line-height: 1.3;
    word-break: keep-all;
  }
  .fa .edu-header-left h2,
  .fa .bespoke-title,
  .fa .section-title {
    font-size: clamp(1.4rem, 4vw, 2.8rem);
    line-height: 1.4;
  }

  /* FA - Fix all grid/flex containers for RTL */
  .fa .manifesto {
    direction: rtl;
    grid-template-columns: 2.5fr 1fr;
  }
  .fa .manifesto-text {
    text-align: right;
    width: 100%;
  }
  .fa .manifesto-text p,
  .fa .manifesto-text h2,
  .fa .manifesto-quote {
    text-align: right;
    max-width: 100%;
  }
  .fa .edu-cert-desc,
  .fa .edu-cert-title,
  .fa .edu-cert-left {
    text-align: right;
  }
  @media (max-width: 768px) {
    .fa .manifesto {
      grid-template-columns: 1fr;
      direction: rtl;
    }
    .fa .manifesto-text h2 {
      font-size: clamp(1.6rem, 7vw, 2.4rem);
      text-align: right;
      width: 100%;
    }
    .fa .manifesto-text p {
      font-size: .9rem;
      line-height: 2;
      text-align: right;
      width: 100%;
      max-width: 100%;
    }
    .fa .edu-cert-strip {
      flex-direction: column;
      text-align: center;
      align-items: center;
      gap: 1.5rem;
    }
    .fa .edu-apply-btn {
      width: 100%;
      text-align: center;
    }
    .fa .edu-cert-desc {
      text-align: right;
      max-width: 100%;
    }
    .fa .about-inner {
      direction: rtl;
    }
    .fa .bespoke-intro,
    .fa .bespoke-text {
      text-align: right;
      width: 100%;
    }
  }

  /* FA - Force full width on all sections */
  .fa .manifesto {
    grid-template-columns: 1fr;
    direction: rtl;
  }
  .fa .manifesto-label {
    position: static;
    margin-bottom: 1rem;
  }
  .fa .manifesto-text {
    width: 100%;
    max-width: 100%;
  }
  .fa .manifesto-text h2 {
    width: 100%;
    text-align: right;
    font-size: clamp(1.6rem, 5vw, 3.2rem);
  }
  .fa .manifesto-text p,
  .fa .manifesto-quote {
    width: 100%;
    max-width: 100%;
    text-align: right;
  }
  .fa p, .fa h1, .fa h2, .fa h3, .fa h4, .fa h5, .fa li, .fa span, .fa a, .fa label {
    text-align: right;
    direction: rtl;
  }
  .fa .manifesto-text,
  .fa .about-text,
  .fa .edu-header-left,
  .fa .edu-header-right,
  .fa .edu-cert-left,
  .fa .edu-cert-desc,
  .fa .bespoke-intro,
  .fa .contact-text,
  .fa .grad-info,
  .fa .shop-info,
  .fa .footer-col ul {
    text-align: right;
    direction: rtl;
  }
  .fa .edu-cert-strip {
    flex-direction: row-reverse;
    flex-wrap: wrap;
    justify-content: center;
  }
  .fa .edu-apply-btn {
    flex-shrink: 0;
  }
  .fa .graduates-grid {
    direction: rtl;
  }
  .fa .footer-cols {
    direction: rtl;
  }
  .fa .modal-box {
    direction: rtl;
    text-align: right;
  }
  .fa .modal-grid {
    direction: rtl;
  }
  .fa .modal-field label {
    text-align: right;
  }
  body.fa .hero-number { writing-mode: horizontal-tb; top: auto; bottom: 5rem; left: 2.5rem; }
  body.fa nav { flex-direction: row-reverse; }
  body.fa .contact-links a { flex-direction: row-reverse; }
  body.fa .manifesto { grid-template-columns: 2.5fr 1fr; }

  /* ─── GRADUATES ─── */
  .graduates-wrap {
    padding: 6rem 2.5rem 4rem;
    max-width: 1100px;
    margin: 0 auto;
    border-top: 1px solid rgba(168,147,106,.15);
  }
  .graduates-label {
    font-family: 'Jost', sans-serif;
    font-size: .6rem;
    letter-spacing: .35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.2rem;
  }
  .graduates-title {
    font-family: 'ErasLight', 'Jost', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 200;
    color: var(--off-wht);
    margin-bottom: 1rem;
    letter-spacing: .05em;
  }
  .graduates-sub {
    font-family: 'Jost', sans-serif;
    font-size: .85rem;
    font-weight: 300;
    color: var(--mist);
    max-width: 560px;
    line-height: 1.8;
    margin-bottom: 4rem;
  }
  .graduates-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
  .grad-card {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
  }
  .grad-photo {
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: #0A1520;
    border: 1px solid rgba(168,147,106,.12);
  }
  .grad-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
    transition: filter .4s;
  }
  .grad-card:hover .grad-photo img { filter: grayscale(0%); }
  .grad-photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(157,181,207,.2);
    font-family: 'Jost', sans-serif;
    font-size: .75rem;
    letter-spacing: .2em;
  }
  .grad-info { padding: 0 .2rem; }
  .grad-name {
    font-family: 'ErasLight', 'Jost', sans-serif;
    font-size: 1rem;
    font-weight: 200;
    color: var(--off-wht);
    letter-spacing: .08em;
    margin-bottom: .3rem;
  }
  .grad-position {
    font-family: 'Jost', sans-serif;
    font-size: .7rem;
    font-weight: 300;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--gold);
  }
  @media (max-width: 900px) {
    .graduates-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 500px) {
    .graduates-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  }

  
  /* ─── STOCKISTS ─── */
  .stockists { padding: 8rem 2.5rem; background: #0A1520; }
  .stockists-inner { max-width: 1100px; margin: 0 auto; }
  .stockists-header { margin-bottom: 5rem; }
  .stockists-label {
    font-family: 'Jost', sans-serif;
    font-size: .6rem;
    letter-spacing: .35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
  }
  .stockists-title {
    font-family: 'ErasLight', 'Jost', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 200;
    color: var(--off-wht);
    letter-spacing: .05em;
    margin-bottom: 1rem;
  }
  .stockists-sub {
    font-family: 'Jost', sans-serif;
    font-size: .85rem;
    font-weight: 300;
    color: var(--mist);
    max-width: 500px;
    line-height: 1.8;
  }
  .stockists-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 6rem;
  }
  .city-name {
    font-family: 'ErasLight', 'Jost', sans-serif;
    font-size: 1.2rem;
    font-weight: 200;
    color: var(--off-wht);
    letter-spacing: .1em;
    margin-bottom: .8rem;
  }
  .city-line {
    width: 2rem;
    height: 1px;
    background: var(--gold);
    margin-bottom: 1.5rem;
    opacity: .5;
  }
  .stockists-list { list-style: none; padding: 0; margin: 0; }
  .stockist-item {
    display: flex;
    flex-direction: column;
    gap: .3rem;
    padding: .8rem 0;
    border-bottom: 1px solid rgba(200,214,229,.06);
  }
  .stockist-name {
    font-family: 'Jost', sans-serif;
    font-size: .8rem;
    font-weight: 300;
    color: var(--off-wht);
  }
  .stockist-type {
    font-family: 'Jost', sans-serif;
    font-size: .55rem;
    letter-spacing: .2em;
    text-transform: uppercase;
  }
  .stockist-type.online { color: var(--mist); }
  .stockist-type.instore { color: var(--gold); }
  .stockist-item.coming .stockist-name { color: rgba(157,181,207,.3); font-style: italic; }

  /* WHOLESALE */
  .wholesale-wrap {
    border-top: 1px solid rgba(168,147,106,.15);
    padding-top: 5rem;
  }
  .wholesale-header { margin-bottom: 3rem; }
  .wholesale-label {
    font-family: 'Jost', sans-serif;
    font-size: .6rem;
    letter-spacing: .35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
  }
  .wholesale-title {
    font-family: 'ErasLight', 'Jost', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 200;
    color: var(--off-wht);
    margin-bottom: .8rem;
  }
  .wholesale-sub {
    font-family: 'Jost', sans-serif;
    font-size: .85rem;
    color: var(--mist);
    line-height: 1.8;
    max-width: 500px;
  }
  @media (max-width: 900px) {
    .stockists-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 500px) {
    .stockists-grid { grid-template-columns: 1fr; }
  }

  
  /* ─── WHY RWIN ─── */
  .why-rwin {
    padding: 9rem 2.5rem;
    text-align: center;
    background: #0F1E30;
    border-top: 1px solid rgba(200,214,229,.06);
  }
  .why-rwin-inner { max-width: 700px; margin: 0 auto; }
  .why-rwin-inner h2 {
    font-family: 'Jost', sans-serif;
    font-size: .65rem;
    letter-spacing: .4em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 3rem;
  }
  .why-rwin-lead {
    font-family: 'ErasLight', 'Jost', sans-serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 200;
    color: var(--off-wht);
    line-height: 1.4;
    margin-bottom: 2.5rem;
  }
  .why-rwin-body {
    font-family: 'Jost', sans-serif;
    font-size: .9rem;
    color: var(--mist);
    margin-bottom: 2.5rem;
  }
  .why-rwin-list {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
  }
  .why-rwin-list span {
    font-family: 'EB Garamond', 'Jost', sans-serif;
    font-style: italic;
    font-size: 1rem;
    color: rgba(157,181,207,.6);
  }
  .why-rwin-close {
    font-family: 'EB Garamond', 'Jost', sans-serif;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--off-wht);
    line-height: 1.8;
    max-width: 480px;
    margin: 0 auto;
  }

  /* ─── AT A GLANCE ─── */
  .at-a-glance {
    padding: 6rem 2.5rem;
    background: #0A1520;
    border-top: 1px solid rgba(200,214,229,.06);
  }
  .glance-inner { max-width: 1000px; margin: 0 auto; text-align: center; }
  .glance-title {
    font-family: 'Jost', sans-serif;
    font-size: .6rem;
    letter-spacing: .35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 3.5rem;
  }
  .glance-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
  .glance-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .8rem;
  }
  .glance-num {
    font-family: 'ErasLight', 'Jost', sans-serif;
    font-size: 2rem;
    font-weight: 200;
    color: var(--off-wht);
  }
  .glance-icon {
    font-size: 1.2rem;
    color: var(--gold);
  }
  .glance-label {
    font-family: 'Jost', sans-serif;
    font-size: .7rem;
    font-weight: 300;
    color: var(--mist);
    letter-spacing: .03em;
    line-height: 1.5;
  }

  /* ─── THREE WAYS ─── */
  .three-ways {
    padding: 8rem 2.5rem;
    background: #0F1E30;
    border-top: 1px solid rgba(200,214,229,.06);
  }
  .three-ways-inner { max-width: 1100px; margin: 0 auto; }
  .three-ways-title {
    font-family: 'ErasLight', 'Jost', sans-serif;
    font-size: clamp(1.6rem, 3.5vw, 2.6rem);
    font-weight: 200;
    text-align: center;
    color: var(--off-wht);
    margin-bottom: 4.5rem;
    letter-spacing: .03em;
  }
  .three-ways-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(200,214,229,.08);
  }
  .way-card {
    background: #0A1520;
    padding: 3rem 2rem;
    cursor: pointer;
    transition: background .3s;
  }
  .way-card:hover { background: #0D1B2D; }
  .way-num {
    font-family: 'Jost', sans-serif;
    font-size: .65rem;
    letter-spacing: .2em;
    color: var(--gold);
    display: block;
    margin-bottom: 1.2rem;
  }
  .way-card h4 {
    font-family: 'ErasLight', 'Jost', sans-serif;
    font-size: 1.4rem;
    font-weight: 200;
    color: var(--off-wht);
    margin-bottom: .8rem;
    letter-spacing: .05em;
  }
  .way-card p {
    font-family: 'Jost', sans-serif;
    font-size: .8rem;
    font-weight: 300;
    color: var(--mist);
    line-height: 1.7;
  }
  @media (max-width: 768px) {
    .glance-grid { grid-template-columns: repeat(2, 1fr); }
    .three-ways-grid { grid-template-columns: 1fr; }
    .why-rwin-list { flex-direction: column; gap: 1rem; }
  }

  