  :root {
    --purple-deep: #543c54;
    --purple-mid: #4c3c4b;
    --purple-light: #645468;
    --purple-vivid: #6c3468;
    --gold-warm: #88602c;
    --gold-bright: #9b6d0e;
    --gold-shine: #ddb335;
    --white: #ffffff;
    --off-white: #faf9f7;
    --light-cream: #f5f0eb;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Jost', sans-serif;
    background: var(--white);
    color: #2a1a2a;
    overflow-x: hidden;
  }

  /* ── NAVBAR ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(84,60,84,0.1);
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
    box-shadow: 0 2px 20px rgba(84,60,84,0.08);
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
  }

  .nav-logo img {
    height: 130px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(18%) sepia(18%) saturate(700%) hue-rotate(270deg) brightness(60%);
  }

  .nav-logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--purple-deep);
    letter-spacing: 0.5px;
    line-height: 1.2;
  }

  .nav-logo-text span {
    display: block;
    font-size: 0.6rem;
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-warm);
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
  }

  .nav-links a {
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--purple-mid);
    transition: color 0.3s;
    position: relative;
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 0;
    width: 0; height: 1px;
    background: var(--gold-shine);
    transition: width 0.3s;
  }

  .nav-links a:hover { color: var(--purple-vivid); }
  .nav-links a:hover::after { width: 100%; }

  .nav-cta {
    background: var(--purple-vivid);
    color: white !important;
    padding: 9px 22px;
    border-radius: 2px;
    letter-spacing: 2px;
    font-size: 0.72rem !important;
    transition: background 0.3s !important;
  }
  .nav-cta:hover { background: var(--purple-deep) !important; }
  .nav-cta::after { display: none !important; }

  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
  }
  .hamburger span {
    display: block;
    width: 24px; height: 2px;
    background: var(--purple-deep);
    transition: all 0.3s;
  }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    padding: 70px 5% 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    position: relative;
    background: var(--white);
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, var(--light-cream) 0%, #ede5f5 100%);
    z-index: 0;
  }

  .hero-content {
    position: relative;
    z-index: 1;
    padding: 80px 40px 80px 0;
  }

  .hero-tag {
    display: inline-block;
    font-size: 0.68rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold-warm);
    border-left: 2px solid var(--gold-shine);
    padding-left: 12px;
    margin-bottom: 24px;
    font-weight: 500;
  }

  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--purple-deep);
    margin-bottom: 8px;
  }

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

  .hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--gold-warm);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 24px;
  }

  .hero-desc {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #5a4a5a;
    max-width: 440px;
    margin-bottom: 40px;
  }

  .hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
  }

  .btn-primary {
    background: var(--purple-vivid);
    color: white;
    padding: 14px 32px;
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.3s;
    border-radius: 2px;
    display: inline-block;
  }
  .btn-primary:hover { background: var(--purple-deep); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(108,52,104,0.3); }

  .btn-secondary {
    background: transparent;
    color: var(--purple-deep);
    padding: 14px 32px;
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    border: 1px solid var(--purple-light);
    transition: all 0.3s;
    border-radius: 2px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .btn-secondary:hover { background: var(--purple-deep); color: white; }

  .hero-visual {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding: 0 0 0 20px;
    height: 100%;
    min-height: 520px;
  }

  .hero-logo-display {
    width: 100%;
    max-width: 480px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    position: relative;
  }

  .hero-logo-display img {
    width: 100%;
    max-height: 620px;
    object-fit: contain;
    object-position: bottom center;
    display: block;
    filter: drop-shadow(0 20px 40px rgba(84,60,84,0.2));
  }

  /* ── SECTION BASE ── */
  section { padding: 80px 5%; }

  .section-tag {
    font-size: 0.65rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold-warm);
    font-weight: 600;
    margin-bottom: 12px;
    display: block;
  }

  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 400;
    color: var(--purple-deep);
    margin-bottom: 16px;
    line-height: 1.2;
  }

  .section-divider {
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-shine), var(--purple-vivid));
    margin-bottom: 40px;
  }

  .section-divider.center { margin-left: auto; margin-right: auto; }

  /* ── ABOUT ── */
  .about {
    background: var(--off-white);
    text-align: center;
  }

  .about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 960px;
    margin: 0 auto;
  }

  .about-card {
    padding: 40px 28px;
    background: white;
    border-radius: 4px;
    border-top: 3px solid var(--gold-shine);
    box-shadow: 0 8px 30px rgba(84,60,84,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
  }

  .about-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(84,60,84,0.12); }

  .about-card-icon {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, var(--purple-deep), var(--purple-vivid));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.3rem;
  }

  .about-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--purple-deep);
    margin-bottom: 12px;
  }

  .about-card p {
    font-size: 0.88rem;
    line-height: 1.8;
    color: #5a4a5a;
  }

  /* ── COLLECTIONS ── */
  .collections { background: var(--white); }

  .collections-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 48px;
    flex-wrap: wrap;
    gap: 20px;
  }

  .collection-tabs {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
  }

  .tab-btn {
    padding: 10px 24px;
    border: 1px solid rgba(84,60,84,0.2);
    background: transparent;
    color: var(--purple-mid);
    font-family: 'Jost', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 2px;
    transition: all 0.3s;
    font-weight: 500;
  }

  .tab-btn:hover, .tab-btn.active {
    background: var(--purple-vivid);
    color: white;
    border-color: var(--purple-vivid);
  }

  .collection-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .collection-grid.hidden { display: none; }

  .product-card {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(84,60,84,0.08);
    transition: box-shadow 0.3s;
    background: var(--light-cream);
  }

  .product-card:hover { box-shadow: 0 12px 40px rgba(84,60,84,0.18); }

  .product-card img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
  }

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

  .product-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(84,60,84,0.92) 0%, transparent 100%);
    padding: 40px 20px 20px;
    transform: translateY(0);
    transition: all 0.3s;
  }

  .product-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: white;
    margin-bottom: 4px;
  }

  .product-tag {
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-shine);
  }

  .product-shop-btn {
    display: block;
    background: var(--gold-shine);
    color: var(--purple-deep);
    text-align: center;
    padding: 12px;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    margin-top: 8px;
    border-radius: 2px;
    opacity: 0;
    transform: translateY(10px);
    font-family: 'Jost', sans-serif;
  }

  .product-card:hover .product-shop-btn {
    opacity: 1;
    transform: translateY(0);
  }

  /* GALLERY LIGHTBOX */
  .gallery-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
  }

  .gallery-modal.open { display: flex; }

  .gallery-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 900px;
    margin-bottom: 20px;
  }

  .gallery-modal-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: white;
    font-weight: 400;
  }

  .gallery-close {
    background: none;
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    width: 40px; height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
  }

  .gallery-close:hover { background: white; color: black; }

  .gallery-scroll {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
    width: 100%;
    max-width: 900px;
    max-height: 70vh;
    overflow-y: auto;
  }

  .gallery-item img {
    width: 100%;
    aspect-ratio: 2/3;
    object-fit: cover;
    border-radius: 4px;
    border: 2px solid transparent;
    transition: border-color 0.2s;
    cursor: pointer;
  }

  .gallery-item img:hover { border-color: var(--gold-shine); }

  /* ── FOUNDER ── */
  .founder {
    background: linear-gradient(135deg, var(--purple-deep) 0%, var(--purple-mid) 100%);
    padding: 80px 5%;
  }

  .founder-inner {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 64px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
  }

  .founder-img-wrap {
    position: relative;
  }

  .founder-img-frame {
    width: 100%;
    aspect-ratio: 3/4;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    border: 1px solid rgba(221,179,53,0.3);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .founder-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .founder-img-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    padding: 20px;
  }

  .founder-img-placeholder .icon {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
  }

  .founder-accent {
    position: absolute;
    bottom: -16px; right: -16px;
    width: 80px; height: 80px;
    background: var(--gold-shine);
    border-radius: 50%;
    opacity: 0.2;
  }

  .founder-content { color: white; }

  .founder-content .section-tag { color: var(--gold-shine); }

  .founder-content .section-title { color: white; font-style: italic; }

  .founder-name {
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-shine);
    margin-bottom: 24px;
    font-weight: 600;
  }

  .founder-bio {
    font-size: 0.95rem;
    line-height: 1.9;
    color: rgba(255,255,255,0.8);
    margin-bottom: 32px;
  }

  .founder-values {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
  }

  .value-chip {
    background: rgba(221,179,53,0.15);
    border: 1px solid rgba(221,179,53,0.35);
    color: var(--gold-shine);
    padding: 8px 18px;
    border-radius: 2px;
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
  }

  /* ── MISSION VISION ── */
  .mission-vision {
    background: var(--light-cream);
    text-align: center;
  }

  .mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 800px;
    margin: 0 auto 48px;
  }

  .mv-card {
    background: white;
    padding: 48px 32px;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(84,60,84,0.06);
    position: relative;
    overflow: hidden;
  }

  .mv-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--purple-vivid), var(--gold-shine));
  }

  .mv-card-icon { font-size: 2rem; margin-bottom: 16px; }

  .mv-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--purple-deep);
    margin-bottom: 16px;
  }

  .mv-card p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: #5a4a5a;
  }

  /* ── WHY CHOOSE ── */
  .why-choose { background: var(--white); }

  .why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
  }

  .why-list { list-style: none; }

  .why-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(84,60,84,0.08);
  }

  .why-list li:last-child { border-bottom: none; }

  .why-check {
    width: 28px; height: 28px;
    background: linear-gradient(135deg, var(--purple-vivid), var(--purple-deep));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
  }

  .why-check svg { width: 14px; height: 14px; stroke: white; stroke-width: 2.5; fill: none; }

  .why-list li p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #4a3a4a;
  }

  .why-list li strong {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--purple-deep);
    letter-spacing: 0.5px;
    margin-bottom: 4px;
  }

  .why-banner {
    background: linear-gradient(135deg, var(--purple-vivid), var(--purple-deep));
    padding: 48px 40px;
    border-radius: 4px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .why-banner::before {
    content: '"';
    position: absolute;
    top: -20px; left: 20px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 12rem;
    color: rgba(255,255,255,0.04);
    line-height: 1;
    font-style: italic;
  }

  .why-banner blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
  }

  .why-banner cite {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-shine);
    font-style: normal;
    font-weight: 600;
  }

  /* ── FAQ ── */
  .faq { background: var(--off-white); }

  .faq-grid {
    max-width: 720px;
    margin: 0 auto;
  }

  .faq-item {
    border-bottom: 1px solid rgba(84,60,84,0.1);
    overflow: hidden;
  }

  .faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 22px 0;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-family: 'Jost', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--purple-deep);
    letter-spacing: 0.3px;
    gap: 16px;
  }

  .faq-icon {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: rgba(84,60,84,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.3s, transform 0.3s;
    font-size: 1.1rem;
    color: var(--purple-vivid);
  }

  .faq-item.open .faq-icon { background: var(--purple-vivid); color: white; transform: rotate(45deg); }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  .faq-item.open .faq-answer { max-height: 200px; }

  .faq-answer-inner {
    padding: 0 0 20px 0;
    font-size: 0.88rem;
    line-height: 1.8;
    color: #5a4a5a;
  }

  /* ── CONTACT ── */
  .contact {
    background: var(--white);
  }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
  }

  .contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 28px;
  }

  .contact-icon {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--purple-deep), var(--purple-vivid));
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
  }
 .contact-icon i { 
    color: white; 
  }
  .contact-info-item h4 {
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-warm);
    margin-bottom: 4px;
    font-weight: 600;
  }

  .contact-info-item p, .contact-info-item a {
    font-size: 0.9rem;
    color: #4a3a4a;
    line-height: 1.6;
    text-decoration: none;
  }

  .contact-info-item a:hover { color: var(--purple-vivid); }

  .social-links {
    display: flex;
    gap: 12px;
    margin-top: 32px;
  }

  .social-btn {
    padding: 10px 20px;
    border: 1px solid rgba(84,60,84,0.2);
    border-radius: 2px;
    text-decoration: none;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--purple-mid);
    font-weight: 600;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .social-btn i {
    font-size: 1.2em;
  }

  .social-btn:hover { background: var(--purple-deep); color: white; border-color: var(--purple-deep); }

  .wa-cta {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white !important;
    border-color: transparent !important;
  }

  .wa-cta:hover { opacity: 0.9; }

  .contact-form {
    background: var(--light-cream);
    padding: 40px;
    border-radius: 4px;
  }

  .contact-form h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--purple-deep);
    margin-bottom: 8px;
  }

  .contact-form p {
    font-size: 0.85rem;
    color: #5a4a5a;
    margin-bottom: 28px;
  }

  .form-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--purple-vivid);
    color: white;
    padding: 14px 28px;
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 2px;
    transition: all 0.3s;
    margin-bottom: 16px;
    display: block;
    text-align: center;
  }

  .form-link:hover { background: var(--purple-deep); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(108,52,104,0.3); }

  .wa-form-link {
    background: linear-gradient(135deg, #25D366, #128C7E);
  }

  .wa-form-link:hover { opacity: 0.9; transform: translateY(-2px); }

  /* ── FOOTER ── */
  footer {
    background: #1a0d1a;
    color: rgba(255,255,255,0.7);
    padding: 60px 5% 32px;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 240px 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
  }

  .footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    text-decoration: none;
  }

  .footer-logo img {
    height: 120px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
  }

  .footer-tagline {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
  }

  .footer-heading {
    font-size: 0.65rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold-shine);
    margin-bottom: 20px;
    font-weight: 600;
  }

  .footer-links { list-style: none; }

  .footer-links li { margin-bottom: 10px; }

  .footer-links a {
    text-decoration: none;
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
  }

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

  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
  }

  .footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.35); }

  .footer-bottom span { color: var(--gold-shine); }

  /* ── CHAT BUBBLE ── */
  .chat-bubble {
    position: fixed;
    bottom: 28px; right: 28px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
  }

  .chat-label {
    background: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    padding: 8px 16px;
    border-radius: 20px 20px 4px 20px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--purple-deep);
    white-space: nowrap;
    animation: pulse 2s ease-in-out infinite;
  }

  @keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
  }

  .chat-btn {
    width: 58px; height: 58px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(37,211,102,0.4);
    transition: transform 0.3s;
    font-size: 1.6rem;
  }

  .chat-btn:hover { transform: scale(1.1); }

  /* ── COLLECTION SECTION LABELS ── */
  .collection-section-label {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 0 8px;
    margin-top: 8px;
  }

  .collection-section-label:first-child {
    padding-top: 0;
    margin-top: 0;
  }

  .collection-section-label span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--purple-deep);
    white-space: nowrap;
    letter-spacing: 0.5px;
  }

  .collection-section-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(84,60,84,0.25), transparent);
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 1100px) {
    .collection-grid { grid-template-columns: repeat(3, 1fr); }
  }

  @media (max-width: 960px) {
    /* NAV */
    .nav-links { display: none; }
    .hamburger { display: flex; }

    /* HERO */
    .hero {
      grid-template-columns: 1fr;
      min-height: auto;
      padding-top: 100px;
      padding-bottom: 0;
    }
    .hero::before { display: none; }
    .hero-content {
      padding: 40px 5% 24px;
      text-align: center;
      order: 1;
    }
    .hero-desc { margin: 0 auto 32px; max-width: 480px; }
    .hero-buttons { justify-content: center; }
    .hero-visual {
      order: 2;
      padding: 0;
      min-height: auto;
      width: 100%;
    }
    .hero-logo-display {
      max-width: 100%;
    }
    .hero-logo-display img {
      max-height: 460px;
      width: 100%;
    }

    /* ABOUT */
    .about-grid {
      grid-template-columns: 1fr;
      max-width: 480px;
    }

    /* COLLECTIONS */
    .collection-grid { grid-template-columns: repeat(2, 1fr); }
    .collection-tabs { gap: 8px; }
    .tab-btn { padding: 9px 16px; font-size: 0.7rem; letter-spacing: 1.5px; }

    /* FOUNDER */
    .founder-inner {
      grid-template-columns: 1fr;
      max-width: 520px;
      text-align: center;
    }
    .founder-values { justify-content: center; }
    .founder-accent { display: none; }

    /* MISSION VISION */
    .mv-grid { grid-template-columns: 1fr; max-width: 480px; }

    /* WHY */
    .why-grid { grid-template-columns: 1fr; }

    /* CONTACT */
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }

    /* FOOTER */
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  }

  @media (max-width: 640px) {
    /* NAV */
    nav { height: 70px; padding: 0 4%; }
    .nav-logo img { height: 90px; }

    /* HERO */
    .hero { padding-top: 70px; }
    .hero-title { font-size: clamp(2.2rem, 8vw, 3rem); }
    .hero-content { padding: 32px 4% 20px; }
    .hero-logo-display img { max-height: 380px; }

    /* GENERAL */
    section { padding: 56px 4%; }
    .section-title { font-size: clamp(1.7rem, 6vw, 2.4rem); }

    /* COLLECTIONS */
    .collection-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .collection-tabs { flex-direction: column; align-items: stretch; }
    .tab-btn { text-align: center; padding: 11px 16px; }
    .collection-section-label span { font-size: 1.05rem; }

    /* ABOUT */
    .about-grid { grid-template-columns: 1fr; max-width: 100%; }

    /* CONTACT */
    .social-links { flex-wrap: wrap; gap: 8px; }
    .social-btn { font-size: 0.65rem; padding: 8px 14px; }
    .contact-form { padding: 28px 20px; }

    /* FOOTER */
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-logo img { height: 80px; }

    /* FAQ */
    .faq-question { font-size: 0.85rem; }
  }

  @media (max-width: 400px) {
    .collection-grid { grid-template-columns: 1fr; }
    .hero-logo-display img { max-height: 320px; }
    .hero-title { font-size: 2rem; }
    .tab-btn { font-size: 0.68rem; letter-spacing: 1px; }
  }

  /* ── ANIMATE IN ── */
  .fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .fade-up.visible {
    opacity: 1;
    transform: translateY(0);
  }