
  :root {
    --cream: #F0F7F2;
    --warm-white: #F5FAF6;
    --dark: #0D2240;
    --brown: #2E7D52;
    --brown-light: #4CAF80;
    --gold: #D4AF7A;
    --gold-soft: #B8E0C8;
    --muted: #5A7A6A;
    --wa-green: #25D366;
    --border: rgba(46,125,82,0.15);
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--warm-white);
    color: var(--dark);
    overflow-x: hidden;
  }


  .nav-logo-img { display: flex; align-items: center; text-decoration: none; }
  .nav-logo-img img { mix-blend-mode: multiply; }
  nav.scrolled .nav-logo-img img { mix-blend-mode: multiply; }
  .nav-logo-img img { transition: opacity 0.3s ease; }
  .nav-logo-img:hover img { opacity: 0.85; }

  .footer-logo-bg {
    display: inline-flex;
    background: white;
    border-radius: 10px;
    padding: 8px 14px;
  }
  .footer-logo-wrap img {
    display: block;
  }



  /* CUSTOM CURSOR - REMOVED */

  /* LOADER */
  .loader {
    position: fixed; inset: 0;
    background: var(--dark);
    z-index: 9000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
  }
  .loader.hidden { opacity: 0; visibility: hidden; }
  .loader-text {
    font-family: 'Cormorant Garamond', serif;
    color: var(--cream);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 300;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.3s forwards;
  }
  .loader-sub {
    color: var(--brown);
    font-size: 0.7rem;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    margin-top: 0.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.6s forwards;
  }
  .loader-bar {
    width: 120px; height: 1px;
    background: rgba(255,255,255,0.1);
    margin-top: 2rem;
    overflow: hidden;
  }
  .loader-bar-inner {
    height: 100%;
    background: var(--gold);
    animation: loaderBar 2s ease forwards;
  }

  @keyframes loaderBar { from { width: 0 } to { width: 100% } }
  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 1.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s ease;
  }
  nav.scrolled {
    background: rgba(253, 250, 246, 0.92);
    backdrop-filter: blur(20px);
    padding: 1rem 4rem;
    border-bottom: 1px solid var(--border);
  }
  .nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--dark);
    text-decoration: none;
    line-height: 1.1;
  }
  .nav-logo span { display: block; font-style: italic; font-size: 0.75rem; letter-spacing: 0.3em; color: var(--brown); font-weight: 300; }
  .nav-links { display: flex; gap: 2.5rem; align-items: center; }
  .nav-links a {
    font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--dark); text-decoration: none; position: relative;
    transition: color 0.3s;
  }
  .nav-links a::after {
    content: ''; position: absolute; bottom: -3px; left: 0;
    width: 0; height: 1px; background: var(--brown);
    transition: width 0.3s ease;
  }
  .nav-links a:hover::after { width: 100%; }
  .nav-links a:hover { color: var(--brown); }
  .nav-wa {
    background: var(--dark);
    color: var(--cream) !important;
    padding: 0.6rem 1.4rem;
    border-radius: 0;
    font-size: 0.65rem !important;
    letter-spacing: 0.25em !important;
  }
  .nav-wa::after { display: none !important; }
  .nav-wa:hover { background: var(--brown) !important; color: white !important; }

  /* HERO */
  .hero {
    height: 100vh; min-height: 700px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
  }
  .hero-left {
    background: var(--dark);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8rem 5rem 6rem;
    position: relative;
    overflow: hidden;
  }
  .hero-left::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 30% 70%, rgba(46,125,82,0.25) 0%, transparent 60%);
  }
  .hero-eyebrow {
    font-size: 0.65rem; letter-spacing: 0.4em;
    text-transform: uppercase; color: var(--gold);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 2.4s forwards;
  }
  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.5rem, 5vw, 5.5rem);
    font-weight: 300;
    line-height: 1.05;
    color: var(--cream);
    opacity: 0;
    animation: fadeInUp 0.8s ease 2.6s forwards;
  }
  .hero-title em { font-style: italic; color: var(--gold); }
  .hero-desc {
    color: rgba(249,245,240,0.55);
    font-size: 0.88rem;
    line-height: 1.8;
    margin-top: 1.5rem;
    max-width: 340px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 2.8s forwards;
  }
  .hero-ctas {
    display: flex; gap: 1rem; margin-top: 2.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 3s forwards;
  }
  .btn-primary {
    display: inline-flex; align-items: center; gap: 0.7rem;
    background: var(--gold);
    color: var(--dark);
    padding: 0.9rem 2rem;
    font-size: 0.68rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
  }
  .btn-primary:hover { background: var(--brown-light); transform: translateY(-2px); }
  .btn-ghost {
    display: inline-flex; align-items: center; gap: 0.7rem;
    border: 1px solid rgba(249,245,240,0.25);
    color: var(--cream);
    padding: 0.9rem 2rem;
    font-size: 0.68rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  .btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
  .hero-stats {
    display: flex; gap: 2.5rem; margin-top: 3rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 3.2s forwards;
  }
  .stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem; font-weight: 300; color: var(--cream); line-height: 1;
  }
  .stat-label { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-top: 0.2rem; }

  .hero-right {
    position: relative; overflow: hidden; background: var(--cream);
  }
  .hero-images { position: relative; width: 100%; height: 100%; }
  .hero-img {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; object-position: top center;
    opacity: 0;
    transition: opacity 1.2s ease;
  }
  .hero-img.active { opacity: 1; }

  /* ─── SLIDE (div backgrounds from Customizer) ─── */
  .slide {
    position: absolute; inset: 0; width: 100%; height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease;
  }
  .slide.active { opacity: 1; }
  .hero-img-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(13,34,64,0.1) 0%, transparent 40%);
  }
  .hero-slider-nav {
    position: absolute; bottom: 2rem; right: 2rem;
    display: flex; gap: 0.5rem;
    z-index: 2;
  }
  .slider-dot {
    width: 20px; height: 2px; background: rgba(13,34,64,0.2);
    cursor: pointer; transition: all 0.3s ease;
  }
  .slider-dot.active { background: var(--brown); width: 40px; }
  .hero-product-tag {
    position: absolute; top: 3rem; left: 2rem;
    background: white; padding: 0.8rem 1.2rem;
    z-index: 2;
    opacity: 0;
    animation: fadeInUp 0.8s ease 3.4s forwards;
  }
  .tag-name { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; }
  .tag-price { font-size: 0.75rem; color: var(--brown); letter-spacing: 0.15em; margin-top: 0.1rem; }

  /* MARQUEE */
  .marquee-section {
    background: var(--dark); padding: 1.2rem 0; overflow: hidden;
    display: flex;
  }
  .marquee-track {
    display: flex; gap: 3rem;
    animation: marquee 25s linear infinite;
    white-space: nowrap;
  }
  .marquee-item {
    display: flex; align-items: center; gap: 1rem;
    font-size: 0.62rem; letter-spacing: 0.35em; text-transform: uppercase;
    color: var(--gold-soft);
  }
  .marquee-dot { width: 3px; height: 3px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }
  @keyframes marquee { from { transform: translateX(0) } to { transform: translateX(-50%) } }

  /* SECTION COMMONS */
  section { padding: 7rem 4rem; }
  .section-label {
    font-size: 0.62rem; letter-spacing: 0.45em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 1rem;
  }
  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 300; line-height: 1.1;
  }
  .section-title em { font-style: italic; color: var(--brown); }

  /* CATEGORIES STRIP */
  .categories {
    background: var(--cream); padding: 4rem;
    display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  }
  .cat-pill {
    border: 1px solid var(--border);
    padding: 0.7rem 2rem;
    font-size: 0.68rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
    color: var(--dark);
  }
  .cat-pill.active, .cat-pill:hover {
    background: var(--dark); color: var(--cream); border-color: var(--dark);
  }

  /* PRODUCTS GRID */
  .products-section { background: var(--warm-white); padding: 3rem 4rem 6rem; }
  .products-header {
    display: flex; justify-content: space-between; align-items: flex-end;
    margin-bottom: 3rem;
  }
  .products-count { font-size: 0.72rem; color: var(--muted); letter-spacing: 0.1em; }
  .products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }

  /* PRODUCT CARD */
  .product-card {
    position: relative; cursor: pointer;
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .product-card.visible { opacity: 1; transform: translateY(0); }
  .product-card.hidden { display: none; }

  .card-img-wrap {
    position: relative; overflow: hidden;
    aspect-ratio: 3/4;
    background: var(--cream);
  }
  .card-img {
    width: 100%; height: 100%; object-fit: cover; object-position: top center;
    transition: transform 0.7s cubic-bezier(.25,.46,.45,.94);
    display: block;
  }
  .card-img-placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--cream) 0%, var(--gold-soft) 100%);
    display: flex; align-items: center; justify-content: center;
    transition: transform 0.7s cubic-bezier(.25,.46,.45,.94);
  }
  .placeholder-initial {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem; font-weight: 300; color: var(--brown);
    font-style: italic;
  }
  .product-card:hover .card-img,
  .product-card:hover .card-img-placeholder { transform: scale(1.06); }

  .card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(13,34,64,0.7) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex; align-items: flex-end; padding: 1.5rem;
  }
  .product-card:hover .card-overlay { opacity: 1; }
  .card-wa-btn {
    display: flex; align-items: center; gap: 0.5rem;
    background: var(--wa-green);
    color: white;
    padding: 0.65rem 1.2rem;
    font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
    text-decoration: none;
    transition: transform 0.3s ease;
    width: 100%;
    justify-content: center;
    font-weight: 500;
  }
  .card-wa-btn:hover { transform: scale(1.02); }
  .card-wa-icon { width: 14px; height: 14px; fill: white; flex-shrink: 0; }

  .card-badge {
    position: absolute; top: 1rem; left: 1rem;
    background: var(--dark); color: var(--gold);
    font-size: 0.55rem; letter-spacing: 0.25em; text-transform: uppercase;
    padding: 0.3rem 0.6rem;
    z-index: 2;
  }
  .card-fav {
    position: absolute; top: 1rem; right: 1rem;
    width: 32px; height: 32px;
    background: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
    border: none;
    opacity: 0;
    transform: scale(0.8);
  }
  .product-card:hover .card-fav { opacity: 1; transform: scale(1); }
  .card-fav.liked { opacity: 1 !important; }
  .card-fav svg { width: 14px; height: 14px; transition: fill 0.3s; }
  .card-fav.liked svg { fill: #e05; stroke: #e05; }

  .card-info { padding: 1rem 0; }
  .card-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem; font-weight: 400; letter-spacing: 0.02em;
    color: var(--dark);
  }
  .card-price {
    font-size: 0.75rem; color: var(--brown);
    letter-spacing: 0.15em; margin-top: 0.3rem;
    font-weight: 500;
  }

  /* FEATURE BAND */
  .feature-band {
    background: var(--dark);
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
  .feature-item {
    padding: 3rem 2.5rem; border-right: 1px solid rgba(255,255,255,0.06);
    transition: background 0.3s ease;
  }
  .feature-item:last-child { border-right: none; }
  .feature-item:hover { background: rgba(46,125,82,0.15); }
  .feature-icon { font-size: 1.5rem; margin-bottom: 1rem; }
  .feature-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem; color: var(--cream); margin-bottom: 0.5rem;
  }
  .feature-text { font-size: 0.75rem; color: var(--muted); line-height: 1.7; }

  /* ABOUT SPLIT */
  .about-section {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0;
    padding: 0; min-height: 600px;
  }
  .about-img-side {
    position: relative; overflow: hidden;
    background: var(--dark);
    display: flex; align-items: center; justify-content: center;
  }
  .about-img-side .big-letter {
    font-family: 'Cormorant Garamond', serif;
    font-size: 35vw; font-weight: 300; color: var(--gold);
    opacity: 0.15; position: absolute; line-height: 1;
    font-style: italic; pointer-events: none; user-select: none;
    transform: translateX(-10%);
  }
  .about-content {
    background: var(--cream); padding: 6rem 5rem;
    display: flex; flex-direction: column; justify-content: center;
  }
  .about-content p {
    font-size: 0.88rem; line-height: 1.9; color: var(--muted);
    margin-top: 1.5rem; max-width: 450px;
  }
  .about-wa {
    display: inline-flex; align-items: center; gap: 0.7rem;
    margin-top: 2.5rem;
    background: var(--wa-green);
    color: white; padding: 1rem 2rem;
    font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s; width: fit-content;
    font-weight: 500;
  }
  .about-wa:hover { background: #1da851; transform: translateY(-2px); }

  /* TESTIMONIALS */
  .testimonials-section {
    background: var(--warm-white); padding: 7rem 4rem;
    overflow: hidden;
  }
  .testimonials-track-wrap { overflow: hidden; margin-top: 3rem; }
  .testimonials-track {
    display: flex; gap: 2rem;
    transition: transform 0.6s cubic-bezier(.25,.46,.45,.94);
  }
  .testimonial-card {
    background: var(--cream);
    border: 1px solid var(--border);
    padding: 2.5rem;
    min-width: 380px;
    border: 1px solid var(--border);
    flex-shrink: 0;
    transition: border-color 0.3s;
  }
  .testimonial-card:hover { border-color: var(--gold); }
  .testimonial-stars { color: var(--gold); font-size: 0.75rem; letter-spacing: 0.1em; margin-bottom: 1rem; }
  .testimonial-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem; line-height: 1.7; color: var(--dark);
    font-style: italic;
  }
  .testimonial-author { margin-top: 1.5rem; font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
  .testimonial-product { color: var(--brown); }
  .testimonial-nav {
    display: flex; gap: 0.8rem; margin-top: 2rem; align-items: center;
  }
  .t-nav-btn {
    width: 44px; height: 44px; border: 1px solid var(--border);
    background: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s ease;
    font-size: 1rem; color: var(--dark);
  }
  .t-nav-btn:hover { background: var(--dark); color: var(--cream); border-color: var(--dark); }

  /* CTA SECTION */
  .cta-section {
    background: var(--dark);
    padding: 8rem 4rem;
    text-align: center;
    position: relative; overflow: hidden;
  }
  .cta-section::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(46,125,82,0.3) 0%, transparent 65%);
  }
  .cta-section .section-title { color: var(--cream); position: relative; }
  .cta-section .section-label { position: relative; }
  .cta-tagline {
    font-size: 0.85rem; color: rgba(249,245,240,0.5);
    margin-top: 1.2rem; line-height: 1.8; position: relative;
    max-width: 500px; margin-left: auto; margin-right: auto;
  }
  .cta-wa-big {
    display: inline-flex; align-items: center; gap: 1rem;
    margin-top: 3rem;
    background: var(--wa-green);
    color: white; padding: 1.2rem 3rem;
    font-size: 0.75rem; letter-spacing: 0.25em; text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s; position: relative;
    font-weight: 500;
  }
  .cta-wa-big:hover { background: #1da851; transform: translateY(-3px); box-shadow: 0 20px 40px rgba(37,211,102,0.2); }
  .cta-wa-big svg { width: 20px; height: 20px; fill: white; }

  /* FOOTER */
  footer {
    background: var(--dark); border-top: 1px solid rgba(255,255,255,0.06);
    padding: 4rem;
    display: grid; grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
  }
  .footer-brand .nav-logo { color: var(--cream); }
  .footer-brand p { font-size: 0.78rem; color: var(--muted); line-height: 1.8; margin-top: 1rem; max-width: 280px; }
  .footer-col h4 { font-size: 0.62rem; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; }
  .footer-col a, .footer-col p {
    display: block; font-size: 0.78rem; color: var(--muted);
    text-decoration: none; line-height: 2; transition: color 0.3s;
  }
  .footer-col a:hover { color: var(--cream); }
  .footer-bottom {
    background: rgba(0,0,0,0.3); padding: 1.2rem 4rem;
    font-size: 0.65rem; color: var(--muted); letter-spacing: 0.1em;
    display: flex; justify-content: space-between;
  }

  /* STICKY WA */
  .sticky-wa {
    position: fixed; bottom: 2rem; right: 2rem;
    width: 54px; height: 54px;
    background: var(--wa-green);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    z-index: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(37,211,102,0.3);
    text-decoration: none;
    animation: pulseWA 3s infinite;
  }
  .sticky-wa:hover { transform: scale(1.12); box-shadow: 0 8px 30px rgba(37,211,102,0.4); }
  .sticky-wa svg { width: 26px; height: 26px; fill: white; }
  @keyframes pulseWA {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.3); }
    50% { box-shadow: 0 4px 35px rgba(37,211,102,0.5); }
  }

  /* SCROLL REVEAL */
  .reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(.25,.46,.45,.94); }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* RESPONSIVE */
  @media (max-width: 1024px) {
    .products-grid { grid-template-columns: repeat(3, 1fr); }
    nav { padding: 1.5rem 2rem; }
    nav.scrolled { padding: 1rem 2rem; }
    section { padding: 5rem 2rem; }
  }
  @media (max-width: 768px) {
    .hero { grid-template-columns: 1fr; height: auto; }
    .hero-right { height: 50vh; }
    .hero-left { padding: 8rem 2rem 4rem; }
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .feature-band { grid-template-columns: 1fr 1fr; }
    .about-section { grid-template-columns: 1fr; }
    .about-img-side { height: 300px; }
    .nav-links { display: none; }
    footer { grid-template-columns: 1fr; }
    .categories { padding: 2rem; }
    .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  }
  @media (max-width: 480px) {
    .products-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
    .hero-stats { gap: 1.5rem; }
  }

