:root {
    --black: #0f0f0f;
    --ink: #1a1a1a;
    --ink-70: #3a3a3a;
    --ink-50: #6b6b6b;
    --ink-30: #a8a8a8;
    --line: #ebe9e3;
    --white: #ffffff;
    --off-white: #faf9f5;
    --cream: #faf9f5;   /* deprecated - same as off-white */

    /* Single accent — used sparingly */
    --accent: #2d6a3f;
    --accent-deep: #1f4d2d;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Inter', sans-serif;
    color: var(--ink);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 15px;
    line-height: 1.55;
    font-feature-settings: 'ss01', 'cv11';
  }
  img { display: block; max-width: 100%; }
  a { color: inherit; text-decoration: none; }

  /* ═══════════════════ TOP BAR ═══════════════════ */
  .topbar {
    background: var(--black);
    color: rgba(255,255,255,0.75);
    padding: 8px 20px;
    text-align: center;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
  }
  .topbar .sep { opacity: 0.35; letter-spacing: 0; }

  /* ═══════════════════ NAV ═══════════════════ */
  nav {
    background: var(--white);
    border-bottom: 1px solid var(--black);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 90;
  }
  .nav-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
  }
  .nav-left { display: flex; gap: 32px; align-items: center; }
  .nav-left a {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--black);
    transition: color 0.2s;
    position: relative;
  }
  .nav-left a::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: -4px;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform 0.25s;
    transform-origin: left;
  }
  .nav-left a:hover::after { transform: scaleX(1); }
  .nav-left a.active { color: var(--black); }
  .nav-left a.active::after { transform: scaleX(1); background: var(--black); height: 1.5px; bottom: -6px; }

  .logo {
    display: flex;
    align-items: center;
    justify-self: center;
    color: var(--black);
    padding: 6px 4px;
  }
  .logo-img {
    height: 36px;
    width: auto;
    display: block;
  }
  .foot-brand .logo-img {
    height: 48px;
  }

  .nav-right {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 24px;
  }
  .nav-phone {
    font-weight: 700;
    font-size: 13px;
    color: var(--black);
    letter-spacing: -0.005em;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .nav-phone::before {
    content: '';
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--accent);
  }
  .nav-cart {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    border: 1.5px solid var(--black);
    font-weight: 700;
    font-size: 12px;
    position: relative;
    transition: background 0.2s, color 0.2s;
    min-height: 38px;
  }
  .nav-cart:hover { background: var(--black); color: var(--white); }
  .nav-cart-badge {
    position: absolute;
    top: -7px; right: -7px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    width: 19px; height: 19px;
    display: flex; align-items: center; justify-content: center;
    font-size: 11px;
    font-weight: 700;
    border: 1.5px solid var(--white);
  }

  /* ═══════════════════ HERO ═══════════════════ */
  .hero {
    background: var(--off-white);
    color: var(--ink);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--black);
  }
  .hero-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 64px 40px 72px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
  }
  .hero-inner::before {
    content: '';
    position: absolute;
    left: calc(58% - 40px);
    top: 64px; bottom: 72px;
    width: 1px;
    background: var(--line);
    opacity: 0;
    pointer-events: none;
  }
  .hero-content { position: relative; }
  /* Edition mark in hero corner */
  .hero-edition {
    position: absolute;
    top: 64px; left: 40px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--ink-30);
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .hero-edition::before {
    content: '';
    width: 18px; height: 1px;
    background: var(--ink-30);
  }
  .hero-rating {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 32px;
    font-size: 12px;
    font-weight: 500;
    color: var(--ink-50);
  }
  .hero-rating .stars {
    color: #f5b50a;
    letter-spacing: 1.5px;
    font-size: 13px;
  }
  .hero-rating strong { color: var(--black); font-weight: 600; }

  .hero h1 {
    font-family: 'Fraunces', serif;
    font-weight: 400;
    font-size: clamp(44px, 5.8vw, 84px);
    line-height: 0.96;
    letter-spacing: -0.032em;
    margin-bottom: 28px;
    color: var(--black);
    text-wrap: balance;
  }
  .hero h1 .lede {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 600;
    color: var(--accent);
    font-size: 11px;
    line-height: 1;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    margin-bottom: 24px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--line);
    width: fit-content;
  }
  .hero h1 .lede::before {
    content: '';
    width: 24px; height: 1px;
    background: var(--accent);
    flex-shrink: 0;
  }

  .hero-sub {
    font-size: 16px;
    line-height: 1.55;
    color: var(--ink-70);
    margin: 0 0 32px;
    max-width: 520px;
    font-weight: 400;
  }
  .hero-sub strong {
    color: var(--black);
    font-weight: 600;
  }

  .hero-postcode {
    max-width: 480px;
    margin: 0 0 16px;
  }
  .hero-postcode-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 12px;
    display: block;
  }
  .hero-trust {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 12px;
    color: var(--ink-50);
    font-weight: 500;
  }
  .hero-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .hero-trust-item svg { color: var(--ink-50); flex-shrink: 0; }
  .hero-trust .bullet {
    width: 3px; height: 3px; border-radius: 50%;
    background: var(--ink-30);
  }

  /* Hero image — full editorial moment, breaks the page bottom */
  .hero-image {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    background: #1a1a1a;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 28px;
  }
  .hero-image::before {
    content: '';
    position: absolute; inset: 0;
    background:
      linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.55) 100%),
      url('https://picsum.photos/seed/firewood-portrait-v3/1200/1500') center/cover;
    z-index: 1;
  }
  .hero-image-top, .hero-image-caption {
    position: relative;
    z-index: 2;
  }
  .hero-image-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
  }
  .hero-image-mark {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 300;
    font-size: 16px;
    letter-spacing: 0.02em;
    color: rgba(255,255,255,0.9);
  }
  .hero-image-meta {
    text-align: right;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    line-height: 1.5;
  }
  .hero-image-caption-text {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 300;
    font-size: 19px;
    line-height: 1.35;
    letter-spacing: -0.008em;
    color: rgba(255,255,255,0.96);
    margin-bottom: 16px;
    max-width: 360px;
  }
  .hero-image-caption-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
  }
  .hero-image-caption-meta::before {
    content: '';
    width: 24px; height: 1px;
    background: rgba(255,255,255,0.5);
  }

  /* Old hero structure - hide unused */
  .hero-eyebrow,
  .hero-bullets,
  .hero-right,
  .hero-right-stamp,
  .postcode-card,
  .hero-image-band { display: none; }
  .postcode-field {
    display: flex;
    border: 1.5px solid var(--black);
    overflow: hidden;
    transition: box-shadow 0.2s;
    background: var(--white);
  }
  .postcode-field:focus-within {
    box-shadow: 0 0 0 3px rgba(0,0,0,0.08);
  }
  .postcode-field input {
    flex: 1 1 0;
    min-width: 0;
    border: none;
    padding: 12px 14px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    outline: none;
    background: transparent;
    color: var(--black);
    width: 100%;
  }
  .postcode-field input::placeholder {
    color: var(--ink-30);
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
  }
  .postcode-btn {
    background: var(--black);
    color: var(--white);
    border: none;
    padding: 0 22px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .postcode-btn:hover { background: var(--accent); }

  .postcode-trust {
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 11px;
    color: var(--ink-50);
    font-weight: 500;
  }
  .postcode-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .postcode-trust-item svg { color: var(--ink-50); }

  /* ═══════════════════ TRUST NUMBERS ═══════════════════ */
  .trust-numbers {
    background: var(--white);
    padding: 32px 40px;
    border-bottom: 1px solid var(--black);
  }
  .trust-numbers-inner {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 0;
    align-items: center;
  }
  .trust-num {
    padding: 0 32px;
    border-right: 1px solid var(--line);
  }
  .trust-num:first-child { padding-left: 0; }
  .trust-num:last-child { border-right: none; padding-right: 0; }
  .trust-num.lead { padding-left: 0; }
  .trust-num.lead .lead-row {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 4px;
  }
  .trust-num.lead .stars-visual {
    color: #f5b50a;
    font-size: 22px;
    letter-spacing: 1px;
    line-height: 1;
  }
  .trust-num.lead .score {
    font-family: 'Fraunces', serif;
    font-weight: 400;
    font-size: 28px;
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--black);
  }
  .trust-num.lead .lead-text {
    font-size: 12px;
    color: var(--ink-50);
    line-height: 1.4;
  }
  .trust-num.lead .lead-text strong {
    color: var(--black);
    font-weight: 600;
  }
  .trust-num .big {
    font-family: 'Fraunces', serif;
    font-weight: 400;
    font-size: 28px;
    line-height: 1;
    letter-spacing: -0.022em;
    color: var(--black);
    margin-bottom: 6px;
    white-space: nowrap;
  }
  .trust-num .big em {
    font-style: italic;
    font-weight: 400;
    color: var(--ink-50);
  }
  .trust-num .big .stars-visual {
    display: inline-block;
    font-size: 20px;
    color: #f5b50a;
    letter-spacing: 1px;
    line-height: 1;
  }
  .trust-num .lbl {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-50);
    line-height: 1.4;
  }

  /* ═══════════════════ SECTIONS ═══════════════════ */
  section { padding: 72px 32px; }
  .container { max-width: 1240px; margin: 0 auto; }

  .section-head {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 44px;
  }
  .section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--ink-50);
    margin-bottom: 18px;
  }
  .section-kicker::before {
    content: '';
    width: 20px;
    height: 1px;
    background: var(--ink-30);
  }
  .section-kicker::after {
    content: '';
    width: 20px;
    height: 1px;
    background: var(--ink-30);
  }
  .section-kicker.dark { color: var(--ink-50); }

  h2 {
    font-family: 'Fraunces', serif;
    font-weight: 400;
    font-size: clamp(34px, 4.2vw, 54px);
    line-height: 1.04;
    letter-spacing: -0.025em;
    color: var(--black);
    margin-bottom: 18px;
  }
  h2 em {
    font-style: italic;
    font-weight: 400;
    color: var(--ink-50);
  }
  .section-sub {
    font-size: 14px;
    color: var(--ink-50);
    line-height: 1.55;
    max-width: 520px;
    margin: 0 auto;
  }

  /* ═══════════════════ TWO-OPTION BUNDLE CHOOSER ═══════════════════ */
  .bundles {
    background: var(--off-white);
    border-bottom: 1px solid var(--black);
    border-top: 1px solid var(--black);
    padding-top: 96px;
    padding-bottom: 96px;
  }
  .bundle-choice {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 24px;
    max-width: 1280px;
    margin: 0 auto;
    align-items: stretch;
  }

  .option {
    position: relative;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.3, 1), box-shadow 0.3s, border-color 0.3s;
  }
  .option:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px -16px rgba(0,0,0,0.18);
    border-color: var(--black);
  }

  /* SAVER = primary, emphasized with paper bg + black border */
  .option.saver {
    background: #faf7ee;
    color: var(--ink);
    border-color: var(--black);
    border-width: 1.5px;
  }
  .option.saver .option-img {
    background: #f0ebde;
  }
  .option.saver:hover {
    box-shadow: 0 24px 48px -16px rgba(0,0,0,0.2);
  }
  /* Refined "Bestseller" pin style */
  .option.saver::before {
    content: '';
    position: absolute;
    top: -1px; left: 24px;
    width: 60px; height: 4px;
    background: var(--black);
    z-index: 4;
  }

  .option-ribbon {
    position: absolute;
    top: 14px; left: 14px;
    background: rgba(255,255,255,0.95);
    color: var(--black);
    padding: 5px 10px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    z-index: 3;
    backdrop-filter: blur(8px);
  }
  .option-ribbon::before {
    content: '★ ';
    color: var(--accent);
    margin-right: 2px;
  }

  .option-img {
    aspect-ratio: 5/2;
    overflow: hidden;
    position: relative;
    background: var(--off-white);
  }
  .option-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.9s cubic-bezier(0.2, 0.8, 0.3, 1);
  }
  .option:hover .option-img img { transform: scale(1.05); }
  .option-img::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.35) 100%);
    pointer-events: none;
  }
  .option-img-label { display: none; }

  .option-body {
    padding: 24px 24px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  .option-eyebrow {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-50);
    margin-bottom: 12px;
  }
  .option.saver .option-eyebrow { color: var(--accent); }

  .option-title {
    font-family: 'Fraunces', serif;
    font-weight: 500;
    font-size: clamp(22px, 2vw, 26px);
    letter-spacing: -0.018em;
    line-height: 1.1;
    margin-bottom: 8px;
  }
  .option-title em { font-style: italic; font-weight: 400; }
  .option.saver .option-title em { color: var(--ink-50); }

  .option-desc {
    font-size: 13px;
    color: var(--ink-50);
    line-height: 1.55;
    margin-bottom: 18px;
    max-width: 420px;
  }
  .option.saver .option-desc { color: var(--ink-70); }

  .option-price-row {
    display: flex;
    align-items: baseline;
    gap: 14px;
    margin-bottom: 6px;
    flex-wrap: wrap;
  }
  .option-price {
    font-family: 'Fraunces', serif;
    font-weight: 500;
    font-size: clamp(32px, 3.2vw, 40px);
    letter-spacing: -0.03em;
    line-height: 1;
  }
  .option-price .from {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-50);
    font-family: 'Inter', sans-serif;
    margin-right: 6px;
    vertical-align: 8px;
  }
  .option.saver .option-price .from { color: var(--ink-50); }
  .option-was {
    font-size: 15px;
    color: var(--ink-30);
    text-decoration: line-through;
    font-weight: 400;
    font-family: 'Fraunces', serif;
  }
  .option.saver .option-was { color: var(--ink-30); }
  .option-save-badge {
    display: inline-block;
    color: var(--accent);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0;
  }
  .option.saver .option-save-badge { color: var(--accent); font-weight: 600; }
  .option-per {
    font-size: 12px;
    color: var(--ink-50);
    font-weight: 500;
    margin-bottom: 20px;
  }
  .option.saver .option-per { color: var(--ink-50); }

  .option-includes {
    border-top: 1px solid var(--line);
    padding-top: 18px;
    margin-bottom: 22px;
  }
  .option.saver .option-includes { border-color: var(--line); }
  .option-includes-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-50);
    margin-bottom: 10px;
  }
  .option.saver .option-includes-label { color: var(--ink-50); }
  .option-includes ul { list-style: none; }
  .option-includes li {
    font-size: 13px;
    padding: 5px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    line-height: 1.4;
  }
  .option-includes li svg {
    flex-shrink: 0;
    color: var(--accent);
    opacity: 0.9;
  }
  .option.saver .option-includes li svg { color: var(--accent); opacity: 0.9; }

  .option-btn {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--black);
    color: var(--white);
    padding: 16px 22px;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.04em;
    transition: background 0.2s;
    font-family: 'Inter', sans-serif;
  }
  .option-btn .arrow {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 300;
    font-size: 16px;
    transition: transform 0.25s;
  }
  .option-btn:hover .arrow { transform: translateX(4px); }
  .option-btn:hover { background: var(--ink-70); }
  .option.saver .option-btn { background: var(--black); color: var(--white); }
  .option.saver .option-btn:hover { background: var(--ink-70); color: var(--white); }

  /* Build-a-bundle specific: custom tile with slider-style quantity preview */
  .option.build .option-body {
    padding-bottom: 32px;
  }
  .option.build .option-preview {
    background: var(--off-white);
    border: 1px solid var(--line);
    padding: 14px 18px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
  }
  .option.build .option-preview-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-50);
  }
  .option.build .option-preview-range {
    font-family: 'Fraunces', serif;
    font-weight: 500;
    font-size: 14px;
    color: var(--black);
  }
  .option.build .option-preview-range em {
    font-style: italic;
    font-weight: 400;
    color: var(--accent);
  }

  /* GUARANTEE BAR */
  .bundles-guarantees {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 36px;
    font-size: 12px;
    font-weight: 500;
    color: var(--ink-50);
  }
  .bundles-guarantees-item {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .bundles-guarantees-item svg { color: var(--accent); flex-shrink: 0; }

  /* ═══════════════════ VALUE MATH ═══════════════════ */
  .value {
    background: var(--white);
    color: var(--ink);
    border-bottom: 1px solid var(--black);
    position: relative;
    overflow: hidden;
  }
  .value h2 { color: var(--black); }
  .value .section-sub { color: var(--ink-50); }

  .value-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    max-width: 1080px;
    margin: 0 auto;
    align-items: stretch;
    position: relative;
    z-index: 2;
  }
  .value-col {
    padding: 28px 28px 24px;
    background: var(--off-white);
    border: 1px solid var(--line);
    display: flex;
    flex-direction: column;
  }
  .value-col.us {
    background: var(--white);
    color: var(--ink);
    border: 1.5px solid var(--black);
  }
  .value-col-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--ink-50);
    margin-bottom: 12px;
  }
  .value-col.us .value-col-label { color: var(--accent); }

  .value-col h4 {
    font-family: 'Fraunces', serif;
    font-weight: 500;
    font-size: 24px;
    letter-spacing: -0.012em;
    margin-bottom: 28px;
    line-height: 1.15;
  }
  .value-stats { list-style: none; flex: 1; }
  .value-stats li {
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12.5px;
    font-weight: 500;
    color: var(--ink-70);
  }
  .value-stats .num {
    font-family: 'Fraunces', serif;
    font-weight: 500;
    font-size: 15px;
    color: var(--black);
    letter-spacing: -0.01em;
  }
  .value-total {
    margin-top: 20px;
    padding-top: 22px;
    border-top: 1.5px solid var(--black);
    display: flex;
    justify-content: space-between;
    align-items: baseline;
  }
  .value-total strong {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-50);
  }
  .value-total .big {
    font-family: 'Fraunces', serif;
    font-weight: 500;
    font-size: 34px;
    letter-spacing: -0.03em;
    line-height: 1;
    color: var(--ink-50);
  }
  .value-col.us .value-total .big { color: var(--black); }

  .value-vs {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    width: 1px;
    background: var(--line);
    overflow: visible;
    position: relative;
    color: transparent;
    font-size: 0;
  }
  .value-vs::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 36px;
    height: 36px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 50%;
  }
  .value-vs::before {
    content: 'vs';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 300;
    font-size: 14px;
    color: var(--ink-50);
    line-height: 1;
  }

  .value-verdict {
    text-align: center;
    margin-top: 28px;
    padding: 20px 32px;
    max-width: 1040px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Fraunces', serif;
    font-weight: 400;
    font-size: clamp(16px, 1.8vw, 19px);
    letter-spacing: -0.01em;
    line-height: 1.4;
    position: relative;
    z-index: 2;
    color: var(--ink);
  }
  .value-verdict .save-num {
    color: var(--accent);
    font-weight: 500;
    font-size: 1.3em;
    font-style: italic;
  }

  /* ═══════════════════ COMPARISON ═══════════════════ */
  .compare {
    background: var(--off-white);
    border-bottom: 1px solid var(--black);
  }
  .compare-table {
    max-width: 1080px;
    margin: 0 auto;
    border: 1px solid var(--black);
    border-radius: 4px;
    overflow: hidden;
    background: var(--white);
  }
  .compare-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid var(--line);
  }
  .compare-row:last-child { border-bottom: none; }
  .compare-row.head {
    background: var(--white);
    border-bottom: 1px solid var(--black);
  }
  .compare-row.head > * {
    padding: 14px 22px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
  }
  .compare-row.head .criterion { color: var(--ink-50); }
  .compare-row.head .them { color: var(--ink-50); }
  .compare-row.head .us {
    background: var(--black);
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .compare-row.head .us::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--accent);
    border-radius: 50%;
  }
  .compare-row > * {
    padding: 14px 22px;
    border-right: 1px solid var(--line);
    font-size: 13px;
    line-height: 1.5;
  }
  .compare-row > *:last-child { border-right: none; }
  .compare-row .criterion {
    font-family: 'Fraunces', serif;
    font-weight: 500;
    font-size: 14.5px;
    letter-spacing: -0.008em;
    color: var(--black);
    display: flex;
    align-items: center;
  }
  .compare-row .them {
    color: var(--ink-50);
    display: flex;
    align-items: flex-start;
    gap: 10px;
  }
  .compare-row .them svg { color: var(--ink-30); flex-shrink: 0; margin-top: 3px; }
  .compare-row .us {
    color: var(--ink);
    font-weight: 500;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #f4f7f3;
  }
  .compare-row .us svg {
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 3px;
  }


  /* ═══════════════════ PRODUCT MOMENT ═══════════════════ */
  .moment {
    background: var(--white);
    padding: 0;
    border-bottom: 1px solid var(--black);
    overflow: hidden;
  }
  .moment-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 480px;
    align-items: stretch;
  }
  .moment-image {
    position: relative;
    background: #1a1a1a;
    overflow: hidden;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px;
  }
  .moment-image::before {
    content: '';
    position: absolute; inset: 0;
    background:
      linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.6) 100%),
      url('https://picsum.photos/seed/firewood-grain-detail-v3/1400/1400') center/cover;
    z-index: 0;
  }
  .moment-image-top {
    position: relative;
    z-index: 2;
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 300;
    font-size: 16px;
    color: rgba(255,255,255,0.9);
  }
  .moment-image-stat {
    position: relative;
    z-index: 2;
  }
  .moment-image-stat .big {
    font-family: 'Fraunces', serif;
    font-weight: 400;
    font-size: clamp(56px, 8vw, 110px);
    line-height: 0.9;
    letter-spacing: -0.04em;
    color: var(--white);
    margin-bottom: 12px;
  }
  .moment-image-stat .lbl {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    max-width: 280px;
    line-height: 1.5;
  }
  .moment-content {
    padding: 80px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--off-white);
    position: relative;
  }
  .moment-content-inner { max-width: 480px; }
  .moment-edition {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 300;
    font-size: 16px;
    color: var(--ink-50);
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .moment-edition::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--ink-30);
    max-width: 60px;
  }
  .moment h2 {
    font-family: 'Fraunces', serif;
    font-weight: 400;
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.05;
    letter-spacing: -0.022em;
    color: var(--black);
    margin-bottom: 22px;
  }
  .moment p {
    font-size: 15px;
    line-height: 1.65;
    color: var(--ink-70);
    margin-bottom: 16px;
  }
  .moment p:last-child { margin-bottom: 0; }
  .moment p strong { color: var(--black); font-weight: 600; }

  @media (max-width: 1000px) {
    .moment-inner { grid-template-columns: 1fr; }
    .moment-image { aspect-ratio: 5/4; min-height: 0; }
    .moment-content { padding: 48px 24px; }
  }

  /* ═══════════════════ CTA BAND ═══════════════════ */
  .cta-band {
    background: var(--white);
    padding: 56px 32px;
    border-bottom: 1px solid var(--black);
  }
  .cta-band-inner {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
  }
  .cta-band h2 { margin-bottom: 14px; }
  .cta-band p {
    color: var(--ink-50);
    margin-bottom: 32px;
    font-size: 16px;
  }
  .cta-band .postcode-field {
    max-width: 480px;
    margin: 0 auto;
  }
  .cta-band-trust {
    margin-top: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    font-size: 12px;
    font-weight: 500;
    color: var(--ink-50);
  }
  .cta-band-trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
  }
  .cta-band-trust-item svg { color: var(--accent); flex-shrink: 0; }

  /* ═══════════════════ REVIEWS ═══════════════════ */
  .reviews {
    background: var(--off-white);
    border-bottom: 1px solid var(--black);
  }
  .reviews-head-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 36px;
  }
  .rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 10px 18px;
    background: var(--white);
    border: 1px solid var(--black);
  }
  .rating-badge .score {
    font-family: 'Fraunces', serif;
    font-weight: 500;
    font-size: 24px;
    letter-spacing: -0.02em;
    line-height: 1;
    color: var(--black);
  }
  .rating-badge .rb-mid { display: flex; flex-direction: column; gap: 3px; }
  .rating-badge .stars {
    color: #f5b50a;
    font-size: 16px;
    letter-spacing: 2px;
    line-height: 1;
  }
  .rating-badge .reviews-text {
    font-size: 11px;
    font-weight: 600;
    color: var(--ink-50);
    letter-spacing: 0.04em;
  }
  .rating-badge .reviews-text strong {
    color: var(--black);
    font-weight: 700;
  }

  .reviews-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 22px;
  }
  .reviews-grid-right {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 22px;
  }
  .review.featured {
    padding: 40px;
    background: var(--white);
    border: 1px solid var(--black);
  }
  .review.featured .review-title {
    font-family: 'Fraunces', serif;
    font-weight: 500;
    font-size: 26px;
    line-height: 1.15;
    margin-bottom: 18px;
    letter-spacing: -0.018em;
    color: var(--black);
  }
  .review.featured .review-body {
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 24px;
  }
  .review.featured .review-stars {
    margin-bottom: 18px;
  }
  .review {
    background: var(--white);
    border: 1px solid var(--line);
    padding: 22px;
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s, transform 0.2s;
  }
  .review:hover {
    border-color: var(--black);
    transform: translateY(-2px);
  }
  .review-stars {
    color: #f5b50a;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 16px;
    line-height: 1;
  }
  .review-title {
    font-family: 'Fraunces', serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: -0.012em;
    margin-bottom: 10px;
    line-height: 1.25;
    color: var(--black);
  }
  .review-body {
    font-size: 13px;
    color: var(--ink-50);
    line-height: 1.6;
    margin-bottom: 18px;
    flex: 1;
  }
  .review-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
  }
  .review-avatar {
    width: 32px; height: 32px;
    background: var(--black);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Fraunces', serif;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0.02em;
  }
  .review-name {
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--black);
  }
  .review-verified {
    font-size: 10px;
    font-weight: 600;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 2px;
  }
  .review-verified svg { flex-shrink: 0; }

  /* ═══════════════════ HOW IT WORKS ═══════════════════ */
  .how {
    background: var(--white);
    border-bottom: 1px solid var(--black);
  }
  .how-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    border: 1px solid var(--black);
    border-radius: 4px;
    overflow: hidden;
  }
  .how-step {
    padding: 36px 32px;
    border-right: 1px solid var(--line);
    position: relative;
  }
  .how-step:last-child { border-right: none; }
  .how-step-num {
    font-family: 'Fraunces', serif;
    font-weight: 400;
    font-size: 44px;
    line-height: 1;
    letter-spacing: -0.025em;
    color: var(--black);
    margin-bottom: 16px;
    display: flex;
    align-items: baseline;
    gap: 4px;
  }
  .how-step-num::after {
    content: '';
    width: 24px; height: 1px;
    background: var(--ink-30);
    margin-left: 8px;
    align-self: center;
  }
  .how-step h4 {
    font-family: 'Fraunces', serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: -0.012em;
    margin-bottom: 6px;
  }
  .how-step p {
    font-size: 12.5px;
    color: var(--ink-50);
    line-height: 1.55;
  }

