: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 0;
    text-align: center;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }
  .topbar-inner {
    max-width: 1224px;
    margin: 0 auto;
    padding: 0 32px;
    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: 1224px;
    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: 47px; /* v55 item 7: nav logo up ~30% (was 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: 16px; /* v82 (item 3): bigger, still fits at 1280 without wrapping */
    color: var(--black);
    letter-spacing: -0.005em;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
  }
  .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;
    border-bottom: 1px solid var(--black);
  }
  .trust-numbers-inner {
    max-width: 1160px;
    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: 1160px; 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: 1160px; margin: 0 auto; }
  .foot-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.9fr 0.9fr 1fr;
    gap: 32px;
    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;
  }

  /* ═══ CRO v100: firewood buy-flow mini-bar (mobile only) ═══
     Same fixed-bottom / transform pattern as .sticky-cta above (same z-index, same reserved
     body padding-bottom at <=1000px, same toast clearance) but scoped to /firewood/ and driven
     by fw-minibar.js. Never shown on the same page as .sticky-cta (that only renders on home). */
  .fw-minibar {
    position: fixed; bottom: 0; left: 0; right: 0;
    background: var(--white); border-top: 1px solid var(--black);
    padding: 9px 10px; padding-bottom: calc(9px + env(safe-area-inset-bottom, 0px));
    z-index: 80; display: none; transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.3, 1);
    box-shadow: 0 -8px 24px -4px rgba(0,0,0,0.06);
  }
  .fw-minibar.show { transform: translateY(0); }
  .fw-minibar-inner { display: flex; align-items: center; gap: 10px; max-width: 560px; margin: 0 auto; }
  .fw-minibar-info { flex: 1; min-width: 0; }
  .fw-minibar-label { font-size: 9.5px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-50); }
  .fw-minibar-price { font-family: 'Fraunces', serif; font-size: 18px; font-weight: 600; letter-spacing: -0.01em; color: var(--black); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .fw-minibar-btn {
    background: var(--black); color: var(--white); border: none; cursor: pointer;
    padding: 12px 16px; font-family: 'Inter', sans-serif; font-weight: 800; font-size: 11px;
    letter-spacing: 0.1em; text-transform: uppercase; white-space: nowrap; border-radius: 2px;
  }
  .fw-minibar-close {
    background: none; border: none; cursor: pointer; color: var(--ink-30);
    font-size: 20px; line-height: 1; padding: 6px; min-width: 32px; min-height: 32px;
  }
  .fw-minibar-close:hover { color: var(--black); }

  /* ═══════════════════ 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: 44px; }
    .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; }
    .fw-minibar { 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; padding: 7px 0; }
    .topbar-inner { gap: 8px; padding: 0 16px; }
    .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: 36px; }
    .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; padding: 0 16px; }
    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; }
  }

  /* V54-REVEAL-FIX — reveal-on-scroll can never leave white holes in the page.
     The hidden state only applies once the script has armed it (html.reveal-armed,
     set by store.js AFTER everything already on screen is marked .in), and only on
     desktop widths: on phones and tablets content is simply always visible. The
     fade is also short enough that scrolling cannot outrun it. */
  @media (min-width: 1001px) {
    html.reveal-armed .reveal { opacity: 0; transform: translateY(14px); transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.2, 0.8, 0.3, 1); }
    html.reveal-armed .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); }
/* v91 (item 9): taller/square container with object-fit: contain so the whole bundle photo
   is visible (was 4/3 + cover, which cropped the product) - card layout otherwise unchanged */
.pcard-img { aspect-ratio: 1/1; overflow: hidden; position: relative; background: var(--off-white); }
.pcard-img img { width: 100%; height: 100%; object-fit: contain; 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); }

/* v82 (item 1): the Savers bundle card is the clear standout of the shop grid — a distinct
   accent border, a subtle tint and a bolder ribbon, tasteful within the existing system */
.pcard[data-slug="sb"] {
  border: 2px solid var(--accent);
  background: linear-gradient(180deg, rgba(45,106,63,0.06), transparent 45%);
  box-shadow: 0 10px 28px -14px rgba(45,106,63,0.35);
}
.pcard[data-slug="sb"]:hover { border-color: var(--accent-deep); box-shadow: 0 22px 44px -16px rgba(45,106,63,0.4); }
.pcard[data-slug="sb"] .pcard-badge {
  background: var(--accent); color: var(--white); backdrop-filter: none;
  font-size: 11px; padding: 6px 12px; letter-spacing: 0.14em;
  box-shadow: 0 4px 14px -4px rgba(45,106,63,0.55);
}
.pcard[data-slug="sb"] .pcard-badge::before { content: '★ '; color: var(--white); }
.pcard[data-slug="sb"] .pcard-btn { background: var(--accent); }
.pcard[data-slug="sb"] .pcard-btn:hover { background: var(--accent-deep); }

/* ═══ Product page ═══ */
.product-layout {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px;
  max-width: 1160px; 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; }
/* v82 (item 4): the moisture stat is a clear badge, not just another tick item */
.product-media .under .moisture-badge { color: var(--accent); font-weight: 700; }
.product-media .under .moisture-badge svg { color: var(--accent); }

.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(--buy, #B3402A); 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;
}
/* v70 (items 5-6): every add-to-cart is the same red (#B3402A) - compost, national,
   species and bundle pages match the firewood buy box */
.add-btn:hover { background: #9a3524; }
.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; }
/* v109 (item 17): "Why choose our compost?" only - bigger + bold. .pi-includes .lbl above is
   shared with the firewood buy box's "In your bundle" label, so this is scoped to the compost
   page's own .compost-why wrapper (added in pages_v4.py's build_compost()) rather than
   changing the shared rule. */
.compost-why .lbl { font-size: 15px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--black); margin-bottom: 14px; }
.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; }
/* v91 (item 11): the national checkout's Pallet Network delivery note, same wording, now
   bigger, bold and much more noticeable than the other .cart-note messages on this page. */
.cart-note-pallet { font-size: 14px; font-weight: 700; color: var(--black); }
.cart-note-pallet strong { color: var(--accent); }
.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; }

/* CRO v100: checkout payment-step reassurance row - reuses existing verbatim copy plus the
   site's own published phone number, just given clearer visual weight next to the pay button. */
.co-reassure { margin-top: 12px; display: flex; flex-direction: column; gap: 6px; }
.co-reassure-item { display: flex; align-items: center; gap: 7px; font-size: 12px; color: var(--ink-50); line-height: 1.5; }
.co-reassure-item svg { flex: none; color: var(--accent); }
.co-reassure-item a { color: var(--ink-70); font-weight: 600; border-bottom: 1px solid var(--ink-30); }
.co-reassure-item a:hover { color: var(--black); border-color: var(--black); }

/* CRO v100: delivery-threshold progress bar - visualises the exact wording that already
   exists ("Add £X to your cart to qualify for free delivery" / "Delivery: Free"), used in the
   cart drawer, /cart/ and /checkout/. No copy changes, just a fill state added above it. */
.dp-track { height: 5px; background: var(--line); border-radius: 3px; overflow: hidden; margin: 10px 0 8px; }
.dp-fill { height: 100%; background: var(--accent); border-radius: 3px; transition: width 0.4s cubic-bezier(0.2,0.8,0.3,1); }
.dp-fill.full { background: var(--accent); }

/* ═══ 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; }
/* v75: partially delivered (some split groups still out) and partially refunded */
.status-badge.partially_delivered { border-color: #b45309; color: #b45309; }
.status-badge.partially_delivered::before { background: #b45309; }
.status-badge.partially_refunded { border-color: #b3341f; color: #b3341f; }
.status-badge.partially_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; }

/* ═══ v81: account page redesign ═══ */
.acct-h2 { font-family: 'Fraunces', serif; font-weight: 400; font-size: 26px; margin: 36px 0 16px; }
.welcome-band {
  background: var(--off-white); border: 1px solid var(--black); border-radius: 4px;
  padding: 30px 32px; margin-bottom: 18px; position: relative; overflow: hidden;
}
.welcome-band::before { content: ''; position: absolute; top: 0; left: 0; bottom: 0; width: 4px; background: var(--accent); }
.welcome-band h2 {
  font-family: 'Fraunces', serif; font-weight: 400; font-size: clamp(24px, 3vw, 32px);
  letter-spacing: -0.015em; margin-bottom: 8px; color: var(--black);
}
.wb-delivery { font-size: 14.5px; color: var(--ink-70); line-height: 1.55; }
.wb-stats { font-size: 11.5px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent); margin-top: 10px; }
.help-block { border: 1px solid var(--line); border-radius: 4px; padding: 14px 18px; margin-bottom: 22px; background: var(--white); }
.help-block p { font-size: 12.5px; color: var(--ink-50); line-height: 1.65; }
.help-block a { color: var(--ink-70); border-bottom: 1px solid var(--ink-30); }
.help-block a:hover { border-color: var(--black); color: var(--black); }
.help-block strong { color: var(--ink-70); font-weight: 600; }

.buy-again-quick {
  display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap;
  border: 1px solid var(--accent); border-radius: 4px; background: var(--white); padding: 16px 20px; margin-bottom: 26px;
}
.baq-label { font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); margin-bottom: 4px; }
.baq-order { font-size: 13.5px; color: var(--ink-70); }

