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

    :root {
      --rose:     #caa49a;
      --rose-lt:  #e8d5d0;
      --teal:     #ecaea4;
      --teal-dk:  #c9918a;
      --dark:     #1a1a1a;
      --muted:    #7a6a68;
      --border:   #eef2f4;
      --bg:       #faf9f8;
      --white:    #ffffff;
      --buy:      #ecaea4;

      --display: 'Cormorant Garamond', Georgia, serif;
      --body:    'Jost', system-ui, sans-serif;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--body);
      font-weight: 300;
      color: var(--dark);
      background: var(--white);
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    img { display: block; max-width: 100%; }
    a { text-decoration: none; color: inherit; }
    button { font-family: var(--body); cursor: pointer; }

    /* ── ANNOUNCEMENT BAR ── */
    .announcement {
      background: #ecaea4;
      color: #1a1a1a;
      text-align: center;
      padding: 9px 16px;
      font-size: clamp(10px, 1.5vw, 12px);
      letter-spacing: 0.1em;
      text-transform: uppercase;
      font-weight: 500;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    /* ── FLOATING PILL HEADER ── */
    header {
      position: fixed;
      top: 12px;
      left: 50%;
      transform: translateX(-50%);
      width: calc(100% - 32px);
      max-width: 1000px;
      z-index: 200;

      /* Frosted glass — reflects whatever is behind it */
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(20px) saturate(180%);
      -webkit-backdrop-filter: blur(20px) saturate(180%);

      border: 1px solid rgba(255, 255, 255, 0.3);
      border-radius: 60px;
      padding: 0.65rem 1.4rem;

      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;

      transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
      box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    }

    /* When scrolled over dark sections */
    header.dark-mode {
      background: rgba(0, 0, 0, 0.2);
      border-color: rgba(255,255,255,0.15);
    }
    header.dark-mode .logo-wordmark,
    header.dark-mode .logo-sub,
    header.dark-mode .nav-link,
    header.dark-mode .nav-icon-btn {
      color: #fff;
    }
    header.dark-mode .hamburger span { background: #fff; }
    header.dark-mode .cart-count { background: #fff; color: #ecaea4; }

    /* Add top padding to body so content isn't hidden behind fixed header */
    body { padding-top: 80px; }

    /* Left nav */
    .nav-left {
      display: flex;
      align-items: center;
      gap: clamp(0.8rem, 2vw, 2rem);
      list-style: none;
      flex: 1;
    }

    .nav-link {
      font-size: 11px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      font-weight: 400;
      color: var(--dark);
      text-decoration: none;
      transition: color 0.2s;
      white-space: nowrap;
    }
    .nav-link:hover { color: var(--rose); }

    /* Logo — centre */
    .header-logo {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      text-decoration: none;
      flex-shrink: 0;
    }

    .logo-wordmark {
      font-family: var(--display);
      font-size: clamp(0.9rem, 1.8vw, 1.2rem);
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--dark);
      line-height: 1;
      transition: color 0.3s;
    }

    .logo-sub {
      font-size: 8px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--muted);
      margin-top: 2px;
      font-weight: 400;
      transition: color 0.3s;
    }

    /* Right nav */
    .nav-right {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 0.8rem;
      flex: 1;
    }

    .nav-icon-btn {
      background: none;
      border: none;
      padding: 6px;
      color: var(--dark);
      display: flex;
      align-items: center;
      gap: 5px;
      font-size: 12px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      font-family: var(--body);
      transition: color 0.2s;
      position: relative;
      cursor: pointer;
    }
    .nav-icon-btn:hover { color: var(--rose); }

    .cart-count {
      position: absolute;
      top: -2px; right: -2px;
      background: var(--rose);
      color: white;
      font-size: 9px;
      width: 16px; height: 16px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 600;
      transition: background 0.3s, color 0.3s;
    }

    .hamburger {
      display: flex;
      flex-direction: column;
      gap: 4px;
      background: none;
      border: none;
      padding: 4px;
      cursor: pointer;
    }

    .hamburger span {
      display: block;
      width: 18px;
      height: 1.5px;
      background: var(--dark);
      border-radius: 2px;
      transition: background 0.3s;
    }

    /* Mobile menu */
    .mobile-menu {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(253,248,247,0.98);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      z-index: 300;
      flex-direction: column;
      padding: 2rem;
    }

    .mobile-menu.open { display: flex; }

    .mobile-menu-close {
      align-self: flex-end;
      background: none;
      border: none;
      font-size: 1.5rem;
      color: var(--dark);
      margin-bottom: 2rem;
      cursor: pointer;
    }

    .mobile-menu a {
      font-family: var(--display);
      font-size: 2rem;
      font-weight: 300;
      color: var(--dark);
      text-decoration: none;
      padding: 0.8rem 0;
      border-bottom: 1px solid var(--border);
      transition: color 0.2s;
    }

    .mobile-menu a:hover { color: var(--rose); }


    .hero {
      position: relative;
      width: 100%;
      height: calc(100svh - 72px);
      min-height: 560px;
      overflow: hidden;
      background: #f0ebe6;
    }

    /* Split layout: text left, image right */
    .hero-split {
      display: grid;
      grid-template-columns: 1fr 1fr;
      height: 100%;
    }

    .hero-text-panel {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: clamp(2rem, 6vw, 6rem) clamp(2rem, 5vw, 5rem);
      background: var(--white);
      position: relative;
      z-index: 2;
    }

    .hero-eyebrow {
      font-size: 11px;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--rose);
      margin-bottom: 1.5rem;
      font-weight: 400;
    }

    .hero-headline {
      font-family: var(--display);
      font-size: clamp(2.8rem, 5.5vw, 5rem);
      font-weight: 300;
      line-height: 1.05;
      color: var(--dark);
      margin-bottom: 1.2rem;
    }

    .hero-headline em {
      font-style: italic;
      color: var(--rose);
    }

    .hero-sub {
      font-size: 15px;
      color: var(--muted);
      line-height: 1.7;
      margin-bottom: 2.5rem;
      max-width: 380px;
      font-weight: 300;
    }

    .hero-actions {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .btn-primary {
      display: inline-block;
      background: #ecaea4;
      color: #1a1a1a;
      padding: 0.9rem 2rem;
      font-size: 12px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      font-weight: 600;
      border: none;
      border-radius: 4px;
      transition: background 0.2s;
      white-space: nowrap;
    }

    .btn-primary:hover { background: #c9918a; color: #fff; }

    .btn-outline {
      display: inline-block;
      background: transparent;
      color: var(--dark);
      padding: 0.9rem 2rem;
      font-size: 12px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      font-weight: 500;
      border: 1.5px solid var(--dark);
      border-radius: 4px;
      transition: border-color 0.2s, color 0.2s;
      white-space: nowrap;
    }

    .btn-outline:hover { border-color: var(--rose); color: var(--rose); }

    .hero-trust {
      display: flex;
      gap: 1.2rem;
      margin-top: 2rem;
      flex-wrap: wrap;
      align-items: flex-start;
    }

    .hero-trust-item {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 11px;
      letter-spacing: 0.08em;
      color: var(--muted);
      text-transform: uppercase;
    }

    .hero-trust-item svg { color: var(--rose); flex-shrink: 0; }

    /* Hero image panel */
    .hero-image-panel {
      position: relative;
      overflow: hidden;
      background: #f0ebe6;
    }

    /* 
      HERO IMAGE PLACEHOLDER 
      Replace this entire div with:
      <img src="assets/hero-model.jpg" alt="Model wearing Mili Essentials jewellery" style="width:100%;height:100%;object-fit:cover;object-position:center top;">
      
      Use a portrait photo of a model wearing the jewellery — 
      neutral/warm background, natural light, editorial style.
      Recommended: hire a local Canberra photographer for a 2hr shoot.
      Alternatively: use a styled flat-lay of multiple products on marble/fabric.
    */
    .hero-image-panel .hero-img-placeholder {
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 16px;
      background: linear-gradient(145deg, #f5eeea 0%, #ede3dc 50%, #e8d8d0 100%);
    }

    .hero-img-placeholder-inner {
      text-align: center;
      padding: 2rem;
    }

    .hero-img-placeholder-inner p {
      font-family: var(--display);
      font-size: 1.1rem;
      color: var(--rose);
      font-style: italic;
      margin-bottom: 0.5rem;
    }

    .hero-img-placeholder-inner span {
      font-size: 11px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--muted);
    }

    /* Decorative product bubble on hero */
    .hero-product-bubble {
      position: absolute;
      bottom: 2rem;
      left: 2rem;
      background: white;
      border-radius: 12px;
      padding: 1rem 1.2rem;
      box-shadow: 0 8px 32px rgba(0,0,0,0.12);
      display: flex;
      align-items: center;
      gap: 12px;
      max-width: 220px;
      overflow: hidden;
      animation: floatUp 3s ease-in-out infinite;
    }

    @keyframes floatUp {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-6px); }
    }

    .hero-product-bubble img {
      width: 52px;
      height: 52px;
      object-fit: cover;
      border-radius: 8px;
      flex-shrink: 0;
    }

    .bubble-text p { font-size: 12px; font-weight: 500; color: var(--dark); }
    .bubble-text span { font-size: 11px; color: var(--rose); font-weight: 500; }

    /* ── MARQUEE ── */
    .marquee-wrap {
      overflow: hidden;
      background: var(--rose);
      padding: 12px 0;
      border-top: 1px solid rgba(0,0,0,0.06);
      border-bottom: 1px solid rgba(0,0,0,0.06);
    }

    .marquee-track {
      display: flex;
      white-space: nowrap;
      animation: marquee 30s linear infinite;
    }

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

    .marquee-item {
      display: inline-flex;
      align-items: center;
      gap: 1rem;
      padding: 0 2rem;
      font-size: 11px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: white;
      font-weight: 400;
    }

    .marquee-dot {
      width: 4px; height: 4px;
      background: rgba(255,255,255,0.5);
      border-radius: 50%;
      flex-shrink: 0;
    }

    /* ── SECTION BASE ── */
    .section {
      max-width: 1400px;
      margin: 0 auto;
      padding: clamp(3rem, 7vw, 6rem) clamp(1rem, 4vw, 3rem);
    }

    .section-eyebrow {
      font-size: 11px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--rose);
      margin-bottom: 0.75rem;
      font-weight: 400;
    }

    .section-title {
      font-family: var(--display);
      font-size: clamp(1.8rem, 3.5vw, 2.8rem);
      font-weight: 300;
      color: var(--dark);
      line-height: 1.15;
      margin-bottom: 1rem;
    }

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

    /* ── CATEGORY STRIP ── */
    .category-strip {
      background: var(--bg);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .category-strip .section {
      padding-top: 2.5rem;
      padding-bottom: 2.5rem;
    }

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

    .category-card {
      position: relative;
      border-radius: 12px;
      overflow: hidden;
      aspect-ratio: 4/3;
      cursor: pointer;
      background: var(--rose-lt);
    }

    .category-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

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

    .category-card-label {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      padding: 1.2rem 1.5rem;
      background: linear-gradient(0deg, rgba(26,26,26,0.65) 0%, transparent 100%);
      color: white;
    }

    .category-card-label p {
      font-family: var(--display);
      font-size: 1.4rem;
      font-weight: 400;
      line-height: 1;
      margin-bottom: 2px;
    }

    .category-card-label span {
      font-size: 11px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      opacity: 0.8;
    }

    /* ── SHOP / PRODUCTS ── */
    .shop-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 2.5rem;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .filter-tabs {
      display: flex;
      gap: 0.5rem;
      flex-wrap: wrap;
    }

    .filter-tab {
      padding: 7px 18px;
      border-radius: 999px;
      border: 1.5px solid var(--border);
      background: white;
      font-size: 12px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--muted);
      cursor: pointer;
      transition: all 0.2s;
      font-family: var(--body);
    }

    .filter-tab:hover,
    .filter-tab.active {
      background: #ecaea4;
      border-color: #ecaea4;
      color: #1a1a1a;
    }

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

    .product-card {
      background: white;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 2px 16px rgba(16,24,32,0.06);
      transition: transform 0.3s, box-shadow 0.3s;
      cursor: pointer;
    }

    .product-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 32px rgba(16,24,32,0.12);
    }

    .product-img-wrap {
      position: relative;
      aspect-ratio: 1;
      overflow: hidden;
      background: #f7f4f2;
      flex-shrink: 0;
    }

    .product-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

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

    .product-badge {
      position: absolute;
      top: 12px; left: 12px;
      background: #ecaea4;
      color: #1a1a1a;
      font-size: 10px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 4px 10px;
      border-radius: 999px;
      font-weight: 600;
    }

    .product-quick-view {
      position: absolute;
      bottom: 12px; left: 50%; transform: translateX(-50%);
      background: white;
      color: var(--dark);
      font-size: 11px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 8px 18px;
      border-radius: 999px;
      border: none;
      font-family: var(--body);
      white-space: nowrap;
      opacity: 0;
      transition: opacity 0.2s;
      box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }

    .product-card:hover .product-quick-view { opacity: 1; }

    .product-info {
      padding: 1rem 1.2rem 1.2rem;
    }

    .product-cat {
      font-size: 10px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--rose);
      margin-bottom: 5px;
      font-weight: 500;
    }

    .product-name {
      font-family: var(--display);
      font-size: 1.1rem;
      font-weight: 400;
      color: var(--dark);
      margin-bottom: 4px;
      line-height: 1.2;
    }

    .product-material {
      font-size: 11px;
      color: var(--muted);
      margin-bottom: 12px;
    }

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

    .product-price {
      font-size: 1rem;
      font-weight: 500;
      color: var(--dark);
    }

    .btn-add-cart {
      background: #ecaea4;
      color: #1a1a1a;
      border: none;
      border-radius: 6px;
      padding: 8px 14px;
      font-size: 11px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      font-weight: 600;
      font-family: var(--body);
      transition: background 0.2s;
      white-space: nowrap;
    }

    .btn-add-cart:hover { background: var(--rose); }

    /* ── FEATURES / TRUST ── */
    .features-strip {
      background: #ecaea4;
      color: #1a1a1a;
    }

    .features-strip .section {
      padding-top: 3rem;
      padding-bottom: 3rem;
    }

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

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

    .feature-icon {
      margin: 0 auto 1rem;
      width: 44px; height: 44px;
      border: 1.5px solid rgba(26,26,26,0.25);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .feature-item h4 {
      font-family: var(--display);
      font-size: 1rem;
      font-weight: 400;
      margin-bottom: 4px;
    }

    .feature-item p {
      font-size: 12px;
      opacity: 0.75;
      line-height: 1.5;
    }

    /* ── ABOUT STRIP ── */
    .about-strip {
      background: var(--bg);
      border-top: 1px solid var(--border);
    }

    .about-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(2rem, 6vw, 5rem);
      align-items: center;
    }

    .about-img-wrap {
      border-radius: 16px;
      overflow: hidden;
      aspect-ratio: 3/4;
      background: #f5eeea;
    }

    .about-img-wrap p {
      font-family: var(--display);
      font-style: italic;
      font-size: 1rem;
      text-align: center;
      padding: 0 2rem;
    }

    .about-img-wrap span {
      font-size: 10px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--muted);
    }

    .about-text .section-title { margin-bottom: 1.2rem; }

    .about-text p {
      font-size: 15px;
      color: var(--muted);
      line-height: 1.85;
      margin-bottom: 1rem;
    }

    .about-text p strong { color: var(--dark); font-weight: 500; }

    .about-pills {
      display: flex;
      gap: 0.6rem;
      flex-wrap: wrap;
      margin-top: 1.5rem;
    }

    .pill {
      display: inline-block;
      padding: 6px 16px;
      border-radius: 999px;
      background: white;
      border: 1.5px solid var(--border);
      font-size: 11px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #1a1a1a;
      font-weight: 500;
    }

    /* ── INSTAGRAM ── */
    .instagram-section {
      border-top: 1px solid var(--border);
    }

    .instagram-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 1.5rem;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .ig-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 12px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #1a1a1a;
      font-weight: 500;
      transition: color 0.2s;
    }

    .ig-link:hover { color: var(--rose); }

    .ig-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 6px;
      border-radius: 12px;
      overflow: hidden;
    }

    .ig-cell {
      aspect-ratio: 1;
      background: linear-gradient(145deg, #f5eeea, #ede3dc);
      overflow: hidden;
      position: relative;
      cursor: pointer;
    }

    .ig-cell img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
    .ig-cell:hover img { transform: scale(1.06); }

    .ig-overlay {
      position: absolute;
      inset: 0;
      background: rgba(202,164,154,0.5);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.25s;
    }

    .ig-cell:hover .ig-overlay { opacity: 1; }

    .ig-overlay svg { color: white; }

    /* ── NEWSLETTER ── */
    .newsletter-section {
      background: var(--dark);
      color: white;
    }

    .newsletter-inner {
      max-width: 560px;
      margin: 0 auto;
      text-align: center;
    }

    .newsletter-section .section-eyebrow { color: var(--rose-lt); }

    .newsletter-section .section-title { color: white; }

    .newsletter-section .section-title em { color: var(--rose); }

    .nl-sub {
      font-size: 14px;
      color: rgba(255,255,255,0.6);
      margin-bottom: 2rem;
      line-height: 1.7;
    }

    .nl-form {
      display: flex;
      border-radius: 6px;
      overflow: hidden;
      border: 1.5px solid rgba(255,255,255,0.15);
    }

    .nl-form input {
      flex: 1;
      background: transparent;
      border: none;
      padding: 0.9rem 1.2rem;
      color: white;
      font-family: var(--body);
      font-size: 14px;
      outline: none;
    }

    .nl-form input::placeholder { color: rgba(255,255,255,0.35); }

    .nl-form button {
      background: var(--rose);
      color: white;
      border: none;
      padding: 0.9rem 1.5rem;
      font-size: 12px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      font-weight: 500;
      font-family: var(--body);
      transition: background 0.2s;
      white-space: nowrap;
    }

    .nl-form button:hover { background: var(--buy); }

    .nl-note {
      font-size: 11px;
      color: rgba(255,255,255,0.3);
      margin-top: 1rem;
    }

    #nl-success {
      display: none;
      font-size: 13px;
      color: var(--rose-lt);
      margin-top: 1rem;
    }

    /* ── FOOTER ── */
    footer {
      background: #ecaea4;
      color: #1a1a1a;
    }

    .footer-top {
      max-width: 1400px;
      margin: 0 auto;
      padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 4vw, 3rem) clamp(2rem, 4vw, 3rem);
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: clamp(2rem, 4vw, 4rem);
      border-bottom: 1px solid rgba(26,26,26,0.12);
    }

    .footer-brand .logo-wordmark {
      color: #1a1a1a;
      font-size: 1.4rem;
      margin-bottom: 4px;
    }

    .footer-brand .logo-sub { color: rgba(26,26,26,0.55); }

    .footer-brand-desc {
      font-size: 13px;
      line-height: 1.8;
      color: rgba(26,26,26,0.65);
      margin: 1rem 0 1.5rem;
      max-width: 280px;
    }

    .footer-socials {
      display: flex;
      gap: 10px;
    }

    .social-icon {
      width: 38px; height: 38px;
      border-radius: 50%;
      border: 1px solid rgba(26,26,26,0.25);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(26,26,26,0.65);
      transition: border-color 0.2s, color 0.2s, background 0.2s;
    }

    .social-icon:hover {
      border-color: #1a1a1a;
      color: #1a1a1a;
      background: rgba(26,26,26,0.08);
    }

    .footer-col h4 {
      font-size: 11px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: #1a1a1a;
      margin-bottom: 1.2rem;
      font-weight: 600;
    }

    .footer-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.65rem;
    }

    .footer-col ul a {
      font-size: 13px;
      color: rgba(26,26,26,0.65);
      transition: color 0.2s;
    }

    .footer-col ul a:hover { color: #1a1a1a; }

    .footer-bottom {
      max-width: 1400px;
      margin: 0 auto;
      padding: 1.5rem clamp(1rem, 4vw, 3rem);
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .footer-bottom p {
      font-size: 12px;
      color: rgba(26,26,26,0.5);
    }

    .footer-bottom a {
      color: rgba(26,26,26,0.5);
      transition: color 0.2s;
    }

    .footer-bottom a:hover { color: #1a1a1a; }

    .footer-payment {
      display: flex;
      gap: 8px;
      align-items: center;
    }

    .payment-badge {
      background: rgba(26,26,26,0.08);
      border: 1px solid rgba(26,26,26,0.15);
      border-radius: 4px;
      padding: 4px 10px;
      font-size: 10px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: rgba(26,26,26,0.55);
    }

    /* ── MODAL ── */
    .modal-backdrop {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.7);
      z-index: 500;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 1.5rem;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s, visibility 0.3s;
    }

    .modal-backdrop.open {
      opacity: 1;
      visibility: visible;
    }

    .modal-box {
      background: white;
      border-radius: 16px;
      max-width: 820px;
      width: 100%;
      max-height: 90vh;
      overflow-y: auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      box-shadow: 0 40px 80px rgba(0,0,0,0.3);
    }

    .modal-img-wrap {
      border-radius: 16px 0 0 16px;
      overflow: hidden;
      aspect-ratio: 1;
      background: #f7f4f2;
    }

    .modal-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .modal-body {
      padding: 2.5rem;
      display: flex;
      flex-direction: column;
    }

    .modal-close-btn {
      align-self: flex-end;
      background: #f0f0f0;
      border: none;
      border-radius: 50%;
      width: 36px; height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      color: var(--dark);
      cursor: pointer;
      margin-bottom: 1.5rem;
      transition: background 0.2s;
    }

    .modal-close-btn:hover { background: #e0e0e0; }

    .modal-cat {
      font-size: 10px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--rose);
      font-weight: 500;
      margin-bottom: 8px;
    }

    .modal-title {
      font-family: var(--display);
      font-size: 1.8rem;
      font-weight: 300;
      color: var(--dark);
      margin-bottom: 6px;
      line-height: 1.1;
    }

    .modal-price {
      font-size: 1.2rem;
      font-weight: 600;
      color: #1a1a1a;
      margin-bottom: 1.2rem;
    }

    .modal-desc {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.8;
      margin-bottom: 1.5rem;
      flex: 1;
    }

    .modal-material-note {
      font-size: 11px;
      color: rgba(91,107,111,0.6);
      margin-bottom: 1.5rem;
      padding: 10px 14px;
      background: var(--bg);
      border-radius: 6px;
      line-height: 1.6;
    }

    .modal-actions {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .btn-buy-now {
      display: block;
      width: 100%;
      text-align: center;
      background: #ecaea4;
      color: #1a1a1a;
      border: none;
      border-radius: 6px;
      padding: 1rem;
      font-size: 12px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      font-weight: 600;
      font-family: var(--body);
      cursor: pointer;
      transition: background 0.2s;
    }

    .btn-buy-now:hover { background: #c9918a; color: #fff; }

    .btn-add-cart-modal {
      display: block;
      width: 100%;
      text-align: center;
      background: white;
      color: var(--dark);
      border: 1.5px solid var(--border);
      border-radius: 6px;
      padding: 0.9rem;
      font-size: 12px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      font-weight: 500;
      font-family: var(--body);
      cursor: pointer;
      transition: border-color 0.2s;
    }

    .btn-add-cart-modal:hover { border-color: var(--rose); color: var(--rose); }

    /* ── CART DRAWER ── */
    .cart-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.4);
      z-index: 400;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s, visibility 0.3s;
    }

    .cart-overlay.open { opacity: 1; visibility: visible; }

    .cart-drawer {
      position: fixed;
      top: 0; right: 0; bottom: 0;
      width: min(420px, 100vw);
      background: white;
      z-index: 401;
      transform: translateX(100%);
      transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
      display: flex;
      flex-direction: column;
      box-shadow: -20px 0 60px rgba(0,0,0,0.12);
    }

    .cart-drawer.open { transform: translateX(0); }

    .cart-drawer-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.5rem;
      border-bottom: 1px solid var(--border);
    }

    .cart-drawer-header h3 {
      font-family: var(--display);
      font-size: 1.3rem;
      font-weight: 400;
    }

    .cart-close {
      background: none;
      border: none;
      font-size: 1.3rem;
      cursor: pointer;
      color: var(--dark);
    }

    .cart-drawer-body {
      flex: 1;
      overflow-y: auto;
      padding: 1.5rem;
    }

    .cart-empty {
      text-align: center;
      padding: 3rem 0;
      color: var(--muted);
    }

    .cart-empty svg { margin: 0 auto 1rem; color: var(--rose-lt); }

    .cart-empty p { font-size: 14px; margin-bottom: 1.5rem; }

    .cart-item {
      display: flex;
      gap: 1rem;
      padding: 1rem 0;
      border-bottom: 1px solid var(--border);
      align-items: flex-start;
    }

    .cart-item img {
      width: 72px; height: 72px;
      object-fit: cover;
      border-radius: 8px;
      flex-shrink: 0;
    }

    .cart-item-info { flex: 1; }

    .cart-item-info h4 {
      font-size: 14px;
      font-weight: 500;
      margin-bottom: 2px;
    }

    .cart-item-info p {
      font-size: 12px;
      color: var(--muted);
      margin-bottom: 8px;
    }

    .cart-item-controls {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .qty-btn {
      width: 28px; height: 28px;
      border: 1px solid var(--border);
      background: white;
      border-radius: 4px;
      font-size: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      color: var(--dark);
    }

    .qty-display {
      font-size: 13px;
      font-weight: 500;
      min-width: 20px;
      text-align: center;
    }

    .cart-item-price {
      font-weight: 500;
      font-size: 14px;
      white-space: nowrap;
    }

    .cart-remove {
      background: none;
      border: none;
      color: var(--muted);
      font-size: 1.1rem;
      cursor: pointer;
      padding: 2px;
      transition: color 0.2s;
    }

    .cart-remove:hover { color: #c0392b; }

    .cart-drawer-footer {
      padding: 1.5rem;
      border-top: 1px solid var(--border);
      background: var(--bg);
    }

    .cart-subtotal {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1rem;
    }

    .cart-subtotal span { font-size: 14px; color: var(--muted); }
    .cart-subtotal strong { font-size: 1.1rem; font-weight: 600; }

    .cart-shipping-note {
      font-size: 11px;
      color: #c9918a;
      text-align: center;
      margin-bottom: 1rem;
    }

    .btn-checkout {
      display: block;
      width: 100%;
      text-align: center;
      background: #ecaea4;
      color: #1a1a1a;
      border: none;
      border-radius: 6px;
      padding: 1rem;
      font-size: 13px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      font-weight: 600;
      font-family: var(--body);
      cursor: pointer;
      transition: background 0.2s;
      margin-bottom: 0.75rem;
    }

    .btn-checkout:hover { background: #c9918a; color: #fff; }

    .btn-continue {
      display: block;
      width: 100%;
      text-align: center;
      background: transparent;
      color: var(--muted);
      border: 1.5px solid var(--border);
      border-radius: 6px;
      padding: 0.9rem;
      font-size: 12px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      font-weight: 500;
      font-family: var(--body);
      cursor: pointer;
      transition: border-color 0.2s;
    }

    .btn-continue:hover { border-color: var(--rose); color: var(--rose); }

    /* ── TOAST ── */
    .toast {
      position: fixed;
      bottom: 2rem;
      left: 50%;
      transform: translateX(-50%) translateY(4rem);
      background: #1a1a1a;
      color: white;
      padding: 0.8rem 1.5rem;
      border-radius: 999px;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.05em;
      z-index: 600;
      opacity: 0;
      transition: opacity 0.3s, transform 0.3s;
      white-space: nowrap;
    }

    .toast.show {
      opacity: 1;
      transform: translateX(-50%) translateY(0);
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 1024px) {
      .products-grid { grid-template-columns: repeat(2, 1fr); }
      .features-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-top { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 768px) {
      /* ── HEADER ── */
      .nav-left { display: none; }
      header { padding: 0.6rem 1rem; width: calc(100% - 24px); top: 8px; }
      .logo-wordmark { font-size: 0.85rem; letter-spacing: 0.15em; }
      .logo-sub { font-size: 7px; }

      /* ── HERO ── */
      .hero { min-height: auto; height: auto; }
      .hero-split { grid-template-columns: 1fr; display: flex; flex-direction: column; }
      .hero-text-panel { order: 1; min-height: auto; padding: 2.5rem 1.2rem 2rem; }
      .hero-image-panel { order: 2; display: block; height: 280px; position: relative; }
      .hero-image-panel img { width: 100%; height: 280px; object-fit: cover; object-position: center 12%; }
      .hero-product-bubble { bottom: 1rem; left: 1rem; max-width: 180px; padding: 0.75rem 1rem; }
      .hero-product-bubble img { width: 44px !important; height: 44px !important; object-fit: cover !important; flex-shrink: 0; }
      .hero-product-bubble img { width: 40px; height: 40px; }
      .bubble-text p { font-size: 11px; }
      .bubble-text span { font-size: 10px; }
      .hero-headline { font-size: clamp(2.2rem, 8vw, 3rem); }
      .hero-actions { flex-direction: column; gap: 0.75rem; }
      .hero-actions .btn-primary, .hero-actions .btn-outline { width: 100%; text-align: center; }
      .hero-trust { flex-direction: column; gap: 0.5rem; }

      /* ── MODEL STRIP ── */
      .model-strip-img { height: 300px; object-position: center 10%; }

      /* ── SHOP ── */
      .products-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
      .product-info { padding: 0.75rem; }
      .product-name { font-size: 1rem; }
      .category-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }

      /* ── FEATURES ── */
      .features-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }

      /* ── ABOUT ── */
      .about-inner { grid-template-columns: 1fr; gap: 1.5rem; }
      .about-img-wrap { aspect-ratio: 4/5; height: auto; width: 100%; }

      /* ── INSTAGRAM ── */
      .ig-grid { grid-template-columns: repeat(3, 1fr); gap: 3px; }

      /* ── MODAL ── */
      .modal-box { grid-template-columns: 1fr; max-height: 95vh; }
      .modal-img-wrap { border-radius: 16px 16px 0 0; aspect-ratio: 4/3; }
      .modal-body { padding: 1.5rem; }

      /* ── FOOTER ── */
      .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
      .footer-brand { grid-column: 1 / -1; }

      /* ── CART DRAWER ── */
      .cart-drawer { width: 100vw; }

      /* ── CAMPAIGN ── */
      .campaign-story { grid-template-columns: 1fr; padding: 2rem 1.2rem; }
      .campaign-story-img { height: 300px; border-radius: 12px; }
      .steps-grid { grid-template-columns: 1fr; gap: 1rem; }
      .campaign-form { grid-template-columns: 1fr; }
      .form-group.full { grid-column: 1; }
      .form-submit { grid-column: 1; }
      .campaign-back { top: 1rem; left: 1rem; font-size: 11px; }
      .campaign-header h1 { font-size: clamp(2rem, 8vw, 3rem); }
    }

    @media (max-width: 480px) {
      .products-grid { grid-template-columns: 1fr 1fr; gap: 0.6rem; }
      .product-name { font-size: 0.9rem; }
      .product-price { font-size: 0.9rem; }
      .btn-add-cart { padding: 6px 10px; font-size: 10px; }
      .category-grid { grid-template-columns: 1fr; }
      .nl-form { flex-direction: column; border: none; gap: 0.5rem; }
      .nl-form input { border: 1.5px solid rgba(255,255,255,0.15); border-radius: 6px; }
      .nl-form button { border-radius: 6px; }
      .footer-top { grid-template-columns: 1fr; }
      .features-grid { grid-template-columns: 1fr 1fr; }
      .trust-strip { grid-template-columns: 1fr 1fr; }
      .hero-headline { font-size: 2rem; }
    }

    @media (prefers-reduced-motion: reduce) {
      *, .marquee-track, .hero-product-bubble { animation: none !important; transition: none !important; }
    }

    /* ── DROPDOWN ── */
    .nav-dropdown { position: relative; }

    .nav-dropdown-trigger { display: flex; align-items: center; gap: 4px; }

    .nav-dropdown-menu {
      position: absolute;
      top: calc(100% + 12px);
      left: 50%;
      transform: translateX(-50%);
      background: white;
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 0.5rem 0;
      min-width: 160px;
      box-shadow: 0 8px 32px rgba(0,0,0,0.1);
      list-style: none;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
      transform: translateX(-50%) translateY(-4px);
      z-index: 300;
    }

    .nav-dropdown:hover .nav-dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateX(-50%) translateY(0);
    }

    .nav-dropdown-menu li a {
      display: block;
      padding: 0.65rem 1.2rem;
      font-size: 13px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--dark);
      transition: color 0.2s, background 0.2s;
    }

    .nav-dropdown-menu li a:hover {
      color: var(--rose);
      background: #fdf8f7;
    }

    /* ── MODEL STRIP ── */
    .model-strip {
      background: #fdf8f7;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .model-strip-inner {
      max-width: 1400px;
      margin: 0 auto;
      display: block;
    }

    .model-strip-img {
      width: 100%;
      height: 520px;
      object-fit: cover;
      object-position: center 10%;
      display: block;
    }

    @media (max-width: 768px) {
      .model-strip-inner { grid-template-columns: 1fr; }
      .model-strip-img { height: 400px; }
    }

    /* ── FAQ / CARE / SHOPPING PAGES ── */
    .faq-page-inner, .static-page-inner {
      max-width: 900px;
      margin: 0 auto;
      padding: clamp(2rem, 5vw, 4rem) clamp(1.2rem, 5vw, 3rem);
    }
    .faq-hero {
      text-align: center;
      padding-bottom: 2.5rem;
      border-bottom: 1px solid #eef2f4;
      margin-bottom: 3rem;
    }
    .faq-hero h1 { font-size: clamp(2rem, 5vw, 3rem); margin: 0.5rem 0 1rem; }
    .faq-sub { font-size: 14px; color: #7a6a68; }
    .faq-grid { display: flex; flex-direction: column; gap: 2.5rem; }
    .faq-category h2 {
      font-family: var(--display);
      font-size: 1.4rem;
      color: #1a1a1a;
      margin: 0 0 1rem;
      padding-bottom: 0.5rem;
      border-bottom: 2px solid #ecaea4;
    }
    .faq-item { border-bottom: 1px solid #eef2f4; }
    .faq-q {
      width: 100%;
      background: none;
      border: none;
      text-align: left;
      padding: 1rem 0;
      font-size: 15px;
      font-family: var(--body);
      color: #1a1a1a;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
      font-weight: 500;
    }
    .faq-q:hover { color: var(--rose); }
    .faq-icon { font-size: 1.3rem; color: var(--rose); flex-shrink: 0; transition: transform 0.2s; }
    .faq-q.open .faq-icon { transform: rotate(45deg); }
    .faq-a { display: none; padding: 0 0 1rem; }
    .faq-a.open { display: block; }
    .faq-a p { font-size: 14px; color: #7a6a68; line-height: 1.8; margin: 0; }
    .faq-a a { color: var(--rose); }

    /* Static page */
    .static-page-inner h1 { font-size: clamp(2rem, 5vw, 3rem); margin: 0.5rem 0 1rem; }
    .static-intro { font-size: 15px; color: #7a6a68; line-height: 1.8; margin-bottom: 3rem; border-bottom: 1px solid #eef2f4; padding-bottom: 2rem; }

    /* Care guide */
    .care-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 2rem; }
    .care-card { background: #fdf8f7; border: 1px solid #eef2f4; border-radius: 12px; padding: 1.5rem; }
    .care-icon { color: var(--rose); font-size: 1.2rem; margin-bottom: 0.8rem; }
    .care-card h3 { font-family: var(--display); font-size: 1.2rem; color: #1a1a1a; margin: 0 0 1rem; }
    .care-card ul { padding-left: 1.2rem; margin: 0; }
    .care-card li { font-size: 13px; color: #7a6a68; line-height: 1.9; }

    /* Shopping guide */
    .shopping-section { margin-bottom: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid #eef2f4; }
    .shopping-section h2 { font-family: var(--display); font-size: 1.5rem; color: #1a1a1a; margin: 0 0 1rem; }
    .shopping-section h3 { font-size: 1rem; font-weight: 600; color: #1a1a1a; margin: 1.5rem 0 0.5rem; letter-spacing: 0.05em; text-transform: uppercase; font-size: 12px; }
    .shopping-section p { font-size: 14px; color: #7a6a68; line-height: 1.8; margin: 0 0 0.8rem; }
    .shopping-table { width: 100%; border-collapse: collapse; margin-bottom: 1.2rem; font-size: 14px; }
    .shopping-table th { background: #ecaea4; color: #1a1a1a; padding: 10px 14px; text-align: left; font-weight: 500; letter-spacing: 0.05em; font-size: 12px; text-transform: uppercase; }
    .shopping-table td { padding: 10px 14px; border-bottom: 1px solid #eef2f4; color: #7a6a68; }
    .shopping-list { padding-left: 1.2rem; margin: 0 0 1rem; }
    .shopping-list li { font-size: 14px; color: #7a6a68; line-height: 1.9; }
    .payment-methods-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; margin: 1rem 0; }
    .payment-method-item { background: #fdf8f7; border: 1px solid #eef2f4; border-radius: 8px; padding: 10px 14px; font-size: 13px; color: #1a1a1a; }

    @media (max-width: 768px) {
      .care-grid { grid-template-columns: 1fr; }
      .payment-methods-grid { grid-template-columns: 1fr; }
      .shopping-table { font-size: 12px; }
      .shopping-table th, .shopping-table td { padding: 8px 10px; }
    }

    /* ── HERO BUBBLE AS LINK ── */
    .hero-product-bubble {
      display: flex;
    }


    /* ── CAMPAIGN PAGE ── */
    /* ── DESIGN POPUP ── */
    #design-form-popup { display: none; }
    #design-form-popup.active { display: block; }
    @media (max-width: 600px) {
      #design-form-popup > div > div:nth-child(2) > form > div:first-child,
      #design-form-popup > div > div:nth-child(2) > form > div:nth-child(2),
      #design-form-popup > div > div:nth-child(2) > form > div:nth-child(3) {
        grid-template-columns: 1fr !important;
      }
    }

    .page-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: white;
      z-index: 150;
      overflow-y: auto;
    }
    .page-overlay.active { display: block; }

    /* Hide main site header when any overlay page is open */
    body.page-open > header {
      display: none;
    }

    /* ── CAMPAIGN MODEL GRID MOBILE ── */
    @media (max-width: 768px) {
      .campaign-model-grid { grid-template-columns: 1fr !important; }
      .campaign-model-grid img { min-height: 320px !important; }
    }

    /* ── CAMPAIGN NAV — mirrors main header ── */
    .campaign-nav {
      position: sticky;
      top: 0;
      z-index: 10;
      background: white;
      border-bottom: 1px solid #eef2f4;
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      gap: 1rem;
      max-width: 100%;
      padding: 0 clamp(1rem, 4vw, 3rem);
      height: 72px;
    }
    .campaign-nav .nav-left {
      display: flex;
      list-style: none;
      margin: 0;
      padding: 0;
      gap: 2rem;
      align-items: center;
    }
    .campaign-nav .nav-right {
      justify-self: end;
      display: flex;
      align-items: center;
      gap: 0.25rem;
    }
    @media (max-width: 768px) {
      .campaign-nav .nav-left { display: none; }
      .campaign-nav { grid-template-columns: 1fr auto; }
      .campaign-nav .header-logo { justify-self: start; }
      .campaign-hamburger { display: flex !important; }
    }

    .campaign-header {
      background: #ecaea4;
      padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 5vw, 4rem) clamp(3rem, 5vw, 4rem);
      text-align: center;
      position: relative;
    }

    .campaign-back {
      position: absolute;
      top: 1.5rem; left: 2rem;
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 12px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #1a1a1a;
      cursor: pointer;
      background: none;
      border: none;
      font-family: var(--body);
      font-weight: 500;
      text-decoration: none;
      transition: opacity 0.2s;
    }
    .campaign-back:hover { opacity: 0.6; }

    .campaign-header-eyebrow {
      font-size: 11px;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: rgba(26,26,26,0.6);
      margin-bottom: 1rem;
    }

    .campaign-header h1 {
      font-family: var(--display);
      font-size: clamp(2.5rem, 6vw, 5rem);
      font-weight: 300;
      color: #1a1a1a;
      line-height: 1.05;
      margin-bottom: 1rem;
    }

    .campaign-header h1 em {
      font-style: italic;
      color: white;
    }

    .campaign-header-sub {
      font-size: clamp(15px, 1.5vw, 18px);
      color: rgba(26,26,26,0.7);
      max-width: 560px;
      margin: 0 auto;
      line-height: 1.7;
    }

    /* Story section */
    .campaign-story {
      display: grid;
      grid-template-columns: 1fr 1fr;
      max-width: 1400px;
      margin: 0 auto;
      padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem);
      gap: clamp(2rem, 5vw, 5rem);
      align-items: center;
      border-bottom: 1px solid var(--border);
    }

    .campaign-story-img {
      width: 100%;
      height: 480px;
      object-fit: cover;
      object-position: center 20%;
      border-radius: 16px;
      display: block;
    }

    .campaign-story-text .section-eyebrow { margin-bottom: 0.75rem; }

    .campaign-story-text h2 {
      font-family: var(--display);
      font-size: clamp(1.8rem, 3vw, 2.8rem);
      font-weight: 300;
      color: #1a1a1a;
      line-height: 1.1;
      margin-bottom: 1.5rem;
    }

    .campaign-story-text h2 em { font-style: italic; color: var(--rose); }

    .campaign-story-text p {
      font-size: 15px;
      color: #7a6a68;
      line-height: 1.85;
      margin-bottom: 1rem;
    }

    .campaign-story-text p strong { color: #1a1a1a; font-weight: 500; }

    /* How it works */
    .campaign-steps {
      background: #fdf8f7;
      border-bottom: 1px solid var(--border);
    }

    .campaign-steps-inner {
      max-width: 1400px;
      margin: 0 auto;
      padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem);
    }

    .campaign-steps-header {
      text-align: center;
      margin-bottom: 3rem;
    }

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

    .step-card {
      background: white;
      border-radius: 16px;
      padding: 2rem;
      text-align: center;
      border: 1px solid var(--border);
    }

    .step-number {
      width: 48px; height: 48px;
      border-radius: 50%;
      background: #ecaea4;
      color: #1a1a1a;
      font-family: var(--display);
      font-size: 1.3rem;
      font-weight: 400;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.2rem;
    }

    .step-card h4 {
      font-family: var(--display);
      font-size: 1.2rem;
      font-weight: 400;
      color: #1a1a1a;
      margin-bottom: 0.6rem;
    }

    .step-card p {
      font-size: 13px;
      color: #7a6a68;
      line-height: 1.7;
    }

    /* Form section */
    .campaign-form-section {
      max-width: 760px;
      margin: 0 auto;
      padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem);
    }

    .campaign-form-header {
      text-align: center;
      margin-bottom: 3rem;
    }

    .campaign-form-header h2 {
      font-family: var(--display);
      font-size: clamp(1.8rem, 3vw, 2.8rem);
      font-weight: 300;
      color: #1a1a1a;
      margin-bottom: 0.75rem;
      line-height: 1.1;
    }

    .campaign-form-header h2 em { font-style: italic; color: var(--rose); }

    .campaign-form-header p {
      font-size: 14px;
      color: #7a6a68;
      line-height: 1.7;
    }

    .campaign-form {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.2rem;
    }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .form-group.full { grid-column: 1 / -1; }

    .form-group label {
      font-size: 11px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #1a1a1a;
      font-weight: 500;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 0.85rem 1rem;
      border: 1.5px solid var(--border);
      border-radius: 8px;
      font-family: var(--body);
      font-size: 14px;
      color: #1a1a1a;
      background: white;
      transition: border-color 0.2s;
      outline: none;
      -webkit-appearance: none;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: #ecaea4;
    }

    .form-group textarea { resize: vertical; min-height: 130px; }

    .form-submit {
      grid-column: 1 / -1;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1rem;
      margin-top: 0.5rem;
    }

    .btn-form-submit {
      background: #ecaea4;
      color: #1a1a1a;
      border: none;
      border-radius: 6px;
      padding: 1rem 3rem;
      font-family: var(--body);
      font-size: 13px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.2s;
      width: 100%;
    }

    .btn-form-submit:hover { background: #c9918a; color: white; }

    .form-privacy {
      font-size: 11px;
      color: #7a6a68;
      text-align: center;
    }

    #form-success {
      display: none;
      background: #f0faf5;
      border: 1.5px solid #b7e4c7;
      border-radius: 10px;
      padding: 1.5rem;
      text-align: center;
      font-size: 14px;
      color: #1a5c35;
      grid-column: 1 / -1;
    }

    /* Campaign footer strip */
    .campaign-footer-strip {
      background: #1a1a1a;
      padding: 2rem clamp(1.5rem, 5vw, 4rem);
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .campaign-footer-strip p {
      font-size: 12px;
      color: rgba(255,255,255,0.4);
    }

    .campaign-footer-strip a {
      font-size: 12px;
      color: #ecaea4;
      text-decoration: none;
    }

    @media (max-width: 768px) {
      .campaign-story { grid-template-columns: 1fr; }
      .steps-grid { grid-template-columns: 1fr; }
      .campaign-form { grid-template-columns: 1fr; }
      .form-group.full { grid-column: 1; }
      .form-submit { grid-column: 1; }
      .campaign-back { top: 1rem; left: 1rem; }
    }


    /* ── PRIVACY POLICY PAGE ── */
    .privacy-page {
      max-width: 800px;
      margin: 0 auto;
      padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem);
    }
    .privacy-page h1 {
      font-family: var(--display);
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 300;
      color: #1a1a1a;
      margin-bottom: 0.5rem;
    }
    .privacy-page .updated {
      font-size: 12px;
      color: #7a6a68;
      letter-spacing: 0.08em;
      margin-bottom: 3rem;
      text-transform: uppercase;
    }
    .privacy-page h2 {
      font-family: var(--display);
      font-size: 1.4rem;
      font-weight: 400;
      color: #1a1a1a;
      margin: 2.5rem 0 0.75rem;
      border-bottom: 1px solid var(--border);
      padding-bottom: 0.5rem;
    }
    .privacy-page p, .privacy-page li {
      font-size: 14px;
      color: #5a5a5a;
      line-height: 1.9;
      margin-bottom: 0.75rem;
    }
    .privacy-page ul { padding-left: 1.5rem; }
    .privacy-page .highlight-box {
      background: #fdf8f7;
      border-left: 3px solid #ecaea4;
      padding: 1.2rem 1.5rem;
      border-radius: 0 8px 8px 0;
      margin: 1.5rem 0;
    }
    .privacy-page .highlight-box p {
      margin: 0;
      color: #1a1a1a;
      font-weight: 400;
    }

    /* Reveal on scroll */
    .reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.65s ease, transform 0.65s ease; }
    .reveal.visible { opacity: 1; transform: none; }

    /* ── WELCOME POPUP ── */
    .welcome-popup-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(26,26,26,0.6);
      backdrop-filter: blur(4px);
      -webkit-backdrop-filter: blur(4px);
      z-index: 800;
    }
    .welcome-popup-overlay.open { display: block; }

    .welcome-popup {
      display: none;
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -60%);
      width: min(480px, calc(100vw - 2rem));
      background: #fff;
      border-radius: 24px;
      z-index: 801;
      box-shadow: 0 24px 80px rgba(0,0,0,0.18);
      overflow: hidden;
      opacity: 0;
      transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), opacity 0.3s ease;
    }
    .welcome-popup.open {
      display: block;
      transform: translate(-50%, -50%);
      opacity: 1;
    }

    .welcome-popup-close {
      position: absolute;
      top: 1rem;
      right: 1rem;
      background: rgba(0,0,0,0.06);
      border: none;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      font-size: 14px;
      color: #7a6a68;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 1;
      transition: background 0.2s;
    }
    .welcome-popup-close:hover { background: rgba(0,0,0,0.12); }

    .welcome-popup-inner {
      padding: 3rem 2.5rem 2rem;
      text-align: center;
      background: linear-gradient(160deg, #fdf8f7 0%, #fff 60%);
    }

    .welcome-popup-eyebrow {
      font-size: 11px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: #ecaea4;
      font-weight: 500;
      margin-bottom: 0.8rem;
    }

    .welcome-popup-title {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: clamp(2rem, 6vw, 2.8rem);
      font-weight: 300;
      color: #1a1a1a;
      line-height: 1.15;
      margin-bottom: 1rem;
    }
    .welcome-popup-title em { color: #ecaea4; font-style: italic; }

    .welcome-popup-desc {
      font-size: 14px;
      color: #7a6a68;
      line-height: 1.7;
      margin-bottom: 1.5rem;
      max-width: 340px;
      margin-left: auto;
      margin-right: auto;
    }

    .welcome-popup-code-wrap {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: #fdf8f7;
      border: 1.5px dashed #ecaea4;
      border-radius: 10px;
      padding: 0.6rem 1.2rem;
      margin-bottom: 1.5rem;
    }

    .welcome-popup-code {
      font-family: 'Jost', sans-serif;
      font-size: 1.1rem;
      font-weight: 600;
      letter-spacing: 0.15em;
      color: #1a1a1a;
    }

    .welcome-popup-cta {
      display: block;
      width: 100%;
      padding: 1rem;
      background: #1a1a1a;
      color: #fff;
      border: none;
      border-radius: 12px;
      font-family: 'Jost', sans-serif;
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      cursor: pointer;
      margin-bottom: 1rem;
      transition: background 0.2s, transform 0.2s;
    }
    .welcome-popup-cta:hover {
      background: #ecaea4;
      transform: translateY(-1px);
    }

    .welcome-popup-terms {
      font-size: 11px;
      color: #7a6a68;
      margin-bottom: 1rem;
      letter-spacing: 0.03em;
    }

    .welcome-popup-skip {
      background: none;
      border: none;
      font-size: 12px;
      color: #bbb;
      cursor: pointer;
      text-decoration: underline;
      font-family: 'Jost', sans-serif;
      transition: color 0.2s;
    }
    .welcome-popup-skip:hover { color: #7a6a68; }

    @media (max-width: 480px) {
      .welcome-popup-inner { padding: 2.5rem 1.5rem 1.5rem; }
      .welcome-popup-title { font-size: 2rem; }
    }