/* ═══════════════════ FAQ ═══════════════════ */
  .faq {
    background: var(--off-white);
    border-bottom: 1px solid var(--black);
  }
  .faq-container {
    max-width: 820px;
    margin: 0 auto;
  }
  details {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 4px;
    margin-bottom: 10px;
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  details:hover { border-color: var(--ink-30); }
  details[open], details[open]:hover {
    border-color: var(--black);
  }
  summary {
    padding: 22px 26px;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    font-family: 'Fraunces', serif;
    font-weight: 500;
    font-size: 19px;
    letter-spacing: -0.012em;
    line-height: 1.3;
    color: var(--black);
  }
  summary::-webkit-details-marker { display: none; }
  .faq-icon {
    font-size: 20px;
    font-weight: 300;
    color: var(--ink-50);
    flex-shrink: 0;
    transition: transform 0.3s;
    line-height: 1;
    font-family: 'Fraunces', serif;
    width: 18px;
    text-align: center;
  }
  details[open] .faq-icon {
    transform: rotate(45deg);
    color: var(--ink);
  }
  .faq-body {
    padding: 2px 20px 20px;
    color: var(--ink-50);
    font-size: 13.5px;
    line-height: 1.65;
  }

  /* ═══════════════════ FINAL CTA ═══════════════════ */
  .final {
    background: var(--white);
    color: var(--ink);
    padding: 72px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--black);
  }
  .final-inner {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }
  .final .section-kicker {
    color: var(--ink-50);
  }
  .final h2 {
    color: var(--black);
    font-size: clamp(28px, 3.2vw, 40px);
    margin-bottom: 12px;
  }
  .final h2 em { font-weight: 300; color: var(--ink-50); }
  .final p {
    color: var(--ink-70);
    margin-bottom: 26px;
    font-size: 14px;
  }
  .final .postcode-field {
    max-width: 480px;
    margin: 0 auto;
  }
  .final-trust {
    margin-top: 18px;
    font-size: 12px;
    font-weight: 500;
    color: var(--ink-50);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
  }
  .final-trust .bullet {
    width: 3px; height: 3px; border-radius: 50%;
    background: var(--ink-30);
  }
  .final-trust .star-inline { color: #f5b50a; }

  /* ═══════════════════ FOOTER ═══════════════════ */
  footer {
    background: var(--white);
    color: var(--black);
    padding: 0;
    border-top: 1px solid var(--black);
  }
  .foot-quote {
    padding: 64px 32px 56px;
    text-align: center;
    border-bottom: 1px solid var(--line);
    background: var(--off-white);
  }
  .foot-quote-text {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 300;
    font-size: clamp(22px, 2.4vw, 30px);
    line-height: 1.3;
    letter-spacing: -0.014em;
    color: var(--black);
    max-width: 720px;
    margin: 0 auto 18px;
  }
  .foot-quote-meta {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 300;
    font-size: 14px;
    color: var(--ink-50);
    letter-spacing: 0;
    text-transform: none;
  }
  .foot-main {
    padding: 56px 32px 24px;
  }
  .foot-inner { max-width: 1320px; margin: 0 auto; }
  .foot-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 22px;
  }
  .foot-brand .logo {
    justify-self: flex-start;
    margin-bottom: 20px;
  }
  .foot-brand p {
    font-size: 12.5px;
    color: var(--ink-50);
    line-height: 1.6;
    max-width: 320px;
  }
  .foot-col h6 {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 14px;
  }
  .foot-col ul { list-style: none; }
  .foot-col li { margin-bottom: 7px; font-size: 13px; color: var(--ink-50); }
  .foot-col a { color: var(--ink-50); transition: color 0.2s; }
  .foot-col a:hover { color: var(--black); }
  .foot-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-30);
    flex-wrap: wrap;
    gap: 12px;
  }

  /* ═══════════════════ STICKY MOBILE CTA ═══════════════════ */
  .sticky-cta {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--white);
    border-top: 1px solid var(--black);
    padding: 10px 14px;
    z-index: 80;
    display: none;
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.3, 1);
    box-shadow: 0 -8px 24px -4px rgba(0,0,0,0.06);
  }
  .sticky-cta.show { transform: translateY(0); }
  .sticky-cta-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto;
  }
  .sticky-cta-text {
    flex: 1;
    font-family: 'Fraunces', serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--black);
    line-height: 1.2;
    letter-spacing: -0.01em;
  }
  .sticky-cta-text .sub {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    color: var(--ink-50);
    font-weight: 600;
    margin-top: 3px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }
  .sticky-cta-btn {
    background: var(--black);
    color: var(--white);
    padding: 13px 20px;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    white-space: nowrap;
    border-radius: 2px;
  }

  /* ═══════════════════ RESPONSIVE ═══════════════════ */
  @media (max-width: 1000px) {
    .nav-left { display: none; }
    .nav-inner { grid-template-columns: auto 1fr auto; padding: 0 20px; gap: 16px; }
    .nav-phone { display: none; }
    .logo-img { height: 34px; }
    .logo { min-height: 44px; }
    .foot-brand .logo-img { height: 44px; }
    .postcode-btn { padding: 0 18px; }
    .hero-inner {
      grid-template-columns: 1fr;
      padding: 40px 20px;
      gap: 32px;
    }
    .hero-image {
      aspect-ratio: 5/4;
      order: 2;
    }
    .hero-content { order: 1; }
    .trust-numbers { padding: 24px 20px; }
    .trust-numbers-inner { grid-template-columns: 1fr 1fr; gap: 20px 0; }
    .trust-num.lead { grid-column: 1 / -1; padding-bottom: 16px; border-right: none; border-bottom: 1px solid var(--line); margin-bottom: 4px; padding-right: 0; text-align: left; }
    .trust-numbers-inner { grid-template-columns: 1fr 1fr; gap: 28px 0; }
    .trust-num { border-right: none; padding: 0 16px; text-align: center; }
    .trust-num:first-child, .trust-num:last-child { text-align: center; padding: 0 16px; }
    .trust-num:nth-child(odd) { border-right: 1px solid var(--line); }
    section { padding: 48px 20px; }
    .bundle-choice, .reviews-grid, .reviews-grid-right, .how-steps { grid-template-columns: 1fr; gap: 14px; }
    .how-steps { gap: 0; }
    .how-step { border-right: none; border-bottom: 1px solid var(--line); }
    .how-step:last-child { border-bottom: none; }
    .value-grid { grid-template-columns: 1fr; gap: 16px; }
    .value-vs { padding: 0; width: auto; height: 44px; background: transparent; }
    .compare-row { grid-template-columns: 1fr; }
    .compare-row > * { border-right: none; border-bottom: 1px solid var(--line); padding: 16px 20px; }
    .compare-row.head { display: none; }
    .compare-row .criterion { font-weight: 600; padding-bottom: 4px; }
    .compare-row .them::before { content: 'Typical: '; font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-30); font-weight: 700; margin-right: 4px; }
    .compare-row .us::before { content: 'Ours: '; font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); font-weight: 700; margin-right: 4px; }
    .compare-row .them svg, .compare-row .us svg { display: none; }
    .foot-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    body { padding-bottom: 84px; }
    .sticky-cta { display: block; }
  }
  @media (min-width: 640px) and (max-width: 1000px) {
    .reviews-grid { grid-template-columns: 1fr 1fr; }
    .how-steps { grid-template-columns: 1fr 1fr; }
    .how-step { border-right: 1px solid var(--line); }
    .how-step:nth-child(2n) { border-right: none; }
    .how-step:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  }
  @media (max-width: 500px) {
    .foot-grid { grid-template-columns: 1fr; }
    .foot-col li { margin-bottom: 4px; }
    .foot-col a { display: inline-block; padding: 8px 0; min-height: 32px; }
    .foot-bottom { flex-direction: column; text-align: center; }
    .topbar { font-size: 10px; gap: 8px; padding: 7px 14px; }
    .topbar .sep:nth-of-type(n+2), .topbar .extra { display: none; }
    .hero h1 { font-size: 38px; line-height: 0.98; }
    .hero h1 .lede { font-size: 10px; margin-bottom: 16px; padding-bottom: 14px; }
    .hero-inner { padding: 32px 16px; gap: 28px; }
    .hero-sub { font-size: 14px; margin-bottom: 22px; }
    .hero-rating { flex-wrap: wrap; font-size: 12px; margin-bottom: 24px; }
    .hero-trust { gap: 10px 14px; font-size: 11px; }
    .hero-trust .bullet { display: none; }
    .moment-content { padding: 36px 20px; }
    .moment h2 { font-size: 26px; }
    .foot-quote { padding: 44px 24px 36px; }
    .foot-quote-text { font-size: 18px; }
    .bundles-guarantees { flex-direction: column; gap: 14px; align-items: flex-start; }
    .trust-num .big { font-size: 32px; }
    .trust-num .big .stars-visual { font-size: 24px; }
    .trust-num .lbl { font-size: 10px; letter-spacing: 0.12em; }
    .trust-num { padding: 0 10px; }
    .logo-img { height: 28px; }
    .logo { min-height: 44px; }
    .postcode-field input { padding: 12px 14px; font-size: 15px; }
    .postcode-btn { padding: 0 16px; font-size: 12px; letter-spacing: 0.08em; }
    .option-body { padding: 24px 20px; }
    .option-title { font-size: 26px; }
    .option-price { font-size: 40px; }
    .value-col { padding: 24px 20px; }
    .value-total .big { font-size: 36px; }
    .final h2 { font-size: 34px; }
    .nav-cart { padding: 10px 12px; font-size: 12px; min-height: 40px; }
    .nav-inner { gap: 10px; }
    section { padding: 44px 16px; }
    .compare-row > * { padding: 14px 16px; }
    .faq-body, summary { padding-left: 18px; padding-right: 18px; }
    summary { font-size: 16px; }
    h2 { font-size: 24px; }
    .section-head { margin-bottom: 28px; }
  }

  .reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.8, 0.3, 1); }
  .reveal.in { opacity: 1; transform: translateY(0); }