.detail-sub-title { font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-50); margin-bottom: 12px; }
.detail-summary { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; flex-wrap: wrap; }
.ds-rows { flex: 1; min-width: 220px; }
.ds-row { display: flex; gap: 12px; padding: 8px 0; border-bottom: 1px solid var(--line); font-size: 13.5px; align-items: baseline; }
.ds-row:last-child { border-bottom: none; }
.ds-row .k { font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-50); width: 74px; flex-shrink: 0; }
.ds-row .v { color: var(--ink); font-weight: 500; line-height: 1.5; }
.marketing-row { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; color: var(--ink-70); line-height: 1.5; cursor: pointer; }
.marketing-row input { width: 17px; height: 17px; margin-top: 2px; flex-shrink: 0; accent-color: var(--accent); }
.payment-block { border: 1px solid var(--line); border-radius: 4px; padding: 16px 18px; background: var(--off-white); }
.payment-block p { font-size: 13px; color: var(--ink-50); line-height: 1.6; }

.thanks-panel {
  display: grid; grid-template-columns: 200px 1fr; gap: 26px; align-items: center;
  margin-top: 40px; padding: 24px; border: 1px solid var(--line); border-radius: 4px; background: var(--off-white);
}
.thanks-panel img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border: 1px solid var(--line); border-radius: 4px; display: block; }
.thanks-copy p { font-size: 13.5px; line-height: 1.7; color: var(--ink-70); margin-bottom: 8px; }
.thanks-sign { font-family: 'Fraunces', serif; font-style: italic; font-size: 14px; color: var(--ink-50) !important; }
@media (max-width: 640px) {
  .welcome-band { padding: 22px 20px; }
  .thanks-panel { grid-template-columns: 1fr; text-align: left; }
  .thanks-panel img { max-width: 180px; aspect-ratio: 4/3; }
  .detail-summary { flex-direction: column; align-items: stretch; }
  .detail-summary .btn { width: 100%; }
}

/* 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; }

/* CRO v100: back-to-top */
.back-to-top {
  position: fixed; right: 16px; bottom: 20px; z-index: 75;
  width: 42px; height: 42px; border-radius: 50%; border: 1.5px solid var(--black);
  background: var(--white); color: var(--black); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(8px); pointer-events: none;
  transition: opacity 0.25s, transform 0.25s, bottom 0.25s;
  box-shadow: 0 4px 14px -4px rgba(0,0,0,0.18);
}
.back-to-top.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top:hover { background: var(--black); color: var(--white); }
.back-to-top.lifted { bottom: calc(78px + env(safe-area-inset-bottom, 0px)); }
@media (max-width: 640px) { .back-to-top { right: 12px; bottom: 16px; width: 40px; height: 40px; } }

/* 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; }

/* v85 (item 12): the postcode-checker SUCCESS state — a big on-brand green tick beside
   bolder text and a subtle entrance animation, wherever "Good news..." renders (home band,
   firewood gate incl. the v84 confirmation moment before it collapses, town pages). The
   verbatim copy is untouched; this only dresses it up. */
.pc-success { display: inline-flex; align-items: flex-start; gap: 10px; }
.pc-tick { flex: none; width: 26px; height: 26px; color: var(--accent); animation: pcTickIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both; }
.pc-tick svg { width: 100%; height: 100%; display: block; }
.pc-success-txt { font-weight: 700; font-size: 15px; line-height: 1.5; color: var(--accent); animation: pcTxtIn 0.5s ease both 0.06s; }
.pc-success-txt a { color: inherit; }
@keyframes pcTickIn { from { transform: scale(0.3); opacity: 0; } 70% { transform: scale(1.12); } to { transform: scale(1); opacity: 1; } }
@keyframes pcTxtIn { from { opacity: 0; transform: translateY(3px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .pc-tick, .pc-success-txt { animation: none; } }
.pc-strip-big .pc-success-txt { color: var(--white); }
/* v85 fix: on the solid-green band the tick's circle used to inherit white (via the rule
   above) while its checkmark stroke is hardcoded white in the SVG, so the tick vanished
   (white-on-white). Give the circle a dark fill here so the white check stays visible. */
.pc-strip-big .pc-tick { color: var(--ink); }
.fw-pcgate-msg .pc-success-txt { font-size: 15px; }

/* 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: 1160px; 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; }
/* v109 (item 11): recommender result photo - square frame, object-fit: contain so nothing
   crops (mirrors .pcard-img's v91 fix, which solved the same "cover crops the product" problem
   for bundle photos). Sits above the text in .pick-card, for both the answered result and the
   "no selection yet" gate state. */
.pick-photo-frame { aspect-ratio: 1/1; overflow: hidden; position: relative; background: var(--off-white); border: 1px solid var(--line); border-radius: 4px; max-width: 220px; margin: 0 0 14px; }
.pick-photo-frame img { width: 100%; height: 100%; object-fit: contain; display: block; }
.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: 1160px; 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: 1160px; 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: 1160px; 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); }
/* v89 (item 5): the per-bag price column ("tr-per") is gone from every qty dropdown-table
   site-wide, so the row is now 3 columns (bags / total / you save) instead of 4. */
.tier-row { display: grid; grid-template-columns: 0.8fr 0.9fr 1.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-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; }
/* v89 (item 6): the "Please select" placeholder in a "How many ... would you like?" dropdown
   head reads 50% larger than a made choice, everywhere the qdh-txt span is used (the main
   qty dropdown on firewood/compost and every sundry step). */
.qdh-txt.is-ph { font-size: 150%; }
.tier-note { font-size: 15px; 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; }
  /* v89 (item 5): the old per-bag column made this narrower 3-col/save-hidden fallback
     necessary; with tr-per gone the base 3-column .tier-row rule already fits at this width. */
  .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; }

/* 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; }
/* v104 (owner spec, item 4): single-button modifier for the sundry selector boxes (Kindling/
   Firelighters/Coal) - reuses every existing .bag-toggle button/.bt-circ/.bt-txt/.on rule
   (photo, name, big clickable card, selected state, responsive) with one column instead of two,
   since each sundry is its own standalone toggle rather than a two-way radio choice. */
.bag-toggle.single-col { grid-template-columns: 1fr; }
.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; display: flex; flex-direction: column; align-items: flex-start; }
.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; }
/* v85 (item 6): the recommender's gate message, shown until both questions are answered */
.pick-gate { font-family: 'Fraunces', serif; font-size: 15px; font-style: italic; color: var(--ink-50); padding: 30px 4px; text-align: center; }

/* 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: 1224px; 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; }
/* v85 (item 7): overflow-x auto (was hidden) + touch-action pan-x lets a touch visitor
   swipe/drag through the row manually — the "touching" class (JS below) pauses the
   auto-scroll while they do, exactly like :hover pauses it for a mouse. */
.mq-row { overflow-x: auto; overflow-y: hidden; -webkit-overflow-scrolling: touch; touch-action: pan-x; scrollbar-width: none; 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-row::-webkit-scrollbar { display: none; }
.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, .mq-row.touching .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; }
}

/* ═══ v85 (items 10-11): homepage photo wall — three rows of yard/product/delivery photos,
   marquee-scrolling at different speeds and directions. transform-only animation (GPU,
   no layout thrash), lazy-loaded images, pausable on hover or touch. ═══ */
.wall-section { padding: 64px 0; border-bottom: 1px solid var(--line); background: var(--off-white); overflow: hidden; }
.wall-head { max-width: 1160px; margin: 0 auto 30px; padding: 0 32px; text-align: center; }
.wall-head .section-kicker { justify-content: center; }
.wall-head h2 { font-family: 'Fraunces', serif; font-size: clamp(22px, 2.6vw, 32px); font-weight: 600; letter-spacing: -0.015em; margin: 10px 0 8px; }
.wall-head .section-sub { max-width: 480px; margin: 0 auto; }
.wall-row { overflow-x: auto; overflow-y: hidden; -webkit-overflow-scrolling: touch; touch-action: pan-x; scrollbar-width: none; margin-bottom: 12px; }
.wall-row::-webkit-scrollbar { display: none; }
.wall-track { display: flex; gap: 12px; width: max-content; padding: 2px 0; will-change: transform; animation: wall-slide 68s linear infinite; }
.wall-track.rev { animation-direction: reverse; animation-duration: 86s; }
.wall-track.fast { animation-duration: 50s; }
.wall-row:hover .wall-track, .wall-row.touching .wall-track { animation-play-state: paused; }
@keyframes wall-slide { to { transform: translateX(-50%); } }
.wall-tile { flex: none; width: 220px; height: 150px; border-radius: 6px; overflow: hidden; border: 1px solid var(--line); background: var(--line); }
.wall-tile img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (prefers-reduced-motion: reduce) {
  .wall-track { animation: none; flex-wrap: wrap; width: auto; }
  .wall-track .wall-tile:nth-child(n+6) { display: none; }
}
@media (max-width: 640px) {
  .wall-head { padding: 0 20px; }
  .wall-tile { width: 138px; height: 100px; }
  .wall-track { gap: 8px; }
}

