*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --cream: #E2D2B3;
    --warm-white: #EDE0C8;
    --ink: #1A1612;
    --rust: #B5451B;
    --gold: #C8922A;
    --muted: #5E5039;
    --border: #C8B898;
  }
  html { scroll-behavior: smooth; }
  body {
    background: var(--cream);
    color: var(--ink);
    font-family: 'Libre Baskerville', Georgia, serif;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.4;
  }

  /* Merged dark header: nav + page title in one black bar */
  .site-header {
    background: var(--ink);
    border-bottom: 3px solid var(--gold);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    padding: 1.2rem 2.5rem 1.4rem 1.5rem;
    width: 100%;
  }
  .header-left {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    min-width: 0;
  }
  .header-left .nav-logo img { height: 110px; width: auto; display: block; }
  .header-title-block { flex: 1; display: flex; flex-direction: column; align-items: center; text-align: center; min-width: 0; }
  .header-title-block .page-hero-eyebrow { margin-top: 0.35rem; margin-bottom: 0; }
  .header-title-block .header-intro { margin-top: 0.5rem; max-width: 42ch; }
  .header-title-block .header-intro p { font-size: 0.8rem; line-height: 1.45; }
  .header-title-block h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.6rem, 6vw, 4.2rem);
    font-weight: 900;
    color: var(--cream);
    line-height: 1;
  }
  .nav-logo { text-decoration: none; display: flex; align-items: center; }
  .nav-logo img { height: 64px; width: auto; display: block; }
  .nav-right { display: flex; align-items: center; gap: 1.9rem; flex-wrap: nowrap; white-space: nowrap; }
  .nav-link {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--cream);
    text-decoration: none;
    transition: color 0.2s;
  }
  .nav-link:hover { color: var(--gold); }
  .nav-cart-link {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--cream);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
  }
  .nav-cart-link:hover { color: var(--gold); }
  .nav-cart-link #cart-count {
    background: var(--rust);
    color: #fff;
    padding: 0.1rem 0.45rem;
    border-radius: 99px;
    font-size: 0.65rem;
  }

  .page-hero {
    background: var(--ink);
    padding: 0 3rem 2.3rem;
  }
  .page-hero-inner { max-width: 1200px; margin: 0 auto; }
  .page-hero-eyebrow {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.6rem;
  }
  .page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--cream);
    line-height: 1;
  }
  .page-hero p {
    margin-top: 0.6rem;
    color: #8A7E75;
    font-size: 0.88rem;
    font-style: italic;
    max-width: 600px;
    line-height: 1.7;
  }
  .lead-note {
    margin-top: 0.9rem;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: var(--gold);
    font-style: normal;
  }

  main {
    flex: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
    width: 100%;
  }

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

  .product-card {
    background: var(--warm-white);
    border: 1.5px solid var(--border);
    display: flex;
    overflow: hidden;
    transition: all 0.2s;
  }
  .product-card:hover {
    border-color: var(--rust);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(26,22,18,0.1);
  }
  .product-img {
    width: 35%;
    flex-shrink: 0;
    background: #2A2420;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0.9rem;
    color: var(--muted);
    font-size: 2.4rem;
  }
  .product-img .pf-frame {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #E0B45A, #B5832A 45%, #8C6320);
    padding: 6px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.4);
    border-radius: 2px;
    display: flex;
  }
  .product-img .pf-matte {
    width: 100%;
    height: 100%;
    min-height: 150px;
    background: linear-gradient(135deg, #E2D2B3 0%, #EDE0C8 100%);
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  .product-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .product-content {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .product-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--ink);
  }
  .product-desc {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 1rem;
    flex-grow: 1;
  }
  .product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
  }
  .product-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--rust);
  }
  .add-btn {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 600;
    color: white;
    background: var(--rust);
    padding: 0.6rem 1rem;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
  }
  .add-btn:hover { background: #8F3410; }
  .add-btn.added { background: var(--muted); }

  /* Coming-soon empty state */
  .coming-soon {
    text-align: center;
    padding: 4rem 2rem;
    border: 1.5px dashed var(--border);
    background: var(--warm-white);
  }
  .coming-soon .cs-eyebrow {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.62rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--rust);
    margin-bottom: 0.75rem;
  }
  .coming-soon h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.4rem, 3vw, 2rem);
    color: var(--ink);
    margin-bottom: 0.75rem;
  }
  .coming-soon p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.7;
    max-width: 460px;
    margin: 0 auto 1.5rem;
  }
  .coming-soon .cs-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  .coming-soon .cs-link {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--rust);
    text-decoration: none;
    border: 1.5px solid var(--border);
    padding: 0.7rem 1.1rem;
    background: var(--cream);
    transition: border-color 0.2s, transform 0.2s;
  }
  .coming-soon .cs-link:hover { border-color: var(--rust); transform: translateY(-2px); }

  footer {
    background: var(--ink);
    color: var(--cream);
    padding: 2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
    margin-top: auto;
  }
  footer p {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.58rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #5A4E45;
  }
  footer a { color: var(--gold); text-decoration: none; }
  footer a:hover { color: var(--cream); }
  @media (max-width: 900px) {
    .header-nav { flex-wrap: wrap; }
    .header-left { gap: 1rem; }
    .header-left .nav-logo img { height: 60px; }
    .header-title-block h1 { font-size: clamp(1.7rem, 6vw, 2.4rem); }
    .nav-right { width: 100%; justify-content: flex-start; gap: 1.3rem; }
  }


  @media (max-width: 900px) {
    .header-nav { padding: 1rem 1.5rem 0.85rem; }
    .nav-logo img { height: 52px; }
    .page-hero { padding: 1.25rem 1.5rem 1.75rem; }
    main { padding: 2rem 1.5rem; }
    .products-grid { grid-template-columns: 1fr; }
    .product-card { flex-direction: column; }
    .product-img { width: 100%; height: 200px; }
  }
  @media (max-width: 600px) {
    .header-nav { padding: 0.9rem 0.85rem 0.75rem; gap: 0.75rem; }
    .nav-logo img { height: 44px; }
    .nav-right { gap: 1rem; }
    .nav-link, .nav-cart-link { font-size: 0.62rem; letter-spacing: 0.12em; }
    .page-hero { padding: 1.1rem 1rem 1.5rem; }
    .page-hero h1 { font-size: clamp(1.6rem, 8vw, 2.2rem); }
    main { padding: 1.5rem 0.85rem; }
    .products-grid { grid-template-columns: 1fr; }
    footer { flex-direction: column; gap: 0.8rem; text-align: center; }
  }