/* ═══════════════════ COMMERCE EXTENSIONS (same tokens, same idiom) ═══════════════════ */

/* Page hero for inner pages */
.page-hero {
  background: var(--off-white);
  border-bottom: 1px solid var(--black);
  padding: 52px 32px 48px;
  text-align: center;
}
.page-hero .kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 10px; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--ink-50); margin-bottom: 16px;
}
.page-hero .kicker::before, .page-hero .kicker::after { content: ''; width: 20px; height: 1px; background: var(--ink-30); }
.page-hero h1 {
  font-family: 'Fraunces', serif; font-weight: 400;
  font-size: clamp(34px, 4.4vw, 56px); line-height: 1.02; letter-spacing: -0.025em;
  color: var(--black); margin-bottom: 14px;
}
.page-hero p { font-size: 14.5px; color: var(--ink-50); max-width: 560px; margin: 0 auto; }

/* ═══ Shop grid ═══ */
.shop-section { background: var(--white); border-bottom: 1px solid var(--black); }
.filter-row {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; margin-bottom: 36px;
}
.filter-pill {
  border: 1px solid var(--line); background: var(--white); color: var(--ink-50);
  font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 9px 16px; cursor: pointer; transition: all 0.2s; min-height: 36px;
}
.filter-pill:hover { border-color: var(--black); color: var(--black); }
.filter-pill.active { background: var(--black); border-color: var(--black); color: var(--white); }

.shop-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.pcard {
  background: var(--white); border: 1px solid var(--line); border-radius: 4px;
  overflow: hidden; display: flex; flex-direction: column; position: relative;
  transition: transform 0.3s cubic-bezier(0.2,0.8,0.3,1), box-shadow 0.3s, border-color 0.3s;
}
.pcard:hover { transform: translateY(-3px); border-color: var(--black); box-shadow: 0 20px 40px -16px rgba(0,0,0,0.18); }
.pcard-img { aspect-ratio: 4/3; overflow: hidden; position: relative; background: var(--off-white); }
.pcard-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s cubic-bezier(0.2,0.8,0.3,1); }
.pcard:hover .pcard-img img { transform: scale(1.05); }
.pcard-panel {
  aspect-ratio: 4/3; background: #1a1a1a; color: var(--white);
  display: flex; flex-direction: column; justify-content: space-between; padding: 20px;
}
.pcard-panel .mark { font-family: 'Fraunces', serif; font-style: italic; font-weight: 300; font-size: 14px; color: rgba(255,255,255,0.85); }
.pcard-panel .word {
  font-family: 'Fraunces', serif; font-weight: 400; font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.05; letter-spacing: -0.02em; color: rgba(255,255,255,0.95);
}
.pcard-panel .meta { font-size: 9px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.65); margin-top: 10px; }
.pcard-badge {
  position: absolute; top: 14px; left: 14px; z-index: 3;
  background: rgba(255,255,255,0.95); color: var(--black); backdrop-filter: blur(8px);
  padding: 5px 10px; font-size: 10px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
}
.pcard-badge::before { content: '★ '; color: var(--accent); margin-right: 2px; }
.pcard-body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.pcard-cat { font-size: 10px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-50); margin-bottom: 8px; }
.pcard-title { font-family: 'Fraunces', serif; font-weight: 500; font-size: 20px; letter-spacing: -0.015em; line-height: 1.15; margin-bottom: 8px; color: var(--black); }
.pcard-blurb { font-size: 12.5px; color: var(--ink-50); line-height: 1.55; margin-bottom: 16px; flex: 1; }
.pcard-price-row { display: flex; align-items: baseline; gap: 10px; margin-bottom: 14px; flex-wrap: wrap; }
.pcard-price { font-family: 'Fraunces', serif; font-weight: 500; font-size: 24px; letter-spacing: -0.025em; color: var(--black); }
.pcard-price .from { font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-50); font-family: 'Inter', sans-serif; margin-right: 5px; vertical-align: 4px; }
.pcard-was { font-family: 'Fraunces', serif; font-size: 14px; color: var(--ink-30); text-decoration: line-through; }
.pcard-save { color: var(--accent); font-size: 11.5px; font-weight: 600; }
.pcard-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--black); color: var(--white); padding: 13px 18px;
  font-weight: 600; font-size: 12.5px; letter-spacing: 0.04em; transition: background 0.2s;
}
.pcard-btn:hover { background: var(--ink-70); }
.pcard-btn .arrow { font-family: 'Fraunces', serif; font-style: italic; font-weight: 300; font-size: 15px; transition: transform 0.25s; }
.pcard-btn:hover .arrow { transform: translateX(4px); }

/* ═══ Product page ═══ */
.product-layout {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px;
  max-width: 1240px; margin: 0 auto; align-items: start;
}
.product-media { position: sticky; top: 84px; }
.product-media .frame { border: 1px solid var(--black); border-radius: 4px; overflow: hidden; background: var(--off-white); }
.product-media img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
.product-media .panel {
  aspect-ratio: 1/1; background: #1a1a1a; color: var(--white);
  display: flex; flex-direction: column; justify-content: space-between; padding: 32px;
}
.product-media .panel .mark { font-family: 'Fraunces', serif; font-style: italic; font-weight: 300; font-size: 16px; color: rgba(255,255,255,0.85); }
.product-media .panel .word { font-family: 'Fraunces', serif; font-weight: 400; font-size: clamp(30px, 3.4vw, 44px); line-height: 1.05; letter-spacing: -0.02em; }
.product-media .panel .meta { font-size: 10px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.65); margin-top: 12px; }
.product-media .under { margin-top: 12px; font-size: 11.5px; color: var(--ink-50); display: flex; gap: 14px; flex-wrap: wrap; }
.product-media .under span { display: flex; align-items: center; gap: 6px; }

.crumbs { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-30); margin-bottom: 18px; }
.crumbs a { color: var(--ink-50); }
.crumbs a:hover { color: var(--black); }
.crumbs .sep { margin: 0 8px; color: var(--ink-30); }

.product-info h1 { font-family: 'Fraunces', serif; font-weight: 400; font-size: clamp(30px, 3.4vw, 44px); line-height: 1.04; letter-spacing: -0.024em; color: var(--black); margin-bottom: 10px; }
.product-info .pi-blurb { font-size: 14.5px; color: var(--ink-70); line-height: 1.6; margin-bottom: 22px; max-width: 480px; }
.pi-price-row { display: flex; align-items: baseline; gap: 14px; margin-bottom: 4px; flex-wrap: wrap; }
.pi-price { font-family: 'Fraunces', serif; font-weight: 400; font-size: clamp(36px, 3.6vw, 46px); letter-spacing: -0.032em; color: var(--black); }
.pi-was { font-family: 'Fraunces', serif; font-size: 17px; color: var(--ink-30); text-decoration: line-through; }
.pi-save { color: var(--accent); font-size: 13px; font-weight: 600; font-style: italic; font-family: 'Fraunces', serif; }
.pi-vat { font-size: 11px; color: var(--ink-50); margin-bottom: 22px; }

.pi-field { margin-bottom: 16px; }
.pi-field label { display: block; font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-50); margin-bottom: 8px; }
.pi-select {
  width: 100%; max-width: 420px; appearance: none; border: 1.5px solid var(--black); background: var(--white);
  font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 600; color: var(--black);
  padding: 13px 40px 13px 14px; cursor: pointer; border-radius: 0;
  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 d='M1 1l5 5 5-5' fill='none' stroke='%230f0f0f' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
}
.qty-row { display: flex; align-items: center; gap: 16px; margin-bottom: 22px; }
.qty-stepper { display: inline-flex; border: 1.5px solid var(--black); background: var(--white); }
.qty-stepper button {
  width: 42px; height: 46px; border: none; background: transparent; cursor: pointer;
  font-family: 'Fraunces', serif; font-size: 20px; color: var(--black); transition: background 0.15s;
}
.qty-stepper button:hover { background: var(--off-white); }
.qty-stepper input {
  width: 52px; border: none; border-left: 1px solid var(--line); border-right: 1px solid var(--line);
  text-align: center; font-family: 'Inter', sans-serif; font-weight: 700; font-size: 15px; outline: none;
}
.add-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--black); color: var(--white); border: none; cursor: pointer;
  padding: 17px 30px; font-family: 'Inter', sans-serif; font-weight: 600; font-size: 13.5px; letter-spacing: 0.04em;
  transition: background 0.2s; width: 100%; max-width: 420px;
}
.add-btn:hover { background: var(--ink-70); }
.add-btn .arrow { font-family: 'Fraunces', serif; font-style: italic; font-weight: 300; font-size: 16px; transition: transform 0.25s; }
.add-btn:hover .arrow { transform: translateX(4px); }
.add-btn[disabled] { opacity: 0.5; cursor: not-allowed; }

.pi-trust { margin-top: 14px; display: flex; gap: 14px; flex-wrap: wrap; font-size: 11.5px; color: var(--ink-50); font-weight: 500; }
.pi-trust span { display: flex; align-items: center; gap: 6px; }
.pi-trust svg { color: var(--accent); flex-shrink: 0; }

.pi-includes { border-top: 1px solid var(--line); margin-top: 26px; padding-top: 20px; }
.pi-includes .lbl { font-size: 10px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-50); margin-bottom: 10px; }
.pi-includes ul { list-style: none; }
.pi-includes li { font-size: 13.5px; padding: 5px 0; display: flex; align-items: center; gap: 10px; font-weight: 500; }
.pi-includes li svg { flex-shrink: 0; color: var(--accent); }

.pi-desc { border-top: 1px solid var(--line); margin-top: 26px; padding-top: 22px; max-width: 520px; }
.pi-desc p { font-size: 14px; line-height: 1.65; color: var(--ink-70); margin-bottom: 14px; }
.pi-desc p:last-child { margin-bottom: 0; }