/* 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; }
}

/* ═══════ v35: firewood as a single product page ═══════ */
.wood-toggle { grid-template-columns: 1fr 1fr; }
.wood-toggle button { min-height: 60px; }
@media (max-width: 640px) { .wood-toggle { grid-template-columns: 1fr; } .wood-toggle button { min-height: 0; } }
.pd-more { display: inline-block; position: relative; margin-top: auto; padding-top: 14px; font-size: 12px; font-weight: 600; color: var(--black); border-bottom: 1px solid var(--ink-30); transition: border-color 0.15s; }
.pd-more:hover { border-color: var(--black); }
.pd-more .arrow { font-family: 'Fraunces', serif; font-style: italic; font-weight: 300; }
.pd-woods-head { max-width: 1160px; margin: 48px auto 18px; }
.pd-woods-head h3 { font-family: 'Fraunces', serif; font-size: clamp(20px, 2.2vw, 27px); font-weight: 600; letter-spacing: -0.015em; margin-top: 10px; }

/* ═══════ 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 ═══════ */
/* v55 (master list item 7): the banner takes ~30% more presence (min-height 780 -> 1014, capped to the viewport) */
.hero-cine { position: relative; min-height: min(100vh, 1014px); display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; border-bottom: 1px solid var(--line); background: var(--black); }
/* v91 (item 10): on very wide/short hero boxes (large desktop monitors) a plain object-fit:
   cover cropped the top and bottom of the photo heavily. Fixed with the standard responsive-
   hero pattern: a blurred, darkened full-bleed copy of the SAME photo fills the box behind a
   sharp copy that now uses object-fit: contain, so the whole subject is always visible with no
   hard letterbox bars (the "letterbox" is filled with a soft blur of the same image instead).
   The box's own height/above-the-fold math (v83) is untouched — only the image treatment
   inside it changed. */
.hc-bg-blur { position: absolute; inset: 0; width: 100%; height: 100%; background: var(--img) center 38% / cover; filter: blur(36px) brightness(0.65) saturate(1.15); transform: scale(1.15); }
.hc-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; object-position: center 38%; }
.hc-scrim { position: absolute; inset: 0; background: linear-gradient(102deg, rgba(10,10,10,0.52) 0%, rgba(10,10,10,0.30) 42%, rgba(10,10,10,0.04) 72%), linear-gradient(180deg, rgba(10,10,10,0.42) 0%, rgba(10,10,10,0.18) 34%, rgba(10,10,10,0.66) 78%, rgba(10,10,10,0.86) 100%); }
.hc-inner { position: relative; max-width: 1224px; 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.9); border-bottom: 1px solid rgba(255,255,255,0.4); padding-bottom: 8px; margin-bottom: 22px; text-shadow: 0 1px 2px rgba(0,0,0,0.4), 0 1px 12px rgba(0,0,0,0.35); }
.hero-cine h1 { font-family: 'Fraunces', serif; font-weight: 600; font-size: clamp(48px, 9.1vw, 120px); line-height: 0.98; letter-spacing: -0.025em; color: var(--white); margin-bottom: 20px; text-wrap: balance; text-shadow: 0 1px 3px rgba(0,0,0,0.35), 0 2px 22px rgba(0,0,0,0.45); }
.hc-sub { max-width: 560px; font-size: 15.5px; line-height: 1.7; color: rgba(255,255,255,0.88); margin-bottom: 18px; text-shadow: 0 1px 2px rgba(0,0,0,0.4), 0 1px 14px rgba(0,0,0,0.35); }
.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: 1224px; 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: 1224px; 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: 92vh; }
  .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: 1224px; 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: 1224px; 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 32px; }
.creds-strip-inner { max-width: 1160px; 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-badge img { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; display: block; }
.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: 1000px) {
  .creds-strip { padding: 18px 20px; }
  .creds-strip-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 18px; justify-content: stretch; }
  .cred { align-items: flex-start; }
  .cred-sep { display: none; }
  .cred-badge svg { width: 32px; height: 32px; }
  .cred-badge img { 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; }
/* v88: an older phone photo (the market-stall shot) gets a modest "polaroid" treatment - a
   white card frame, a soft shadow and a slight tilt - rather than sitting flush like the
   crisper studio/product photography elsewhere on the page. Small, self-contained modifier;
   nothing else uses .old-photo. */
.note-photo.old-photo { background: var(--white); padding: 10px 10px 30px; border: 1px solid var(--line); border-radius: 4px; box-shadow: 0 14px 30px -16px rgba(20,16,10,0.35); transform: rotate(-1.25deg); }
.note-photo.old-photo img { border: none; border-radius: 2px; }
.note-photo-cap { margin-top: 10px; font-family: 'Fraunces', serif; font-style: italic; font-size: 12.5px; line-height: 1.4; color: var(--ink-50); text-align: center; }
@media (max-width: 900px) { .note-inner.note-with-photo { grid-template-columns: 1fr; gap: 30px; } .note-photo { max-width: 280px; margin: 0 auto; width: 100%; } .note-photo.old-photo { transform: rotate(-0.75deg); } }

.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; }

