/*
  FauxHQ shared stylesheet
  --------------------------------
  Extracted from FauxHQ Landing v4.html.
  Loaded by every page in the site (products / product-detail / inquiry / etc).
  Page-specific styles should live in each page's <style> block, NOT here.

  Tokens (colour, type, spacing) are defined in :root and consumed via var().
*/

  :root {
    /* Neutrals (per brief) */
    --bg:        #FAF8F4;
    --bg-2:      #F0EBE3;
    --surface:   #FFFFFF;
    --ink:       #20201E;
    --ink-soft:  #4F4B45;
    --muted:     #7A746B;
    --rule:      #E2DED6;
    --rule-soft: #EFEAE0;

    /* Brand + color family (per brief — used in small areas only) */
    --brand:     #642F2F;   /* bordeaux / wine */
    --brand-deep:#4D2222;
    --brand-2:   #405946;   /* deep botanical green */
    --brand-2-deep:#2E4133;
    --terre:     #B6754F;
    --blue:      #496D83;
    --blush:     #D6A2A1;
    --cream:     #F1E6D8;
    --berries:   #7A1F2D;
    --orange:    #C76A3A;
    --champagne: #C9B89A;
    --white-green:#B8C2A8;

    --serif: 'DM Serif Display', Georgia, serif;
    --sans:  'Inter', system-ui, sans-serif;
  }

  *, *::before, *::after { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; }
  body {
    background: var(--bg);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 15px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }
  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }
  button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

  .container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 56px;
  }
  @media (max-width: 800px) { .container { padding: 0 24px; } }

  .eyebrow {
    font-size: 11px;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--brand);
    display: inline-flex; align-items: center; gap: 10px;
    white-space: nowrap;
  }
  .eyebrow::before {
    content: ""; width: 18px; height: 1px;
    background: var(--brand);
  }
  .section-title {
    font-size: 30px;
    font-weight: 600;
    letter-spacing: -0.015em;
    color: var(--ink);
    margin: 14px 0 14px;
    line-height: 1.1;
  }
  .section-title .accent {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
  }
  .section-lede {
    margin: 0;
    max-width: 620px;
    font-size: 15px;
    color: var(--ink-soft);
    line-height: 1.55;
  }

  /* Single-line guards */
  .btn, .chip, .pill-link, .nav-link, .util-link {
    white-space: nowrap;
  }

  /* ============ Utility bar ============ */
  .promo {
    background: var(--ink);
    color: #FFF;
    overflow: hidden;
    border-bottom: 1px solid rgba(255,255,255,0.10);
  }
  .promo-track {
    display: flex;
    gap: 34px;
    width: max-content;
    padding: 8px 0;
    transform: translateX(-18px);
  }
  .promo-item {
    white-space: nowrap;
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.78);
  }
  .util {
    background: var(--bg-2);
    border-bottom: 1px solid var(--rule);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-soft);
  }
  .util-inner {
    display: flex; justify-content: space-between; align-items: center;
    padding: 9px 0;
  }
  .util .container.util-inner {
    padding: 9px 56px;
  }
  .util-left { display: inline-flex; gap: 22px; align-items: center; }
  .util-left .dot { width: 6px; height: 6px; background: var(--brand-2); border-radius: 50%; box-shadow: 0 0 0 3px rgba(64,89,70,0.18); }
  .util-right { display: inline-flex; gap: 22px; align-items: center; }
  .util-link:hover { color: var(--ink); }

  /* ============ Header ============ */
  header { background: var(--bg); border-bottom: 1px solid var(--rule); }
  .header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: 22px 0;
    gap: 40px;
  }
  header .container.header-inner {
    padding: 22px 56px;
  }
  .wordmark {
    display: inline-flex; align-items: baseline; gap: 4px;
    line-height: 1;
  }
  .wordmark .faux {
    font-family: var(--serif);
    font-style: italic;
    font-size: 30px;
    color: var(--ink);
    letter-spacing: -0.01em;
  }
  .wordmark .hq {
    font-family: var(--sans);
    font-weight: 700;
    font-size: 24px;
    color: var(--brand);
    letter-spacing: 0.04em;
  }
  .wordmark .slash {
    font-family: var(--sans);
    font-weight: 300;
    font-size: 26px;
    color: var(--muted);
    margin: 0 1px;
  }
  nav.main {
    display: flex; gap: 30px;
    justify-content: center;
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 500;
  }
  .nav-link { color: var(--ink); }
  .nav-link:hover { color: var(--brand); }
  .nav-link.active { color: var(--brand); }
  .header-right { display: inline-flex; gap: 12px; align-items: center; }
  .btn {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 12px 22px;
    border-radius: 2px;
    border: 1px solid currentColor;
    transition: background .18s, color .18s, border-color .18s, transform .18s;
  }
  .btn.primary {
    background: var(--brand);
    color: #FFF;
    border-color: var(--brand);
  }
  .btn.primary:hover { background: var(--brand-deep); border-color: var(--brand-deep); }
  .btn.ghost {
    background: transparent;
    color: var(--ink);
    border-color: var(--ink);
  }
  .btn.ghost:hover { background: var(--ink); color: var(--bg); }
  .btn.light {
    background: transparent;
    color: #FFF;
    border-color: #FFF;
  }
  .btn.light:hover { background: #FFF; color: var(--ink); }
  .btn.sm { padding: 9px 16px; font-size: 10px; letter-spacing: 0.2em; }
  .btn .arrow { font-weight: 300; transform: translateY(-1px); }

  /* ============ Hero ============ */
  .hero {
    background: var(--bg);
    padding: 56px 0 64px;
    border-bottom: 1px solid var(--rule);
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 56px;
    align-items: stretch;
  }
  .hero-grid > * {
    min-width: 0;
  }
  .hero-text { display: flex; flex-direction: column; justify-content: center; padding: 16px 0; }
  .hero h1 {
    margin: 18px 0 22px;
    font-size: 64px;
    font-weight: 600;
    line-height: 1.02;
    letter-spacing: -0.025em;
    color: var(--ink);
  }
  .hero h1 .accent {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    color: var(--brand);
  }
  .hero .lede {
    font-size: 17px;
    color: var(--ink-soft);
    line-height: 1.5;
    max-width: 480px;
    margin: 0 0 28px;
  }
  .hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
  .hero-trust {
    margin-top: 36px;
    padding-top: 22px;
    border-top: 1px solid var(--rule);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }
  .hero-trust .figure {
    font-family: var(--sans);
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--ink);
    line-height: 1.05;
  }
  .hero-trust .figure .unit {
    font-size: 12px;
    color: var(--muted);
    font-weight: 500;
    margin-left: 4px;
    letter-spacing: 0.04em;
  }
  .hero-trust .label {
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-top: 4px;
  }
  .hero-image-wrap {
    position: relative;
    width: 100%;
    min-width: 0;
    aspect-ratio: 5 / 4;
    overflow: hidden;
  }
  .hero-image {
    position: absolute; inset: 0;
    background:
      linear-gradient(90deg, rgba(246,242,235,0.14) 0%, rgba(246,242,235,0) 45%),
      url("images/hero/fhq_hero_arch_blush-terre_5x4.jpg") center / cover no-repeat,
      #E8DCC8;
  }
  .hero-image::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(20,18,15,0) 68%, rgba(20,18,15,0.18) 100%);
  }
  .hero-image-caption {
    position: absolute; left: 16px; bottom: 16px;
    display: inline-flex; gap: 8px; align-items: center;
    background: rgba(20,18,15,0.62);
    color: #FFF;
    padding: 6px 10px;
    border-radius: 2px;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    z-index: 2;
    white-space: nowrap;
  }
  .hero-image-caption b { font-weight: 700; }
  .hero-image-caption .ai { color: var(--terre); font-weight: 700; }
  .hero-spec {
    position: absolute; right: 16px; top: 16px;
    background: var(--surface);
    padding: 14px 16px;
    border: 1px solid var(--rule);
    z-index: 2;
    font-size: 11px;
    color: var(--ink-soft);
    letter-spacing: 0.04em;
    min-width: 200px;
  }
  .hero-spec .row { display: flex; justify-content: space-between; gap: 16px; }
  .hero-spec .row + .row { margin-top: 6px; padding-top: 6px; border-top: 1px solid var(--rule-soft); }
  .hero-spec dt { color: var(--muted); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; margin: 0; }
  .hero-spec dd { color: var(--ink); font-weight: 600; margin: 0; font-size: 12px; }
  .hero-spec dd .swatch {
    display: inline-block; width: 10px; height: 10px;
    border-radius: 50%; margin-right: 4px;
    vertical-align: middle;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.06);
  }

  /* ============ Capability band ============ */
  .capability {
    background: var(--surface);
    border-bottom: 1px solid var(--rule);
  }
  .capability-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
  .capability-grid .cell {
    padding: 28px 28px;
    border-left: 1px solid var(--rule);
    display: flex; flex-direction: column; gap: 4px;
  }
  .capability-grid .cell:first-child { border-left: 0; }
  .capability-grid .cell .num {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--brand-2);
    font-weight: 600;
  }
  .capability-grid .cell .figure {
    font-size: 28px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--ink);
    margin-top: 8px;
    line-height: 1;
  }
  .capability-grid .cell .figure .unit {
    font-size: 13px;
    color: var(--muted);
    font-weight: 500;
    margin-left: 4px;
    letter-spacing: 0.04em;
  }
  .capability-grid .cell .label {
    font-size: 13px;
    color: var(--ink-soft);
    margin-top: 6px;
    line-height: 1.4;
  }

  /* ============ Shop by Color ============ */
  .by-color {
    padding: 88px 0;
    background: var(--bg);
  }
  .by-color-head {
    display: flex; justify-content: space-between; align-items: flex-end;
    margin-bottom: 36px;
    gap: 24px;
  }
  .by-color-head .left { flex: 1; max-width: 700px; }
  .color-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 14px;
    height: 580px;
  }
  .color-card {
    display: flex; flex-direction: column;
    overflow: hidden;
    cursor: pointer;
    background: var(--surface);
    border: 1px solid var(--rule);
    transition: transform .22s, box-shadow .22s;
    text-decoration: none;
    color: inherit;
    position: relative;
  }
  .color-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(20,12,8,0.08);
  }
  .color-card.feature { grid-row: span 2; }
  .color-card .band { flex: 1; min-height: 0; }
  .color-card .name-band {
    flex: 2.6;
    display: flex; flex-direction: column; justify-content: space-between;
    padding: 18px 22px;
    color: #FFF;
    position: relative;
  }
  .color-card.feature .name-band {
    flex: 3.5;
    padding: 28px 30px;
  }
  .color-card .name-band .top { display: flex; flex-direction: column; }
  .color-card .name-band .name {
    font-size: 26px;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 0.98;
  }
  .color-card.feature .name-band .name { font-size: 46px; }
  .color-card .name-band .pantone {
    font-family: var(--serif);
    font-style: italic;
    font-size: 12.5px;
    opacity: 0.78;
    margin-top: 8px;
    letter-spacing: 0.02em;
  }
  .color-card.feature .name-band .pantone { font-size: 15px; margin-top: 12px; }
  .color-card .name-band .count {
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    opacity: 0.85;
    margin-top: 8px;
    white-space: nowrap;
  }
  .color-card .name-band .browse {
    font-size: 10px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    font-weight: 600;
    opacity: 0.92;
    display: inline-flex; align-items: center; gap: 8px;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,0.28);
    white-space: nowrap;
  }
  .color-card .featured-mark {
    position: absolute;
    top: 12px; right: 12px;
    z-index: 3;
    background: rgba(255,255,255,0.94);
    color: var(--ink);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 5px 9px;
    border-radius: 2px;
  }
  /* light name-bands (Champagne / White & Green) keep contrast via dark text */
  .color-card.lt .name-band { color: var(--ink); }
  .color-card.lt .name-band .browse { border-top-color: rgba(20,18,15,0.18); }

  /* ============ Products ============ */
  .products {
    padding: 88px 0;
    background: var(--surface);
    border-top: 1px solid var(--rule);
  }
  .products-head {
    margin-bottom: 28px;
    display: grid; grid-template-columns: 1.2fr 1fr;
    align-items: end; gap: 32px;
  }
  .products-head .right p {
    font-size: 13px;
    color: var(--ink-soft);
    margin: 0;
    line-height: 1.5;
  }
  .product-filters {
    display: flex; flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
    padding: 18px 22px;
    background: var(--bg);
    border: 1px solid var(--rule);
  }
  .filter-row {
    display: flex; align-items: center; gap: 12px;
    flex-wrap: wrap;
  }
  .filter-label {
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 600;
    width: 110px;
    flex-shrink: 0;
    white-space: nowrap;
  }
  .filter-row .chip {
    padding: 7px 13px;
    border-radius: 2px;
    border: 1px solid var(--rule);
    background: var(--surface);
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-soft);
  }
  .filter-row .chip:hover { border-color: var(--ink); color: var(--ink); }
  .filter-row .chip.active { background: var(--brand-2); color: #FFF; border-color: var(--brand-2); }
  .filter-row .chip.brand-active { background: var(--brand); color: #FFF; border-color: var(--brand); }
  .filter-summary {
    margin-top: 6px;
    padding-top: 12px;
    border-top: 1px solid var(--rule);
    display: flex; justify-content: space-between; align-items: center;
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 0.06em;
  }
  .filter-summary b { color: var(--ink); font-weight: 700; letter-spacing: 0; }
  .filter-summary a { color: var(--brand); font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; font-size: 10px; }
  .product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
  }
  .product-card {
    background: var(--surface);
    border: 1px solid var(--rule);
    display: flex; flex-direction: column;
    transition: border-color .18s;
  }
  .product-card:hover { border-color: var(--ink); }
  .product-card .pimg {
    aspect-ratio: 1 / 1;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
  }
  .product-card .pimg::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(20,18,15,0.02) 0%, rgba(20,18,15,0.18) 100%);
  }
  .product-card .pimg .tag {
    position: absolute; top: 12px; left: 12px;
    z-index: 2;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 5px 9px;
    border-radius: 2px;
    background: var(--ink); color: #FFF;
  }
  .product-card .pimg .tag.green { background: var(--brand-2); }
  .product-card .pimg .tag.brand { background: var(--brand); }
  .product-card .pimg .ai-label {
    position: absolute; bottom: 12px; left: 12px;
    z-index: 2;
    font-size: 9px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    background: rgba(0,0,0,0.35);
    padding: 4px 8px;
    border-radius: 2px;
    white-space: nowrap;
  }
  .product-card .pbody {
    padding: 18px 18px 20px;
    display: flex; flex-direction: column;
    gap: 6px;
    flex: 1;
  }
  .product-card .pcat {
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--brand-2);
    font-weight: 600;
  }
  .product-card .pname {
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -0.005em;
    line-height: 1.25;
  }
  .product-card .pinfo {
    font-size: 12px;
    color: var(--ink-soft);
    margin: 2px 0 4px;
  }
  .product-card .pswatches {
    display: flex; gap: 0;
    margin-top: 8px;
  }
  .product-card .pswatches span {
    width: 14px; height: 14px;
    border-radius: 50%;
    border: 1.5px solid #FFF;
    box-shadow: 0 0 0 1px var(--rule);
    margin-left: -4px;
  }
  .product-card .pswatches span:first-child { margin-left: 0; }
  .product-card .prow {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--rule);
    display: flex; justify-content: space-between; align-items: center;
    font-size: 11px;
    letter-spacing: 0.06em;
    color: var(--muted);
  }
  .product-card .prow .custom { color: var(--brand-2); font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; }
  .product-card .prow .inq {
    color: var(--brand); font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
    display: inline-flex; align-items: center; gap: 4px;
  }

  /* photo tints reused */
  .p-burgundy { background: linear-gradient(140deg, #6B1A28 0%, #2A0810 100%); }
  .p-terre    { background: linear-gradient(140deg, #C99070 0%, #5A2E18 100%); }
  .p-ivory    { background: linear-gradient(140deg, #E8DECA 0%, #A8A286 100%); }
  .p-sage     { background: linear-gradient(140deg, #BCC8A8 0%, #5C7062 100%); }
  .p-blue     { background: linear-gradient(140deg, #7894A8 0%, #243E50 100%); }
  .p-blush    { background: linear-gradient(140deg, #ECCFC8 0%, #8E4A52 100%); }
  .p-champ    { background: linear-gradient(140deg, #E5D3B0 0%, #8F7548 100%); }
  .p-orange   { background: linear-gradient(140deg, #DA8A50 0%, #6B2A10 100%); }
  .product-card .pimg.p-burgundy { background-image: url("images/products/fhq_v4_product_014_marsala-arch-garland_1x1.jpg"); }
  .product-card .pimg.p-terre { background-image: url("images/products/fhq_v4_product_021_terre-tablescape-set_1x1.jpg"); }
  .product-card .pimg.p-ivory { background-image: url("images/products/fhq_v4_product_007_ivory-eucalyptus-bouquet_1x1.jpg"); }
  .product-card .pimg.p-sage { background-image: url("images/products/fhq_v4_product_019_eucalyptus-garland_1x1.jpg"); }
  .product-card .pimg.p-blush { background-image: url("images/products/fhq_v4_product_028_powder-pink-aisle-markers_1x1.jpg"); }
  .product-card .pimg.p-blue { background-image: url("images/products/fhq_v4_product_036_dusty-blue-cloud-installation_1x1.jpg"); }
  .product-card .pimg.p-champ { background-image: url("images/products/fhq_v4_product_042_champagne-mixed-stems_1x1.jpg"); }
  .product-card .pimg.p-orange { background-image: url("images/products/fhq_v4_product_050_sunset-event-pack_1x1.jpg"); }

  /* ============ Custom Color process ============ */
  .custom-process {
    padding: 88px 0;
    background: var(--bg-2);
  }
  .custom-head {
    margin-bottom: 36px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: end;
  }
  .custom-head .right { color: var(--ink-soft); font-size: 14px; line-height: 1.55; }
  .process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    background: transparent;
    border: 0;
  }
  .process-step {
    background: var(--surface);
    border: 1px solid var(--rule);
    padding: 0;
    display: flex; flex-direction: column;
    position: relative;
  }
  .process-step .visual {
    aspect-ratio: 4 / 3;
    position: relative;
    overflow: hidden;
    background: var(--bg-2);
    border-bottom: 1px solid var(--rule);
  }
  .process-step .text {
    padding: 22px 24px 26px;
    position: relative;
  }
  .process-step .pnum {
    position: absolute; top: 10px; right: 22px;
    font-family: var(--serif);
    font-style: italic;
    font-size: 38px;
    color: var(--brand);
    line-height: 1;
  }
  .process-step .ptitle {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin: 10px 0 10px;
    padding-right: 36px;
  }
  .process-step .pbody {
    font-size: 13px;
    color: var(--ink-soft);
    line-height: 1.5;
  }
  .process-step .ptime {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid var(--rule);
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--brand-2);
    font-weight: 600;
  }

  /* Visual 01 — reference moodboard */
  .v-reference {
    background: linear-gradient(180deg, var(--cream) 0%, #E2D2BA 100%);
  }
  .v-reference .card {
    position: absolute;
    top: 50%; left: 50%;
    background: #FFF;
    padding: 10px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    width: 86px;
  }
  .v-reference .card .sw { aspect-ratio: 1; }
  .v-reference .card .code {
    font-family: var(--sans);
    font-size: 7.5px;
    font-weight: 700;
    letter-spacing: 0.16em;
    color: var(--ink);
    margin-top: 7px;
    text-transform: uppercase;
    text-align: center;
  }
  .v-reference .c1 { transform: translate(-105%, -55%) rotate(-9deg); }
  .v-reference .c2 { transform: translate(-50%, -50%) rotate(2deg); z-index: 2; }
  .v-reference .c3 { transform: translate(8%, -45%) rotate(7deg); }

  /* Visual 02 — atelier matrix */
  .v-matrix {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(4, 1fr);
    gap: 4px;
    padding: 18px;
    background: var(--bg);
  }
  .v-matrix span { position: relative; }
  .v-matrix span.match {
    outline: 2px solid var(--brand-2);
    outline-offset: 3px;
    z-index: 2;
  }
  .v-matrix span.match::after {
    content: "";
    position: absolute;
    top: 50%; left: 50%;
    width: 14px; height: 14px;
    margin: -7px 0 0 -7px;
    background: var(--brand-2);
    border-radius: 50%;
    box-shadow: 0 0 0 2px #FFF;
  }

  /* Visual 03 — sample approved */
  .v-sample {
    display: flex; align-items: center; justify-content: center;
    position: relative;
    background: var(--cream);
  }
  .v-sample .chip {
    width: 56%; height: 78%;
    background: #FFF;
    padding: 12px;
    display: flex; flex-direction: column;
    box-shadow: 0 6px 22px rgba(0,0,0,0.16);
  }
  .v-sample .chip .sw {
    flex: 1;
    background: #B6754F;
  }
  .v-sample .chip .code {
    font-family: var(--sans);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-top: 9px;
    color: var(--ink);
    display: flex; justify-content: space-between;
  }
  .v-sample .stamp {
    position: absolute;
    top: 16%; right: 8%;
    font-family: var(--serif);
    font-style: italic;
    font-size: 15px;
    color: var(--brand-2);
    border: 1.5px solid var(--brand-2);
    padding: 5px 11px;
    letter-spacing: 0.04em;
    transform: rotate(-7deg);
    text-transform: uppercase;
    font-weight: 700;
    background: rgba(255,255,255,0.94);
    white-space: nowrap;
  }

  /* Visual 04 — production crate */
  .v-ship {
    display: flex; align-items: center; justify-content: center;
    position: relative;
    background: var(--cream);
  }
  .v-ship .crate {
    width: 60%; height: 48%;
    background: linear-gradient(180deg, #C9A07A 0%, #8E6644 100%);
    position: relative;
    border: 2px solid #5C3F2A;
    box-shadow: 0 8px 22px rgba(0,0,0,0.18);
  }
  .v-ship .crate::before, .v-ship .crate::after {
    content: "";
    position: absolute; left: 0; right: 0; height: 5px;
    background: rgba(0,0,0,0.22);
  }
  .v-ship .crate::before { top: 28%; }
  .v-ship .crate::after { bottom: 28%; }
  .v-ship .label {
    position: absolute;
    top: 18%; left: 50%;
    transform: translateX(-50%) rotate(-1.5deg);
    background: #FFF;
    padding: 8px 14px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
    font-family: var(--sans);
    font-size: 8.5px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink);
    line-height: 1.5;
    text-align: center;
    white-space: nowrap;
  }
  .v-ship .label .track {
    color: var(--brand-2);
    font-size: 9px;
    margin-top: 3px;
    display: block;
  }

  /* ============ Wholesale capability ============ */
  .wholesale {
    padding: 96px 0;
    background: var(--bg);
  }
  .wholesale-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
  }
  .wholesale h2 {
    font-size: 40px;
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin: 16px 0 20px;
  }
  .wholesale h2 .accent { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--brand-2); }
  .wholesale .copy {
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.55;
    margin: 0 0 24px;
    max-width: 480px;
  }
  .feature-list {
    list-style: none; margin: 0; padding: 0;
    display: flex; flex-direction: column;
    margin-bottom: 28px;
  }
  .feature-list li {
    padding: 16px 0;
    border-bottom: 1px solid var(--rule);
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 24px;
    align-items: baseline;
  }
  .feature-list .key {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--brand-2);
    font-weight: 600;
  }
  .feature-list .val {
    color: var(--ink);
    font-size: 14px;
    line-height: 1.5;
  }
  .feature-list .val b { font-weight: 700; }
  .wholesale-image {
    aspect-ratio: 1 / 1.05;
    position: relative;
    overflow: hidden;
    background:
      linear-gradient(180deg, rgba(20,18,15,0) 55%, rgba(20,18,15,0.18) 100%),
      url("images/studio/fhq_v4_studio_custom-colour-matching_1x1.jpg") center / cover no-repeat,
      #C9A883;
  }
  .wholesale-image::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(20,18,15,0) 65%, rgba(20,18,15,0.22) 100%);
  }
  .wholesale-image .label {
    position: absolute; bottom: 18px; left: 18px;
    background: rgba(20,18,15,0.65);
    color: #FFF;
    padding: 7px 12px;
    border-radius: 2px;
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    white-space: nowrap;
  }
  .wholesale-image .ai { color: var(--terre); font-weight: 700; margin-right: 6px; }

  /* ============ Lookbook ============ */
  .lookbook {
    padding: 88px 0;
    background: var(--surface);
    border-top: 1px solid var(--rule);
  }
  .lookbook-head {
    margin-bottom: 28px;
    display: flex; justify-content: space-between; align-items: flex-end;
    gap: 32px;
  }
  .lookbook-filters {
    display: flex; gap: 8px; flex-wrap: wrap;
    margin-bottom: 28px;
  }
  .chip {
    padding: 9px 16px;
    border-radius: 2px;
    border: 1px solid var(--rule);
    background: var(--surface);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-soft);
  }
  .chip:hover { border-color: var(--ink); color: var(--ink); }
  .chip.active { background: var(--brand-2); color: #FFF; border-color: var(--brand-2); }
  .lookbook-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }
  .lb-card {
    aspect-ratio: 3 / 4;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
  }
  .lb-card::after {
    content: ""; position: absolute; inset: 0;
    background:
      linear-gradient(to top, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.08) 58%, rgba(0,0,0,0) 100%);
  }
  .lb-card .meta {
    position: absolute;
    z-index: 2;
    bottom: 16px; left: 18px; right: 18px;
    color: #FFF;
  }
  .lb-card .meta .row {
    display: flex; gap: 8px;
    font-size: 9.5px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 8px;
  }
  .lb-card .meta .row .badge {
    background: var(--brand);
    padding: 4px 7px;
    border-radius: 2px;
    font-weight: 700;
  }
  .lb-card .meta .row .badge.green { background: var(--brand-2); }
  .lb-card .meta .row .badge.terre { background: var(--terre); }
  .lb-card .meta .row .source { opacity: 0.78; padding: 4px 0; font-weight: 500; }
  .lb-card .meta h4 {
    margin: 0;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -0.005em;
    line-height: 1.2;
  }
  .lb-card .meta .scene {
    font-size: 11px;
    color: rgba(255,255,255,0.75);
    margin-top: 4px;
    letter-spacing: 0.04em;
  }
  .lb-card .ai-marker {
    position: absolute; top: 14px; left: 14px;
    z-index: 2;
    background: rgba(255,255,255,0.92);
    color: var(--ink);
    font-size: 9.5px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 5px 9px;
    font-weight: 600;
    border-radius: 2px;
  }
  .lb-card .ai-marker.real { background: var(--brand-2); color: #FFF; }
  .lb-card .ai-marker.insp { background: var(--surface); color: var(--ink); }
  .lb-card.p-burgundy { background-image: url("images/lookbook/fhq_lookbook_marsala-merlot-arch_inspiration_3x4.jpg"); }
  .lb-card.p-terre { background-image: url("images/lookbook/fhq_lookbook_autumn-terre-tablescape_inspiration_3x4.jpg"); }
  .lb-card.p-ivory { background-image: url("images/lookbook/fhq_lookbook_orangery-ceremony-aisle_inspiration_3x4.jpg"); }
  .lb-card.p-blush { background-image: url("images/lookbook/fhq_lookbook_powder-pink-reverie-arch_inspiration_3x4.jpg"); }
  .lb-card.p-blue { background-image: url("images/lookbook/fhq_lookbook_dusty-blue-suspended-cloud_inspiration_3x4.jpg"); }
  .lb-card.p-orange { background-image: url("images/lookbook/fhq_lookbook_sunset-terracotta-long-table_inspiration_3x4.jpg"); }
  .lb-card.p-champ { background-image: url("images/lookbook/fhq_lookbook_black-tie-champagne-arch_inspiration_3x4.jpg"); }
  .lb-card.p-sage { background-image: url("images/lookbook/fhq_lookbook_eucalyptus-garden-arch_inspiration_3x4.jpg"); }

  /* ============ Testimonials (trade) ============ */
  .trade {
    padding: 88px 0;
    background: var(--bg-2);
  }
  .trade-head {
    margin-bottom: 36px;
  }
  .trade-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
  .trade-card {
    background: var(--surface);
    border: 1px solid var(--rule);
    padding: 28px 28px 26px;
    display: flex; flex-direction: column;
  }
  .trade-quote-mark {
    font-family: var(--serif);
    font-style: italic;
    font-size: 56px;
    color: var(--brand);
    line-height: 0.6;
    margin-bottom: 14px;
  }
  .trade-quote {
    font-size: 16px;
    line-height: 1.5;
    color: var(--ink);
    margin: 0 0 22px;
    flex: 1;
  }
  .trade-meta {
    padding-top: 18px;
    border-top: 1px solid var(--rule);
    display: flex; justify-content: space-between; align-items: flex-start; gap: 16px;
  }
  .trade-meta .who {
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.02em;
    color: var(--ink);
  }
  .trade-meta .studio {
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 0.04em;
    margin-top: 2px;
  }
  .trade-meta .project {
    text-align: right;
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--brand-2);
    font-weight: 600;
  }

  /* ============ CTA band ============ */
  .cta-band {
    background: var(--cream);
    color: var(--ink);
    padding: 64px 0;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
  }
  .cta-band-inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 36px;
    align-items: center;
  }
  .cta-band h2 {
    margin: 0;
    font-size: 40px;
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--ink);
  }
  .cta-band h2 .accent {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    color: var(--brand);
  }
  .cta-band p {
    margin: 16px 0 0;
    color: var(--ink-soft);
    font-size: 15px;
    max-width: 520px;
    line-height: 1.55;
  }
  .cta-band .actions {
    display: flex; gap: 12px; flex-wrap: wrap;
    justify-content: flex-end;
  }
  .cta-band .btn.solid {
    background: var(--brand);
    color: #FFF;
    border-color: var(--brand);
  }
  .cta-band .btn.solid:hover { background: var(--brand-deep); border-color: var(--brand-deep); }
  .cta-band .btn.ghost {
    background: transparent;
    color: var(--ink);
    border-color: var(--ink);
  }
  .cta-band .btn.ghost:hover { background: var(--ink); color: var(--cream); }

  /* ============ Footer ============ */
  footer {
    background: var(--ink);
    color: #A6A096;
    padding: 64px 0 24px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  footer .wordmark .faux { color: #FFF; }
  footer .wordmark .hq { color: var(--cream); }
  footer .wordmark .slash { color: #6E6660; }
  footer .brand-blurb {
    margin: 18px 0 22px;
    font-size: 13px;
    line-height: 1.55;
    color: #A6A096;
    max-width: 340px;
  }
  footer h4 {
    color: #FFF;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 600;
    margin: 0 0 16px;
  }
  footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
  footer ul a { font-size: 13px; color: #A6A096; }
  footer ul a:hover { color: #FFF; }
  .footer-bottom {
    padding-top: 18px;
    display: flex; justify-content: space-between;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #6E6660;
  }

  /* ============ Why Faux ============ */
  .why {
    padding: 88px 0;
    background: var(--surface);
    border-top: 1px solid var(--rule);
  }
  .why-head {
    margin-bottom: 36px;
    max-width: 720px;
  }
  .why-head h2 { margin-top: 12px; }
  .why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid var(--rule);
  }
  .why-card {
    padding: 28px 28px 30px;
    border-left: 1px solid var(--rule);
    display: flex; flex-direction: column;
    gap: 4px;
    background: var(--surface);
  }
  .why-card:first-child { border-left: 0; }
  .why-card .icon {
    width: 42px; height: 42px;
    border: 1.5px solid var(--brand);
    background: var(--cream);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--serif);
    font-style: italic;
    font-size: 17px;
    color: var(--brand);
    font-weight: 400;
    line-height: 1;
    border-radius: 50%;
    margin-bottom: 16px;
    letter-spacing: 0.05em;
  }
  .why-card h3 {
    margin: 6px 0 8px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.25;
  }
  .why-card p {
    margin: 0;
    font-size: 13px;
    color: var(--ink-soft);
    line-height: 1.55;
  }
  .why-card .stat {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid var(--rule);
    font-family: var(--serif);
    font-style: italic;
    font-size: 12.5px;
    color: var(--brand-2);
    line-height: 1.4;
  }

  /* ============ FAQ ============ */
  .faq {
    padding: 88px 0;
    background: var(--bg);
  }
  .faq-head {
    margin-bottom: 32px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: end;
  }
  .faq-head .right { color: var(--ink-soft); font-size: 14px; line-height: 1.55; }
  .faq-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 32px;
  }
  .faq-item {
    border-top: 1px solid var(--rule);
  }
  .faq-item:last-child,
  .faq-item:nth-last-child(2) {
    border-bottom: 1px solid var(--rule);
  }
  .faq-item summary {
    padding: 20px 0;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.005em;
    color: var(--ink);
    cursor: pointer;
    list-style: none;
    display: flex; justify-content: space-between; align-items: center;
    gap: 16px;
  }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-item summary::after {
    content: "+";
    font-family: var(--serif);
    font-size: 24px;
    color: var(--brand);
    line-height: 1;
    font-weight: 400;
    flex-shrink: 0;
  }
  .faq-item[open] summary::after { content: "−"; }
  .faq-item .meta {
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--brand-2);
    font-weight: 600;
    margin: -4px 0 12px;
  }
  .faq-item p {
    font-size: 13.5px;
    color: var(--ink-soft);
    margin: 0 0 22px;
    line-height: 1.6;
    max-width: 560px;
  }

  /* ============ Responsive baseline ============ */
  html, body {
    overflow-x: hidden;
  }
  .hero-spec {
    max-width: calc(100% - 32px);
  }
  .hero-spec dd {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  @media (max-width: 1180px) {
    .header-inner {
      grid-template-columns: 1fr;
      gap: 16px;
      align-items: start;
    }
    nav.main {
      width: 100%;
      justify-content: flex-start;
      gap: 22px;
      overflow-x: auto;
      padding-bottom: 4px;
      scrollbar-width: none;
    }
    nav.main::-webkit-scrollbar {
      display: none;
    }
    .header-right {
      flex-wrap: wrap;
    }
    .hero-grid,
    .wholesale-grid,
    .cta-band-inner,
    .faq-head {
      grid-template-columns: 1fr;
    }
    .hero-image-wrap {
      max-width: 760px;
      width: 100%;
    }
    .capability-grid,
    .product-grid,
    .process-grid,
    .lookbook-grid,
    .why-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    .color-grid {
      grid-template-columns: repeat(2, 1fr);
      grid-template-rows: none;
      height: auto;
    }
    .color-card,
    .color-card.feature {
      min-height: 260px;
      grid-row: auto;
    }
    .products-head,
    .custom-head,
    .trade-grid,
    .faq-list,
    .footer-grid {
      grid-template-columns: 1fr 1fr;
    }
    .footer-bottom {
      gap: 14px;
      flex-wrap: wrap;
    }
  }

  @media (max-width: 800px) {
    .container {
      width: 100%;
      max-width: 100%;
      padding-left: 20px;
      padding-right: 20px;
    }
    .promo,
    .util {
      display: none;
    }
    .container,
    .header-inner,
    .header-inner > *,
    nav.main {
      min-width: 0;
      max-width: 100%;
    }
    .header-inner {
      grid-template-columns: 1fr;
      padding: 18px 0;
      gap: 14px;
      align-items: center;
    }
    header .container.header-inner {
      padding: 18px 20px;
    }
    .header-inner .wordmark {
      grid-column: 1;
      grid-row: 1;
    }
    nav.main {
      grid-column: 1 / -1;
      grid-row: 2;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 8px;
      width: calc(100vw - 40px);
      max-width: calc(100vw - 40px);
      overflow: visible;
      padding-bottom: 0;
      font-size: 10px;
      letter-spacing: 0.12em;
    }
    .header-right {
      display: none;
    }
    .hero {
      padding: 44px 0 50px;
    }
    .breadcrumb {
      overflow-x: auto;
      white-space: nowrap;
      scrollbar-width: none;
    }
    .breadcrumb::-webkit-scrollbar {
      display: none;
    }
    .hero-grid {
      gap: 34px;
    }
    .hero-grid > *,
    .hero-text {
      min-width: 0;
      max-width: 100%;
    }
    .hero h1 {
      max-width: 100%;
      font-size: 38px;
      line-height: 1.04;
      overflow-wrap: anywhere;
    }
    .hero h1 .accent {
      display: block;
    }
    .hero .lede {
      font-size: 15px;
      max-width: 100%;
      overflow-wrap: break-word;
    }
    .hero-ctas .btn {
      width: 100%;
      justify-content: center;
    }
    .hero-ctas {
      max-width: 100%;
    }
    .hero-trust {
      grid-template-columns: 1fr;
      gap: 14px;
    }
    .hero-trust .figure {
      font-size: 19px;
    }
    .hero-trust .label {
      font-size: 10px;
      letter-spacing: 0.14em;
    }
    .hero-image-wrap {
      max-width: 100%;
      aspect-ratio: 4 / 3;
    }
    .hero-spec {
      display: none;
    }
    .hero-image-caption {
      max-width: calc(100% - 28px);
      white-space: normal;
    }
    .capability-grid,
    .product-grid,
    .process-grid,
    .lookbook-grid,
    .trade-grid,
    .faq-list,
    .footer-grid,
    .why-grid,
    .products-head,
    .custom-head {
      grid-template-columns: 1fr;
    }
    .capability-grid .cell,
    .why-card {
      border-left: 0;
      border-top: 1px solid var(--rule);
    }
    .capability-grid .cell:first-child,
    .why-card:first-child {
      border-top: 0;
    }
    .by-color,
    .products,
    .custom-process,
    .wholesale,
    .lookbook,
    .trade,
    .faq,
    .why {
      padding: 64px 0;
    }
    .by-color-head,
    .filter-summary,
    .lookbook-head,
    .cta-band-inner,
    .footer-bottom {
      display: grid;
      grid-template-columns: 1fr;
      align-items: start;
    }
    .color-grid {
      grid-template-columns: 1fr;
    }
    .color-card,
    .color-card.feature {
      min-height: 240px;
    }
    .color-card.feature .name-band .name {
      font-size: 34px;
    }
    .filter-label {
      width: 100%;
    }
    .product-filters {
      padding: 16px;
    }
    .feature-list li {
      grid-template-columns: 1fr;
      gap: 4px;
    }
    .footer-grid {
      gap: 30px;
    }
    .section-title {
      font-size: 27px;
    }
    .eyebrow {
      max-width: 100%;
      white-space: normal;
      line-height: 1.4;
      align-items: flex-start;
    }
    .eyebrow::before {
      flex: 0 0 18px;
      margin-top: 8px;
    }
    .btn {
      max-width: 100%;
      min-width: 0;
      white-space: normal;
      text-align: center;
      line-height: 1.35;
    }
    .chip {
      max-width: 100%;
      white-space: normal;
      line-height: 1.25;
    }
    .nav-link {
      min-width: 0;
      min-height: 36px;
      max-width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 9px 8px;
      border: 1px solid var(--rule);
      background: rgba(255,255,255,0.42);
      white-space: normal;
      text-align: center;
      line-height: 1.2;
      overflow-wrap: anywhere;
    }
    .nav-link.active {
      border-color: rgba(100,47,47,0.42);
      background: rgba(100,47,47,0.06);
    }
    .cta-band h2 {
      font-size: 31px;
    }
    .cta-band .actions {
      display: grid;
      grid-template-columns: 1fr;
      justify-content: stretch;
    }
    .cta-band .actions .btn,
    footer .btn {
      width: 100%;
      justify-content: center;
    }
    .wholesale-image .label {
      max-width: calc(100% - 36px);
      white-space: normal;
      line-height: 1.35;
    }
  }