/* ═══ Cart drawer ═══ */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(15,15,15,0.35); z-index: 120;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.cart-overlay.open { opacity: 1; pointer-events: auto; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: 420px; max-width: 92vw;
  background: var(--white); border-left: 1px solid var(--black); z-index: 130;
  transform: translateX(100%); transition: transform 0.35s cubic-bezier(0.2,0.8,0.3,1);
  display: flex; flex-direction: column;
}
.cart-drawer.open { transform: translateX(0); }
.cart-head {
  padding: 20px 24px; border-bottom: 1px solid var(--black);
  display: flex; justify-content: space-between; align-items: center;
}
.cart-head .t { font-family: 'Fraunces', serif; font-weight: 500; font-size: 20px; letter-spacing: -0.015em; }
.cart-close { background: none; border: none; cursor: pointer; font-family: 'Fraunces', serif; font-size: 22px; font-weight: 300; padding: 8px; line-height: 1; min-width: 38px; min-height: 38px; }
.cart-items { flex: 1; overflow-y: auto; padding: 8px 24px; }
.cart-line { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.cart-line-img { width: 64px; height: 64px; flex-shrink: 0; border: 1px solid var(--line); background: #1a1a1a; overflow: hidden; }
.cart-line-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-line-img .ph { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.85); font-family: 'Fraunces', serif; font-style: italic; font-size: 13px; }
.cart-line-body { flex: 1; min-width: 0; }
.cart-line-title { font-family: 'Fraunces', serif; font-weight: 500; font-size: 15px; line-height: 1.2; margin-bottom: 2px; }
.cart-line-variant { font-size: 11.5px; color: var(--ink-50); margin-bottom: 8px; }
.cart-line-controls { display: flex; align-items: center; gap: 12px; }
.cart-line-controls .mini-step { display: inline-flex; border: 1px solid var(--line); }
.cart-line-controls .mini-step button { width: 28px; height: 28px; background: none; border: none; cursor: pointer; font-size: 14px; color: var(--black); }
.cart-line-controls .mini-step span { width: 30px; display: flex; align-items: center; justify-content: center; font-size: 12.5px; font-weight: 700; border-left: 1px solid var(--line); border-right: 1px solid var(--line); }
.cart-line-remove { background: none; border: none; cursor: pointer; font-size: 10.5px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-30); padding: 6px; }
.cart-line-remove:hover { color: var(--black); }
.cart-line-price { font-family: 'Fraunces', serif; font-weight: 500; font-size: 15px; white-space: nowrap; }
.cart-empty { text-align: center; padding: 64px 20px; color: var(--ink-50); }
.cart-empty .big { font-family: 'Fraunces', serif; font-size: 22px; color: var(--black); margin-bottom: 8px; }
.cart-foot { border-top: 1px solid var(--black); padding: 18px 24px 22px; background: var(--off-white); }
.cart-total-row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 4px; font-size: 13px; color: var(--ink-70); }
.cart-total-row.grand { margin-top: 8px; padding-top: 10px; border-top: 1px solid var(--line); }
.cart-total-row.grand .lbl { font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-50); }
.cart-total-row.grand .val { font-family: 'Fraunces', serif; font-size: 26px; letter-spacing: -0.02em; color: var(--black); }
.cart-note { font-size: 11px; color: var(--ink-50); margin: 8px 0 14px; }
.cart-note strong { color: var(--accent); font-weight: 600; }
.cart-checkout-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%;
  background: var(--black); color: var(--white); border: none; cursor: pointer;
  padding: 16px; font-family: 'Inter', sans-serif; font-weight: 600; font-size: 13px; letter-spacing: 0.04em;
}
.cart-checkout-btn:hover { background: var(--ink-70); }

/* ═══ Forms (checkout, contact, account) ═══ */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-grid .full { grid-column: 1 / -1; }
.field label { display: block; font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-50); margin-bottom: 7px; }
.field input, .field textarea, .field select {
  width: 100%; border: 1px solid var(--ink-30); background: var(--white); border-radius: 0;
  font-family: 'Inter', sans-serif; font-size: 14px; color: var(--black);
  padding: 12px 13px; outline: none; transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--black); box-shadow: 0 0 0 3px rgba(0,0,0,0.06); }
.field textarea { min-height: 96px; resize: vertical; }
.field .hint { font-size: 12px; color: var(--ink-50); margin-top: 5px; }
.field.error input { border-color: #b3341f; }
.error-text { color: #b3341f; font-size: 12px; font-weight: 500; margin-top: 6px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--black); color: var(--white); border: 1.5px solid var(--black); cursor: pointer;
  padding: 14px 26px; font-family: 'Inter', sans-serif; font-weight: 600; font-size: 13px; letter-spacing: 0.04em;
  transition: background 0.2s, color 0.2s; text-align: center;
}
.btn:hover { background: var(--ink-70); border-color: var(--ink-70); }
.btn .arrow { font-family: 'Fraunces', serif; font-style: italic; font-weight: 300; font-size: 16px; transition: transform 0.25s; }
.btn:hover .arrow { transform: translateX(4px); }
.btn[disabled] { opacity: 0.5; cursor: not-allowed; }
.btn.outline { background: transparent; color: var(--black); }
.btn.outline:hover { background: var(--black); color: var(--white); }
.btn.small { padding: 9px 16px; font-size: 11.5px; }
.btn.danger { border-color: #b3341f; color: #b3341f; background: transparent; }
.btn.danger:hover { background: #b3341f; color: var(--white); }
.btn.block { width: 100%; }

.notice {
  border: 1px solid var(--line); background: var(--off-white); padding: 14px 16px;
  font-size: 12.5px; color: var(--ink-70); line-height: 1.55; margin: 14px 0;
}
.notice.good { border-color: var(--accent); }
.notice.good strong { color: var(--accent); }
.notice.warn { border-color: #b3341f; }

/* ═══ Checkout layout ═══ */
.checkout-layout { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; max-width: 1080px; margin: 0 auto; align-items: start; }
.checkout-panel { background: var(--white); border: 1px solid var(--black); border-radius: 4px; padding: 28px; }
.checkout-panel h3 { font-family: 'Fraunces', serif; font-weight: 500; font-size: 20px; letter-spacing: -0.015em; margin-bottom: 18px; }
.checkout-summary { position: sticky; top: 84px; }
.sum-line { display: flex; justify-content: space-between; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 13px; }
.sum-line .n { color: var(--ink-70); }
.sum-line .n small { display: block; color: var(--ink-50); font-size: 11px; }
.sum-line .v { font-family: 'Fraunces', serif; font-weight: 500; white-space: nowrap; }
.sum-total { display: flex; justify-content: space-between; align-items: baseline; padding-top: 16px; margin-top: 6px; border-top: 1.5px solid var(--black); }
.sum-total .lbl { font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-50); }
.sum-total .val { font-family: 'Fraunces', serif; font-size: 30px; letter-spacing: -0.025em; }

/* ═══ Status badges ═══ */
.status-badge {
  display: inline-flex; align-items: center; gap: 6px; padding: 4px 10px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  border: 1px solid var(--line); color: var(--ink-50); background: var(--white); white-space: nowrap;
}
.status-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--ink-30); }
.status-badge.paid { border-color: var(--accent); color: var(--accent); }
.status-badge.paid::before { background: var(--accent); }
.status-badge.booked, .status-badge.out_for_delivery { border-color: var(--black); color: var(--black); }
.status-badge.booked::before, .status-badge.out_for_delivery::before { background: var(--black); }
.status-badge.delivered, .status-badge.completed { background: var(--accent); border-color: var(--accent); color: var(--white); }
.status-badge.delivered::before, .status-badge.completed::before { background: var(--white); }
.status-badge.cancelled, .status-badge.refunded { color: #b3341f; border-color: #b3341f; }
.status-badge.cancelled::before, .status-badge.refunded::before { background: #b3341f; }

/* ═══ Account ═══ */
.account-wrap { max-width: 880px; margin: 0 auto; }
.auth-card { max-width: 440px; margin: 0 auto; background: var(--white); border: 1px solid var(--black); border-radius: 4px; padding: 32px; }
.auth-card h2 { margin-bottom: 8px; font-size: clamp(24px, 3vw, 30px); }
.auth-card p { font-size: 13px; color: var(--ink-50); margin-bottom: 20px; line-height: 1.55; }
.order-card { background: var(--white); border: 1px solid var(--line); border-radius: 4px; margin-bottom: 16px; overflow: hidden; transition: border-color 0.2s; }
.order-card:hover { border-color: var(--black); }
.order-card-head {
  display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap;
  padding: 18px 22px; border-bottom: 1px solid var(--line); background: var(--off-white);
}
.order-card-head .num { font-family: 'Fraunces', serif; font-weight: 500; font-size: 18px; }
.order-card-head .date { font-size: 11.5px; color: var(--ink-50); }
.order-card-body { padding: 18px 22px; }
.order-card-items { font-size: 13px; color: var(--ink-70); line-height: 1.7; margin-bottom: 12px; }
.order-card-total { font-family: 'Fraunces', serif; font-size: 17px; margin-bottom: 14px; }
.order-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* Delivery date picker */
.datepick { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; margin: 14px 0; }
.datepick button {
  border: 1px solid var(--line); background: var(--white); cursor: pointer; padding: 8px 2px;
  font-family: 'Inter', sans-serif; text-align: center; transition: all 0.15s; min-height: 52px;
}
.datepick button .dow { display: block; font-size: 9px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-50); }
.datepick button .dnum { display: block; font-family: 'Fraunces', serif; font-size: 17px; color: var(--black); }
.datepick button .mon { display: block; font-size: 9px; color: var(--ink-50); text-transform: uppercase; }
.datepick button:hover:not([disabled]) { border-color: var(--black); }
.datepick button.sel { background: var(--black); border-color: var(--black); }
.datepick button.sel .dnum, .datepick button.sel .dow, .datepick button.sel .mon { color: var(--white); }
.datepick button[disabled] { opacity: 0.32; cursor: not-allowed; background: var(--off-white); }

/* ═══ Admin ═══ */
.admin-bar {
  background: var(--black); color: var(--white); padding: 10px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.admin-bar .t { font-family: 'Fraunces', serif; font-style: italic; font-weight: 300; font-size: 15px; }
.admin-bar .who { font-size: 11px; letter-spacing: 0.08em; color: rgba(255,255,255,0.7); display: flex; gap: 14px; align-items: center; }
.admin-bar button { background: none; border: 1px solid rgba(255,255,255,0.4); color: var(--white); font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700; padding: 6px 12px; cursor: pointer; }
.admin-bar button:hover { border-color: var(--white); }
.admin-tabs { display: flex; gap: 4px; padding: 0 24px; background: var(--white); border-bottom: 1px solid var(--black); overflow-x: auto; }
.admin-tab {
  border: none; background: none; cursor: pointer; padding: 15px 16px 13px;
  font-family: 'Inter', sans-serif; font-size: 11.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-50); border-bottom: 2px solid transparent; white-space: nowrap;
}
.admin-tab:hover { color: var(--black); }
.admin-tab.active { color: var(--black); border-bottom-color: var(--black); }
.admin-main { padding: 28px 24px 64px; max-width: 1240px; margin: 0 auto; }
.stat-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 28px; }
.stat-card { background: var(--white); border: 1px solid var(--line); border-radius: 4px; padding: 18px 20px; }
.stat-card .lbl { font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-50); margin-bottom: 8px; }
.stat-card .val { font-family: 'Fraunces', serif; font-weight: 400; font-size: 30px; letter-spacing: -0.025em; color: var(--black); white-space: nowrap; }
.stat-card .sub { font-size: 11px; color: var(--ink-50); margin-top: 4px; }

.data-table { width: 100%; border-collapse: collapse; background: var(--white); border: 1px solid var(--black); border-radius: 4px; overflow: hidden; }
.data-table th {
  text-align: left; font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-50); padding: 12px 14px; border-bottom: 1px solid var(--black); background: var(--off-white);
}
.data-table td { padding: 12px 14px; border-bottom: 1px solid var(--line); font-size: 13px; vertical-align: middle; }
.data-table tr:last-child td { border-bottom: none; }
.data-table tr.click { cursor: pointer; transition: background 0.15s; }
.data-table tr.click:hover { background: var(--off-white); }
.data-table .mono { font-family: 'Fraunces', serif; font-weight: 500; }
.table-scroll { overflow-x: auto; }

.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: 560px; max-width: 96vw;
  background: var(--white); border-left: 1px solid var(--black); z-index: 140;
  transform: translateX(100%); transition: transform 0.3s cubic-bezier(0.2,0.8,0.3,1);
  display: flex; flex-direction: column;
}
.drawer.open { transform: translateX(0); }
.drawer-head { padding: 18px 24px; border-bottom: 1px solid var(--black); display: flex; justify-content: space-between; align-items: center; }
.drawer-head .t { font-family: 'Fraunces', serif; font-weight: 500; font-size: 20px; }
.drawer-body { flex: 1; overflow-y: auto; padding: 20px 24px 40px; }
.kv { display: grid; grid-template-columns: 130px 1fr; gap: 6px 14px; font-size: 13px; margin-bottom: 18px; }
.kv .k { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-50); padding-top: 2px; }
.kv .v { color: var(--ink); }
.admin-section-title { font-family: 'Fraunces', serif; font-weight: 500; font-size: 17px; margin: 22px 0 10px; padding-top: 18px; border-top: 1px solid var(--line); }

/* Toast */
.toast {
  position: fixed; bottom: 20px; left: 20px; z-index: 200;
  background: var(--black); color: var(--white); padding: 14px 20px;
  font-size: 13px; font-weight: 500; max-width: 360px; line-height: 1.45;
  transform: translateY(16px); opacity: 0; transition: all 0.3s; pointer-events: none;
  border-left: 3px solid var(--accent);
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast.err { border-left-color: #e0562e; }

/* Postcode result states */
.pc-result { margin-top: 12px; font-size: 13px; font-weight: 500; line-height: 1.5; display: none; }
.pc-result.good { display: block; color: var(--accent); }
.pc-result.bad { display: block; color: var(--ink-70); }
.pc-result .waitlist-row { display: flex; gap: 8px; margin-top: 10px; max-width: 420px; }
.pc-result .waitlist-row input { flex: 1 1 0; min-width: 0; border: 1px solid var(--ink-30); padding: 10px 12px; font-family: 'Inter', sans-serif; font-size: 13px; outline: none; }
.pc-result .waitlist-row button { background: var(--black); color: var(--white); border: none; padding: 0 16px; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; }

/* Skeleton shimmer for hydrating prices */
.skel { display: inline-block; min-width: 64px; height: 1em; background: linear-gradient(90deg, var(--line) 25%, #f4f2ec 50%, var(--line) 75%); background-size: 200% 100%; animation: skel 1.2s infinite; border-radius: 2px; }
@keyframes skel { from { background-position: 200% 0; } to { background-position: -200% 0; } }

/* Section variants */
.section-tight { padding: 56px 32px; }
.more-link { text-align: center; margin-top: 30px; }
.more-link a { font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--black); border-bottom: 1.5px solid var(--black); padding-bottom: 3px; }
.more-link a:hover { color: var(--ink-50); border-color: var(--ink-50); }

/* Contact page */
.contact-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: 40px; max-width: 1080px; margin: 0 auto; align-items: start; }
.contact-block { border: 1px solid var(--black); border-radius: 4px; background: var(--white); overflow: hidden; }
.contact-block .img { aspect-ratio: 5/3; overflow: hidden; background: #1a1a1a; }
.contact-block .img img { width: 100%; height: 100%; object-fit: cover; }
.contact-block .body { padding: 24px; }
.contact-row { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 14px; align-items: baseline; }
.contact-row:last-child { border-bottom: none; }
.contact-row .k { font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-50); width: 84px; flex-shrink: 0; }
.contact-row .v { color: var(--ink); font-weight: 500; line-height: 1.5; }
.contact-row .v a { border-bottom: 1px solid var(--ink-30); }
.contact-row .v a:hover { border-color: var(--black); }

/* Dev pay */
.devpay-card { max-width: 480px; margin: 0 auto; background: var(--white); border: 1.5px solid var(--black); border-radius: 4px; padding: 36px; text-align: center; }

/* Responsive for extensions */
@media (max-width: 1000px) {
  .shop-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .product-layout { grid-template-columns: 1fr; gap: 28px; }
  .product-media { position: static; }
  .checkout-layout { grid-template-columns: 1fr; }
  .checkout-summary { position: static; order: -1; }
  .contact-layout { grid-template-columns: 1fr; }
  .stat-cards { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .datepick { grid-template-columns: repeat(7, 1fr); gap: 4px; }
}
@media (max-width: 560px) {
  .shop-grid { grid-template-columns: 1fr; }
  .cart-drawer { width: 100%; max-width: 100vw; }
  .drawer { width: 100vw; max-width: 100vw; }
  .stat-cards { grid-template-columns: 1fr 1fr; gap: 10px; }
  .stat-card .val { font-size: 24px; }
  .admin-main { padding: 20px 14px 64px; }
  .datepick button { min-height: 46px; }
  .datepick button .dnum { font-size: 14px; }
  .checkout-panel { padding: 20px 16px; }
  .auth-card { padding: 24px 18px; }
}

/* NAV-BURGER-BLOCK */
.nav-burger { display: none; background: none; border: none; cursor: pointer; padding: 10px 8px; flex-direction: column; gap: 5px; min-width: 44px; min-height: 44px; justify-content: center; align-items: center; }
.nav-burger span { display: block; width: 20px; height: 2px; background: var(--black); transition: transform 0.25s, opacity 0.25s; }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { display: none; border-top: 1px solid var(--line); background: var(--white); }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 15px 24px; font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--black); border-bottom: 1px solid var(--line); }
.mobile-menu a.active { color: var(--accent); }
.nav-account { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--black); padding: 10px 2px; }
.nav-account:hover { color: var(--ink-50); }
@media (max-width: 1000px) {
  .nav-burger { display: flex; }
  .nav-account { display: none; }
}
.moment-image[style*="--img"]::before { background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.6) 100%), var(--img) center/cover !important; }
.hero-image::before { background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.55) 100%), url('/assets/img/site/hero.jpg') center/cover; }
.moment-image::before { background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.6) 100%), url('/assets/img/site/moment.jpg') center/cover; }