/* ═══════ postcode checker, unmissable version ═══════ */
.pc-strip-big { background: var(--accent); border-bottom: none; padding: 26px 32px; }
.pc-strip-big .pc-strip-inner { max-width: 1160px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.pc-strip-big .pc-strip-copy { display: flex; flex-direction: column; gap: 3px; }
.pc-strip-big .pc-strip-label { color: var(--white); font-family: 'Fraunces', serif; font-size: clamp(19px, 2vw, 24px); font-weight: 600; letter-spacing: -0.01em; text-transform: none; }
.pc-strip-big .pc-strip-sub { color: rgba(255,255,255,0.85); font-size: 13px; }
.pc-strip-big .postcode-field { flex: 1; min-width: 300px; max-width: 460px; background: var(--white); border: none; box-shadow: 0 2px 14px rgba(0,0,0,0.14); }
.pc-strip-big .postcode-field input { font-size: 15px; padding: 16px 16px; }
.pc-strip-big .postcode-btn { font-size: 13px; padding: 0 26px; }
/* v42 fix: result text must read on the dark green band (was accent-on-accent / grey-on-green) */
.pc-strip-big .pc-result { flex-basis: 100%; margin-top: 4px; }
.pc-strip-big .pc-result.good { color: var(--white); }
.pc-strip-big .pc-result.bad { color: rgba(255,255,255,0.92); }
.pc-strip-big .pc-result a { color: var(--white); }
@media (max-width: 700px) {
  .pc-strip-big { padding: 22px 20px; }
  .pc-strip-big .postcode-field { min-width: 100%; }
}

/* ═══════ render hardening: never let browser dark modes invert the site ═══════ */
:root { color-scheme: only light; }
.hc-foot { background: rgba(12, 12, 12, 0.78); -webkit-backdrop-filter: blur(6px); }
.hc-foot-inner, .hc-foot-inner span { color: rgba(255, 255, 255, 0.92); }
.hc-foot-inner svg { color: #7fb894; }

/* hero must be full-bleed: the section-padding normalisation must not touch it */
.hero-cine { padding: 0; }
.hc-foot { width: 100%; }

/* hero: golden log-store shot, keep the bag clear of the copy */
.hc-bg { object-position: 72% 60%; }
@media (max-width: 640px) { .hc-bg { object-position: 68% 55%; } }

/* ═══════ v36: quantity chips, admin run bars, outgoing stock ═══════ */
.qty-chips { display: flex; flex-wrap: wrap; gap: 7px; }
.qty-chip { min-width: 46px; min-height: 42px; padding: 8px 10px; border: 1px solid var(--line); background: var(--white); cursor: pointer; font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 600; color: var(--black); transition: border-color 0.12s, background 0.12s; }
.qty-chip:hover { border-color: var(--ink-50); }
.qty-chip.on { border-color: var(--black); box-shadow: inset 0 0 0 1px var(--black); background: var(--off-white); }
.qty-chip.more { font-size: 12.5px; font-weight: 700; letter-spacing: 0.02em; color: var(--ink-70); }
.qty-call-note { font-size: 12px; color: var(--ink-50); margin-top: 8px; }
.qty-call-note a { border-bottom: 1px solid var(--ink-30); font-weight: 600; color: var(--black); }
.chips-live { display: flex; align-items: baseline; gap: 12px; margin-top: 12px; }

/* admin: AM/PM run load bars */
.run-bars { display: grid; gap: 6px; margin: 10px 0 4px; max-width: 520px; }
.run-bar-row { display: grid; grid-template-columns: 34px 1fr 92px; align-items: center; gap: 10px; font-size: 11.5px; color: var(--ink-50); }
.run-bar { height: 12px; background: var(--off-white); border: 1px solid var(--line); position: relative; overflow: hidden; }
.run-bar i { position: absolute; inset: 0 auto 0 0; background: var(--black); }
.run-bar.full i { background: #b3341f; }
.run-lbl { font-weight: 700; letter-spacing: 0.08em; }
.run-cap-note { font-size: 11.5px; color: var(--ink-50); }

/* admin: outgoing stock */
.out-toggle { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.out-row { display: flex; gap: 10px; align-items: baseline; padding: 6px 0; border-bottom: 1px solid var(--line); font-size: 13px; }
.out-n { font-weight: 700; min-width: 58px; font-variant-numeric: tabular-nums; }

/* ═══ v37: photo thumbs in choice grids (v72: squared site-wide, soft 6px corners,
   matching the bundle windows the owner squared in v71 — sizes and photos unchanged) ═══ */
.bag-toggle button.has-circ { flex-direction: row; align-items: center; gap: 11px; }
.bt-circ { width: 44px; height: 44px; border-radius: 6px; overflow: hidden; flex: 0 0 44px; border: 1px solid var(--line); background: var(--off-white); }
.bt-circ img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 6px; }
.bag-toggle button.on .bt-circ { border-color: var(--black); }
.bt-txt { display: flex; flex-direction: column; gap: 3px; min-width: 0; }

/* ═══ v37: bundle-first panel on the firewood buy box ═══ */
.fw-bundle-panel .pi-price-row { margin-top: 2px; }
.fw-bundle-panel .pi-vat { margin-bottom: 14px; }
.fw-bundle-panel .pi-includes { border-top: none; margin-top: 0; padding-top: 0; margin-bottom: 18px; }
.fw-bundle-panel .add-btn { margin-top: 2px; }
.fb-link { font-size: 12px; margin-top: 10px; }
.fb-link a { border-bottom: 1px solid var(--ink-30); font-weight: 600; }
.fb-link a:hover { border-color: var(--black); }

/* ═══ v37: slim media column on the two nav product pages ═══ */
@media (min-width: 1001px) {
  .product-layout.pl-slim { grid-template-columns: 1fr 2fr; gap: 44px; }
  .pl-slim .gv-thumb { width: 52px; height: 52px; }
}
/* v37: full-bleed heroes carry their padding on the inner container (like .hero-cine) */
.rv-hero { padding: 0; }
.band { padding: 0; }

/* v38: buy column runs to the menu's right edge on the two product pages; Most popular tag */
.pl-slim .tier-buy { max-width: none; }
.pl-slim .pi-blurb { max-width: 640px; }
.bag-toggle button { position: relative; }
.bt-tag { position: absolute; top: -9px; right: 10px; background: var(--accent); color: var(--white); font-size: 9.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 3px 9px; border-radius: 999px; }
/* v82 (item 1): the Savers tile in the "Pick your bundle" grid gets the same standout
   treatment as its shop-grid card — a bigger, bolder ribbon and a tinted accent border */
.bag-toggle button[data-bundle="sb"] { border-color: var(--accent); box-shadow: inset 0 0 0 1.5px var(--accent); background: rgba(45,106,63,0.05); }
.bag-toggle button[data-bundle="sb"].on { box-shadow: inset 0 0 0 2px var(--accent); }
.bag-toggle button[data-bundle="sb"] .bt-tag { font-size: 11px; padding: 5px 12px; top: -11px; box-shadow: 0 4px 12px -3px rgba(45,106,63,0.55); }

/* v39: choice grids collapse to a single dropdown-style row once picked */
.bag-toggle.collapsed { display: block; }
.bag-toggle.collapsed button:not(.on) { display: none; }
.bag-toggle.collapsed button.on { width: 100%; }
.bag-toggle.collapsed button.on::after {
  content: ''; margin-left: auto; width: 9px; height: 9px; flex: none;
  border-right: 2px solid var(--ink-50); border-bottom: 2px solid var(--ink-50);
  transform: rotate(45deg) translateY(-2px);
}
.bag-toggle.collapsed button.on .bt-tag { display: none; }
.wood-toggle button, .bag-toggle button { display: flex; align-items: center; gap: 12px; }

/* v40: home create-your-own section */
.cyo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; max-width: 1160px; margin: 0 auto; }
.cyo-card { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px; background: var(--white); border: 1px solid var(--line); padding: 28px 20px 24px; transition: border-color 0.15s, transform 0.15s; }
.cyo-card:hover { border-color: var(--black); transform: translateY(-2px); }
.cyo-circ { width: 84px; height: 84px; border-radius: 6px; overflow: hidden; border: 1px solid var(--line); } /* v72: squared */
.cyo-circ img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cyo-name { font-family: 'Fraunces', serif; font-size: 18px; font-weight: 600; letter-spacing: -0.01em; }
.cyo-sub { font-size: 12.5px; color: var(--ink-50); line-height: 1.5; }
.cyo-cta { max-width: 1160px; margin: 26px auto 0; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; border: 1px solid var(--line); background: var(--white); padding: 20px 24px; }
.cyo-cta p { font-size: 13.5px; color: var(--ink-70); max-width: 640px; }
@media (max-width: 1000px) { .cyo-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .cyo-grid { grid-template-columns: 1fr 1fr; gap: 10px; margin: 0 20px; } .cyo-card { padding: 20px 12px 18px; } .cyo-circ { width: 64px; height: 64px; } .cyo-cta { margin: 20px 20px 0; } }
.qty-hint { font-size: 12.5px; color: var(--ink-50); padding: 4px 0; }
.add-btn:disabled { opacity: 0.45; cursor: not-allowed; }

/* VAN-BOARD-V2-BLOCK — admin deliveries: van/run boxes, drag and drop, load bars */
.van-board { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 10px; margin: 12px 0 4px; }
.vr-box { border: 1px solid var(--line); background: var(--off-white); border-radius: 3px; min-height: 86px; display: flex; flex-direction: column; }
.vr-box.dragover { outline: 2px dashed var(--black); outline-offset: -3px; background: #f2efe7; }
.vr-head { display: flex; justify-content: space-between; align-items: center; gap: 8px; padding: 8px 10px 6px; cursor: pointer; }
.vr-head .vr-t { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.vr-load { display: flex; align-items: center; gap: 7px; padding: 0 10px 6px; font-size: 11px; color: var(--ink-50); }
.vr-bar { flex: 1; height: 7px; background: var(--line); border-radius: 4px; overflow: hidden; }
.vr-bar i { display: block; height: 100%; background: var(--black); }
.vr-bar.warn i { background: #b45309; }
.vr-bar.over i { background: #b3341f; }
.vr-load .vr-num.warn { color: #b45309; font-weight: 700; }
.vr-load .vr-num.over { color: #b3341f; font-weight: 700; }
.vr-warnnote { padding: 0 10px 6px; font-size: 10.5px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.vr-warnnote.warn { color: #b45309; }
.vr-warnnote.over { color: #b3341f; }
.vr-body { padding: 2px 8px 8px; display: flex; flex-direction: column; gap: 4px; min-height: 30px; flex: 1; }
.vr-drop { border: 1px solid var(--line); background: var(--white); border-radius: 2px; padding: 6px 8px; font-size: 12px; line-height: 1.45; cursor: grab; display: flex; justify-content: space-between; gap: 6px; align-items: baseline; }
.vr-drop:active { cursor: grabbing; }
.vr-drop.dragging { opacity: 0.45; }
.vr-drop .vd-be { white-space: nowrap; color: var(--ink-50); font-size: 11px; }
.vr-empty { font-size: 11.5px; color: var(--ink-30); padding: 4px 2px; }
.vr-tools { display: flex; gap: 6px; align-items: center; padding: 0 10px 9px; }
.vr-tools select { font-family: 'Roboto', sans-serif; font-size: 11px; border: 1px solid var(--ink-30); padding: 4px 6px; background: var(--white); }
.vr-tools button { font-family: 'Roboto', sans-serif; font-size: 11px; border: 1px solid var(--ink-30); background: var(--white); padding: 4px 8px; cursor: pointer; }
.vr-tray { border-style: dashed; background: var(--white); }
.addvan-menu { display: inline-flex; gap: 6px; align-items: center; }
.addvan-menu button { font-family: 'Roboto', sans-serif; font-size: 11px; border: 1px solid var(--ink-30); background: var(--white); padding: 6px 9px; cursor: pointer; }

/* V43-CSS-BLOCK — bag-type info panels, Saver Oak upgrade toggle, van board columns */
.bag-info-wrap { margin-top: 18px; }
.bag-info-wrap[hidden], .bag-info[hidden] { display: none; }
.bag-info { border: 1px solid var(--line); border-left: 2px solid var(--accent); background: var(--off-white); padding: 16px 18px; }
.bag-info + .bag-info { margin-top: 10px; }
.bag-info .bi-t { font-size: 10.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-50); margin-bottom: 10px; }
.bag-info ul { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.bag-info li { font-size: 12.5px; color: var(--ink-70); display: flex; gap: 8px; align-items: flex-start; line-height: 1.5; }
.bag-info li svg { flex-shrink: 0; color: var(--accent); margin-top: 3px; }
.fb-upgrade { display: flex; align-items: center; gap: 11px; border: 1px solid var(--line); border-left: 2px solid var(--accent); background: var(--off-white); padding: 12px 14px; margin: 0 0 16px; cursor: pointer; }
.fb-upgrade[hidden] { display: none; }
.fb-upgrade input { width: 18px; height: 18px; accent-color: var(--accent); flex-shrink: 0; cursor: pointer; margin: 0; }
.fb-upgrade .fbu-txt { display: flex; flex-direction: column; gap: 1px; }
.fb-upgrade .fbu-txt strong { font-size: 13px; font-weight: 600; }
.fb-upgrade .fbu-txt em { font-style: normal; font-size: 12px; font-weight: 700; color: var(--accent); }
#piUpgrade { margin: 14px 0 4px; }
/* van board v3: vans as columns left to right, AM boxes on the top row, PM underneath */
.van-board { display: flex; align-items: stretch; gap: 10px; margin: 12px 0 4px; overflow-x: auto; padding-bottom: 4px; }
.van-col { flex: 1 1 0; min-width: 210px; display: flex; flex-direction: column; gap: 10px; }
.van-col .vr-box { flex: 1 1 0; }
.van-col-tray .vr-box { height: 100%; }
.vr-box.vr-off { border-style: dashed; background: transparent; opacity: 0.55; }
.vr-box.vr-off .vr-head { cursor: default; }

/* V44-CSS-BLOCK — quantity dropdown-table picker + the single checkout red (--buy) */
:root { --buy: #B3402A; --buy-deep: #96351F; }
.qty-dd { width: 100%; }
.qty-dd-head { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 12px; text-align: left; padding: 13px 14px; min-height: 48px; border: 1px solid var(--black); background: var(--white); cursor: pointer; font-family: 'Inter', sans-serif; font-size: 13.5px; font-weight: 600; color: var(--black); transition: background 0.12s; }
.qty-dd-head:hover { background: var(--off-white); }
.qty-dd-head:disabled { border-color: var(--line); color: var(--ink-50); cursor: not-allowed; background: var(--white); }
.qty-dd-head .qdh-chev { width: 8px; height: 8px; border-right: 1.8px solid currentColor; border-bottom: 1.8px solid currentColor; transform: rotate(45deg) translateY(-2px); transition: transform 0.15s; flex-shrink: 0; }
.qty-dd-head[aria-expanded="true"] .qdh-chev { transform: rotate(225deg) translateY(-2px); }
.qty-dd-body { border: 1px solid var(--black); border-top: none; background: var(--white); }
.qty-dd-body[hidden] { display: none; }
.qty-dd-body .tier-table { border: none; margin-top: 0; border-radius: 0; }
.qty-dd-body .tier-note { margin: 0; padding: 9px 14px 12px; border-top: 1px solid var(--line); }
.qty-dd-body .tier-table.hidden, .qty-dd-body .tier-note.hidden { display: none; }
/* checkout-flow CTAs go deep red; add-to-cart stays black */
.btn.buy { background: var(--buy); border-color: var(--buy); color: #fff; }
.btn.buy:hover { background: var(--buy-deep); border-color: var(--buy-deep); color: #fff; }
.cart-checkout-btn.buy { background: var(--buy); }
.cart-checkout-btn.buy:hover { background: var(--buy-deep); }
/* every "you save" reads in the same red */
.tr-save, .tier-saving, .pcard-save, .pi-save, .value-verdict .save-num { color: var(--buy); }
/* password validation errors */
.pw-error { color: var(--buy) !important; }
/* admin van board: split bookings + cross-date drop targets */
.vd-side { display: flex; flex-direction: column; align-items: flex-end; gap: 3px; flex-shrink: 0; }
.vd-split { font-family: 'Roboto', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; border: 1px solid var(--ink-30); background: var(--white); padding: 3px 7px; cursor: pointer; color: var(--ink-70); }
.vd-split:hover { border-color: var(--black); color: var(--black); }
.vr-drop.vr-splitrow { border-style: dashed; cursor: pointer; }
.order-card.dragover { outline: 2px dashed var(--black); outline-offset: -3px; }

/* v46: hero trust bar items spread across the full bar */
.hc-foot-inner { justify-content: space-between; }
@media (max-width: 700px) { .hc-foot-inner { justify-content: flex-start; } }

/* v47: guide flash when the buy button is pressed before choices are made */
@keyframes guideFlash { 0%, 100% { box-shadow: none; } 30% { box-shadow: 0 0 0 3px var(--buy, #B3402A); } 65% { box-shadow: 0 0 0 3px var(--buy, #B3402A); } }
.guide-flash { animation: guideFlash 1.6s ease; }

/* v82 (item 5) added a persistent pulsing "next unanswered question" glow (.next-glow /
   nextGlowPulse) here. Removed in v87 at the owner's request (looked awful) - the click-triggered
   guide-flash above (.guide-flash / guideFlash, fired when Add to cart is pressed with unanswered
   questions) is untouched and still works exactly as before. */

/* v47b: savings unmissable on the product pages */
.tier-saving { font-size: 15px; font-weight: 700; color: var(--buy, #B3402A); background: rgba(179, 64, 42, 0.08); border-left: 3px solid var(--buy, #B3402A); padding: 8px 12px; margin-top: 10px; display: inline-block; }
.tier-saving:empty { display: none; }
.tr-save { font-weight: 700; font-size: 13px; }

/* V48-CSS-BLOCK — design audit fixes */
/* the hidden attribute always wins: .add-btn and friends set display and were overriding it,
   which left the guide "Add to cart" button visible after a bundle was picked */
[hidden] { display: none !important; }
/* cart and checkout grids: children may never force the page wider than the viewport */
.checkout-layout > * { min-width: 0; }
/* the live total row keeps no dead space while nothing is picked */
.chips-live:has(.tl-total:empty) { display: none; }
/* v89 (item 5): the mobile "You save" 4-column override this used to need is gone along
   with the per-bag column — the base 3-column .tier-row rule (bags / total / save) already
   fits comfortably at every mobile width, and tr-save is visible by default. */
/* mobile trust-number bands: column dividers sit between the two columns (never on the
   outer edge), and a lone stat on the last row spans the full width instead of leaving
   an empty cell beside it */
@media (max-width: 1000px) {
  /* bands that open with the .lead review stat (home): stats start at child 2 */
  .trust-numbers-inner .trust-num.lead ~ .trust-num:nth-child(odd) { border-right: none; }
  .trust-numbers-inner .trust-num.lead ~ .trust-num:nth-child(even):not(:last-child) { border-right: 1px solid var(--line); }
  .trust-numbers-inner .trust-num:last-child:nth-child(even) { grid-column: 1 / -1; border-right: none; }
  /* lead-less bands (product pages): stats start at child 1, odd dividers already correct */
  .trust-numbers-inner > .trust-num:first-child:not(.lead) ~ .trust-num:last-child:nth-child(odd) { grid-column: 1 / -1; border-right: none; }
}

/* V49-VANFIX-BLOCK — van-run boxes grow with their bookings; a disabled "no run" cell can never sit over a card and swallow its clicks or drags */
.van-col .vr-box { flex: 1 1 auto; }
.van-col .vr-box:not(.vr-off) { position: relative; z-index: 1; }
.vr-box.vr-off { position: relative; z-index: 0; }

/* V52-MOBILE-BLOCK — deep mobile and tablet polish (July 2026)
   16px form text on touch widths (stops iOS focus zoom), safe-area padding for notched phones,
   landscape-phone sticky bar, tidy checkout steps, comfortable tap targets, tablet grid tidiness. */
@media (max-width: 1000px) {
  .field input, .field textarea, .field select { font-size: 16px; }
  .postcode-field input, .pc-strip-big .postcode-field input { font-size: 16px; }
  .discount-row input, .pc-result .waitlist-row input { font-size: 16px; }
  .tier-row:not(.head) { min-height: 44px; }
  .mobile-menu.open { box-shadow: 0 24px 48px -18px rgba(0,0,0,0.28); }
}
/* the third card in a 2-up product grid sits centred instead of leaving a hole (tablet) */
@media (min-width: 561px) and (max-width: 1000px) {
  .shop-grid > *:last-child:nth-child(odd) { grid-column: 1 / -1; max-width: calc(50% - 7px); width: 100%; margin: 0 auto; }
}
/* checkout / confirmation step indicator: no dangling connector lines when it wraps */
@media (max-width: 560px) {
  .co-steps { gap: 10px 16px; }
  .co-step-line { display: none; }
  .co-step { font-size: 10px; }
  .co-step em { width: 22px; height: 22px; font-size: 12px; }
}
/* notched phones: keep the sticky bar and drawer footer above the home indicator */
.sticky-cta { padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px)); }
.cart-foot { padding-bottom: calc(22px + env(safe-area-inset-bottom, 0px)); }
@media (max-width: 1000px) {
  body { padding-bottom: calc(84px + env(safe-area-inset-bottom, 0px)); }
}
/* landscape phones: a short viewport does not lose a third of its height to the sticky bar */
@media (max-height: 500px) {
  .sticky-cta { display: none !important; }
  .fw-minibar { display: none !important; }
  body { padding-bottom: 0 !important; }
}

/* V53-TOAST — on touch widths the toast rises clear of the sticky bar / drawer checkout button */
@media (max-width: 1000px) {
  .toast { bottom: calc(100px + env(safe-area-inset-bottom, 0px)); left: 16px; right: 16px; max-width: none; }
}

/* V54-MOBILE-POLISH — owner round, July 2026.
   1) Credentials strip on phones and tablets: four uniform text cells in a clean aligned
      2x2 grid. The Woodsure roundel image only renders on the desktop strip; the mark
      still leads the accreditation page and the home bag-anatomy close-up.
   2) Trust bands (home + firewood): the review lead runs full width, then the three
      stats sit as one deliberate compact 3-up row instead of 2 + 1 with a lonely stat. */
@media (max-width: 1000px) {
  .creds-strip-inner { grid-template-columns: 1fr 1fr; gap: 16px 18px; align-items: start; }
  .creds-strip-inner .cred-badge { display: none; }
  .creds-strip-inner .cred { display: flex; align-items: flex-start; }
  .creds-strip-inner .cred-text strong { font-size: 13.5px; line-height: 1.3; }

  .trust-numbers-inner:has(.trust-num.lead) { grid-template-columns: repeat(3, 1fr); gap: 0; align-items: start; }
  .trust-numbers-inner:has(.trust-num.lead) .trust-num:nth-child(n) { grid-column: auto; text-align: center; padding: 0 10px; border-right: 1px solid var(--line); }
  .trust-numbers-inner:has(.trust-num.lead) .trust-num:nth-child(n):last-child { grid-column: auto; border-right: none; }
  .trust-numbers-inner:has(.trust-num.lead) .trust-num.lead:nth-child(n) { grid-column: 1 / -1; border-right: none; border-bottom: 1px solid var(--line); text-align: left; padding: 0 0 16px; margin-bottom: 18px; }
}
@media (max-width: 480px) {
  .trust-numbers-inner:has(.trust-num.lead) .trust-num { padding: 0 6px; }
  .trust-numbers-inner:has(.trust-num.lead) .trust-num .big { font-size: 24px; }
  .trust-numbers-inner:has(.trust-num.lead) .trust-num .lbl { font-size: 9px; letter-spacing: 0.1em; }
}

/* V54-IMG-PLACEHOLDER — while a lazy photo is still arriving, its box shows a soft warm
   neutral instead of stark white, so a slow connection never reads as a broken page */
.yard-shot img, .anat-img img, .note-photo img, .team-shot img, .collect-img img,
.pcard-img img, .cyo-circ, .cyo-circ img, .gv-frame img, .gv-thumb img,
.contact-card-photo img, .moment-photo img { background-color: #ece7dc; }

/* V55-MASTER1-BLOCK — owner master list items 1-8 (customer side):
   topbar moisture stat, wood greyout pill, sundry steps in the firewood buy box */
.tb-moist { white-space: nowrap; }
@media (max-width: 700px) { .tb-moist, .tb-moist-sep { display: none; } }
/* item 2: woods without live Easy variants grey out with a small "Not in Stock" pill */
.wood-toggle button.oos { opacity: 0.45; cursor: not-allowed; background: var(--off-white); }
.wood-toggle button.oos:hover { border-color: var(--line); }
.bt-oos { position: absolute; top: -9px; right: 10px; background: var(--ink-50, #777); color: var(--white); font-size: 9px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 3px 9px; border-radius: 999px; pointer-events: none; }
.bag-toggle.collapsed button.oos { display: none; }
/* items 4-5: the sundry steps (kindling, firelighters, smokeless coal) */
.fw-sundries { border-top: 1px solid var(--line); margin-top: 20px; padding-top: 18px; }
.fw-sundries[hidden] { display: none; }
.fws-title { font-family: 'Fraunces', serif; font-size: 19px; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 4px; }
.fws-sub { font-size: 12.5px; color: var(--ink-50); margin-bottom: 16px; }
.sundry-step { margin-bottom: 16px; }
.sundry-step:last-child { margin-bottom: 4px; }
.sundry-skip { display: flex; align-items: center; gap: 9px; font-size: 12.5px; font-weight: 600; color: var(--ink-70); cursor: pointer; padding: 4px 0 8px; min-height: 30px; }
.sundry-skip input { width: 17px; height: 17px; accent-color: var(--accent); flex-shrink: 0; cursor: pointer; margin: 0; }
.sundry-step .ss-field { margin-bottom: 0; }
.sundry-step .ss-field[hidden] { display: none; }
.ss-hint { font-size: 12px; color: var(--ink-50); margin: -2px 0 8px; }
.sundry-step .ss-head { min-height: 44px; padding: 11px 14px; }
.sundry-step .tier-table { margin-top: 0; }

/* V57-CSS-BLOCK — was/save reads "(Was £xxx.xx) Save £xx.xx"; the word does the job, so no strikethrough */
.pcard-was, .pi-was { text-decoration: none; }
/* admin bundle-contents editor rows */
.bc-row { display: flex; align-items: center; gap: 8px; padding: 7px 0; border-bottom: 1px solid var(--line); }
.bc-row select, .bc-row input { font-family: 'Roboto', sans-serif; font-size: 13px; border: 1px solid var(--ink-30); padding: 8px; background: var(--white); }
.bc-row .bc-prod { flex: 1; min-width: 0; }
.bc-row .bc-qty { width: 56px; text-align: center; }
.bc-row .bc-bag { width: 110px; }
.bc-row .bc-del { border: 1px solid var(--ink-30); background: var(--white); padding: 6px 9px; cursor: pointer; font-family: 'Roboto', sans-serif; }

/* v60: the four bundle options 50% larger; buy buttons full width in checkout red */
#fwBundleSel.bag-toggle button { padding: 18px 21px; gap: 18px; }
#fwBundleSel .bt-circ { width: 66px; height: 66px; }
#fwBundleSel .bt-t { font-size: 20px; }
#fwBundleSel .bt-s { font-size: 17px; }
#fwBundleSel .bt-tag { font-size: 11px; padding: 4px 12px; top: -11px; }
#fwBuy .add-btn { width: 100%; max-width: none; background: var(--buy, #B3402A); border-color: var(--buy, #B3402A); color: var(--white); }
#fwBuy .add-btn:hover { background: #9a3524; border-color: #9a3524; }
@media (max-width: 640px) {
  #fwBundleSel.bag-toggle button { padding: 14px 16px; gap: 14px; }
  #fwBundleSel .bt-circ { width: 54px; height: 54px; }
  #fwBundleSel .bt-t { font-size: 17px; }
  #fwBundleSel .bt-s { font-size: 14px; }
}
#fwBundleSel.bag-toggle button .bt-circ, #fwBundleSel .has-circ .bt-circ { width: 66px !important; height: 66px !important; }
@media (max-width: 640px) { #fwBundleSel.bag-toggle button .bt-circ, #fwBundleSel .has-circ .bt-circ { width: 54px !important; height: 54px !important; } }
#fwBundleSel .bt-circ { flex: 0 0 66px !important; }
@media (max-width: 640px) { #fwBundleSel .bt-circ { flex: 0 0 54px !important; } }
/* v71: the bundle selection windows carry SQUARE pictures (soft 6px corners), same size.
   v72: every .bt-circ is square now (rule above), so this scoped rule is a no-op kept
   for the record. */
#fwBundleSel .bt-circ, #fwBundleSel .bt-circ img { border-radius: 6px; }

/* NATIONAL-CSS-BLOCK — the TPN pallet page: letter styling + hidden-link state */
.nat-letter p { margin-bottom: 12px; }
.nat-letter p:last-child { margin-bottom: 0; }
.nat-letter a { border-bottom: 1px solid var(--ink-30); font-weight: 600; }
[data-national-link].nat-hidden { display: none !important; }
#natSize button { min-height: 64px; justify-content: center; }

/* V64-POLISH: card links keep a level baseline and a finger-sized hit area */
.pd-card p { margin-bottom: 2px; }
.pd-more::after { content: ""; position: absolute; left: -6px; right: -6px; top: -8px; bottom: -12px; }
#sgLink { position: relative; display: inline-block; }
#sgLink::after { content: ""; position: absolute; left: -8px; right: -8px; top: -14px; bottom: -14px; }
@media (max-width: 640px) {
  .cart-line-controls .mini-step button { width: 38px; height: 38px; font-size: 16px; }
  .cart-line-controls .mini-step span { width: 34px; font-size: 13px; }
  .cart-line-remove { font-size: 11px; padding: 12px 8px; margin: -6px 0; }
}

/* V67-BLOCK — owner batch, July 2026 (deploy v67) */

/* items 2-3: product selection headings roughly doubled, on the firewood buy box
   (incl. the sundry asks) and the national buy box.
   v70 (item 2): the selection headings read in BLACK, keeping the doubled size. */
#fwBuy .pi-field > label, #fwNatBuy .pi-field > label {
  font-size: 20px;
  letter-spacing: 0.08em;
  color: var(--black);
  margin-bottom: 10px;
  line-height: 1.3;
}
@media (max-width: 640px) {
  #fwBuy .pi-field > label, #fwNatBuy .pi-field > label { font-size: 17px; }
}

/* item 4: on the selection cards the description sits BESIDE the title, in bigger type */
.bag-toggle button.has-circ .bt-txt { flex-direction: row; flex-wrap: wrap; align-items: baseline; column-gap: 8px; row-gap: 2px; }
.bag-toggle .bt-s { font-size: 14px; }
#fwBundleSel .bt-s { font-size: 18px; }
@media (max-width: 640px) {
  .bag-toggle .bt-s { font-size: 13px; }
  #fwBundleSel .bt-s { font-size: 15px; }
}

/* item 5: the Barrow/Easy comparison headings, bold and section-heading sized */
.pd-bag h4 { font-size: clamp(24px, 2.6vw, 32px); font-weight: 700; }

/* item 9: the price-per-bag line in the recommender head */
.sg-drop { color: var(--buy, #B3402A); font-weight: 700; margin-top: 2px; }

/* item 22: savings pop — darker, bigger Was; bigger red save figures everywhere in the buy box */
.pi-was { color: var(--ink-70); font-size: 22px; }
.pi-save { font-size: 18px; }
.tr-save { font-size: 15px; }
.tier-saving { font-size: 17px; }
@media (max-width: 640px) {
  .pi-was { font-size: 19px; }
  .pi-save { font-size: 16px; }
}

/* item 23: the black trolley in the header cart */
.nav-cart-icon { width: 20px; height: 20px; flex: 0 0 auto; display: block; }

/* item 24: the black topbar and the nav bar, bigger (taller bars, larger text).
   v70 (item 8): the phone number is gone from the bar and Contact sits in its place on
   the right. Links never wrap ("National Delivery" stays on one line at 1280): every
   link is nowrap and the sizes are balanced so both sides fit beside the centred logo. */
.topbar { font-size: 15px; padding: 12px 0; letter-spacing: 0.08em; }
.topbar-inner { gap: 14px; }
nav { padding: 15px 0; }
.nav-inner { gap: 16px; max-width: 1300px; }
.nav-left { gap: 13px; }
.nav-left a { font-size: 14px; letter-spacing: 0.03em; white-space: nowrap; }
.nav-contact {
  font-size: 14px; font-weight: 700; letter-spacing: 0.03em; text-transform: uppercase;
  color: var(--black); white-space: nowrap; position: relative; transition: color 0.2s;
}
.nav-contact::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-contact:hover::after { transform: scaleX(1); }
.nav-contact.active::after { transform: scaleX(1); background: var(--black); height: 1.5px; bottom: -6px; }
.nav-right { gap: 14px; }
.nav-account { font-size: 14px; letter-spacing: 0.08em; white-space: nowrap; }
.nav-cart { font-size: 14px; gap: 8px; padding: 10px 14px; white-space: nowrap; }
.mobile-menu a { font-size: 16px; padding: 16px 24px; }
@media (min-width: 1000px) and (max-width: 1180px) {
  .nav-left { gap: 11px; }
  .nav-left a { font-size: 13px; }
  .nav-contact { font-size: 13px; }
  .nav-account { font-size: 13px; }
  .nav-cart { font-size: 13px; padding: 9px 12px; }
}
@media (max-width: 1000px) {
  .nav-contact { display: none; }
}
@media (max-width: 500px) {
  .topbar { font-size: 13px; padding: 10px 0; }
  .nav-cart { font-size: 14px; padding: 10px 12px; }
  .nav-cart-icon { width: 18px; height: 18px; }
}

/* V69-BLOCK — audit fixes, July 2026 (deploy v69) */
/* The nav logo keeps its aspect ratio when the enlarged v67 nav squeezes the centre grid
   cell. Fixed height + max-width:100% was squashing the logo horizontally at desktop
   widths (ratio 3.0 instead of the natural 4.2). height:auto lets the capped width scale
   the height proportionally instead. */
.nav-inner .logo-img { height: auto; max-height: 47px; }
@media (max-width: 1000px) { .nav-inner .logo-img { max-height: 44px; } }
@media (max-width: 500px) { .nav-inner .logo-img { max-height: 36px; } }

/* V70-BLOCK — owner batch, July 2026 (deploy v70) */
/* item 19: the national hero's emphasis line, prominent and bold, linking to the details */
.nat-important { margin: -10px 0 22px; }
.nat-important a {
  display: inline-block; font-weight: 800; font-size: 15px; letter-spacing: 0.04em;
  color: var(--black); border-bottom: 2px solid var(--buy, #B3402A); padding-bottom: 2px; line-height: 1.5;
}
.nat-important a:hover { color: var(--buy, #B3402A); }
/* item 20: "VAT included" and "TPN fee added at checkout" noticeably more legible */
#fwNatBuy .pi-vat { font-size: 16px; font-weight: 600; color: var(--ink-70); }
@media (max-width: 640px) {
  .nat-important a { font-size: 13.5px; }
  #fwNatBuy .pi-vat { font-size: 14.5px; }
}

/* V77-CSS-BLOCK — the firewood page's postcode gate, the "← View bundles" back-link, and
   big-card treatment for the wood / bag-style selectors so they match the bundle cards. */
.fw-pcgate { border: 1px solid var(--line); background: var(--off-white); padding: 20px 22px; margin: 20px 0 28px; }
.fw-pcgate-ask .pc-strip-label { display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-50); margin-bottom: 5px; }
.fw-pcgate-ask .pc-strip-sub { display: block; font-size: 13px; color: var(--ink-70); margin-bottom: 14px; }
.fw-pcgate-ask .postcode-field { max-width: 420px; margin: 0; }
.fw-pcgate-ask .pc-result { margin-top: 12px; }
.fw-pcgate-neutral { font-size: 12px; color: var(--ink-50); margin-top: 10px; margin-bottom: 0; }
.fw-pcgate-known { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.fw-pcgate-msg { font-size: 14px; font-weight: 500; color: var(--accent); line-height: 1.5; }
.fw-pcgate-change { flex-shrink: 0; background: var(--white); border: 1px solid var(--ink-30); font-family: 'Inter', sans-serif; font-size: 11.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 9px 14px; cursor: pointer; color: var(--black); }
.fw-pcgate-change:hover { border-color: var(--black); }
@media (max-width: 640px) {
  .fw-pcgate { padding: 16px 16px; }
  .fw-pcgate-known { flex-direction: column; align-items: flex-start; }
}

/* v84: the collapsed confirmation strip — the gate shrinks down to this once a local or
   national postcode is confirmed, freeing up room above the buy box. Same component, far
   slimmer padding than the ask/known states. */
.fw-pcgate:has(#fwPcStrip:not([hidden])) { padding: 12px 18px; }
.fw-pcgate-strip { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.fw-pcgate-strip-txt { font-size: 12.5px; font-weight: 600; color: var(--ink-70); letter-spacing: 0.01em; }
@media (max-width: 640px) {
  .fw-pcgate-strip { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* v82 (item 8): "View bundles" becomes a clear, bold button control, not a small text link */
.view-bundles-link {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); border: 1.5px solid var(--black); border-radius: 4px;
  padding: 11px 20px; margin-bottom: 18px;
  font-family: 'Inter', sans-serif; font-size: 13.5px; font-weight: 700; letter-spacing: 0.02em;
  color: var(--black); cursor: pointer; transition: background 0.15s, color 0.15s; min-height: 44px;
}
.view-bundles-link:hover { background: var(--black); color: var(--white); border-color: var(--black); }

/* v82 (item 10): the small in-flow "Go Back" step control — the old view-bundles-link
   styling, kept lightweight so it never competes with the bold button above */
/* v91 (item 5): made much bigger and more noticeable per the owner — same wording/function,
   now a bordered box with larger type instead of a small underlined text link. */
.step-back-link { display: inline-flex; align-items: center; gap: 8px; background: var(--white); border: 2px solid var(--black); padding: 10px 18px; margin-bottom: 16px; font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 700; letter-spacing: 0.04em; color: var(--black); cursor: pointer; border-radius: 4px; min-height: 44px; }
.step-back-link:hover { background: var(--black); color: var(--white); }

/* item 3: the wood grid (Create my own) and the bag-style toggle carry the same big-card
   treatment as the bundle grid, so every selection step in the buy box reads consistently. */
#fwWood.bag-toggle button, #tbType.bag-toggle button, #fbBag.bag-toggle button { padding: 18px 21px; gap: 18px; }
#fwWood .bt-circ, #tbType .bt-circ, #fbBag .bt-circ { width: 66px; height: 66px; }
#fwWood .bt-t, #tbType .bt-t { font-size: 20px; }
#fwWood .bt-s, #tbType .bt-s { font-size: 17px; }
#fwWood.bag-toggle button .bt-circ, #fwWood .has-circ .bt-circ,
#tbType.bag-toggle button .bt-circ, #tbType .has-circ .bt-circ,
#fbBag.bag-toggle button .bt-circ, #fbBag .has-circ .bt-circ { width: 66px !important; height: 66px !important; flex: 0 0 66px !important; border-radius: 6px; }
@media (max-width: 640px) {
  #fwWood.bag-toggle button, #tbType.bag-toggle button, #fbBag.bag-toggle button { padding: 14px 16px; gap: 14px; }
  #fwWood .bt-circ, #tbType .bt-circ, #fbBag .bt-circ { width: 54px; height: 54px; }
  #fwWood .bt-t, #tbType .bt-t { font-size: 17px; }
  #fwWood .bt-s, #tbType .bt-s { font-size: 14px; }
  #fwWood.bag-toggle button .bt-circ, #fwWood .has-circ .bt-circ,
  #tbType.bag-toggle button .bt-circ, #tbType .has-circ .bt-circ { width: 54px !important; height: 54px !important; flex: 0 0 54px !important; }
}

/* item 3: the "+ Add an extra bag..." nudge (replacing the old "You save X against Y rate"
   line) reads in the same checkout red as every other save figure in the buy box. */
.tier-saving { color: var(--buy, #B3402A); font-weight: 600; }

/* TOWN-SEO-CSS-BLOCK (v78) — breadcrumbs, areas-strip, town facts panel, delivery-areas hub */
.crumbs { max-width: 1160px; margin: 0 auto; padding: 16px 32px 0; font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-50); display: flex; flex-wrap: wrap; align-items: center; gap: 7px; }
.crumbs a { color: var(--ink-50); }
.crumbs a:hover { color: var(--black); border-bottom: 1px solid var(--ink-30); }
.crumbs .crumb-sep { color: var(--ink-30); }
.crumbs .crumb-current { color: var(--black); }

.areas-strip { background: var(--off-white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 22px 32px; }
.areas-strip-inner { max-width: 1160px; margin: 0 auto; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; justify-content: center; text-align: center; }
.areas-strip-label { font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-50); }
.areas-strip-links { display: flex; flex-wrap: wrap; gap: 6px 16px; justify-content: center; align-items: center; }
.areas-strip-links a { font-size: 12.5px; font-weight: 600; color: var(--ink-70); border-bottom: 1px solid transparent; }
.areas-strip-links a:hover { color: var(--black); border-color: var(--ink-30); }
.areas-strip-links a.as-all { color: var(--accent); font-weight: 700; }

.town-hero-img { display: grid; grid-template-columns: 1fr 1.15fr; gap: 44px; align-items: center; max-width: 1160px; margin: 0 auto; padding: 8px 32px 56px; }
.town-hero-img img { width: 100%; aspect-ratio: 4/3.1; object-fit: cover; border: 1px solid var(--line); border-radius: 4px; display: block; }
.town-hero-img .thi-copy p { font-size: 14px; line-height: 1.75; color: var(--ink-70); margin-bottom: 14px; }

.town-facts { border: 1px solid var(--black); border-radius: 4px; background: var(--white); padding: 20px 22px; margin-top: 18px; }
.town-facts .tf-row { display: flex; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 13.5px; align-items: baseline; }
.town-facts .tf-row:last-child { border-bottom: none; }
.town-facts .tf-k { font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-50); width: 120px; flex-shrink: 0; }
.town-facts .tf-v { color: var(--ink); font-weight: 500; line-height: 1.5; }

.town-links .tl-label { font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-50); margin-bottom: 10px; }
.town-links .tl-row { display: flex; flex-wrap: wrap; gap: 8px; }
.town-links a { font-size: 12.5px; font-weight: 600; border: 1px solid var(--line); padding: 7px 12px; color: var(--ink-70); border-radius: 3px; }
.town-links a:hover { border-color: var(--black); color: var(--black); }

.da-grid { display: flex; flex-direction: column; gap: 30px; }
.da-county h3 { font-family: 'Fraunces', serif; font-weight: 500; font-size: 20px; margin-bottom: 12px; padding-bottom: 8px; border-bottom: 1px solid var(--black); }
.da-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.da-row { display: flex; justify-content: space-between; gap: 10px; border: 1px solid var(--line); padding: 10px 13px; font-size: 13px; font-weight: 600; color: var(--ink-70); }
.da-row:hover { border-color: var(--black); color: var(--black); }
.da-row .da-miles { color: var(--ink-30); font-weight: 500; font-size: 11.5px; }

@media (max-width: 1000px) {
  .town-hero-img { grid-template-columns: 1fr; gap: 24px; padding: 8px 20px 36px; }
  .crumbs { padding: 14px 20px 0; }
  .areas-strip { padding: 18px 20px; }
  .da-list { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .da-list { grid-template-columns: 1fr; }
}

/* V83 — postcode checker above the fold on the home page */
nav { padding: 9px 0; }
.hero-cine { min-height: min(calc(100vh - 168px), 760px); }
.hc-inner { padding: 84px 32px 34px; }
.hero-cine h1 { font-size: clamp(40px, 7.2vw, 92px); margin-bottom: 16px; }
.pc-strip-big { padding: 22px 32px; }
@media (max-width: 640px) {
  .hero-cine { min-height: min(calc(100vh - 210px), 560px); }
  .hc-inner { padding: 64px 20px 24px; }
  .pc-strip-big { padding: 18px 20px; }
}

/* V83b — hard cap so the checker clears the fold */
.hero-cine { height: min(calc(100vh - 175px), 720px); min-height: 400px; }
.hero-cine h1 { font-size: clamp(34px, 5.6vw, 72px); margin-bottom: 12px; }
.hc-inner { padding: 60px 32px 26px; }
.hc-sub { max-width: 620px; }
@media (max-width: 640px) {
  .hero-cine { height: min(calc(100vh - 205px), 520px); min-height: 340px; }
  .hero-cine h1 { font-size: clamp(30px, 9vw, 44px); }
  .hc-inner { padding: 40px 20px 20px; }
}

/* V83c — mobile fold */
@media (max-width: 640px) {
  .hero-cine { height: min(calc(100vh - 262px), 470px); min-height: 300px; }
  .pc-strip-big { padding: 14px 20px; }
  .pc-strip-big .pc-lede, .pc-strip-big p { margin-bottom: 6px; }
}

/* V83d — breathing room between menu items */
.nav-left { gap: 30px; }
.nav-right { gap: 26px; }
@media (max-width: 1180px) {
  .nav-left { gap: 20px; }
  .nav-right { gap: 18px; }
}

/* v104 (owner spec, items 6-7): click-to-enlarge lightbox for standalone photos only.
   `[data-lightbox]` is the ONLY opt-in marker that ever opens this overlay - no selector box,
   bundle/bag/wood/sundry card, nav button, add-to-basket or quantity control carries it
   anywhere in the markup, so there is no CSS or JS path back into a selection control. Pure
   overlay: fixed position, its own stacking context, never affects page layout/scroll position
   underneath (background scroll is only paused via body.wa-lb-open while it's open). */
.wa-lightbox { position: fixed; inset: 0; z-index: 9999; background: rgba(20,16,12,0.92); display: flex; align-items: center; justify-content: center; padding: 40px; }
.wa-lightbox[hidden] { display: none; }
body.wa-lb-open { overflow: hidden; }
.wa-lb-img { max-width: min(1400px, 100%); max-height: 100%; width: auto; height: auto; object-fit: contain; display: block; box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.wa-lb-close, .wa-lb-prev, .wa-lb-next { position: absolute; background: rgba(255,255,255,0.12); color: #fff; border: none; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.15s; }
.wa-lb-close:hover, .wa-lb-prev:hover, .wa-lb-next:hover { background: rgba(255,255,255,0.24); }
.wa-lb-close { top: 18px; right: 18px; width: 42px; height: 42px; font-size: 26px; line-height: 1; }
.wa-lb-prev, .wa-lb-next { top: 50%; transform: translateY(-50%); width: 48px; height: 48px; font-size: 16px; }
.wa-lb-prev { left: 12px; }
.wa-lb-next { right: 12px; }
@media (max-width: 640px) {
  .wa-lightbox { padding: 16px; }
  .wa-lb-close { top: 10px; right: 10px; width: 38px; height: 38px; }
  .wa-lb-prev, .wa-lb-next { width: 40px; height: 40px; }
  .wa-lb-prev { left: 6px; }
  .wa-lb-next { right: 6px; }
}
/* Standalone photos get a visual affordance (cursor only - no layout/size change) so it reads
   as clickable without touching any existing box/photo styling. */
[data-lightbox] { cursor: zoom-in; }

/* V105 — homepage hero image spans full width (supersedes the v91 contain treatment) */
.hc-bg { object-fit: cover; }

/* v109 (item 12): object-fit: cover never letterboxes or distorts at any width, so the only
   remaining job is making sure the CROP centres on something sensible across the full device
   range. Phone (<=640) and desktop/tablet-landscape (>640) already had their own tuned
   object-position (see the "mobile hero" / "golden log-store shot" rules above); this adds the
   missing MIDDLE step - portrait/narrow tablets (641-1024px) - so that band doesn't fall through
   to the desktop value, which was tuned for much wider boxes. Blended between the two existing
   tuned values; keeps the v105 cover behaviour untouched. */
@media (min-width: 641px) and (max-width: 1024px) {
  .hc-bg { object-position: 70% 58%; }
}

/* V106 — content grid spans the nav's full content box: left edge = the H of Home,
   right edge = the right edge of the basket box (nav-inner is 1300px incl. 32px pads). */
.container, .foot-inner, .lifestyle-grid, .cat-tiles, .path-tiles, .species-grid,
.pd-grid, .pd-bags, .section-head { max-width: 1236px; }

/* V107 — the "we can deliver" success state gets unmissable: a filled banner, bigger
   type, bigger tick, gentle pop-in. Works on the green home band (white-on-deep-green)
   and on light panels (green-on-cream) alike. */
.pc-success {
  display: flex; align-items: center; gap: 14px;
  background: var(--accent, #2d6a3f); color: #fff;
  padding: 16px 20px; border-radius: 10px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.18);
  animation: pcPopIn 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.pc-success .pc-tick { width: 38px; height: 38px; color: #e0a94c; animation-delay: 0.1s; }
.pc-success .pc-success-txt { font-size: 19px; font-weight: 800; line-height: 1.4; color: #fff; }
.pc-success .pc-success-txt a { color: #fff; }
.pc-strip-big .pc-success { background: rgba(255,255,255,0.14); border: 2px solid rgba(255,255,255,0.85); }
.pc-strip-big .pc-tick { color: #e0a94c; }
@keyframes pcPopIn { from { transform: scale(0.92); opacity: 0; } 60% { transform: scale(1.02); } to { transform: scale(1); opacity: 1; } }
@media (max-width: 640px) { .pc-success { padding: 13px 14px; gap: 10px; } .pc-success .pc-tick { width: 30px; height: 30px; } .pc-success .pc-success-txt { font-size: 16px; } }
@media (prefers-reduced-motion: reduce) { .pc-success { animation: none; } }