/* ─── MULTI-PAGE EXTRAS ─────────────────────────────────────────── */
.page-hero {
  min-height: 38vh;
  display: flex;
  align-items: flex-end;
  padding: 6rem 5vw 3rem;
  background: linear-gradient(135deg, var(--dark) 0%, var(--brown) 100%);
  margin-top: 80px;
}
.page-hero--collection { background: linear-gradient(135deg, #0D2240 0%, #1A6B44 100%); }
.page-hero--about      { background: linear-gradient(160deg, #1A4A30 0%, #0D2240 70%); }
.page-hero--contact    { background: linear-gradient(135deg, #2E7D52 0%, #0D2240 100%); }
.page-hero-content { max-width: 700px; }
.page-hero .section-label { color: var(--gold); }
.page-hero .section-title { color: var(--cream); margin-top: .5rem; }

.nav-links a.active { color: var(--brown); font-weight: 500; }

.btn-view-all {
  font-family: 'DM Sans', sans-serif;
  font-size: .85rem;
  letter-spacing: .08em;
  color: var(--brown);
  text-decoration: none;
  border-bottom: 1px solid var(--brown);
  padding-bottom: 2px;
  transition: opacity .2s;
  white-space: nowrap;
  align-self: flex-end;
}
.btn-view-all:hover { opacity: .6; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  position: relative;
  z-index: 999;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all .3s;
}
.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.contact-wa-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  background: var(--warm-white);
  border: 1px solid rgba(46,125,82,.15);
  border-radius: 12px;
  text-decoration: none;
  transition: background .2s, transform .2s, box-shadow .2s;
}
.contact-wa-card:hover {
  background: white;
  transform: translateX(4px);
  box-shadow: 0 4px 20px rgba(46,125,82,.12);
  border-color: var(--brown);
}
.contact-wa-icon {
  width: 40px; height: 40px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; flex-shrink: 0;
}
.contact-wa-title { font-weight: 600; color: var(--dark); font-size: .95rem; margin-bottom: .15rem; }
.contact-wa-sub   { color: var(--muted); font-size: .8rem; }
.contact-wa-arrow { margin-left: auto; color: var(--brown); font-size: 1.2rem; flex-shrink: 0; }

.faq-item { border-bottom: 1px solid rgba(46,125,82,.12); padding: 1.5rem 0; }
.faq-q {
  font-weight: 600; color: var(--dark);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; margin-bottom: .6rem;
}
.faq-a { color: var(--muted); line-height: 1.7; font-size: .9rem; }

@media (max-width: 768px) {
  /* Navbar toujours avec fond en mobile */
  nav {
    background: rgba(253, 250, 246, 0.97) !important;
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(13,34,64,0.08);
  }
  .nav-toggle {
    display: flex;
    z-index: 1001;
    position: relative;
  }
  .nav-toggle span {
    background: var(--dark) !important;
  }
  .nav-links {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #FDFAF6; /* fond crème solide — pas de transparence */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 1000;
    transform: translateX(100%);
    transition: transform .4s cubic-bezier(.77,0,.18,1);
    display: flex !important;
    /* Ombre sur le bord gauche pour effet de profondeur */
    box-shadow: -8px 0 40px rgba(13,34,64,0.15);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a {
    font-size: 1.6rem;
    color: var(--dark);
    text-decoration: none;
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 0.05em;
  }
  .nav-links a.nav-wa {
    margin-top: 1rem;
    padding: .8rem 2rem;
    background: var(--dark);
    color: var(--cream);
    font-family: inherit;
    font-size: 1rem;
    letter-spacing: 0.12em;
  }
  .page-hero { min-height: 30vh; padding: 5rem 5vw 2.5rem; }
}