/* Mobile tap-target floor for inline text links */
@media (max-width: 1000px) {
  .faq-body a, .cta-band-inner p a, .contact-row .v a, .pi-desc a, .crumbs a,
  .more-link a, .shop-section p a, .foot-col a, .notice a {
    display: inline-block;
    padding: 8px 0;
    margin: -2px 0;
  }
}

/* ═══════════════════ V2 COMPONENTS ═══════════════════ */
/* Lifestyle triptych */
.lifestyle { background: var(--white); border-bottom: 1px solid var(--black); padding: 72px 32px; }
.lifestyle-head { text-align: center; max-width: 780px; margin: 0 auto 40px; }
.lifestyle-head h2 { font-family: 'Fraunces', serif; font-weight: 400; font-size: clamp(26px, 2.8vw, 36px); letter-spacing: -0.018em; }
.lifestyle-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: 1240px; margin: 0 auto; }
.lifestyle-grid figure { margin: 0; border: 1px solid var(--black); border-radius: 4px; overflow: hidden; background: #1a1a1a; }
.lifestyle-grid img { width: 100%; aspect-ratio: 4/5; object-fit: cover; display: block; transition: transform 0.9s cubic-bezier(0.2,0.8,0.3,1); }
.lifestyle-grid figure:hover img { transform: scale(1.04); }
.lifestyle-grid figcaption { padding: 12px 16px; background: var(--white); border-top: 1px solid var(--black); font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-50); display: flex; align-items: baseline; gap: 10px; }
.lifestyle-grid figcaption em { font-family: 'Fraunces', serif; font-style: italic; font-weight: 300; font-size: 13px; letter-spacing: 0; text-transform: none; color: var(--ink-30); }

/* Shop hero with photo panel */
.shop-hero { background: var(--off-white); border-bottom: 1px solid var(--black); }
.shop-hero-inner { max-width: 1320px; margin: 0 auto; display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: center; padding: 52px 32px; }
.shop-hero-content .kicker { display: inline-flex; align-items: center; gap: 10px; font-size: 10px; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; color: var(--ink-50); margin-bottom: 16px; }
.shop-hero-content .kicker::before { content: ''; width: 20px; height: 1px; background: var(--ink-30); }
.shop-hero-content h1 { font-family: 'Fraunces', serif; font-weight: 400; font-size: clamp(34px, 4.4vw, 56px); line-height: 1.02; letter-spacing: -0.025em; margin-bottom: 14px; }
.shop-hero-content p { font-size: 14.5px; color: var(--ink-50); max-width: 480px; }
.shop-hero-image { position: relative; background: #1a1a1a; border: 1px solid var(--black); border-radius: 4px; overflow: hidden; aspect-ratio: 16/9; display: flex; align-items: flex-end; padding: 20px; }
.shop-hero-image::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.5) 100%), url('/assets/img/site/shop-hero.jpg') center 24%/cover; }
.shop-hero-mark { position: relative; z-index: 2; font-family: 'Fraunces', serif; font-style: italic; font-weight: 300; font-size: 15px; color: rgba(255,255,255,0.9); }
@media (max-width: 1000px) {
  .shop-hero-inner { grid-template-columns: 1fr; gap: 24px; padding: 36px 20px; }
  .lifestyle { padding: 48px 20px; }
  .lifestyle-grid { grid-template-columns: 1fr; gap: 14px; }
  .lifestyle-grid img { aspect-ratio: 16/10; }
}

/* Checkout steps */
.co-steps { display: flex; justify-content: center; align-items: center; gap: 14px; margin-top: 22px; flex-wrap: wrap; }
.co-step { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-30); }
.co-step em { font-family: 'Fraunces', serif; font-style: normal; font-weight: 500; width: 26px; height: 26px; border: 1px solid var(--ink-30); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 13px; }
.co-step.on { color: var(--black); }
.co-step.on em { background: var(--black); border-color: var(--black); color: var(--white); }
.co-step-line { width: 28px; height: 1px; background: var(--ink-30); }

/* Discount code row */
.discount-row { display: flex; gap: 8px; margin-top: 14px; }
.discount-row input { flex: 1 1 0; min-width: 0; border: 1px solid var(--ink-30); padding: 11px 12px; font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 600; outline: none; }
.discount-row input:focus { border-color: var(--black); }
.discount-row button { background: var(--white); border: 1.5px solid var(--black); color: var(--black); padding: 0 16px; font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; transition: all 0.2s; min-height: 40px; }
.discount-row button:hover { background: var(--black); color: var(--white); }

/* ═══════════════════ HOME V3 ═══════════════════ */
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 22px; }
.hero-ctas .btn { padding: 16px 26px; }

/* slim postcode utility strip */
.pc-strip { background: var(--white); border-bottom: 1px solid var(--black); padding: 16px 32px; }
.pc-strip-inner { max-width: 860px; margin: 0 auto; display: flex; align-items: center; gap: 20px; }
.pc-strip-label { font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-50); white-space: nowrap; }
.pc-strip .postcode-field { flex: 1 1 0; min-width: 0; margin: 0; }
.pc-strip .pc-result { max-width: 860px; margin: 10px auto 0; }
@media (max-width: 640px) {
  .pc-strip { padding: 14px 16px; }
  .pc-strip-inner { flex-direction: column; align-items: stretch; gap: 8px; }
  .pc-strip-label { text-align: center; }
}

/* burn-frequency picker */
.picker { display: grid; grid-template-columns: 1fr 1.1fr; gap: 22px; max-width: 1080px; margin: 0 auto 18px; align-items: stretch; }
.picker-left { background: var(--white); border: 1px solid var(--black); border-radius: 4px; padding: 26px; }
.picker-q { font-family: 'Fraunces', serif; font-weight: 500; font-size: 21px; letter-spacing: -0.015em; margin-bottom: 16px; }
.picker-opts { display: flex; flex-direction: column; gap: 10px; }
.picker-opts button {
  display: flex; flex-direction: column; align-items: flex-start; gap: 2px; text-align: left;
  background: var(--white); border: 1px solid var(--line); padding: 14px 16px; cursor: pointer;
  font-family: 'Inter', sans-serif; transition: all 0.2s; min-height: 44px;
}
.picker-opts button:hover { border-color: var(--black); }
.picker-opts button.on { border: 1.5px solid var(--black); background: var(--off-white); }
.picker-opts .po-t { font-size: 14px; font-weight: 700; color: var(--black); }
.picker-opts button.on .po-t::after { content: ' ✓'; color: var(--accent); }
.picker-opts .po-s { font-size: 12px; color: var(--ink-50); }
.picker-right { background: #faf7ee; border: 1.5px solid var(--black); border-radius: 4px; padding: 26px; position: relative; display: flex; flex-direction: column; justify-content: center; }
.picker-right::before { content: ''; position: absolute; top: -1.5px; left: 24px; width: 44px; height: 4px; background: var(--black); }
.pick-eyebrow { font-size: 10px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.pick-name { font-family: 'Fraunces', serif; font-weight: 500; font-size: clamp(24px, 2.4vw, 30px); letter-spacing: -0.02em; margin-bottom: 8px; }
.pick-why { font-size: 13.5px; line-height: 1.6; color: var(--ink-70); margin-bottom: 14px; max-width: 420px; }
.pick-price { font-family: 'Fraunces', serif; font-size: 20px; letter-spacing: -0.015em; }
.pick-card .option-btn { max-width: 340px; }

/* bundle size table */
.sizes { max-width: 1080px; margin: 26px auto 0; }
.sizes-head { text-align: center; font-size: 12.5px; color: var(--ink-50); margin-bottom: 14px; font-weight: 500; }
.sizes-table { border: 1px solid var(--black); border-radius: 4px; overflow: hidden; background: var(--white); }
.size-row {
  display: grid; grid-template-columns: 1.6fr 0.7fr 1.4fr 1fr 0.8fr 40px;
  align-items: center; gap: 10px; padding: 13px 20px;
  border-bottom: 1px solid var(--line); color: var(--ink); transition: background 0.15s;
}
.size-row:last-child { border-bottom: none; }
.size-row:not(.head):hover { background: var(--off-white); }
.size-row.head { background: var(--off-white); border-bottom: 1px solid var(--black); padding: 10px 20px; }
.size-row.head span { font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-50); }
.size-row.best { background: #faf7ee; }
.size-row.best:hover { background: #f5f0e0; }
.sr-name { font-family: 'Fraunces', serif; font-weight: 500; font-size: 16px; letter-spacing: -0.012em; }
.sr-star { font-family: 'Inter', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin-left: 8px; white-space: nowrap; }
.sr-bags { font-size: 12.5px; font-weight: 600; color: var(--ink-70); white-space: nowrap; }
.sr-extras { font-size: 12px; color: var(--ink-50); }
.sr-price { font-family: 'Fraunces', serif; font-weight: 500; font-size: 16px; white-space: nowrap; }
.sr-price em { font-family: 'Inter', sans-serif; font-style: normal; font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-50); margin-right: 2px; }
.sr-price s { color: var(--ink-30); font-size: 12px; margin-left: 6px; }
.sr-per { font-size: 12px; font-weight: 600; color: var(--accent); white-space: nowrap; }
.sr-go { font-family: 'Fraunces', serif; font-style: italic; font-weight: 300; font-size: 17px; color: var(--ink-30); text-align: right; transition: transform 0.2s, color 0.2s; }
.size-row:hover .sr-go { transform: translateX(4px); color: var(--black); }
@media (max-width: 860px) {
  .picker { grid-template-columns: 1fr; }
  .size-row { grid-template-columns: 1.4fr 1fr 32px; padding: 13px 16px; }
  .size-row.head { display: none; }
  .sr-extras { display: none; }
  .sr-bags { display: none; }
  .sr-name { font-size: 15px; }
  .sr-per { grid-column: 1; margin-top: -6px; }
  .sr-price { grid-column: 2; grid-row: 1; text-align: right; }
  .sr-go { grid-row: 1; grid-column: 3; }
}

/* category tiles */
.cats { background: var(--white); border-bottom: 1px solid var(--black); padding: 64px 32px; }
.cat-tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; max-width: 1240px; margin: 0 auto; }
.cat-tile {
  position: relative; border: 1px solid var(--black); border-radius: 4px; overflow: hidden;
  aspect-ratio: 4/5; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 18px; color: var(--white); background: #1a1a1a; isolation: isolate;
}
.cat-tile::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 30%, rgba(0,0,0,0.62) 100%), var(--img, none) center/cover, #1a1a1a;
  transition: transform 0.8s cubic-bezier(0.2,0.8,0.3,1);
}
.cat-tile:hover::before { transform: scale(1.05); }
.cat-tile.dark { justify-content: center; align-items: flex-start; }
.cat-tile.dark .ct-name { font-size: clamp(20px, 2vw, 26px); }
.ct-name { font-family: 'Fraunces', serif; font-weight: 400; font-size: clamp(19px, 1.8vw, 24px); letter-spacing: -0.015em; line-height: 1.1; margin-bottom: 4px; }
.ct-sub { font-size: 10.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.75); }
@media (max-width: 860px) {
  .cats { padding: 44px 16px; }
  .cat-tiles { grid-template-columns: 1fr 1fr; gap: 10px; }
  .cat-tile { aspect-ratio: 1/1; padding: 14px; }
}

/* ═══════════════════ ADMIN DASHBOARD V2 ═══════════════════ */
.action-queue { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 10px; margin-bottom: 26px; }
.aq-item {
  display: flex; align-items: center; gap: 12px; text-align: left; cursor: pointer;
  background: #faf7ee; border: 1px solid var(--black); border-radius: 4px; padding: 13px 16px;
  font-family: 'Inter', sans-serif; transition: transform 0.2s, box-shadow 0.2s; min-height: 52px;
}
.aq-item:hover { transform: translateY(-2px); box-shadow: 0 10px 22px -12px rgba(0,0,0,0.25); }
.aq-num { font-family: 'Fraunces', serif; font-weight: 500; font-size: 24px; letter-spacing: -0.02em; min-width: 30px; }
.aq-lbl { flex: 1; font-size: 12px; font-weight: 600; color: var(--ink-70); line-height: 1.3; }
.aq-go { font-family: 'Fraunces', serif; font-style: italic; font-weight: 300; font-size: 16px; color: var(--ink-30); transition: transform 0.2s; }
.aq-item:hover .aq-go { transform: translateX(3px); color: var(--black); }

.dash-headrow { display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 14px; }
.period-pills { display: flex; gap: 6px; }
.period-pill {
  border: 1px solid var(--line); background: var(--white); color: var(--ink-50); cursor: pointer;
  font-family: 'Inter', sans-serif; font-size: 10.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 8px 13px; transition: all 0.15s; min-height: 34px;
}
.period-pill:hover { border-color: var(--black); color: var(--black); }
.period-pill.on { background: var(--black); border-color: var(--black); color: var(--white); }

.stat-card .delta { font-weight: 700; font-size: 11px; }
.stat-card .delta.up { color: var(--accent); }
.stat-card .delta.down { color: #b3341f; }
.stat-card .delta span { color: var(--ink-50); font-weight: 500; }

.dash-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 14px; }
.dash-panel { background: var(--white); border: 1px solid var(--line); border-radius: 4px; padding: 18px 20px; }
.dash-panel-head {
  display: flex; justify-content: space-between; align-items: center; gap: 10px; margin-bottom: 14px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-50);
}
.dash-panel-sub { font-family: 'Fraunces', serif; font-size: 15px; letter-spacing: -0.01em; text-transform: none; color: var(--black); font-weight: 500; }

