  :root {
    --bg: #0b0a08;
    --bg-soft: #14110d;
    --bg-cream: #f4ede0;
    --bg-cream-2: #ebe2d1;
    --ink: #0e0d0b;
    --ink-2: #2a2620;
    --muted: #6b6256;
    --line: #e2d8c4;
    --gold: #c9a063;
    --gold-2: #a87f44;
    --gold-3: #e9cf99;
    --cream: #f4ede0;
    --danger: #c8472b;
    --ok: #2e7a4d;
    --wa: #25D366;
    --shadow-lg: 0 30px 80px -25px rgba(10,8,5,.5);
    --shadow-md: 0 20px 50px -20px rgba(10,8,5,.35);
    --grad-gold: linear-gradient(135deg, #e9cf99 0%, #c9a063 35%, #a87f44 70%, #e9cf99 100%);
  }
  *, *::before, *::after { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; }
  html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
  body {
    font-family: 'Cairo', system-ui, -apple-system, sans-serif;
    background: var(--bg-cream);
    color: var(--ink);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    font-weight: 400;
    font-size: 16px;
  }
  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; cursor: pointer; border: none; background: none; }

  .container { max-width: 1240px; margin: 0 auto; padding: 0 20px; }
  .serif { font-family: 'Playfair Display', serif; font-weight: 500; }
  .gold-text {
    background: var(--grad-gold);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  /* ========== LOADING SCREEN ========== */
  .loader {
    position: fixed; inset: 0;
    background: var(--bg);
    z-index: 999;
    display: flex; align-items: center; justify-content: center;
    transition: opacity .7s ease, visibility .7s ease;
  }
  .loader.hide { opacity: 0; visibility: hidden; pointer-events: none; }
  .loader-logo {
    animation: loaderPulse 1.6s ease-in-out infinite;
  }
  @keyframes loaderPulse {
    0%,100% { opacity: 1; transform: scale(1); }
    50% { opacity: .6; transform: scale(.96); }
  }

  /* ========== TOP BAR ========== */
  .topbar {
    background: #050403;
    color: #d8cfb9;
    text-align: center;
    font-size: 12.5px;
    padding: 9px 14px;
    letter-spacing: .3px;
  }
  .topbar strong { color: var(--gold); font-weight: 700; }

  /* ========== HEADER ========== */
  header.site {
    position: sticky; top: 0; z-index: 50;
    background: rgba(11,10,8,.92);
    backdrop-filter: blur(18px);
    color: var(--cream);
    border-bottom: 1px solid rgba(201,160,99,.15);
  }
  .nav {
    display: flex; align-items: center; justify-content: space-between;
    height: 64px;
  }

  /* ========== BRAND LOGO ========== */
  .brand {
    display: inline-flex; align-items: center; gap: 12px;
    color: var(--cream); line-height: 1;
  }
  .brand-mark { width: 38px; height: 38px; flex-shrink: 0; display: block; }
  .brand-mark .stroke { stroke: url(#goldGrad); }
  .brand-mark .fill { fill: url(#goldGrad); }
  .brand-text { display: flex; flex-direction: column; gap: 2px; }
  .brand-name {
    font-family: 'Playfair Display', serif;
    font-weight: 600; font-size: 22px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--cream); line-height: 1;
  }
  .brand-name .o {
    background: var(--grad-gold);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-style: italic; font-weight: 700;
  }
  .brand-tag {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 9.5px;
    letter-spacing: 4px;
    color: var(--gold);
    text-transform: uppercase;
    opacity: .9; line-height: 1;
  }
  .brand-stacked {
    flex-direction: column; gap: 14px;
    align-items: center; text-align: center;
  }
  .brand-stacked .brand-mark { width: 54px; height: 54px; }
  .brand-stacked .brand-name { font-size: 28px; letter-spacing: 8px; }
  .brand-stacked .brand-tag {
    font-size: 10px; letter-spacing: 6px;
    display: flex; align-items: center; gap: 12px;
  }
  .brand-stacked .brand-tag::before,
  .brand-stacked .brand-tag::after {
    content: ''; width: 30px; height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
  }

  .nav-cta {
    background: var(--grad-gold);
    color: #0b0a08;
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: .3px;
  }
  .primary-menu ul {
    display: flex; align-items: center; gap: 18px;
    list-style: none; padding: 0; margin: 0;
  }
  .primary-menu a {
    color: #d8cfb9;
    font-size: 13px;
    font-weight: 700;
    transition: color .25s;
  }
  .primary-menu a:hover { color: var(--gold); }

  /* ========== HERO ========== */
  .hero {
    position: relative; overflow: hidden;
    background: var(--bg); color: var(--cream);
    padding: 36px 0 36px;
  }
  .hero::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(60% 80% at 80% 20%, rgba(201,160,99,.12) 0%, transparent 60%);
    pointer-events: none;
  }
  .hero-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 50px; align-items: center;
    position: relative; z-index: 2;
  }
  .eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(201,160,99,.1);
    border: 1px solid rgba(201,160,99,.3);
    color: var(--gold);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 11.5px; font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 18px;
    text-transform: uppercase;
  }
  .pulse {
    width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
    animation: pulse 1.8s infinite;
  }
  @keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(201,160,99,.6);}
    70% { box-shadow: 0 0 0 10px rgba(201,160,99,0);}
    100% { box-shadow: 0 0 0 0 rgba(201,160,99,0);}
  }
  h1.hero-title {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: clamp(34px, 6vw, 64px);
    line-height: 1.05;
    letter-spacing: -1px;
    margin: 0 0 14px;
  }
  h1.hero-title .accent {
    font-style: italic;
    background: var(--grad-gold);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  .hero-sub {
    font-size: 16px;
    color: #b9b0a0;
    margin: 0 0 22px;
    max-width: 480px;
    font-weight: 300;
  }
  .hero-mini { display: flex; gap: 16px; flex-wrap: wrap; margin: 0 0 22px; }
  .hero-mini .chip {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 13px; color: #d8cfb9;
  }
  .hero-mini .chip::before { content: '✓'; color: var(--gold); font-weight: 900; }

  /* Color configurator */
  .config-row {
    display: flex; align-items: center; gap: 14px;
    margin: 0 0 20px;
  }
  .config-label { font-size: 12px; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; }
  .swatches { display: flex; gap: 8px; }
  .swatch-btn {
    width: 38px; height: 38px; border-radius: 50%;
    border: 2px solid rgba(201,160,99,.3);
    cursor: pointer;
    position: relative;
    transition: all .25s;
  }
  .swatch-btn.black { background: #0e0d0b; }
  .swatch-btn.white { background: #f4ede0; }
  .swatch-btn.active {
    border-color: var(--gold);
    transform: scale(1.1);
    box-shadow: 0 0 0 3px rgba(201,160,99,.2);
  }
  .swatch-btn.active::after {
    content: '✓'; position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-weight: 900;
  }
  .swatch-btn.white.active::after { color: var(--gold-2); }

  .price-block {
    display: flex; align-items: baseline; gap: 14px;
    margin-bottom: 22px; flex-wrap: wrap;
  }
  .price-now {
    font-family: 'Playfair Display', serif;
    font-size: 52px; font-weight: 600;
    background: var(--grad-gold);
    -webkit-background-clip: text;
    background-clip: text; color: transparent;
    line-height: 1; letter-spacing: -1px;
  }
  .price-now small { font-size: 18px; color: var(--gold); -webkit-text-fill-color: currentColor; margin-right: 4px; }
  .price-old {
    font-size: 20px; color: #6b6256;
    text-decoration: line-through;
    text-decoration-color: var(--danger);
    font-weight: 300;
  }
  .price-save {
    background: var(--danger); color: #fff;
    padding: 5px 12px; border-radius: 999px;
    font-size: 12px; font-weight: 800;
  }

  .cta-row { display: flex; gap: 10px; flex-wrap: wrap; }
  .btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 17px 28px; border-radius: 4px;
    font-weight: 800; font-size: 15px; letter-spacing: .5px;
    transition: all .35s cubic-bezier(.2,.8,.2,1);
    min-height: 54px;
  }
  .btn-primary {
    background: var(--grad-gold);
    color: #0b0a08;
    background-size: 200% 200%;
    box-shadow: 0 16px 36px -12px rgba(201,160,99,.5);
    flex: 1;
  }
  .btn-primary:active { transform: scale(.98); }
  .hero-visual { position: relative; aspect-ratio: 4/5; }
  .hero-image {
    position: relative; width: 100%; height: 100%;
    overflow: hidden; border-radius: 4px;
    box-shadow: var(--shadow-lg);
  }
  .hero-image img {
    width: 100%; height: 100%; object-fit: cover;
    transition: opacity .5s ease;
  }
  .frame-corner {
    position: absolute; width: 50px; height: 50px;
    border: 1.5px solid var(--gold); z-index: 2;
    pointer-events: none;
  }
  .fc-tl { top: -8px; right: -8px; border-bottom: none; border-left: none; }
  .fc-tr { top: -8px; left: -8px; border-bottom: none; border-right: none; }
  .fc-bl { bottom: -8px; right: -8px; border-top: none; border-left: none; }
  .fc-br { bottom: -8px; left: -8px; border-top: none; border-right: none; }
  .hero-badge {
    position: absolute; top: 16px; right: 16px;
    background: rgba(11,10,8,.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201,160,99,.3);
    color: var(--cream);
    font-size: 12px; padding: 8px 14px;
    border-radius: 999px; font-weight: 600; z-index: 3;
  }
  .hero-badge .stars { color: var(--gold); letter-spacing: 2px; }
  .stock {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(200,71,43,.1);
    border: 1px solid rgba(200,71,43,.3);
    color: #ff8a65;
    padding: 8px 14px; border-radius: 6px;
    font-size: 12.5px; font-weight: 600;
    margin-bottom: 18px;
  }

  /* ========== TRUST STRIP ========== */
  .trust {
    background: var(--bg-soft); color: #d8cfb9;
    padding: 22px 0;
    border-top: 1px solid rgba(201,160,99,.15);
    border-bottom: 1px solid rgba(201,160,99,.15);
  }
  .trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }
  .trust-item {
    display: flex; align-items: center; gap: 12px;
    font-size: 13px;
  }
  .trust-icon {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(201,160,99,.1);
    border: 1px solid rgba(201,160,99,.3);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); flex-shrink: 0;
  }
  .trust-item strong { display: block; font-size: 13.5px; color: var(--cream); font-weight: 700; }
  .trust-item span { color: #8f8678; font-size: 11.5px; }

  /* ========== SECTIONS BASE ========== */
  section { padding: 70px 0; position: relative; }
  .section-tag {
    display: inline-block;
    color: var(--gold-2);
    font-size: 11px; font-weight: 700;
    letter-spacing: 4px; text-transform: uppercase;
    margin-bottom: 14px;
  }
  h2.section-title {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: clamp(28px, 5vw, 44px);
    line-height: 1.1;
    margin: 0 0 18px;
    color: var(--ink);
    letter-spacing: -.8px;
  }
  h2.section-title .accent { font-style: italic; color: var(--gold-2); }
  .section-head { text-align: center; margin-bottom: 44px; }
  .section-sub {
    font-size: 15px; color: var(--muted);
    margin: 0 auto 0; max-width: 600px;
  }

  /* ========== WHY ========== */
  .why-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
  .why-card {
    background: #fff;
    border: 1px solid var(--line);
    padding: 28px 22px;
    border-radius: 6px;
    text-align: center;
    transition: all .3s;
  }
  .why-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
  }
  .why-icon {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, #1a1612, #0b0a08);
    color: var(--gold);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 14px;
    border: 1px solid rgba(201,160,99,.3);
  }
  .why-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 17px; font-weight: 600; margin: 0;
    color: var(--ink);
  }

  /* ========== BRAND STORY ========== */
  .story {
    background: var(--bg-cream-2);
    overflow: hidden;
  }
  .story-grid {
    display: grid; grid-template-columns: 1fr 1.1fr;
    gap: 60px; align-items: center;
  }
  .story-image {
    border-radius: 6px; overflow: hidden;
    aspect-ratio: 4/5; box-shadow: var(--shadow-lg);
    position: relative;
  }
  .story-image img { width: 100%; height: 100%; object-fit: cover; }
  .story-image::after {
    content: '— Le Maître Artisan'; position: absolute;
    bottom: 22px; right: 22px;
    background: rgba(11,10,8,.85); backdrop-filter: blur(8px);
    color: var(--gold-3); padding: 8px 14px;
    border-radius: 999px;
    font-family: 'Playfair Display', serif;
    font-style: italic; font-size: 12px;
    letter-spacing: 1px;
  }
  .story-text .signature {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--gold-2);
    font-size: 17px;
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(168,127,68,.25);
  }
  .story-quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 22px;
    line-height: 1.5;
    color: var(--ink);
    margin: 0 0 18px;
    position: relative;
    padding-right: 26px;
  }
  .story-quote::before {
    content: '"'; position: absolute;
    right: -8px; top: -28px;
    font-family: 'Playfair Display', serif;
    font-size: 90px; color: var(--gold);
    opacity: .35; line-height: 1;
  }

  /* ========== LOOKBOOK ========== */
  .lookbook { padding: 0; background: var(--bg); }
  .lookbook-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    height: 60vh; min-height: 420px;
  }
  .lookbook-cell { position: relative; overflow: hidden; }
  .lookbook-cell img {
    width: 100%; height: 100%; object-fit: cover;
    filter: brightness(.82);
    transition: all 1s;
  }
  .lookbook-cell::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.7) 100%);
  }
  .lookbook-cell:hover img { filter: brightness(1); transform: scale(1.05); }
  .lookbook-label {
    position: absolute; bottom: 24px; right: 24px; left: 24px;
    color: var(--cream); z-index: 2;
  }
  .lookbook-label .num {
    font-family: 'Playfair Display', serif;
    color: var(--gold); font-style: italic;
    font-size: 13px; letter-spacing: 3px;
    display: block; margin-bottom: 6px;
  }
  .lookbook-label .ttl {
    font-family: 'Playfair Display', serif;
    font-size: 22px; font-weight: 600; line-height: 1.2;
    margin: 0;
  }

  /* ========== SPECS ========== */
  .specs { background: var(--bg-cream); }
  .specs-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: center;
  }
  .specs-image {
    border-radius: 6px; overflow: hidden;
    background: #fff; padding: 20px;
    box-shadow: var(--shadow-md);
    aspect-ratio: 3/4;
  }
  .specs-image img { width: 100%; height: 100%; object-fit: contain; }
  .specs-table {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
  }
  .specs-row {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    padding: 16px 22px;
    border-bottom: 1px solid var(--line);
    font-size: 14.5px;
  }
  .specs-row:last-child { border-bottom: none; }
  .specs-row:nth-child(odd) { background: var(--bg-cream); }
  .specs-row .key {
    font-weight: 700; color: var(--ink);
    display: flex; align-items: center; gap: 10px;
  }
  .specs-row .key svg { color: var(--gold-2); }
  .specs-row .val { color: var(--ink-2); font-weight: 500; }
  .specs-row .val .badge {
    display: inline-block;
    background: rgba(46,122,77,.1);
    color: var(--ok);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px; font-weight: 700;
    margin-right: 6px;
  }

  /* ========== COLORS ========== */
  .colors { background: var(--bg-cream-2); }
  .colors-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .color-card {
    position: relative; border-radius: 6px;
    overflow: hidden; aspect-ratio: 1/1;
  }
  .color-card img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 1s;
  }
  .color-card:hover img { transform: scale(1.05); }
  .color-card::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.8) 100%);
    z-index: 1;
  }
  .color-info {
    position: absolute; bottom: 22px; right: 22px; left: 22px;
    color: #fff; z-index: 2;
  }
  .color-info .swatch {
    display: inline-block; width: 12px; height: 12px;
    border-radius: 50%; vertical-align: middle;
    margin-left: 6px; border: 1.5px solid rgba(255,255,255,.4);
  }
  .swatch.black { background: #0e0d0b; }
  .swatch.white { background: #f4ede0; }
  .color-info h4 {
    font-family: 'Playfair Display', serif;
    font-size: 26px; font-weight: 600; margin: 0;
  }

  /* ========== CRAFT ========== */
  .craft { background: var(--bg); color: var(--cream); }
  .craft .section-title { color: var(--cream); }
  .craft .section-tag { color: var(--gold); }
  .craft-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: center;
  }
  .craft-image {
    border-radius: 6px; overflow: hidden;
    aspect-ratio: 3/4; box-shadow: var(--shadow-lg);
  }
  .craft-image img { width:100%; height:100%; object-fit: cover; }
  .craft-stats {
    display: grid; grid-template-columns: repeat(2,1fr);
    gap: 16px; margin-top: 26px;
  }
  .stat {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(201,160,99,.2);
    padding: 22px; border-radius: 6px;
    text-align: center;
  }
  .stat .num {
    font-family: 'Playfair Display', serif;
    font-size: 36px; font-weight: 600;
    background: var(--grad-gold);
    -webkit-background-clip: text;
    background-clip: text; color: transparent;
    line-height: 1; margin-bottom: 6px;
  }
  .stat .lbl { font-size: 12.5px; color: #b9b0a0; }

  /* ========== CARE ========== */
  .care { background: var(--bg-cream); }
  .care-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }
  .care-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 30px 26px;
    text-align: center;
  }
  .care-icon {
    width: 60px; height: 60px;
    border-radius: 50%;
    background: var(--grad-gold);
    display: inline-flex; align-items: center; justify-content: center;
    color: #0b0a08;
    margin-bottom: 16px;
  }
  .care-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 19px; font-weight: 600;
    margin: 0 0 10px;
  }
  .care-card p {
    margin: 0; color: var(--muted);
    font-size: 14.5px; line-height: 1.7;
  }

  /* ========== PRESS ========== */
  .press { background: #fff; padding: 50px 0; }
  .press-title {
    text-align: center;
    color: var(--muted); font-size: 11px;
    letter-spacing: 5px; text-transform: uppercase;
    margin-bottom: 26px; font-weight: 600;
  }
  .press-row {
    display: flex; justify-content: space-around; align-items: center;
    flex-wrap: wrap; gap: 30px;
  }
  .press-logo {
    font-family: 'Playfair Display', serif;
    color: #6b6256; opacity: .65;
    transition: opacity .25s;
    font-size: 22px;
    letter-spacing: 2px;
  }
  .press-logo:hover { opacity: 1; }
  .press-logo .italic { font-style: italic; }
  .press-logo .light { font-weight: 300; }
  .press-logo .heavy { font-weight: 700; }
  .press-logo .small { font-size: 14px; vertical-align: middle; }

  /* ========== ORDER ========== */
  .order {
    background: linear-gradient(180deg, var(--bg-cream) 0%, var(--bg-cream-2) 100%);
  }
  .order-card {
    display: grid; grid-template-columns: 1fr 1.1fr;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--line);
  }
  .order-visual {
    background: var(--bg);
    color: var(--cream);
    padding: 44px 36px;
    position: relative; overflow: hidden;
  }
  .order-visual::before {
    content: ''; position: absolute; inset: 0;
    background: url('../images/black-living.webp') center/cover;
    opacity: .22;
  }
  .order-visual::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(11,10,8,.95), rgba(11,10,8,.85));
  }
  .order-visual > * { position: relative; z-index: 2; }
  .order-visual h3 {
    font-family: 'Playfair Display', serif;
    font-size: 30px; font-weight: 600;
    margin: 0 0 8px; line-height: 1.15;
  }
  .order-visual h3 .accent { font-style: italic; color: var(--gold); }
  .order-visual p { color: #c8bdaa; margin: 0 0 24px; font-size: 14px; }

  .price-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(201,160,99,.3);
    border-radius: 8px;
    padding: 22px;
  }
  .price-card .row {
    display: flex; justify-content: space-between;
    margin-bottom: 10px; font-size: 14px;
  }
  .price-card .row span:first-child { color: #c8bdaa; }
  .price-card .row span:last-child { font-weight: 600; }
  .price-card hr { border: none; border-top: 1px dashed rgba(201,160,99,.25); margin: 14px 0; }
  .price-card .total {
    display: flex; justify-content: space-between; align-items: baseline;
  }
  .price-card .total .lbl { font-size: 13px; color: var(--gold); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
  .price-card .total .val {
    font-family: 'Playfair Display', serif;
    font-size: 34px; font-weight: 600;
    background: var(--grad-gold);
    -webkit-background-clip: text;
    background-clip: text; color: transparent;
  }
  .price-card .total .val small { font-size: 15px; -webkit-text-fill-color: var(--gold); margin-right: 3px; }

  .order-form { padding: 44px 36px; }
  .form-head h3 {
    font-family: 'Playfair Display', serif;
    font-size: 26px; font-weight: 600;
    margin: 6px 0 6px;
  }
  .form-head h3 .accent { font-style: italic; color: var(--gold-2); }
  .form-head p { margin: 0 0 24px; color: var(--muted); font-size: 14px; }

  .field { margin-bottom: 16px; }
  .field label {
    display: block;
    font-size: 12px; font-weight: 700; color: var(--ink);
    margin-bottom: 8px;
    letter-spacing: .8px;
    text-transform: uppercase;
  }
  .field label .req { color: var(--danger); }
  .input, .select {
    width: 100%;
    padding: 17px 18px;
    border: 1.5px solid var(--line);
    background: #faf6ec;
    border-radius: 6px;
    font-family: inherit;
    font-size: 16px;
    color: var(--ink);
    transition: all .25s;
    min-height: 54px;
  }
  .input:focus, .select:focus {
    outline: none;
    border-color: var(--gold);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(201,160,99,.12);
  }
  .input::placeholder { color: #b8ad9c; font-weight: 300; }
  .select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23a87f44' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 18px center;
    padding-left: 44px;
  }
  .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

  /* Color choice in form */
  .form-color-row {
    display: flex; gap: 10px;
  }
  .form-color {
    flex: 1; padding: 14px;
    border: 1.5px solid var(--line);
    background: #faf6ec;
    border-radius: 6px;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center; gap: 10px;
    font-weight: 700; font-size: 14px;
    transition: all .25s;
  }
  .form-color.active {
    border-color: var(--gold);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(201,160,99,.15);
  }
  .form-color .dot {
    width: 16px; height: 16px;
    border-radius: 50%;
    border: 1.5px solid rgba(0,0,0,.15);
  }
  .form-color.noir .dot { background: #0e0d0b; }
  .form-color.blanc .dot { background: #f4ede0; }

  .submit-btn {
    width: 100%;
    background: var(--bg);
    color: var(--cream);
    padding: 19px;
    border-radius: 6px;
    font-weight: 800; font-size: 15.5px;
    letter-spacing: .5px;
    margin-top: 8px;
    box-shadow: 0 20px 50px -16px rgba(11,10,8,.5);
    display: flex; align-items: center; justify-content: center; gap: 10px;
    transition: all .3s;
    position: relative; overflow: hidden;
    border: 1px solid var(--gold);
    min-height: 58px;
  }
  .submit-btn::before {
    content: ''; position: absolute; inset: 0;
    background: var(--grad-gold);
    transform: translateX(100%);
    transition: transform .4s;
    z-index: 0;
  }
  .submit-btn span, .submit-btn svg { position: relative; z-index: 1; transition: color .3s; }
  .submit-btn:hover::before { transform: translateX(0); }
  .submit-btn:hover span, .submit-btn:hover svg { color: #0b0a08; }
  .submit-btn:active { transform: scale(.98); }

  .form-foot {
    margin-top: 16px;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    color: var(--muted); font-size: 12px;
  }

  /* Thank you state */
  .thanks {
    display: none;
    text-align: center; padding: 30px 20px;
  }
  .thanks.show { display: block; }
  .thanks-icon {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: var(--grad-gold);
    display: inline-flex; align-items: center; justify-content: center;
    color: #0b0a08; margin: 0 auto 22px;
    animation: thanksPop .6s cubic-bezier(.2,.8,.3,1.4);
  }
  @keyframes thanksPop {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
  }
  .thanks h4 {
    font-family: 'Playfair Display', serif;
    font-size: 26px; font-weight: 600;
    margin: 0 0 10px;
  }
  .thanks p { color: var(--muted); margin: 0 0 20px; font-size: 15px; }
  .thanks .order-id {
    background: var(--bg-cream-2);
    border: 1px dashed var(--gold);
    padding: 12px 18px;
    border-radius: 6px;
    display: inline-block;
    margin-bottom: 24px;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--gold-2);
    letter-spacing: 2px;
  }
  .thanks-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
  .thanks-actions a {
    padding: 12px 22px;
    border-radius: 6px;
    font-weight: 700; font-size: 13.5px;
    display: inline-flex; align-items: center; gap: 8px;
  }
  .thanks-actions .wa { background: var(--wa); color: #fff; }
  .thanks-actions .home { background: var(--bg); color: #fff; border: 1px solid var(--gold); }

  /* ========== REVIEWS ========== */
  .reviews-grid {
    display: grid; grid-template-columns: repeat(3,1fr);
    gap: 18px;
  }
  .review-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 26px;
    position: relative;
  }
  .review-card .stars {
    color: var(--gold); letter-spacing: 3px;
    font-size: 16px; margin-bottom: 14px;
  }
  .review-card .text {
    color: var(--ink-2); font-size: 14.5px;
    margin-bottom: 18px; line-height: 1.75;
  }
  .review-author { display: flex; align-items: center; gap: 12px; }
  .avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--grad-gold);
    color: #0b0a08; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    font-size: 17px;
    font-family: 'Playfair Display', serif;
  }
  .review-author strong {
    display: block; font-size: 14px; color: var(--ink);
    font-family: 'Playfair Display', serif; font-weight: 600;
  }
  .review-author span { font-size: 12px; color: var(--muted); }
  .verified {
    position: absolute; top: 22px; left: 22px;
    background: var(--ok); color: #fff;
    font-size: 10px; font-weight: 700;
    padding: 3px 9px; border-radius: 999px;
    letter-spacing: .3px;
  }

  /* ========== NEWSLETTER ========== */
  .newsletter {
    background: var(--bg);
    color: var(--cream);
    position: relative; overflow: hidden;
    padding: 70px 0;
  }
  .newsletter::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(50% 80% at 50% 50%, rgba(201,160,99,.08), transparent 70%);
  }
  .newsletter > .container { position: relative; z-index: 2; text-align: center; max-width: 640px; }
  .newsletter .section-title { color: var(--cream); margin-bottom: 12px; }
  .newsletter p { color: #b9b0a0; margin: 0 0 26px; font-size: 15px; }
  .newsletter-form {
    display: flex; gap: 8px; max-width: 480px; margin: 0 auto;
    flex-wrap: wrap;
  }
  .newsletter-form input {
    flex: 1; min-width: 220px;
    padding: 16px 20px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(201,160,99,.3);
    color: var(--cream);
    border-radius: 4px;
    font-family: inherit;
    font-size: 15px;
    min-height: 52px;
  }
  .newsletter-form input::placeholder { color: #8f8678; }
  .newsletter-form input:focus { outline: none; border-color: var(--gold); }
  .newsletter-form button {
    padding: 16px 24px;
    background: var(--grad-gold);
    color: #0b0a08;
    border-radius: 4px;
    font-weight: 800; font-size: 14px;
    letter-spacing: .5px;
    min-height: 52px;
  }
  .newsletter-foot { margin-top: 16px; font-size: 11.5px; color: #6b6256; letter-spacing: .5px; }

  /* ========== FAQ ========== */
  .faq-list { max-width: 760px; margin: 0 auto; }
  .faq-item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 6px;
    margin-bottom: 10px;
    overflow: hidden;
  }
  .faq-item.open { border-color: var(--gold); }
  .faq-q {
    width: 100%; text-align: right;
    padding: 20px 22px;
    font-size: 15.5px; font-weight: 600;
    color: var(--ink);
    display: flex; justify-content: space-between; align-items: center;
    gap: 14px; min-height: 60px;
  }
  .faq-q .ic {
    width: 30px; height: 30px;
    background: var(--bg-cream-2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; font-weight: 700; color: var(--ink);
    transition: all .3s; flex-shrink: 0;
  }
  .faq-item.open .ic { background: var(--grad-gold); color: #0b0a08; transform: rotate(45deg); }
  .faq-a { max-height: 0; overflow: hidden; transition: max-height .3s; }
  .faq-a-inner {
    padding: 0 22px 20px;
    color: var(--muted);
    font-size: 14.5px;
    line-height: 1.85;
  }
  .faq-item.open .faq-a { max-height: 260px; }

  /* ========== FINAL CTA ========== */
  .final-cta {
    background: var(--bg); color: var(--cream);
    text-align: center;
    position: relative; overflow: hidden;
  }
  .final-cta::before {
    content: ''; position: absolute; inset: 0;
    background: url('../images/black-sofa.jpeg') center/cover;
    opacity: .12;
  }
  .final-cta > * { position: relative; z-index: 2; }
  .final-cta .section-title { color: var(--cream); }

  /* ========== FOOTER ========== */
  footer.site {
    background: #050403;
    color: #8f8678;
    padding: 60px 0 26px;
    border-top: 1px solid #1a1612;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
  }
  .footer-col h5 {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    font-size: 13px;
    font-weight: 600;
    margin: 0 0 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
  }
  .footer-col p, .footer-col a, .footer-col li {
    color: #c8bdaa;
    font-size: 13.5px;
    line-height: 1.85;
    font-weight: 300;
  }
  .footer-col ul { list-style: none; padding: 0; margin: 0; }
  .footer-col li { margin-bottom: 8px; }
  .footer-col a { transition: color .25s; }
  .footer-col a:hover { color: var(--gold); }
  .footer-contact { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
  .footer-contact svg { color: var(--gold); flex-shrink: 0; }
  .pay-row { display: flex; gap: 8px; margin-top: 14px; align-items: center; flex-wrap: wrap; }
  .pay-badge {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(201,160,99,.2);
    color: var(--cream);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .3px;
  }
  .copy {
    font-size: 12px; color: #6b6256;
    margin-top: 24px; padding-top: 24px;
    border-top: 1px solid #1a1612;
    letter-spacing: .5px;
    text-align: center;
  }
  .copy .rc { color: #8f8678; }

  /* ========== STICKY MOBILE CTA ========== */
  .mobile-cta {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: rgba(5,4,3,.97);
    backdrop-filter: blur(14px);
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    z-index: 80;
    box-shadow: 0 -10px 30px rgba(0,0,0,.4);
    border-top: 1px solid rgba(201,160,99,.25);
  }
  .mobile-cta-row { display: flex; gap: 8px; }
  .mobile-cta-row a {
    display: flex; align-items: center; justify-content: center;
    padding: 15px; border-radius: 6px;
    font-weight: 800; font-size: 14.5px;
    min-height: 52px;
  }
  .mobile-cta-row .buy {
    flex: 1; background: var(--grad-gold);
    color: #0b0a08; gap: 8px;
  }
  /* ========== SOCIAL PROOF TOAST ========== */
  .toast {
    position: fixed;
    bottom: 100px; right: 24px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 12px 16px;
    box-shadow: 0 20px 50px -15px rgba(0,0,0,.25);
    display: flex; align-items: center; gap: 12px;
    z-index: 70;
    max-width: 290px;
    transform: translateX(120%);
    transition: transform .5s cubic-bezier(.2,.8,.2,1);
    font-size: 13px;
  }
  .toast.show { transform: translateX(0); }
  .toast .toast-avatar {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--grad-gold);
    color: #0b0a08; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-family: 'Playfair Display', serif;
  }
  .toast strong { font-family: 'Playfair Display', serif; font-weight: 600; display: block; color: var(--ink); }
  .toast .time { color: var(--muted); font-size: 11.5px; }
  .toast .check {
    color: var(--ok); font-weight: 900;
    margin-right: auto;
  }

  /* ========== RESPONSIVE ========== */
  @media (max-width: 1000px) {
    .hero-grid, .craft-grid, .order-card, .specs-grid, .story-grid { grid-template-columns: 1fr; gap: 30px; }
    .why-grid, .footer-grid { grid-template-columns: 1fr 1fr; }
    .care-grid { grid-template-columns: 1fr; gap: 14px; }
    .reviews-grid { grid-template-columns: 1fr; }
    .trust-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
    .lookbook-strip { grid-template-columns: 1fr; height: auto; }
    .lookbook-cell { aspect-ratio: 16/10; }
    section { padding: 56px 0; }
    .hero { padding: 28px 0 30px; }
  }
  @media (max-width: 600px) {
    body { padding-bottom: 84px; }
    .container { padding: 0 16px; }
    .nav { height: 56px; }
    .nav-cta { padding: 8px 14px; font-size: 12px; }
    .brand-mark { width: 32px; height: 32px; }
    .brand-name { font-size: 17px; letter-spacing: 3.5px; }
    .brand-tag { font-size: 8px; letter-spacing: 3px; }
    .brand { gap: 9px; }
    .brand-stacked .brand-name { font-size: 22px; letter-spacing: 6px; }
    .brand-stacked .brand-mark { width: 46px; height: 46px; }

    /* HERO image first */
    .hero-grid { grid-template-areas: "img" "txt"; gap: 24px; }
    .hero-grid > div:first-child { grid-area: txt; }
    .hero-visual { grid-area: img; aspect-ratio: 4/4.5; }
    h1.hero-title { font-size: 34px; line-height: 1.05; }
    .hero-sub { font-size: 15px; margin-bottom: 16px; }
    .hero-mini { gap: 12px; margin-bottom: 18px; }
    .price-now { font-size: 42px; }
    .price-old { font-size: 17px; }
    .price-save { font-size: 11px; padding: 4px 10px; }
    .stock { font-size: 12px; }
    .btn-primary { flex: 1; padding: 16px; font-size: 14.5px; }
    .cta-row { gap: 8px; }

    /* Trust */
    .trust { padding: 18px 0; }
    .trust-item { gap: 10px; font-size: 12.5px; }
    .trust-icon { width: 36px; height: 36px; }
    .trust-item span { display: none; }

    /* Sections */
    section { padding: 48px 0; }
    h2.section-title { font-size: 28px; }
    .section-tag { font-size: 10.5px; letter-spacing: 3px; }
    .section-head { margin-bottom: 32px; }

    /* Why */
    .why-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .why-card { padding: 20px 14px; }
    .why-icon { width: 46px; height: 46px; margin-bottom: 10px; }
    .why-icon svg { width: 22px; height: 22px; }
    .why-card h3 { font-size: 14.5px; }

    /* Story */
    .story-quote { font-size: 18px; }
    .story-image::after { font-size: 10px; padding: 6px 10px; }

    /* Specs */
    .specs-image { aspect-ratio: 4/3; padding: 14px; }
    .specs-row { padding: 14px 16px; font-size: 13.5px; grid-template-columns: 1fr 1.2fr; gap: 12px; }
    .specs-row .key { font-size: 13px; }

    /* Lookbook */
    .lookbook-cell { aspect-ratio: 4/5; }
    .lookbook-label { right: 18px; left: 18px; bottom: 20px; }
    .lookbook-label .ttl { font-size: 19px; }

    /* Colors */
    .colors-grid { grid-template-columns: 1fr; gap: 14px; }
    .color-info h4 { font-size: 22px; }

    /* Craft */
    .craft-stats { gap: 10px; }
    .stat { padding: 14px; }
    .stat .num { font-size: 28px; }
    .stat .lbl { font-size: 11px; }

    /* Care */
    .care-card { padding: 22px 18px; }
    .care-icon { width: 50px; height: 50px; }

    /* Press */
    .press-row { gap: 18px; }
    .press-logo { font-size: 16px; }

    /* Order */
    .order-visual, .order-form { padding: 30px 22px; }
    .order-visual h3 { font-size: 24px; }
    .price-card { padding: 18px; }
    .price-card .total .val { font-size: 28px; }
    .form-head h3 { font-size: 22px; }
    .field-row { grid-template-columns: 1fr; gap: 0; }
    .field { margin-bottom: 14px; }

    /* Reviews */
    .review-card { padding: 22px; }

    /* Newsletter */
    .newsletter { padding: 50px 0; }
    .newsletter-form { flex-direction: column; }
    .newsletter-form button { width: 100%; }

    /* FAQ */
    .faq-q { padding: 18px; font-size: 14.5px; min-height: 56px; }
    .faq-a-inner { padding: 0 18px 18px; font-size: 13.5px; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr; gap: 26px; text-align: center; }
    .footer-contact { justify-content: center; }
    .pay-row { justify-content: center; }
    .mobile-cta { display: block; }

    .hero-badge { font-size: 11px; padding: 6px 12px; top: 12px; right: 12px; }
    .frame-corner { width: 38px; height: 38px; }

    .toast { left: 16px; right: 16px; bottom: 90px; max-width: none; }
  }

  /* Reveal */
  .reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s, transform .8s; }
  .reveal.in { opacity: 1; transform: none; }

  /* ========== WORDPRESS + WOOCOMMERCE ========== */
  .page-shell, .woo-shell {
    background: var(--bg-cream);
    min-height: 60vh;
    padding: 56px 0 72px;
  }
  .content-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 34px;
    box-shadow: var(--shadow-md);
  }
  .page-title,
  .woocommerce-products-header__title,
  .woocommerce div.product .product_title {
    font-family: 'Playfair Display', serif;
    color: var(--ink);
    font-weight: 600;
    letter-spacing: 0;
  }
  .post-grid,
  .woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }
  .post-card,
  .woocommerce ul.products li.product {
    width: auto !important;
    margin: 0 !important;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
    padding: 18px !important;
    box-shadow: 0 16px 36px -28px rgba(10,8,5,.4);
  }
  .post-card h2,
  .woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-family: 'Playfair Display', serif;
    font-size: 21px;
    line-height: 1.25;
    color: var(--ink);
    padding: 0 !important;
    margin: 14px 0 8px;
  }
  .post-thumb img,
  .woocommerce ul.products li.product img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 6px;
    margin: 0 0 12px !important;
  }
  .woocommerce .price,
  .woocommerce div.product p.price,
  .woocommerce div.product span.price {
    color: var(--gold-2);
    font-weight: 800;
    font-size: 18px;
  }
  .woocommerce .button,
  .woocommerce button.button,
  .woocommerce input.button,
  .woocommerce a.button,
  .woocommerce #respond input#submit,
  .woocommerce a.checkout-button {
    background: var(--bg) !important;
    color: var(--cream) !important;
    border: 1px solid var(--gold) !important;
    border-radius: 6px !important;
    padding: 13px 18px !important;
    font-family: inherit;
    font-weight: 800 !important;
    transition: all .25s;
  }
  .woocommerce .button:hover,
  .woocommerce button.button:hover,
  .woocommerce input.button:hover,
  .woocommerce a.button:hover,
  .woocommerce #respond input#submit:hover,
  .woocommerce a.checkout-button:hover {
    background: var(--gold) !important;
    color: var(--ink) !important;
  }
  .woocommerce div.product {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 24px;
    box-shadow: var(--shadow-md);
  }
  .woocommerce div.product div.images img {
    border-radius: 8px;
  }
  .woocommerce div.product form.cart .button {
    min-height: 52px;
  }
  .woocommerce .quantity .qty {
    min-height: 50px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #faf6ec;
    font-family: inherit;
  }
  .woocommerce table.shop_table,
  .woocommerce-cart .cart-collaterals .cart_totals,
  .woocommerce-checkout #payment,
  .woocommerce form.checkout_coupon,
  .woocommerce form.login,
  .woocommerce form.register {
    background: #fff;
    border: 1px solid var(--line) !important;
    border-radius: 8px !important;
  }
  .woocommerce table.shop_table th,
  .woocommerce table.shop_table td {
    border-color: var(--line) !important;
  }
  .woocommerce form .form-row input.input-text,
  .woocommerce form .form-row textarea,
  .woocommerce form .form-row select,
  .woocommerce .select2-container .select2-selection--single {
    min-height: 48px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #faf6ec;
    padding: 10px 12px;
    font-family: inherit;
  }
  .woocommerce-message,
  .woocommerce-info,
  .woocommerce-error {
    border-top-color: var(--gold-2);
    background: #fff;
    color: var(--ink);
    border-radius: 6px;
  }

  @media (max-width: 900px) {
    .post-grid,
    .woocommerce ul.products {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .primary-menu { display: none; }
  }

  @media (max-width: 600px) {
    .page-shell, .woo-shell { padding: 34px 0 52px; }
    .content-card { padding: 24px 18px; }
    .post-grid,
    .woocommerce ul.products {
      grid-template-columns: 1fr;
    }
    .woocommerce div.product {
      padding: 16px;
    }
  }