.tp-row { display: flex; align-items: center; gap: 12px; padding: 9px 0; border-bottom: 1px solid var(--line); }
.tp-row:last-child { border-bottom: none; }
.tp-rank { font-family: 'Fraunces', serif; font-size: 13px; color: var(--ink-30); }
.tp-body { flex: 1; min-width: 0; }
.tp-name { display: block; font-size: 12.5px; font-weight: 600; color: var(--black); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tp-bar { display: block; height: 4px; background: var(--off-white); margin-top: 5px; }
.tp-bar i { display: block; height: 100%; background: var(--black); }
.tp-nums { font-family: 'Fraunces', serif; font-size: 14px; text-align: right; white-space: nowrap; }
.tp-nums small { display: block; font-family: 'Inter', sans-serif; font-size: 10px; color: var(--ink-50); }

.week-strip { display: grid; grid-template-columns: repeat(7, 1fr); gap: 8px; }
.ws-day { border: 1px solid var(--line); padding: 10px 6px; text-align: center; }
.ws-day.today { border-color: var(--black); background: var(--off-white); }
.ws-day.full { background: #faf1ef; border-color: #b3341f; }
.ws-dow { display: block; font-size: 9px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-50); }
.ws-num { display: block; font-family: 'Fraunces', serif; font-size: 22px; letter-spacing: -0.02em; margin: 2px 0; }
.ws-cap { display: block; font-size: 9px; color: var(--ink-30); }

@media (max-width: 860px) {
  .dash-grid { grid-template-columns: 1fr; }
  .week-strip { grid-template-columns: repeat(7, 1fr); gap: 4px; }
  .ws-num { font-size: 16px; }
}

/* ═══════════════════ ADMIN READABILITY PASS ═══════════════════ */
/* The storefront's editorial density is wrong for a daily-use tool. Bigger, darker, calmer. */
body.admin { font-size: 15px; }
body.admin .admin-bar { padding: 12px 24px; }
body.admin .admin-bar .who { font-size: 13px; letter-spacing: 0.02em; color: rgba(255,255,255,0.85); }
body.admin .admin-bar button { font-size: 12px; letter-spacing: 0.06em; padding: 8px 14px; }

body.admin .admin-tab { font-size: 13.5px; font-weight: 600; letter-spacing: 0.05em; text-transform: none; color: var(--ink-70); padding: 16px 16px 14px; }
body.admin .admin-tab.active { color: var(--black); font-weight: 700; }

body.admin .aq-lbl { font-size: 14px; color: var(--ink); }
body.admin .aq-num { font-size: 26px; }

body.admin .stat-card .lbl { font-size: 12px; letter-spacing: 0.1em; color: var(--ink-70); }
body.admin .stat-card .val { font-size: 32px; }
body.admin .stat-card .sub { font-size: 12.5px; }
body.admin .stat-card .delta span { color: var(--ink-70); }

body.admin .dash-panel-head { font-size: 12px; letter-spacing: 0.1em; color: var(--ink-70); }
body.admin .dash-panel-sub { font-size: 16px; }
body.admin .tp-name { font-size: 14px; }
body.admin .tp-nums { font-size: 15px; }
body.admin .tp-nums small { font-size: 11.5px; color: var(--ink-70); }
body.admin .tp-rank { font-size: 14px; }
body.admin .ws-dow { font-size: 11px; color: var(--ink-70); }
body.admin .ws-num { font-size: 24px; }
body.admin .ws-cap { font-size: 11px; color: var(--ink-50); }
body.admin .period-pill { font-size: 12px; letter-spacing: 0.05em; text-transform: none; padding: 9px 15px; }

body.admin .data-table th { font-size: 12px; letter-spacing: 0.06em; text-transform: none; font-weight: 700; color: var(--ink-70); padding: 13px 14px; }
body.admin .data-table td { font-size: 14.5px; padding: 14px; line-height: 1.5; }
body.admin .data-table td span[style*="font-size:11px"] { font-size: 12.5px !important; }
body.admin .status-badge { font-size: 11px; letter-spacing: 0.07em; padding: 5px 11px; }

body.admin .field label { font-size: 12px; letter-spacing: 0.06em; text-transform: none; font-weight: 700; color: var(--ink-70); }
body.admin .field input, body.admin .field textarea, body.admin .field select { font-size: 15px; padding: 13px 14px; }
body.admin .field .hint { font-size: 12.5px; color: var(--ink-70); }
body.admin .pi-select { font-size: 14px; }
body.admin .checkout-panel h3 { font-size: 22px; }
body.admin .checkout-panel p, body.admin .notice { font-size: 14px; color: var(--ink-70); }
body.admin .admin-section-title { font-size: 18px; }

body.admin .kv { grid-template-columns: 140px 1fr; font-size: 14.5px; gap: 8px 14px; }
body.admin .kv .k { font-size: 12px; letter-spacing: 0.06em; text-transform: none; font-weight: 700; color: var(--ink-70); }
body.admin .drawer-head .t { font-size: 22px; }
body.admin .order-card-head .num { font-size: 19px; }
body.admin .order-card-head .date { font-size: 13px; color: var(--ink-70); }
body.admin .order-card-body { font-size: 14px; }
body.admin .btn.small { font-size: 12.5px; padding: 10px 17px; }
body.admin .auth-card p { font-size: 14px; }
body.admin .toast { font-size: 14px; }
body.admin p[style*="font-size:12.5px"], body.admin p[style*="font-size:12px"] { font-size: 13.5px !important; color: var(--ink-70) !important; }
body.admin p[style*="font-size:11.5px"], body.admin p[style*="font-size:11px"] { font-size: 13px !important; color: var(--ink-70) !important; }

/* ═══════════════════ NOTES ROUND: steps + admin attention + output ═══════════════════ */
.co-step.done { color: var(--ink-70); }
.co-step.done em { background: var(--accent); border-color: var(--accent); color: var(--white); font-size: 12px; }

/* paid-but-unbooked pops as the action state in admin */
body.admin .status-badge.paid { background: #fdf6ec; border-color: #b45309; color: #b45309; font-weight: 700; }
body.admin .status-badge.paid::before { background: #b45309; }
body.admin tr.attn td { background: #fdf6ec; }
body.admin tr.attn:hover td { background: #faedd9; }

/* stock output lists in Deliveries */
.out-row { display: flex; gap: 10px; align-items: baseline; padding: 7px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
.out-row:last-child { border-bottom: none; }
.out-row .out-n { font-family: 'Fraunces', serif; font-weight: 500; font-size: 16px; min-width: 44px; text-align: right; }
.day-output { font-size: 12.5px; color: var(--ink-70); background: var(--off-white); border: 1px solid var(--line); padding: 9px 12px; margin-bottom: 10px; line-height: 1.6; }

/* ═══════════════════ V4: species, tiers, cart, fulfilment, path tiles ═══════════════════ */
.path-tiles { display: grid; grid-template-columns: 1.25fr 1fr; gap: 18px; max-width: 1240px; margin: 0 auto; }
.path-tile { position: relative; border: 1px solid var(--black); border-radius: 4px; overflow: hidden; min-height: 380px; display: flex; align-items: flex-end; color: var(--white); background: #1a1a1a; isolation: isolate; }
.path-tile::before { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(0,0,0,0.08) 20%, rgba(0,0,0,0.68) 100%), var(--img, none) center/cover, #1a1a1a; transition: transform 0.8s cubic-bezier(0.2,0.8,0.3,1); }
.path-tile:hover::before { transform: scale(1.04); }
.pt-body { padding: 26px; max-width: 460px; }
.pt-kicker { display: block; font-family: 'Fraunces', serif; font-style: italic; font-weight: 300; font-size: 14px; color: rgba(255,255,255,0.85); margin-bottom: 8px; }
.pt-name { display: block; font-family: 'Fraunces', serif; font-weight: 400; font-size: clamp(30px, 3.4vw, 44px); letter-spacing: -0.025em; line-height: 1; margin-bottom: 10px; }
.pt-sub { display: block; font-size: 13px; line-height: 1.55; color: rgba(255,255,255,0.82); margin-bottom: 16px; }
.pt-cta { display: inline-flex; align-items: center; gap: 8px; background: var(--white); color: var(--black); padding: 12px 18px; font-size: 12px; font-weight: 700; letter-spacing: 0.06em; }
.pt-cta .arrow { font-family: 'Fraunces', serif; font-style: italic; font-weight: 300; transition: transform 0.25s; }
.path-tile:hover .pt-cta .arrow { transform: translateX(4px); }

.species-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; max-width: 1240px; margin: 0 auto; }
.species-card { border: 1px solid var(--line); border-radius: 4px; overflow: hidden; background: var(--white); display: flex; flex-direction: column; transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s; position: relative; }
.species-card:hover { transform: translateY(-3px); border-color: var(--black); box-shadow: 0 18px 36px -16px rgba(0,0,0,0.18); }
.sc-img { aspect-ratio: 4/3; overflow: hidden; position: relative; background: var(--off-white); }
.sc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s cubic-bezier(0.2,0.8,0.3,1); }
.species-card:hover .sc-img img { transform: scale(1.05); }
.sc-body { padding: 16px 18px 18px; display: flex; flex-direction: column; flex: 1; }
.sc-name { font-family: 'Fraunces', serif; font-weight: 500; font-size: 22px; letter-spacing: -0.015em; margin-bottom: 5px; color: var(--black); }
.sc-blurb { font-size: 12px; color: var(--ink-50); line-height: 1.5; margin-bottom: 8px; flex: 1; }
.sc-price { font-family: 'Fraunces', serif; font-size: 16px; color: var(--black); margin-bottom: 12px; }
.sc-price { font-size: 12.5px; font-weight: 700; color: var(--black); margin-bottom: 12px; }
.sc-price em { display: block; font-style: normal; font-weight: 600; font-size: 11px; color: var(--accent); margin-top: 2px; }
.sc-cta { display: flex; align-items: center; justify-content: center; gap: 8px; background: var(--black); color: var(--white); padding: 12px; font-size: 12px; font-weight: 600; letter-spacing: 0.04em; }
.sc-cta .arrow { font-family: 'Fraunces', serif; font-style: italic; font-weight: 300; transition: transform 0.25s; }
.species-card:hover .sc-cta .arrow { transform: translateX(4px); }

/* tier picker */
.tier-buy { border-top: 1px solid var(--line); padding-top: 18px; margin-top: 6px; max-width: 480px; }
.tier-stepper-row { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.tier-live { display: flex; flex-direction: column; }
.tl-total { font-family: 'Fraunces', serif; font-weight: 400; font-size: clamp(30px, 3vw, 40px); letter-spacing: -0.03em; line-height: 1; }
.tl-per { font-size: 12px; font-weight: 600; color: var(--accent); margin-top: 4px; }
.tier-saving { font-size: 12.5px; font-weight: 600; color: var(--accent); margin: 10px 0 4px; min-height: 18px; }
.tier-buy .add-btn { margin-top: 8px; }
.tier-table { border: 1px solid var(--black); border-radius: 4px; overflow: hidden; margin-top: 20px; background: var(--white); }
.tier-row { display: grid; grid-template-columns: 0.8fr 1.1fr 0.9fr 1fr; gap: 8px; padding: 9px 14px; border-bottom: 1px solid var(--line); font-size: 12.5px; align-items: center; transition: background 0.15s; }
.tier-row:last-child { border-bottom: none; }
.tier-row.head { background: var(--off-white); border-bottom: 1px solid var(--black); }
.tier-row.head span { font-size: 9.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-50); }
.tier-row.now { background: #faf7ee; box-shadow: inset 3px 0 0 var(--black); }
.tier-row:not(.head):hover { background: var(--off-white); }
.tr-bags { font-family: 'Fraunces', serif; font-weight: 500; font-size: 14px; }
.tr-per { color: var(--ink-70); font-weight: 600; }
.tr-total { font-family: 'Fraunces', serif; font-weight: 500; font-size: 14px; }
.tr-save { color: var(--accent); font-weight: 600; font-size: 11.5px; text-align: right; }
.tier-note { font-size: 12px; color: var(--ink-50); margin-top: 8px; }

/* fulfilment toggle */
.fulfil-toggle { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.ft-opt { display: flex; flex-direction: column; gap: 3px; border: 1px solid var(--line); padding: 14px 16px; cursor: pointer; transition: all 0.2s; position: relative; }
.ft-opt input { position: absolute; opacity: 0; }
.ft-opt.on { border: 1.5px solid var(--black); background: var(--off-white); }
.ft-t { font-size: 14px; font-weight: 700; color: var(--black); }
.ft-opt.on .ft-t::after { content: ' ✓'; color: var(--accent); }
.ft-s { font-size: 11.5px; color: var(--ink-50); line-height: 1.45; }

/* cart page */
.cart-line-big { padding: 18px 20px; margin-bottom: 12px; }
.clb-row { display: flex; gap: 16px; align-items: flex-start; }
.cart-nudge { display: block; width: 100%; text-align: left; margin-top: 14px; background: #f4f7f3; border: 1px solid var(--accent); padding: 11px 14px; font-family: 'Inter', sans-serif; font-size: 12.5px; color: var(--ink); cursor: pointer; transition: background 0.2s; }
.cart-nudge:hover { background: #e9f0e7; }
.cart-nudge strong { color: var(--accent); }
.cart-nudge .arrow { font-family: 'Fraunces', serif; font-style: italic; color: var(--accent); }
.upsell-row { display: flex; justify-content: space-between; align-items: center; gap: 12px; width: 100%; text-align: left; background: var(--off-white); border: 1px solid var(--line); padding: 12px 14px; margin-bottom: 8px; cursor: pointer; font-family: 'Inter', sans-serif; font-size: 13px; transition: border-color 0.2s; }
.upsell-row:hover { border-color: var(--black); }
.up-blurb { font-size: 11.5px; color: var(--ink-50); }
.up-price { font-family: 'Fraunces', serif; font-weight: 500; font-size: 15px; white-space: nowrap; }

@media (max-width: 900px) {
  .path-tiles { grid-template-columns: 1fr; }
  .path-tile { min-height: 260px; }
  .species-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .tier-row { grid-template-columns: 0.9fr 1.2fr 1fr; }
  .tr-save { display: none; }
  .fulfil-toggle { grid-template-columns: 1fr; }
}

/* ═══════════════════ POLISH PASS: accessibility + craft details ═══════════════════ */
/* keyboard users get a visible focus everywhere */
:focus-visible { outline: 2px solid var(--black); outline-offset: 2px; border-radius: 2px; }
.btn:focus-visible, .add-btn:focus-visible, .postcode-btn:focus-visible, .sc-cta:focus-visible,
.pcard-btn:focus-visible, .option-btn:focus-visible, .cart-checkout-btn:focus-visible { outline-color: var(--accent); }

/* text selection in brand colours */
::selection { background: var(--black); color: var(--white); }

/* anchor targets never hide under the sticky chrome */
[id] { scroll-margin-top: 96px; }
html { scroll-behavior: smooth; }

/* respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
}

/* buttons feel physical */
.btn:active, .add-btn:active, .pcard-btn:active, .option-btn:active, .sc-cta:active,
.postcode-btn:active, .cart-checkout-btn:active, .sticky-cta-btn:active { transform: translateY(1px); }

/* cart badge acknowledges every add */
.nav-cart-badge.pop { animation: badgepop 0.45s cubic-bezier(0.2, 0.8, 0.3, 1.4); }
@keyframes badgepop { 0% { transform: scale(1); } 40% { transform: scale(1.5); } 100% { transform: scale(1); } }

/* editorial inner rule on the dark photo panels */
.hero-image::after, .moment-image::after {
  content: ''; position: absolute; inset: 12px; border: 1px solid rgba(255,255,255,0.22);
  pointer-events: none; z-index: 3;
}
.path-tile > .pt-body { position: relative; z-index: 2; }
.path-tile::after { content: ''; position: absolute; inset: 12px; border: 1px solid rgba(255,255,255,0.2); pointer-events: none; }

/* readability floor on the smallest customer-facing copy */
.faq-body { font-size: 14px; }
.pcard-blurb { font-size: 13px; }
.sc-blurb { font-size: 12.5px; }
.ft-s { font-size: 12px; }
.hero-sub { font-size: 15.5px; }

/* footer payment marks */
.foot-pay { letter-spacing: 0.08em; color: var(--ink-30); }

/* ═══════════════════ REAL REVIEWS: platform badges + wall ═══════════════════ */
.platform-badges { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.pb-item {
  display: inline-flex; align-items: baseline; gap: 8px;
  border: 1px solid var(--black); background: var(--white); padding: 10px 16px;
  font-size: 12px; font-weight: 600; color: var(--ink-70); letter-spacing: 0.02em;
}
.pb-item strong { font-family: 'Fraunces', serif; font-weight: 500; font-size: 18px; color: var(--black); }
.pb-item::before { content: '★'; color: #f5b50a; font-size: 13px; }
.review-wall { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 22px; }
.rw-item { background: var(--white); border: 1px solid var(--line); padding: 16px 18px; transition: border-color 0.2s, transform 0.2s; }
.rw-item:hover { border-color: var(--black); transform: translateY(-2px); }
.rw-item p { font-size: 13px; line-height: 1.6; color: var(--ink-70); margin-bottom: 10px; }
.rw-item p::before { content: '★★★★★'; display: block; color: #f5b50a; font-size: 11px; letter-spacing: 2px; margin-bottom: 8px; }
.rw-item span { font-size: 10.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-50); }
@media (max-width: 860px) { .review-wall { grid-template-columns: 1fr; gap: 10px; } }

/* ═══════ v5: product depth, galleries, bag toggle, marquee reviews, why-us, admin runs ═══════ */
.hidden { display: none !important; }
.nav-phone { gap: 6px; }
.nav-phone::before { flex: none; position: relative; top: 0.5px; }

/* product photo gallery */
.gv-frame img { transition: opacity 0.25s ease; }
.gv-thumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.gv-thumb { width: 64px; height: 64px; padding: 0; border: 1px solid var(--line); background: var(--white); cursor: pointer; overflow: hidden; opacity: 0.75; transition: opacity 0.15s, border-color 0.15s; }
.gv-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gv-thumb.on, .gv-thumb:hover { opacity: 1; border-color: var(--black); }

/* barrow / easy toggle */
.bag-toggle { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.bag-toggle button { text-align: left; padding: 12px 14px; border: 1px solid var(--line); background: var(--white); cursor: pointer; display: flex; flex-direction: column; gap: 3px; transition: border-color 0.15s, background 0.15s; }
.bag-toggle button.on { border-color: var(--black); box-shadow: inset 0 0 0 1px var(--black); }
.bag-toggle .bt-t { font-weight: 700; font-size: 13.5px; letter-spacing: -0.01em; }
.bag-toggle .bt-s { font-size: 11.5px; color: var(--ink-50); }

/* product depth sections */
.pd-info { padding: 72px 32px; border-bottom: 1px solid var(--line); background: var(--off-white); }
.pd-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; max-width: 1160px; margin: 0 auto; }
.pd-card { background: var(--white); border: 1px solid var(--line); padding: 24px 22px; }
.pd-num { font-family: 'Fraunces', serif; font-style: italic; font-size: 13px; color: var(--accent); margin-bottom: 10px; }
.pd-card h4 { font-size: 15.5px; letter-spacing: -0.01em; margin-bottom: 8px; }
.pd-card p { font-size: 13px; line-height: 1.65; color: var(--ink-70); }
.pd-why { max-width: 760px; margin: 36px auto 0; text-align: center; }
.pd-why p { font-family: 'Fraunces', serif; font-size: clamp(17px, 2vw, 21px); line-height: 1.55; color: var(--ink); }
.pd-bags { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; max-width: 1160px; margin: 36px auto 0; }
.pd-bag { background: var(--black); color: var(--white); padding: 30px 28px; }
.pd-bag .section-kicker { color: var(--white); opacity: 0.55; }
.pd-bag h4 { font-family: 'Fraunces', serif; font-size: clamp(17px, 1.8vw, 21px); font-weight: 600; letter-spacing: -0.01em; margin: 10px 0; color: var(--white); }
.pd-bag p { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.75); }

/* not-sure hand-off to bundles */
.not-sure { max-width: 760px; margin: 34px auto 0; text-align: center; border: 1px solid var(--line); background: var(--white); padding: 26px 28px; }
.not-sure p { font-size: 13.5px; line-height: 1.65; color: var(--ink-70); margin-bottom: 14px; }

/* winter-sorted picker extras */
.pick-img { border: 1px solid var(--line); margin: 12px 0; }
.pick-img img { width: 100%; height: 150px; object-fit: cover; display: block; }
.pick-bags { display: flex; flex-wrap: wrap; align-items: center; gap: 3px; color: var(--accent); margin: 8px 0 2px; }
.pick-bags .pb-count { font-size: 11px; color: var(--ink-50); margin-left: 8px; letter-spacing: 0.04em; }
.pick-easy { font-size: 12px; color: var(--ink-50); margin-top: 8px; line-height: 1.5; }

/* marquee review wall */
.mq-section { padding: 72px 0; border-bottom: 1px solid var(--line); background: var(--white); overflow: hidden; }
.mq-head { display: grid; grid-template-columns: auto 1fr; gap: 34px; align-items: center; max-width: 1160px; margin: 0 auto 40px; padding: 0 32px; }
.mq-big { font-family: 'Fraunces', serif; font-size: clamp(84px, 12vw, 168px); line-height: 0.9; letter-spacing: -0.04em; color: var(--black); }
.mq-copy h2 { font-family: 'Fraunces', serif; font-size: clamp(22px, 2.6vw, 32px); font-weight: 600; letter-spacing: -0.015em; line-height: 1.15; margin-bottom: 12px; }
.mq-copy p { font-size: 14px; line-height: 1.7; color: var(--ink-70); max-width: 560px; }
.mq-row { overflow: hidden; margin-bottom: 14px; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.mq-track { display: flex; gap: 14px; width: max-content; animation: mq-slide 95s linear infinite; padding: 2px 0; }
.mq-track.rev { animation-direction: reverse; animation-duration: 110s; }
.mq-row:hover .mq-track { animation-play-state: paused; }
@keyframes mq-slide { to { transform: translateX(-50%); } }
.mq-card { width: 340px; flex: none; background: var(--off-white); border: 1px solid var(--line); padding: 20px 22px; }
.mq-stars { color: var(--accent); font-size: 12px; letter-spacing: 3px; margin-bottom: 8px; }
.mq-title { font-family: 'Fraunces', serif; font-size: 15px; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 6px; }
.mq-card p { font-size: 12.5px; line-height: 1.6; color: var(--ink-70); display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }
.mq-card span { display: block; margin-top: 10px; font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-50); }
@media (prefers-reduced-motion: reduce) {
  .mq-track { animation: none; flex-wrap: wrap; width: auto; }
  .mq-track .mq-card:nth-child(n+7) { display: none; }
}

/* why-us + drivers on home */
.why-us { padding: 72px 32px; border-bottom: 1px solid var(--line); background: var(--white); }
.drivers { padding: 72px 32px; border-bottom: 1px solid var(--line); background: var(--off-white); }
.drivers-inner { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: center; }
.drivers-copy h2 { font-family: 'Fraunces', serif; font-size: clamp(24px, 3vw, 36px); font-weight: 600; letter-spacing: -0.015em; line-height: 1.12; margin: 12px 0 16px; }
.drivers-copy p { font-size: 14px; line-height: 1.75; color: var(--ink-70); margin-bottom: 12px; max-width: 520px; }
.drivers-quote { border-left: 2px solid var(--accent); padding: 4px 0 4px 18px; margin-top: 20px; }
.drivers-quote p { font-family: 'Fraunces', serif; font-style: italic; font-size: 15.5px; color: var(--ink); margin-bottom: 6px; }
.drivers-quote span { font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-50); }
.drivers-img img { width: 100%; height: 420px; object-fit: cover; display: block; border: 1px solid var(--line); }
.drivers-img-cap { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-50); margin-top: 10px; }

/* admin delivery run groups */
body.admin .run-groups { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
body.admin .run-chip { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; padding: 6px 12px; border: 1px solid var(--line); background: var(--off-white); }
body.admin .run-chip strong { color: var(--accent); }
body.admin .run-chip.cap { background: #eef5f0; border-color: #cfe3d6; font-weight: 600; }
body.admin .run-chip.cap.full { background: #fdf0ee; border-color: #f3d2cc; }

@media (max-width: 1000px) {
  .pd-grid { grid-template-columns: 1fr 1fr; }
  .drivers-inner { grid-template-columns: 1fr; gap: 28px; }
  .drivers-img img { height: 300px; }
}
@media (max-width: 640px) {
  .pd-grid, .pd-bags, .bag-toggle { grid-template-columns: 1fr; }
  .mq-head { grid-template-columns: 1fr; gap: 10px; }
  .mq-card { width: 280px; }
  .pd-info, .why-us, .drivers { padding-left: 20px; padding-right: 20px; }
}

/* ═══════ v6: the promise, founder note, sell strips ═══════ */
.promise { background: var(--black); color: var(--white); padding: 72px 32px; border-bottom: 1px solid var(--line); }
.promise-inner { max-width: 1160px; margin: 0 auto; }
.promise-head { max-width: 620px; margin-bottom: 40px; }
.promise-head h2 { font-family: 'Fraunces', serif; font-size: clamp(26px, 3.2vw, 40px); font-weight: 600; letter-spacing: -0.015em; line-height: 1.1; color: var(--white); margin: 12px 0 14px; }
.promise-head p { font-size: 14.5px; line-height: 1.7; color: rgba(255,255,255,0.65); }
.promise-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid rgba(255,255,255,0.18); }
.promise-item { padding: 26px 26px 26px 0; border-right: 1px solid rgba(255,255,255,0.12); }
.promise-item:not(:first-child) { padding-left: 26px; }
.promise-item:last-child { border-right: none; }
.promise-item h4 { font-family: 'Fraunces', serif; font-size: 17px; font-weight: 600; letter-spacing: -0.01em; color: var(--white); margin-bottom: 10px; }
.promise-item p { font-size: 12.5px; line-height: 1.7; color: rgba(255,255,255,0.62); }

.note { background: var(--off-white); padding: 72px 32px; border-bottom: 1px solid var(--line); }
.note-inner { max-width: 660px; margin: 0 auto; text-align: center; }
.note-rule { width: 44px; height: 1px; background: var(--black); margin: 0 auto 22px; }
.note-inner .note-rule:last-child { margin: 26px auto 0; }
.note-body { margin-top: 18px; text-align: left; }
.note-body p { font-family: 'Fraunces', serif; font-size: clamp(15.5px, 1.7vw, 18px); line-height: 1.75; color: var(--ink); margin-bottom: 16px; }
.note-sign { font-family: 'Fraunces', serif; font-style: italic; font-size: 30px; letter-spacing: -0.01em; margin-top: 6px; }
.note-sign-meta { font-size: 10.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-50); margin-top: 6px; }

.sell-strip { display: grid; grid-template-columns: repeat(5, 1fr); max-width: 1160px; margin: 0 auto; border: 1px solid var(--line); background: var(--white); transform: translateY(-1px); }
.sell-item { padding: 16px 18px; border-right: 1px solid var(--line); display: flex; flex-direction: column; gap: 2px; }
.sell-item:last-child { border-right: none; }
.ss-t { font-weight: 700; font-size: 13px; letter-spacing: -0.01em; }
.ss-s { font-size: 11px; color: var(--ink-50); }

.pi-promise { border: 1px solid var(--line); border-left: 2px solid var(--accent); background: var(--off-white); padding: 16px 18px; margin-top: 18px; }
.pi-promise-t { font-size: 10.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-50); margin-bottom: 10px; }
.pi-promise ul { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.pi-promise li { font-size: 12.5px; color: var(--ink-70); display: flex; gap: 8px; align-items: flex-start; }

@media (max-width: 1000px) {
  .promise-grid { grid-template-columns: 1fr 1fr; }
  .promise-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); padding-left: 0 !important; }
  .sell-strip { grid-template-columns: repeat(6, 1fr); }
  .sell-item { grid-column: span 2; border-bottom: 1px solid var(--line); }
  .sell-item:nth-child(3) { border-right: none; }
  .sell-item:nth-child(n+4) { grid-column: span 3; border-bottom: none; }
  .sell-item:nth-child(5) { border-right: none; }
}
@media (max-width: 640px) {
  .promise { padding: 56px 20px; }
  .promise-grid { grid-template-columns: 1fr; }
  .sell-strip { grid-template-columns: 1fr 1fr; margin: 0 20px; }
  .sell-item, .sell-item:nth-child(n+4) { grid-column: span 1; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .sell-item:nth-child(even) { border-right: none; }
  .sell-item:nth-child(5) { grid-column: 1 / -1; border-right: none; border-bottom: none; }
  .note { padding: 56px 24px; }
}

/* ═══════ v7: cinematic hero, editorial band, home shop row ═══════ */
.hero-cine { position: relative; min-height: min(88vh, 780px); display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; border-bottom: 1px solid var(--line); background: var(--black); }
.hc-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 38%; }
.hc-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,10,10,0.42) 0%, rgba(10,10,10,0.18) 34%, rgba(10,10,10,0.62) 78%, rgba(10,10,10,0.82) 100%); }
.hc-inner { position: relative; max-width: 1160px; width: 100%; margin: 0 auto; padding: 140px 32px 46px; color: var(--white); }
.hc-lede { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.85); border-bottom: 1px solid rgba(255,255,255,0.4); padding-bottom: 8px; margin-bottom: 22px; }
.hero-cine h1 { font-family: 'Fraunces', serif; font-weight: 600; font-size: clamp(44px, 7vw, 92px); line-height: 0.98; letter-spacing: -0.025em; color: var(--white); margin-bottom: 20px; text-wrap: balance; }
.hc-sub { max-width: 560px; font-size: 15.5px; line-height: 1.7; color: rgba(255,255,255,0.82); margin-bottom: 18px; }
.hc-sub strong { color: var(--white); }
.hc-rating { display: flex; align-items: center; gap: 10px; font-size: 13px; color: rgba(255,255,255,0.85); margin-bottom: 26px; }
.hc-rating .stars { color: #e8c547; letter-spacing: 3px; font-size: 13px; }
.btn.light { background: var(--white); color: var(--black); border-color: var(--white); }
.btn.light:hover { background: var(--off-white); border-color: var(--off-white); }
.btn.ghost { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.55); }
.btn.ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.hc-foot { position: relative; border-top: 1px solid rgba(255,255,255,0.22); background: rgba(10,10,10,0.35); backdrop-filter: blur(6px); }
.hc-foot-inner { max-width: 1160px; margin: 0 auto; padding: 14px 32px; display: flex; gap: 28px; flex-wrap: wrap; font-size: 12px; font-weight: 600; letter-spacing: 0.02em; color: rgba(255,255,255,0.88); }
.hc-foot-inner span { display: inline-flex; align-items: center; gap: 7px; }
.hc-foot-inner svg { color: #7fb894; }

.home-paths { max-width: 1080px; margin: 26px auto 0; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.home-paths a { display: flex; justify-content: space-between; align-items: center; gap: 14px; border: 1px solid var(--line); background: var(--white); padding: 18px 22px; font-family: 'Fraunces', serif; font-size: 16px; letter-spacing: -0.01em; transition: border-color 0.15s, transform 0.15s; }
.home-paths a:hover { border-color: var(--black); transform: translateY(-1px); }
.home-paths .arrow { color: var(--accent); }

.band { position: relative; min-height: 460px; display: flex; align-items: center; background-image: var(--band); background-size: cover; background-position: center 30%; border-bottom: 1px solid var(--line); }
@media (min-width: 1000px) { .band { background-attachment: fixed; } }
.band-scrim { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,10,10,0.78) 0%, rgba(10,10,10,0.52) 55%, rgba(10,10,10,0.26) 100%); }
.band-inner { position: relative; max-width: 1160px; width: 100%; margin: 0 auto; padding: 80px 32px; color: var(--white); }
.band-inner h2 { font-family: 'Fraunces', serif; font-size: clamp(28px, 4vw, 52px); font-weight: 600; letter-spacing: -0.02em; line-height: 1.05; color: var(--white); margin: 14px 0 16px; }
.band-inner p { max-width: 520px; font-size: 14.5px; line-height: 1.75; color: rgba(255,255,255,0.8); }

@media (max-width: 640px) {
  .hero-cine { min-height: 86vh; }
  .hc-inner { padding: 110px 20px 30px; }
  .hc-foot-inner { padding: 12px 20px; gap: 12px 18px; font-size: 11px; }
  .home-paths { grid-template-columns: 1fr; margin: 20px 20px 0; }
  .band { min-height: 420px; }
  .band-scrim { background: linear-gradient(180deg, rgba(10,10,10,0.56) 0%, rgba(10,10,10,0.74) 100%); }
}

/* ═══════ v7b: reviews page, the scoreboard ═══════ */
.rv-hero { background: var(--black); color: var(--white); border-bottom: 1px solid var(--line); }
.rv-hero-inner { max-width: 1160px; margin: 0 auto; padding: 96px 32px 64px; display: grid; grid-template-columns: auto 1fr; gap: 64px; align-items: center; }
.rv-big { font-family: 'Fraunces', serif; font-size: clamp(110px, 16vw, 220px); line-height: 0.85; letter-spacing: -0.05em; color: var(--white); }
.rv-big-stars { color: #e8c547; font-size: clamp(18px, 2.4vw, 30px); letter-spacing: 8px; margin-top: 14px; text-align: center; }
.rv-head h1 { font-family: 'Fraunces', serif; font-size: clamp(32px, 4.6vw, 60px); font-weight: 600; letter-spacing: -0.02em; line-height: 1.02; color: var(--white); margin: 14px 0 16px; }
.rv-head p { max-width: 520px; font-size: 15px; line-height: 1.75; color: rgba(255,255,255,0.72); }
.rv-statline { border-top: 1px solid rgba(255,255,255,0.18); }
.rv-statline-inner { max-width: 1160px; margin: 0 auto; padding: 18px 32px; display: flex; gap: 40px; flex-wrap: wrap; font-size: 12.5px; letter-spacing: 0.04em; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.rv-statline-inner strong { color: var(--white); font-size: 15px; letter-spacing: 0; margin-right: 6px; }
.rv-pulls { max-width: 1160px; margin: 0 auto; padding: 72px 32px 64px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.rv-pull { border-top: 2px solid var(--black); padding-top: 22px; }
.rv-stars { color: var(--accent); letter-spacing: 4px; font-size: 13px; margin-bottom: 14px; }
.rv-stars.sm { font-size: 11px; letter-spacing: 3px; margin-bottom: 8px; }
.rv-pull blockquote { font-family: 'Fraunces', serif; font-size: clamp(17px, 1.9vw, 21px); line-height: 1.5; letter-spacing: -0.01em; color: var(--ink); margin-bottom: 16px; }
.rv-pull figcaption { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-50); }
.rv-grid { columns: 3; column-gap: 14px; }
.rv-card { break-inside: avoid; background: var(--white); border: 1px solid var(--line); padding: 22px 24px; margin-bottom: 14px; transition: border-color 0.2s, transform 0.2s; }
.rv-card:hover { border-color: var(--black); transform: translateY(-2px); }
.rv-title { font-family: 'Fraunces', serif; font-size: 16px; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 8px; }
.rv-card p { font-size: 13px; line-height: 1.7; color: var(--ink-70); }
.rv-card span { display: block; margin-top: 12px; font-size: 10.5px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-50); }
@media (max-width: 1000px) {
  .rv-hero-inner { grid-template-columns: 1fr; gap: 28px; padding: 72px 32px 48px; }
  .rv-big-stars { text-align: left; }
  .rv-pulls { grid-template-columns: 1fr; gap: 28px; padding: 56px 32px 48px; }
  .rv-grid { columns: 2; }
}
@media (max-width: 640px) {
  .rv-hero-inner { padding: 56px 20px 40px; }
  .rv-statline-inner { gap: 16px 24px; padding: 16px 20px; }
  .rv-pulls { padding: 48px 20px 40px; }
  .rv-grid { columns: 1; }
}

/* ═══════ v7: homepage elevation — credentials strip, quieter card hover, mobile hero crop ═══════ */
.creds-strip { background: var(--off-white); border-bottom: 1px solid var(--line); padding: 18px 40px; }
.creds-strip-inner { max-width: 1320px; margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 30px; flex-wrap: wrap; }
.cred { display: inline-flex; align-items: center; gap: 12px; color: var(--ink); }
.cred-badge { flex: none; display: block; }
.cred-badge svg { width: 38px; height: 38px; }
.cred-text { display: flex; flex-direction: column; gap: 2px; font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-50); line-height: 1.35; }
.cred-text strong { font-family: 'Fraunces', serif; font-size: 14px; font-weight: 600; letter-spacing: -0.01em; text-transform: none; color: var(--black); }
a.cred .cred-text strong { transition: color 0.15s; }
a.cred:hover .cred-text strong { color: var(--accent); }
.cred-sep { width: 1px; height: 28px; background: var(--line); flex: none; }
@media (max-width: 980px) {
  .creds-strip { padding: 16px 20px; }
  .creds-strip-inner { gap: 14px 28px; justify-content: flex-start; }
  .cred-sep { display: none; }
}
@media (max-width: 700px) {
  .creds-strip { padding: 18px 20px; }
  .creds-strip-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 18px; }
  .cred { align-items: flex-start; }
  .cred-badge svg { width: 32px; height: 32px; }
}

/* pcard hover: subtle scale, shadowless border-darken */
.pcard:hover { transform: translateY(-2px); border-color: var(--black); box-shadow: none; }
.pcard-img img { transition: transform 0.6s cubic-bezier(0.2,0.8,0.3,1); }
.pcard:hover .pcard-img img { transform: scale(1.03); }

/* mobile hero: keep the founder and the bag in frame */
@media (max-width: 640px) {
  .hc-bg { object-position: 72% 30%; }
}

/* ═══════ v24: seasonal band, anatomy, cross-sell, reviews close ═══════ */
.season-band { background: var(--white); border-bottom: 1px solid var(--line); padding: 56px 32px; text-align: center; }
.season-inner { max-width: 640px; margin: 0 auto; }
.season-band h2 { font-family: 'Fraunces', serif; font-weight: 500; font-size: clamp(24px, 3vw, 36px); letter-spacing: -0.02em; line-height: 1.1; margin: 14px 0 12px; }
.season-band p { font-size: 14px; line-height: 1.7; color: var(--ink-70); max-width: 520px; margin: 0 auto 22px; }

.anat { background: var(--white); border-bottom: 1px solid var(--line); padding: 72px 32px; }
.anat-inner { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; }
.anat-img img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border: 1px solid var(--black); border-radius: 4px; }
.anat-img-cap { margin-top: 10px; font-size: 10.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-50); }
.anat-copy h2 { font-family: 'Fraunces', serif; font-weight: 500; font-size: clamp(26px, 3.2vw, 40px); letter-spacing: -0.02em; line-height: 1.08; margin: 14px 0 24px; }
.anat-list { list-style: none; }
.anat-item { display: flex; gap: 18px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.anat-item:last-child { border-bottom: none; }
.anat-item:first-child { border-top: 1px solid var(--line); }
.anat-num { font-family: 'Fraunces', serif; font-style: italic; font-size: 13px; color: var(--accent); flex: none; padding-top: 2px; }
.anat-item h4 { font-size: 15px; letter-spacing: -0.01em; margin-bottom: 4px; }
.anat-item p { font-size: 13px; line-height: 1.6; color: var(--ink-70); }
@media (max-width: 900px) {
  .anat { padding: 56px 20px; }
  .anat-inner { grid-template-columns: 1fr; gap: 28px; }
}

.xsell-band { background: var(--white); border-bottom: 1px solid var(--line); padding: 34px 32px; }
.xsell-inner { max-width: 1080px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 20px 28px; flex-wrap: wrap; }
.xsell-copy .section-kicker { margin-bottom: 8px; }
.xsell-copy p { font-family: 'Fraunces', serif; font-size: clamp(17px, 2vw, 22px); letter-spacing: -0.015em; line-height: 1.35; }
@media (max-width: 640px) { .xsell-band { padding: 30px 20px; } }

.rv-close { background: var(--black); color: var(--white); border-bottom: 1px solid var(--line); padding: 44px 32px; text-align: center; }
.rv-close-t { font-family: 'Fraunces', serif; font-size: clamp(19px, 2.4vw, 26px); letter-spacing: -0.015em; margin-bottom: 18px; color: var(--white); }
.rv-close .rv-statline-inner { justify-content: center; padding: 0; }

/* PHOTO-ROUND-V26: yard strip, founder portrait, contact collection */
.yard-strip { padding: 72px 32px; border-bottom: 1px solid var(--line); background: var(--white); }
.yard-strip-grid { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.yard-shot { margin: 0; }
.yard-shot img { width: 100%; aspect-ratio: 3/4; object-fit: cover; display: block; border: 1px solid var(--line); border-radius: 4px; transition: border-color 0.25s; }
.yard-shot:hover img, .team-shot:hover img { border-color: var(--ink-30); }
.yard-shot figcaption { margin-top: 9px; font-size: 10.5px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-50); }
@media (max-width: 900px) { .yard-strip { padding: 56px 20px; } .yard-strip-grid { grid-template-columns: 1fr 1fr; } }

.note-inner.note-with-photo { max-width: 1020px; display: grid; grid-template-columns: 340px 1fr; gap: 52px; align-items: center; }
.note-photo img { width: 100%; aspect-ratio: 4/5; object-fit: cover; display: block; border: 1px solid var(--line); border-radius: 4px; }
.note-photo-cap { margin-top: 10px; font-size: 10.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-50); }
@media (max-width: 900px) { .note-inner.note-with-photo { grid-template-columns: 1fr; gap: 30px; } .note-photo { max-width: 320px; margin: 0 auto; width: 100%; } }

.collect { padding: 72px 32px; border-bottom: 1px solid var(--line); background: var(--off-white); }
.collect-inner { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: center; }
.collect-img img { width: 100%; aspect-ratio: 4/5; object-fit: cover; display: block; border: 1px solid var(--line); border-radius: 4px; }
.collect-img-cap { margin-top: 10px; font-size: 10.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-50); }
.collect-copy h2 { font-family: 'Fraunces', serif; font-size: clamp(24px, 3vw, 36px); font-weight: 600; letter-spacing: -0.015em; line-height: 1.12; margin: 12px 0 16px; }
.collect-copy p { font-size: 14px; line-height: 1.75; color: var(--ink-70); margin-bottom: 12px; max-width: 560px; }
@media (max-width: 900px) { .collect { padding: 56px 20px; } .collect-inner { grid-template-columns: 1fr; gap: 28px; } .collect-img { max-width: 420px; } }

/* ═══ v27: meet the team ═══ */
.team-band { padding: 72px 32px; border-bottom: 1px solid var(--line); background: var(--off-white); }
.team-inner { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 52px; align-items: center; }
.team-copy h2 { font-family: 'Fraunces', serif; font-size: clamp(26px, 3.2vw, 40px); font-weight: 600; letter-spacing: -0.015em; line-height: 1.1; margin: 12px 0 16px; }
.team-copy p { font-size: 14px; line-height: 1.75; color: var(--ink-70); margin-bottom: 12px; max-width: 520px; }
.team-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.team-shot { margin: 0; }
.team-shot.wide { grid-column: 1 / -1; }
.team-shot img { width: 100%; height: 200px; object-fit: cover; display: block; border: 1px solid var(--line); border-radius: 4px; transition: border-color 0.25s; }
.team-shot.wide img { height: 280px; }
.team-shot figcaption { font-size: 10.5px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-50); margin-top: 9px; }
.team-facts { max-width: 1160px; margin: 44px auto 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0 28px; border-top: 1px solid var(--line); padding-top: 22px; }
.team-fact strong { display: block; font-family: 'Fraunces', serif; font-size: 16.5px; font-weight: 600; margin-bottom: 4px; }
.team-fact span { font-size: 12.5px; color: var(--ink-50); line-height: 1.5; }
@media (max-width: 900px) {
  .team-band { padding: 56px 20px 48px; }
  .team-inner { grid-template-columns: 1fr; gap: 30px; }
  .team-shot img { height: 150px; }
  .team-shot.wide img { height: 210px; }
  .team-facts { grid-template-columns: 1fr 1fr; gap: 18px 20px; padding-top: 20px; }
}

/* ═══ v27: them vs us strip ═══ */
.versus { padding: 72px 32px; border-bottom: 1px solid var(--line); background: var(--white); }
.versus-table { max-width: 980px; margin: 0 auto; border-top: 1px solid var(--line); }
.vs-row { display: grid; grid-template-columns: 1fr 48px 1fr; gap: 20px; padding: 20px 0; border-bottom: 1px solid var(--line); align-items: center; }
.vs-row.head { padding: 13px 0; }
.vs-row.head span { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-50); }
.vs-row.head .vs-us-h { color: var(--accent); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.vs-them { font-size: 14px; line-height: 1.65; color: var(--ink-50); }
.vs-mid { font-family: 'Fraunces', serif; font-style: italic; font-size: 13px; color: var(--ink-30); text-align: center; }
.vs-us { font-size: 14px; line-height: 1.65; color: var(--ink); font-weight: 500; display: flex; gap: 9px; align-items: baseline; }
.vs-us svg { color: var(--accent); flex-shrink: 0; position: relative; top: 1px; }
.versus-more { text-align: center; margin-top: 26px; }
.versus-more a { font-size: 13px; font-weight: 600; letter-spacing: 0.02em; border-bottom: 1px solid var(--ink-30); padding-bottom: 2px; }
.versus-more a:hover { border-color: var(--ink); }
@media (max-width: 760px) {
  .versus { padding: 56px 20px; }
  .vs-row { grid-template-columns: 1fr; gap: 10px; }
  .vs-mid { display: none; }
  .vs-row.head span:first-child { display: none; }
  .vs-them::before { content: "The usual: "; font-weight: 600; color: var(--ink-70); }
}

/* ═══ v27: who you are buying from ═══ */
.buying-from { max-width: 1080px; margin: 0 auto 34px; }
.bf-box { display: flex; gap: 20px; align-items: center; border: 1px solid var(--line); background: var(--off-white); padding: 18px 22px; }
.bf-box img { width: 78px; height: 78px; object-fit: cover; object-position: 50% 15%; flex-shrink: 0; display: block; }
.bf-t { font-size: 10.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 5px; }
.bf-copy p { font-size: 13.5px; line-height: 1.65; color: var(--ink-70); }
.bf-copy a { font-weight: 600; color: var(--ink); border-bottom: 1px solid var(--ink-30); white-space: nowrap; }
.bf-copy a:hover { border-color: var(--ink); }
@media (max-width: 640px) {
  .bf-box { gap: 14px; padding: 14px 16px; }
  .bf-box img { width: 62px; height: 62px; }
}

/* ADMIN-ROBOTO-BLOCK: the back office reads in Roboto for easier scanning.
   Fraunces stays for large display numbers and headings. Customer pages untouched. */
body.admin { font-family: 'Roboto', sans-serif; }
body.admin input, body.admin button, body.admin select, body.admin textarea,
body.admin table, body.admin th, body.admin td,
body.admin .btn, body.admin .admin-tab, body.admin .field label,
body.admin .admin-section-title, body.admin .pi-select { font-family: 'Roboto', sans-serif; }
