/* ============================================================
   Lake and Fell — Stylesheet (v3 · map paper)
   Inspired by OS Explorer / Landranger sheet aesthetics.
   ============================================================ */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, ul, ol, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img, svg { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; background: none; border: 0; padding: 0; color: inherit; }
a { color: inherit; text-decoration: none; }
input, select, textarea { font: inherit; color: inherit; }

/* ---------- Variables — OS map palette ---------- */
:root {
  /* Map paper */
  --paper:        #EFE5CC;   /* warm OS Explorer cream */
  --paper-deep:   #E6D9B8;   /* aged paper */
  --paper-light:  #F6EFDB;
  --paper-shadow: rgba(110, 80, 30, 0.06);

  /* Ink */
  --ink:          #2B2418;   /* warm map black */
  --ink-soft:     #6B5C45;   /* muted brown */
  --ink-faint:    #A89B7E;
  --line:         #CFC0A0;   /* faded paper line */
  --line-dark:    #87764D;

  /* Palette tuned to the Lake and Fell logo (warm brown mountain + teal water) */
  --contour:      #8B3E1F;   /* mountain brown — matches logo silhouette */
  --contour-deep: #5C2810;
  --water:        #3A8FA5;   /* lake teal — matches logo reflection */
  --water-soft:   #5FA0B5;
  --footpath:     #C4633B;   /* public footpath red-orange */
  --bridleway:    #6FA84A;   /* bridleway green */
  --forest:       #4F6E3C;
  --crag:         #6F6357;

  /* States */
  --gold: #B89968;
  --warning: #B45A1F;

  /* Type — display font matches the Lake and Fell logo wordmark */
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", "Menlo", monospace;
  --font-narrow: "Inter", sans-serif;

  /* Sizing */
  --container-max: 1320px;
  --container-pad: clamp(20px, 4vw, 56px);

  /* Type scale */
  --fs-hero: clamp(2.8rem, 7vw, 6.2rem);
  --fs-section: clamp(1.9rem, 4vw, 3.2rem);
  --fs-medium: clamp(1.6rem, 3vw, 2.2rem);
  --fs-body: 1.0625rem;
  --fs-small: 0.875rem;
  --fs-tiny: 0.72rem;

  /* Rhythm */
  --space-section: clamp(90px, 12vw, 160px);
  --radius: 1px;
}

/* ---------- Body — map paper texture ---------- */
body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.62;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Paper noise grain (SVG turbulence, multiply) */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.45;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' seed='3'/><feColorMatrix values='0 0 0 0 0.21 0 0 0 0 0.17 0 0 0 0 0.10 0 0 0 0.35 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
}

/* OS-style 1km grid overlay (subtle) */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image:
    linear-gradient(rgba(85, 137, 166, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(85, 137, 166, 0.06) 1px, transparent 1px);
  background-size: 80px 80px;
  background-position: 0 0;
}

/* Make all real content sit above the overlays */
.site-header, main, .site-footer, .promo-bar, .demo-banner, .coords-cursor { position: relative; z-index: 2; }

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
  position: relative;
}
.container-narrow { max-width: 900px; margin: 0 auto; padding-left: var(--container-pad); padding-right: var(--container-pad); position: relative; }

/* ---------- Accessibility ---------- */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ---------- Cursor coordinates readout ---------- */
.coords-cursor {
  position: fixed;
  pointer-events: none;
  top: 0; left: 0;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--water);
  background: var(--paper);
  border: 1px solid var(--water-soft);
  padding: 3px 8px;
  letter-spacing: 0.05em;
  z-index: 100;
  transform: translate(14px, 14px);
  opacity: 0;
  transition: opacity 0.2s ease;
  white-space: nowrap;
}
.coords-cursor.is-visible { opacity: 0.85; }
@media (hover: none) {
  .coords-cursor { display: none; }
}

/* ---------- Promo bar ---------- */
.promo-bar {
  background: var(--water);
  color: var(--paper-light);
  text-align: center;
  font-family: var(--font-mono);
  font-size: var(--fs-tiny);
  letter-spacing: 0.1em;
  padding: 9px var(--container-pad);
  text-transform: uppercase;
}
.promo-bar strong { color: var(--paper); font-weight: 500; }

/* ---------- Demo banner ---------- */
.demo-banner {
  background: var(--ink);
  color: var(--paper-light);
  text-align: center;
  font-family: var(--font-mono);
  font-size: var(--fs-tiny);
  letter-spacing: 0.08em;
  padding: 7px var(--container-pad);
  text-transform: uppercase;
}

/* ---------- Header ---------- */
.site-header {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 112px;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
}
.brand-logo {
  display: block;
  height: 100px;
  width: auto;
  max-width: none;
}
.brand-wordmark {
  /* legacy class — still used in thank-you.html for an inline label.
     Kept for type styling there; not used in header/footer any more. */
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.5rem;
  letter-spacing: 0.01em;
  color: var(--ink);
}
.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 36px);
  font-size: 1.05rem;
}
.site-nav a {
  position: relative;
  padding: 8px 0;
  color: var(--ink);
  transition: color 0.2s ease;
}
.site-nav a:hover { color: var(--water); }
.site-nav a.is-active {
  color: var(--water);
}
.site-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--water);
}
.nav-cart {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.cart-count {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  background: var(--footpath);
  color: var(--paper);
  border-radius: 999px;
  min-width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
  transition: opacity 0.2s ease;
  font-weight: 500;
}
.cart-count[data-count="0"] { opacity: 0.35; background: var(--ink-soft); }

/* ============================================================
   MARGINALIA — corner/edge map annotations
   ============================================================ */

.marg {
  font-family: var(--font-mono);
  font-size: var(--fs-tiny);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.marg-rule {
  display: inline-block;
  width: 24px; height: 1px;
  background: var(--ink-soft);
}
.marg-line {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 18px;
}
.marg-line::before,
.marg-line::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line-dark);
  opacity: 0.4;
}
.marg-line .marg { flex-shrink: 0; }

/* Corner grid refs that sit on section corners */
.section-corner {
  position: absolute;
  font-family: var(--font-mono);
  font-size: var(--fs-tiny);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
  pointer-events: none;
}
.section-corner.tl { top: 18px; left: var(--container-pad); }
.section-corner.tr { top: 18px; right: var(--container-pad); }
.section-corner.bl { bottom: 18px; left: var(--container-pad); }
.section-corner.br { bottom: 18px; right: var(--container-pad); }

/* ============================================================
   HERO — modern split layout
   ============================================================ */

.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--paper-light);
  border-bottom: 1px solid var(--line);
  z-index: 2;
  padding: clamp(48px, 8vw, 100px) 0 clamp(60px, 8vw, 120px);
}
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(47,107,145,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47,107,145,0.08) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
}
.hero-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
}
.hero-content {
  max-width: 600px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: var(--fs-tiny);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-soft);
  margin-bottom: 28px;
}
.hero-eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--water);
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.8rem, 6.5vw, 5.4rem);
  line-height: 1.0;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin-bottom: 28px;
}
.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--water);
}
.hero-body {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 520px;
  margin-bottom: 36px;
}
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero-social {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
}
.hero-social .stars {
  color: var(--contour);
  letter-spacing: 2px;
  font-size: 0.95rem;
}
.hero-social-divider {
  width: 1px;
  height: 16px;
  background: var(--line-dark);
  opacity: 0.5;
}
.hero-social strong { color: var(--ink); font-weight: 500; }

/* ---------- Hero visual (framed print mockup) ---------- */
.hero-visual {
  position: relative;
  perspective: 1400px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
}
.hero-mockup-bg {
  position: absolute;
  inset: -20px;
  z-index: 0;
  background-image: url("/assets/images/lakes/rolling-hills.webp");
  background-size: cover;
  background-position: center;
  opacity: 0.38;
  filter: blur(2px);
  border: 1px solid var(--line);
}
.hero-mockup-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(239,229,204,0.6) 0%, rgba(239,229,204,0.1) 50%, rgba(47,107,145,0.15) 100%);
}
.hero-mockup {
  position: relative;
  z-index: 1;
  width: clamp(280px, 28vw, 420px);
  aspect-ratio: 3 / 4;
  background: linear-gradient(135deg, #C7A87E 0%, #9E7E54 50%, #8A6B45 100%);
  padding: 24px;
  box-shadow:
    0 30px 60px -20px rgba(43, 36, 24, 0.4),
    0 18px 36px -18px rgba(43, 36, 24, 0.3);
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.4s cubic-bezier(.18,.89,.32,1.28);
}
.hero-mockup-mat {
  width: 100%;
  height: 100%;
  background: var(--paper);
  padding: 14% 12% 22%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 0 1px rgba(43, 36, 24, 0.08);
  position: relative;
}
.hero-mockup-art {
  flex: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-mockup-art svg {
  width: 100%;
  height: 100%;
  max-width: 80%;
}
.hero-mockup-label {
  position: absolute;
  bottom: 8%;
  left: 0; right: 0;
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.hero-mockup-label small {
  display: block;
  margin-top: 4px;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  color: var(--ink-soft);
  text-transform: uppercase;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  transition: all 0.25s ease;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  border: 1px solid transparent;
  font-family: var(--font-body);
}
.btn-primary {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px;
  background: var(--contour);
}
.btn-primary:hover {
  background: var(--water);
  border-color: var(--water);
  transform: translateY(-1px);
}
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-secondary:hover {
  background: var(--ink);
  color: var(--paper);
}
.btn-text {
  padding: 16px 4px;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
}
.btn-text:hover { color: var(--water); border-bottom-color: var(--water); }
.btn-block { width: 100%; }
.btn-large { padding: 18px 34px; font-size: 1rem; }
.btn-small { padding: 10px 16px; font-size: 0.85rem; }

/* ---- Keyboard focus ring (visible only for keyboard/non-pointer nav) ---- */
:focus-visible {
  outline: 2px solid var(--water);
  outline-offset: 3px;
}
/* Suppress outline for mouse users on buttons since they already have hover states */
button:focus:not(:focus-visible),
a:focus:not(:focus-visible) { outline: none; }

/* ============================================================
   SPEC STRIP (replaces trust row)
   ============================================================ */

.spec-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-light);
}
.spec-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}
.spec-item {
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-right: 1px solid var(--line);
}
.spec-item:last-child { border-right: 0; }
.spec-icon {
  width: 24px; height: 24px;
  flex-shrink: 0;
  color: var(--water);
}
.spec-icon svg { width: 100%; height: 100%; }
.spec-label {
  font-family: var(--font-mono);
  font-size: var(--fs-tiny);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.3;
}
.spec-label small {
  display: block;
  margin-top: 3px;
  font-weight: 400;
  color: var(--ink-soft);
  letter-spacing: 0.06em;
  text-transform: none;
  font-size: 0.7rem;
}

/* ============================================================
   SECTIONS
   ============================================================ */

.section { padding: var(--space-section) 0; position: relative; }
.section-bordered { border-top: 1px solid var(--line); }
.section-head {
  max-width: 740px;
  margin-bottom: 64px;
}
.section-head.centered { text-align: center; margin-left: auto; margin-right: auto; }
.section-head.editorial {
  display: grid;
  grid-template-columns: 80px 1fr 80px;
  gap: 20px;
  align-items: end;
  max-width: 100%;
  margin-bottom: 80px;
}
.section-head.editorial .section-rule {
  height: 1px;
  background: var(--line-dark);
  margin-bottom: 14px;
}
.section-head.editorial .section-title { text-align: center; }
.section-eyebrow {
  font-family: var(--font-mono);
  font-size: var(--fs-tiny);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--contour);
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.section-eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--contour);
}
.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--fs-section);
  line-height: 1.05;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.section-sub {
  color: var(--ink-soft);
  font-size: 1.1rem;
  max-width: 600px;
  line-height: 1.62;
}
.section-head.centered .section-sub { margin-left: auto; margin-right: auto; }
.section-foot {
  margin-top: 64px;
  text-align: center;
}

/* ============================================================
   PRODUCT CARDS — map sheet style
   ============================================================ */

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 40px);
}
.product-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

.product-card {
  display: block;
  position: relative;
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1);
}
.product-card:hover { transform: translateY(-6px); }

.product-mock {
  position: relative;
  aspect-ratio: 3 / 4;
  background: var(--paper);
  overflow: hidden;
  margin-bottom: 22px;
  border: 1px solid var(--line-dark);
  box-shadow:
    0 1px 0 var(--paper-shadow),
    0 12px 28px -12px rgba(43, 36, 24, 0.18);
  transition: box-shadow 0.4s ease, border-color 0.4s ease;
  padding: 22px 18px 36px;
  display: flex;
  flex-direction: column;
}
.product-card:hover .product-mock {
  box-shadow:
    0 1px 0 var(--paper-shadow),
    0 24px 40px -16px rgba(43, 36, 24, 0.3);
  border-color: var(--contour);
}
.product-mock::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(85,137,166,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(85,137,166,0.07) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
  opacity: 0.7;
}
.product-mock-corner {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
  pointer-events: none;
}
.product-mock-corner.tl { top: 8px; left: 10px; }
.product-mock-corner.tr { top: 8px; right: 10px; color: var(--water); }
.product-mock-corner.bl { bottom: 8px; left: 10px; }
.product-mock-corner.br { bottom: 8px; right: 10px; color: var(--contour); }

.product-mock-art {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.product-mock-art svg {
  width: 88%; height: 88%;
}

.product-badge {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--footpath);
  color: var(--paper-light);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 4px 10px;
  z-index: 3;
  font-weight: 500;
}
.product-badge.new { background: var(--water); }
.product-badge.popular { background: var(--footpath); }

.product-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 4px;
}
.product-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.55rem;
  color: var(--ink);
  letter-spacing: -0.005em;
  line-height: 1.05;
  margin-bottom: 6px;
}
.product-detail {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--ink-soft);
  font-weight: 400;
  letter-spacing: 0.04em;
}
.product-detail .elevation { color: var(--contour); font-weight: 500; }
.product-detail .dot { padding: 0 6px; opacity: 0.4; }

.product-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  padding-top: 12px;
  border-top: 1px dashed var(--line);
}
.product-price {
  font-size: 1rem;
  color: var(--ink);
  font-weight: 500;
  font-family: var(--font-mono);
}
.product-rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.78rem;
  color: var(--ink-soft);
  font-family: var(--font-mono);
}
.stars { color: var(--contour); letter-spacing: 1px; }

/* ============================================================
   FEATURED SECTION — fixed Lake District photo background
   Hero scrolls up over it, product grid sits on top with paper overlay,
   image disappears once user scrolls into editorial split below.
   ============================================================ */

.featured-with-bg {
  position: relative;
  isolation: isolate;
  padding-top: clamp(24px, 3vw, 48px);
  padding-bottom: clamp(70px, 10vw, 130px);
  /* default border-top removed; the photo handles the transition */
  border-top: 0;
}
.featured-with-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("/assets/images/lakes/blea-tarn.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.featured-with-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg,
    rgba(239, 229, 204, 0.92) 0%,
    rgba(239, 229, 204, 0.72) 18%,
    rgba(239, 229, 204, 0.68) 50%,
    rgba(239, 229, 204, 0.78) 82%,
    rgba(239, 229, 204, 0.95) 100%);
  pointer-events: none;
}
.featured-with-bg .section-head.editorial {
  margin-bottom: clamp(24px, 3vw, 40px);
}

/* Mobile + touch fallback — background-attachment: fixed is broken on iOS */
@media (max-width: 768px), (hover: none) {
  .featured-with-bg::before {
    background-attachment: scroll;
    background-position: center top;
  }
}

/* ============================================================
   EDITORIAL SPLIT
   ============================================================ */

.editorial {
  padding: var(--space-section) 0;
  position: relative;
}
.editorial-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.editorial-image {
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--line-dark);
  box-shadow:
    0 1px 0 var(--paper-shadow),
    0 20px 40px -16px rgba(43, 36, 24, 0.25);
  position: relative;
}
.editorial-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(43,36,24,0.15) 100%);
  pointer-events: none;
}
.editorial-image-marg {
  position: absolute;
  bottom: -28px;
  left: 0;
  font-family: var(--font-mono);
  font-size: var(--fs-tiny);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.editorial-body h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--fs-medium);
  margin-bottom: 24px;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.editorial-body p {
  color: var(--ink-soft);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 22px;
}
.editorial-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--line-dark);
}
.editorial-meta-item {
  display: flex;
  flex-direction: column;
}
.editorial-meta-item strong {
  font-family: var(--font-mono);
  font-size: var(--fs-tiny);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--water);
  font-weight: 500;
  margin-bottom: 6px;
}
.editorial-meta-item span {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--ink);
  line-height: 1.3;
}

/* ============================================================
   ABOUT STRIP — dark map
   ============================================================ */

.about-strip {
  background: var(--ink);
  color: var(--paper);
  padding: var(--space-section) 0;
  position: relative;
  overflow: hidden;
}
.about-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 600'><g fill='none' stroke='%23B0772F' stroke-width='0.8' opacity='0.2'><ellipse cx='300' cy='300' rx='280' ry='200'/><ellipse cx='300' cy='300' rx='240' ry='170'/><ellipse cx='300' cy='300' rx='200' ry='140'/><ellipse cx='300' cy='300' rx='160' ry='110'/><ellipse cx='300' cy='300' rx='120' ry='82'/><ellipse cx='300' cy='300' rx='84' ry='58'/><ellipse cx='300' cy='300' rx='48' ry='32'/><ellipse cx='300' cy='300' rx='16' ry='10'/></g></svg>");
  background-size: 800px;
  background-repeat: no-repeat;
  background-position: 110% 50%;
  opacity: 0.7;
  pointer-events: none;
}
.about-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(176, 119, 47, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(176, 119, 47, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}
.about-inner {
  max-width: 760px;
  position: relative;
  z-index: 1;
}
.about-strip .section-eyebrow {
  color: var(--contour);
}
.about-strip .section-eyebrow::before {
  background: var(--contour);
}
.about-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--fs-medium);
  line-height: 1.1;
  margin-bottom: 26px;
  color: var(--paper);
}
.about-strip p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(239, 229, 204, 0.82);
  margin-bottom: 24px;
  max-width: 640px;
}
.link-underline {
  font-size: 0.95rem;
  color: var(--paper);
  border-bottom: 1px solid var(--contour);
  padding-bottom: 4px;
  transition: color 0.2s ease;
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}
.link-underline:hover { color: var(--contour); }

/* ============================================================
   REVIEWS — postcard style
   ============================================================ */

.reviews {
  padding: var(--space-section) 0;
  position: relative;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 36px);
}
.review-card {
  background: var(--paper-light);
  border: 1px solid var(--line-dark);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  box-shadow: 0 1px 0 var(--paper-shadow), 0 6px 20px -10px rgba(43, 36, 24, 0.18);
  transform: rotate(-0.4deg);
}
.review-card:nth-child(2) { transform: rotate(0.6deg); margin-top: 12px; }
.review-card:nth-child(3) { transform: rotate(-0.2deg); margin-top: -8px; }

.review-card::before {
  content: "LAKE AND FELL";
  position: absolute;
  top: 12px;
  right: 14px;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  color: var(--contour);
  opacity: 0.6;
}
.review-stars {
  color: var(--contour);
  letter-spacing: 2px;
  font-size: 1rem;
}
.review-text {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: 1.22rem;
  line-height: 1.45;
  color: var(--ink);
  margin: 0;
}
.review-author {
  font-family: var(--font-mono);
  font-size: var(--fs-tiny);
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px dashed var(--line);
}
.review-author strong { color: var(--ink); font-weight: 500; }

/* ============================================================
   GALLERY
   ============================================================ */

.gallery {
  padding: var(--space-section) 0;
  border-top: 1px solid var(--line);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.gallery-item {
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--line-dark);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}
.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: 0 18px 36px -16px rgba(43, 36, 24, 0.4);
  z-index: 1;
}
.gallery-item.tall {
  grid-row: span 2;
  aspect-ratio: 1 / 2;
}

/* ============================================================
   NEWSLETTER — map cartouche style
   ============================================================ */

.newsletter {
  padding: var(--space-section) 0;
  background: var(--paper-deep);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  position: relative;
}
.newsletter::before, .newsletter::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: var(--line-dark);
}
.newsletter::before { top: 10px; }
.newsletter::after { bottom: 10px; }
.newsletter-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.newsletter-marg {
  font-family: var(--font-mono);
  font-size: var(--fs-tiny);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--contour);
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.newsletter-marg::before, .newsletter-marg::after {
  content: "";
  display: inline-block;
  width: 32px; height: 1px;
  background: var(--contour);
}
.newsletter-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--fs-medium);
  margin-bottom: 14px;
  color: var(--ink);
  line-height: 1.05;
}
.newsletter-sub {
  color: var(--ink-soft);
  margin-bottom: 32px;
}
.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}
.newsletter-form input {
  flex: 1;
  padding: 16px 18px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--paper-light);
  color: var(--ink);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s ease;
  font-family: var(--font-mono);
}
.newsletter-form input::placeholder { color: var(--ink-faint); }
.newsletter-form input:focus { border-color: var(--water); }
.newsletter-status {
  margin-top: 16px;
  font-size: 0.9rem;
  color: var(--ink-soft);
  min-height: 1.4em;
  font-family: var(--font-mono);
}

/* ============================================================
   FOOTER — map legend style
   ============================================================ */

.site-footer {
  background: var(--ink);
  color: rgba(239, 229, 204, 0.72);
  padding-top: clamp(28px, 4vw, 48px);
  position: relative;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--contour) 0%, var(--water) 50%, var(--footpath) 100%);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr 2fr;
  gap: 64px;
  padding-bottom: 48px;
  align-items: center;
}
.footer-logo {
  display: block;
  height: 180px;
  width: auto;
  margin-bottom: 14px;
  margin-left: -8px;
  /* Sized large so the wordmark + "Lake District Prints" subtitle inside the logo
     are clearly readable. Negative left margin nudges the optical edge to align
     with the column text. */
}
.footer-brand .brand-wordmark {
  color: var(--paper);
  font-size: 1.8rem;
  margin-bottom: 16px;
  display: block;
}
.footer-tagline {
  font-size: 0.95rem;
  color: rgba(239, 229, 204, 0.6);
  max-width: 320px;
  line-height: 1.55;
}
.footer-coords {
  margin-top: 24px;
  font-family: var(--font-mono);
  font-size: var(--fs-tiny);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(239, 229, 204, 0.4);
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-col h3 {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--contour);
  font-weight: 500;
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.footer-col h3::before {
  content: "";
  display: inline-block;
  width: 16px; height: 1px;
  background: var(--contour);
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 0.95rem;
  color: rgba(239, 229, 204, 0.7);
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--paper); }
.footer-bottom {
  border-top: 1px solid rgba(239, 229, 204, 0.12);
  padding: 22px 0;
  font-size: var(--fs-small);
  color: rgba(239, 229, 204, 0.5);
}
.footer-bottom .container {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  align-items: center;
}
.footer-payments {
  display: flex;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: var(--fs-tiny);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(239, 229, 204, 0.4);
}

/* ============================================================
   PAGE STYLES
   ============================================================ */

.page-header {
  background: var(--paper-deep);
  border-bottom: 1px solid var(--line-dark);
  padding: clamp(60px, 8vw, 110px) 0 clamp(48px, 6vw, 72px);
  position: relative;
}
.page-header-inner { max-width: 880px; }
.page-eyebrow {
  font-family: var(--font-mono);
  font-size: var(--fs-tiny);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--contour);
  margin-bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.page-eyebrow::before {
  content: "";
  display: inline-block;
  width: 36px; height: 1px;
  background: var(--contour);
}
.page-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  line-height: 1.0;
  margin-bottom: 22px;
  letter-spacing: -0.015em;
}
.page-title em { font-style: italic; color: var(--contour); }
.page-sub {
  color: var(--ink-soft);
  font-size: 1.1rem;
  max-width: 620px;
  line-height: 1.62;
}

/* Shop toolbar */
.shop-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  border-bottom: 1px solid var(--line-dark);
  margin-bottom: 56px;
}
.shop-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.filter-chip {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 8px 16px;
  border: 1px solid var(--line-dark);
  background: var(--paper);
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 0.2s ease;
}
.filter-chip:hover { color: var(--ink); border-color: var(--ink); }
.filter-chip.is-active {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.shop-sort {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--ink-soft);
}
.shop-sort select {
  background: transparent;
  border: 1px solid var(--line-dark);
  padding: 8px 12px;
  margin-left: 10px;
  color: var(--ink);
  font-family: var(--font-mono);
}

/* Product detail */
.product-breadcrumb {
  padding: 24px 0 0;
  font-family: var(--font-mono);
  font-size: var(--fs-tiny);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.product-breadcrumb a {
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line-dark);
  transition: color 0.2s ease, border-color 0.2s ease;
}
.product-breadcrumb a:hover { color: var(--water); border-bottom-color: var(--water); }

.product-detail { padding: clamp(40px, 5vw, 80px) 0; }
.product-detail-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 5vw, 80px);
}
.product-gallery { display: flex; flex-direction: column; gap: 16px; }
.product-gallery-main {
  height: clamp(380px, 55vh, 520px);
  background: var(--paper-light);
  border: 1px solid var(--line-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 0 var(--paper-shadow), 0 24px 40px -20px rgba(43, 36, 24, 0.25);
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
}
.product-gallery-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(85,137,166,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(85,137,166,0.06) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
.product-gallery-main svg { width: 84%; height: 84%; position: relative; z-index: 1; }
.product-gallery-thumbs {
  display: grid;
  /* minmax(0,1fr) prevents SVG min-content from exploding the track width */
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 8px;
}
.product-gallery-thumb {
  aspect-ratio: 1 / 1;
  background: var(--paper-light);
  border: 1px solid var(--line-dark);
  cursor: pointer;
  transition: border-color 0.2s ease;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* SVG inside the active thumb: fill the square, don't overflow */
.product-gallery-thumb svg {
  width: 100%;
  height: 100%;
  display: block;
}
.product-gallery-thumb:hover, .product-gallery-thumb.is-active { border-color: var(--contour); }

.product-info { padding-top: 8px; }
.product-info-eyebrow {
  font-family: var(--font-mono);
  font-size: var(--fs-tiny);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--contour);
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.product-info-eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--contour);
}
.product-info-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.0;
  margin-bottom: 14px;
  letter-spacing: -0.015em;
}
.product-info-meta {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--water);
  margin-bottom: 22px;
}
.product-info-rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  font-size: var(--fs-small);
  color: var(--ink-soft);
  font-family: var(--font-mono);
}
.product-info-price {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--ink);
  margin-bottom: 28px;
  font-weight: 500;
}
.product-info-desc {
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 30px;
}
.option-group { margin-bottom: 26px; }
.option-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink);
  font-weight: 500;
  margin-bottom: 14px;
}
.option-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.option-pill {
  padding: 12px 18px;
  border: 1px solid var(--line-dark);
  background: var(--paper-light);
  color: var(--ink);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
  font-weight: 500;
  font-family: var(--font-body);
}
.option-pill:hover { border-color: var(--ink); }
.option-pill.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}
.option-pill small {
  display: block;
  font-weight: 400;
  font-size: 0.7rem;
  margin-top: 2px;
  opacity: 0.7;
  font-family: var(--font-mono);
}
.qty-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
}
.qty-stepper {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--ink);
  overflow: hidden;
}
.qty-stepper button {
  width: 42px; height: 50px;
  background: var(--paper-light);
  color: var(--ink);
  font-size: 1.2rem;
  transition: background 0.2s ease;
}
.qty-stepper button:hover { background: var(--paper-deep); }
.qty-stepper input {
  width: 52px; height: 50px;
  border: 0;
  text-align: center;
  background: var(--paper-light);
  font-size: 1rem;
  font-family: var(--font-mono);
  -moz-appearance: textfield;
}
.qty-stepper input::-webkit-outer-spin-button,
.qty-stepper input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.add-to-cart-row { display: flex; gap: 12px; margin-bottom: 32px; }
.add-to-cart-row .btn-primary { flex: 1; }

/* ---------- Product purchase box ---------- */
.product-purchase-box {
  border: 1px solid var(--line-dark);
  background: var(--paper-light);
  padding: 24px;
  margin-bottom: 28px;
}
.product-purchase-price {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--ink);
  font-weight: 500;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.product-purchase-box .option-group { margin-bottom: 22px; }
.product-purchase-box .qty-row { margin-bottom: 22px; }
.product-purchase-box .btn-block { margin-top: 4px; }

.product-points {
  display: grid;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid var(--line-dark);
}
.product-point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--ink);
}
.product-point::before {
  content: "";
  display: inline-block;
  width: 10px; height: 1px;
  background: var(--contour);
  margin-top: 12px;
  flex-shrink: 0;
}

/* ============================================================
   CART
   ============================================================ */

.cart { padding: clamp(40px, 5vw, 72px) 0 var(--space-section); }
.cart-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.8fr;
  gap: clamp(40px, 5vw, 64px);
  align-items: flex-start;
}
.cart-items { display: flex; flex-direction: column; }
.cart-empty {
  text-align: center;
  padding: 80px 20px;
  border: 1px dashed var(--line-dark);
  background: var(--paper-light);
}
.cart-empty h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.9rem;
  margin-bottom: 12px;
}
.cart-empty p {
  color: var(--ink-soft);
  margin-bottom: 28px;
}
.cart-line {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.cart-line-thumb {
  aspect-ratio: 3 / 4;
  background: var(--paper-light);
  border: 1px solid var(--line-dark);
  width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}
.cart-line-info { display: flex; flex-direction: column; gap: 6px; }
.cart-line-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
}
.cart-line-variant {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}
.cart-line-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 8px;
}
.cart-line-remove {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line-dark);
  padding-bottom: 2px;
  transition: color 0.2s ease;
}
.cart-line-remove:hover { color: var(--footpath); border-bottom-color: var(--footpath); }
.cart-line-price {
  font-size: 1.1rem;
  font-weight: 500;
  text-align: right;
  font-family: var(--font-mono);
}

.cart-summary {
  background: var(--paper-light);
  border: 1px solid var(--line-dark);
  padding: 36px 32px;
  position: sticky;
  top: 120px;
  box-shadow: 0 1px 0 var(--paper-shadow), 0 16px 32px -16px rgba(43, 36, 24, 0.2);
}
.cart-summary h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.55rem;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-dark);
}
.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 0.95rem;
  font-family: var(--font-mono);
}
.summary-row strong { font-weight: 500; }
.summary-row.total {
  border-top: 1px solid var(--line-dark);
  margin-top: 12px;
  padding-top: 18px;
  font-size: 1.15rem;
  font-weight: 500;
}
.free-shipping-bar {
  margin: 16px 0 24px;
  font-size: 0.8rem;
  color: var(--bridleway);
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.free-shipping-bar .bar {
  margin-top: 8px;
  height: 3px;
  background: var(--line);
}
.free-shipping-bar .fill {
  height: 100%;
  background: var(--bridleway);
  width: 100%;
}

/* ============================================================
   FORMS
   ============================================================ */

.form { display: flex; flex-direction: column; gap: 22px; max-width: 600px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink);
  font-weight: 500;
}
.form-field input,
.form-field textarea,
.form-field select {
  padding: 14px 16px;
  border: 1px solid var(--line-dark);
  background: var(--paper-light);
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s ease;
  font-family: var(--font-body);
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus { border-color: var(--water); }
.form-field textarea { resize: vertical; min-height: 140px; }

/* ============================================================
   ABOUT / PROCESS
   ============================================================ */

.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
  padding: clamp(60px, 8vw, 100px) 0;
}
.about-hero-image {
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--line-dark);
  box-shadow: 0 1px 0 var(--paper-shadow), 0 24px 40px -20px rgba(43, 36, 24, 0.3);
}
.about-process {
  background: var(--ink);
  color: var(--paper);
  padding: var(--space-section) 0;
  position: relative;
}
.about-process h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--fs-medium);
  margin-bottom: 56px;
  color: var(--paper);
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.process-step h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.5rem;
  margin-bottom: 14px;
  color: var(--paper);
}
.process-step p {
  color: rgba(239, 229, 204, 0.78);
  line-height: 1.7;
}
.process-step-number {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--contour);
  letter-spacing: 0.16em;
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.process-step-number::before {
  content: "";
  display: inline-block;
  width: 16px; height: 1px;
  background: var(--contour);
}

/* ============================================================
   THANK YOU
   ============================================================ */

.thanks { padding: clamp(80px, 10vw, 140px) 0; text-align: center; }
.thanks-mark {
  display: inline-flex;
  width: 80px; height: 80px;
  background: var(--bridleway);
  color: var(--paper);
  border-radius: 50%;
  font-size: 2.2rem;
  font-family: var(--font-display);
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
}
.thanks h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  margin-bottom: 18px;
  letter-spacing: -0.015em;
}
.thanks p {
  color: var(--ink-soft);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 28px;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .compass, .hero-svg-bg svg { animation: none !important; transition: none !important; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .editorial-grid { grid-template-columns: 1fr; }
  .editorial-image { aspect-ratio: 16 / 10; }
  .product-detail-grid { grid-template-columns: 1fr; }
  .cart-grid { grid-template-columns: 1fr; }
  .cart-summary { position: static; }
  .about-hero { grid-template-columns: 1fr; }
  .hero-split { grid-template-columns: 1fr; gap: 56px; }
  .hero-visual { min-height: auto; order: 2; }
  .hero-content { order: 1; }
  .hero-mockup { width: clamp(240px, 50vw, 340px); }
}
@media (max-width: 900px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-item.tall { grid-row: auto; aspect-ratio: 1 / 1; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; padding-bottom: 28px; }
  .footer-brand { display: flex; flex-direction: column; align-items: center; text-align: center; }
  .footer-logo { margin-left: 0; margin-right: 0; }
  .footer-tagline { max-width: 380px; }
  .footer-cols { text-align: center; }
  .footer-col h3::before { display: none; }
  .footer-col ul { align-items: center; }
  .footer-bottom .container { justify-content: center; flex-direction: column; gap: 8px; text-align: center; }
  .spec-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .spec-item:nth-child(2) { border-right: 0; }
  .spec-item:nth-child(odd) { border-right: 1px solid var(--line); }
  .spec-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .process-steps { grid-template-columns: 1fr; }
  .compass { display: none; }
  .hero-stats { position: static; padding: 24px 0; }
}
@media (max-width: 640px) {
  .header-inner { min-height: 76px; }
  .brand-logo { height: 64px; }
  .footer-logo { height: 76px; margin-left: 0; }
  .footer-tagline { font-size: 0.82rem; }
  .footer-cols { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .footer-col h3 { font-size: 0.65rem; letter-spacing: 0.1em; margin-bottom: 10px; }
  .footer-col ul { gap: 7px; }
  .footer-col a { font-size: 0.78rem; }
  .site-nav { gap: 16px; font-size: 0.9rem; }
  .site-nav a:not(.nav-cart) { display: none; }
  .product-grid { gap: 20px; }
  .product-name { font-size: 1.25rem; }
  .newsletter-form { flex-direction: column; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .cart-line { grid-template-columns: 80px 1fr; }
  .cart-line-price { grid-column: 1 / -1; text-align: left; padding-left: 104px; }
  .spec-strip-inner { grid-template-columns: 1fr; }
  .spec-item { border-right: 0 !important; border-bottom: 1px solid var(--line) !important; }
  .spec-item:last-child { border-bottom: 0 !important; }
}
@media (max-width: 420px) {
  /* footer stays 3-col — 3 × ~95px fits comfortably at 375px */
  .footer-col a { font-size: 0.74rem; }
}

/* ============================================================
   PAGE-LOAD FADE-IN + HERO ENTRANCE + CARD HOVER REFINEMENTS
   ============================================================ */

@media (prefers-reduced-motion: no-preference) {

  /* --- Page fade-in (200 ms) --- */
  body { animation: page-fade-in 0.2s ease; }
  @keyframes page-fade-in {
    from { opacity: 0; }
    to   { opacity: 1; }
  }

  /* --- Hero entrance: staggered fade-up on content, slide-in on mockup --- */
  .hero-eyebrow,
  .hero-title,
  .hero-body,
  .hero-cta-row,
  .hero-social {
    opacity: 0;
    animation: hero-fade-up 0.55s ease forwards;
  }
  .hero-eyebrow  { animation-delay: 0.05s; }
  .hero-title    { animation-delay: 0.15s; }
  .hero-body     { animation-delay: 0.28s; }
  .hero-cta-row  { animation-delay: 0.38s; }
  .hero-social   { animation-delay: 0.48s; }

  .hero-visual {
    opacity: 0;
    transform: translateX(32px);
    animation: hero-slide-in 0.65s cubic-bezier(.2,.8,.2,1) 0.2s forwards;
  }

  @keyframes hero-fade-up {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes hero-slide-in {
    from { opacity: 0; transform: translateX(32px); }
    to   { opacity: 1; transform: translateX(0); }
  }

  /* --- Contour SVG drawn-line effect on card hover --- */
  .product-mock-art svg ellipse {
    stroke-dasharray: 100;
    stroke-dashoffset: 0;
  }
  .product-card:hover .product-mock-art svg ellipse {
    animation: contour-draw 1s ease-out forwards;
  }
  .product-card:hover .product-mock-art svg ellipse:nth-child(1)  { animation-delay:   0ms; }
  .product-card:hover .product-mock-art svg ellipse:nth-child(2)  { animation-delay:  45ms; }
  .product-card:hover .product-mock-art svg ellipse:nth-child(3)  { animation-delay:  90ms; }
  .product-card:hover .product-mock-art svg ellipse:nth-child(4)  { animation-delay: 135ms; }
  .product-card:hover .product-mock-art svg ellipse:nth-child(5)  { animation-delay: 180ms; }
  .product-card:hover .product-mock-art svg ellipse:nth-child(6)  { animation-delay: 225ms; }
  .product-card:hover .product-mock-art svg ellipse:nth-child(7)  { animation-delay: 270ms; }
  .product-card:hover .product-mock-art svg ellipse:nth-child(8)  { animation-delay: 315ms; }
  .product-card:hover .product-mock-art svg ellipse:nth-child(9)  { animation-delay: 360ms; }
  .product-card:hover .product-mock-art svg ellipse:nth-child(10) { animation-delay: 405ms; }
  @keyframes contour-draw {
    from { stroke-dashoffset: 100; }
    to   { stroke-dashoffset: 0; }
  }
}

/* --- Price morph: "From £15" slides up, "Browse sizes →" slides in --- */
.product-price {
  position: relative;
  overflow: hidden;
  min-height: 1.3em;
  display: inline-block;
  vertical-align: middle;
}
.product-price-default,
.product-price-hover {
  display: block;
  transition: transform 0.35s ease, opacity 0.35s ease;
  white-space: nowrap;
}
.product-price-hover {
  position: absolute;
  left: 0; top: 0;
  color: var(--water);
  transform: translateY(110%);
  opacity: 0;
  font-size: 0.9em;
  letter-spacing: 0.01em;
}
.product-card:hover .product-price-default {
  transform: translateY(-110%);
  opacity: 0;
}
.product-card:hover .product-price-hover {
  transform: translateY(0);
  opacity: 1;
}

/* ============================================================
   MOBILE HAMBURGER + SLIDE-IN MENU
   ============================================================ */

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 36px;
  height: 22px;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(10.25px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-10.25px) rotate(-45deg); }
@media (max-width: 640px) { .nav-hamburger { display: flex; } }

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(43, 36, 24, 0.55);
  z-index: 55;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.mobile-menu-overlay.is-visible { opacity: 1; pointer-events: all; }

.mobile-menu {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(320px, 88vw);
  background: var(--paper);
  z-index: 60;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--line-dark);
  box-shadow: -12px 0 32px -16px rgba(43,36,24,0.25);
  overflow-y: auto;
}
.mobile-menu.is-open { transform: translateX(0); }

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
  min-height: 72px;
}
.mobile-menu-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.mobile-menu-close {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  background: var(--paper-deep);
  border: 1px solid var(--line-dark);
  color: var(--ink);
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.mobile-menu-close:hover { background: var(--ink); color: var(--paper); }

.mobile-menu-links {
  flex: 1;
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.mobile-menu-links li { border-bottom: 1px solid var(--line); }
.mobile-menu-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.3rem;
  color: var(--ink);
  transition: color 0.2s ease, background 0.2s ease;
}
.mobile-menu-links a::after {
  content: "→";
  font-size: 0.95rem;
  opacity: 0.3;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.mobile-menu-links a:hover { color: var(--water); background: var(--paper-light); }
.mobile-menu-links a:hover::after { opacity: 0.8; transform: translateX(4px); }
.mobile-menu-links a.is-active { color: var(--water); }

.mobile-menu-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: var(--fs-tiny);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* ============================================================
   JOURNAL (Field Notes)
   ============================================================ */

.journal-header {
  background: var(--paper-deep);
  border-bottom: 1px solid var(--line-dark);
  padding: clamp(60px, 8vw, 110px) 0 clamp(48px, 6vw, 72px);
  position: relative;
  overflow: hidden;
}
.journal-header-marg {
  position: absolute;
  top: 22px;
  right: var(--container-pad);
  font-family: var(--font-mono);
  font-size: var(--fs-tiny);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}
.journal-header-marg::before {
  content: "";
  display: inline-block;
  width: 20px; height: 1px;
  background: var(--line-dark);
}

/* Featured hero post card */
.journal-hero-card {
  position: relative;
  border: 1px solid var(--line-dark);
  overflow: hidden;
  margin-bottom: clamp(32px, 4vw, 56px);
  min-height: 380px;
  display: flex;
  align-items: stretch;
  transition: box-shadow 0.4s ease;
}
.journal-hero-card:hover {
  box-shadow: 0 24px 48px -20px rgba(43,36,24,0.3);
}
.journal-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  transition: transform 0.6s ease;
}
.journal-hero-card:hover .journal-hero-bg { transform: scale(1.02); }
.journal-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(239,229,204,0.97) 0%,
    rgba(239,229,204,0.88) 50%,
    rgba(239,229,204,0.4) 100%
  );
  z-index: 1;
}
.journal-hero-content {
  position: relative;
  z-index: 2;
  padding: clamp(40px, 5vw, 72px) clamp(36px, 4vw, 64px);
  max-width: 640px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.journal-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--contour);
  border: 1px solid var(--contour);
  padding: 4px 10px;
  margin-bottom: 18px;
  align-self: flex-start;
}
.journal-tag.featured {
  background: var(--contour);
  color: var(--paper);
  border-color: var(--contour);
}
.journal-hero-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.1;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.journal-hero-excerpt {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 22px;
}
.journal-meta {
  font-family: var(--font-mono);
  font-size: var(--fs-tiny);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
  display: flex;
  gap: 14px;
  align-items: center;
}
.journal-meta-dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--line-dark);
  display: inline-block;
}

/* Journal filter toolbar */
.journal-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 24px 0 36px;
  border-bottom: 1px solid var(--line-dark);
  margin-bottom: 48px;
}

/* Post card grid */
.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 40px);
  margin-bottom: clamp(32px, 4vw, 48px);
}
.journal-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line-dark);
  background: var(--paper-light);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1), box-shadow 0.4s ease;
}
.journal-card:hover {
  /* Cards have no article links yet — keep hover subtle, no lift */
  box-shadow: 0 8px 24px -10px rgba(43,36,24,0.18);
}
.journal-card-image {
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid var(--line-dark);
  position: relative;
  overflow: hidden;
}
.journal-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(43,36,24,0.1) 100%);
}
.journal-card-body {
  padding: 24px 26px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.journal-card-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.3rem;
  line-height: 1.15;
  margin-bottom: 10px;
  color: var(--ink);
}
.journal-card-excerpt {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.62;
  flex: 1;
  margin-bottom: 18px;
}
.journal-card-meta {
  font-family: var(--font-mono);
  font-size: var(--fs-tiny);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
  padding-top: 14px;
  border-top: 1px dashed var(--line);
  display: flex;
  gap: 12px;
  align-items: center;
}

/* "Coming soon" read-more line on journal cards */
.journal-card-soon {
  font-family: var(--font-mono);
  font-size: var(--fs-tiny);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
}

/* Coming-soon note */
.journal-soon-note {
  text-align: center;
  padding: 20px 0;
  font-family: var(--font-mono);
  font-size: var(--fs-tiny);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.journal-soon-note::before,
.journal-soon-note::after {
  content: "";
  display: inline-block;
  width: 40px; height: 1px;
  background: var(--line-dark);
}

@media (max-width: 900px) {
  .journal-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .journal-grid { grid-template-columns: 1fr; }
  .journal-header-marg { display: none; }
  .journal-hero-overlay {
    background: linear-gradient(
      to bottom,
      rgba(239,229,204,0.96) 0%,
      rgba(239,229,204,0.9) 100%
    );
  }
}

/* ============================================================
   BETTER EMPTY CART STATE
   ============================================================ */

.cart-empty-icon {
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
}
.cart-empty-icon img {
  height: 64px;
  width: auto;
  opacity: 0.3;
}
.cart-empty-strip {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
  text-align: left;
  width: 100%;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
.cart-empty-strip-label {
  font-family: var(--font-mono);
  font-size: var(--fs-tiny);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.cart-empty-strip-label::before {
  content: "";
  display: inline-block;
  width: 20px; height: 1px;
  background: var(--ink-soft);
}

/* ============================================================
   404 PAGE
   ============================================================ */

.not-found {
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding: clamp(80px, 12vw, 160px) 0;
}
.not-found-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}
.not-found-mark {
  margin-bottom: 32px;
  display: flex;
  justify-content: center;
}
.not-found-mark img {
  height: 72px;
  width: auto;
  opacity: 0.35;
}
.not-found-eyebrow {
  font-family: var(--font-mono);
  font-size: var(--fs-tiny);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--contour);
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.not-found-eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--contour);
}
.not-found h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  margin-bottom: 18px;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.not-found h1 em { font-style: italic; color: var(--contour); }
.not-found-sub {
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin-bottom: 36px;
  line-height: 1.62;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}
.not-found-grid-ref {
  margin-top: 40px;
  font-family: var(--font-mono);
  font-size: var(--fs-tiny);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* ============================================================
   CONTACT GRID — responsive two-col layout
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: flex-start;
}
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ============================================================
   CART ICON — text on desktop, SVG shopping bag on mobile
   ============================================================ */
.nav-cart-icon {
  display: none;
  flex-shrink: 0;
  vertical-align: middle;
}
@media (max-width: 640px) {
  .nav-cart-text { display: none; }
  .nav-cart-icon { display: block; }
}

/* ============================================================
   MOBILE MENU — logo instead of text title
   ============================================================ */
.mobile-menu-logo {
  height: 46px;
  width: auto;
  display: block;
}

/* ============================================================
   PRODUCT GALLERY — sticky on desktop while info panel scrolls
   ============================================================ */
@media (min-width: 1025px) {
  .product-gallery {
    position: sticky;
    top: 128px;
    align-self: start;
  }
}

/* ============================================================
   PRODUCT PAGE REVIEWS
   ============================================================ */
.product-reviews {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line-dark);
}
.product-reviews-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 10px;
}
.product-reviews-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.35rem;
  color: var(--ink);
}
.product-reviews-avg {
  font-family: var(--font-mono);
  font-size: var(--fs-small);
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}
.product-reviews-list {
  display: flex;
  flex-direction: column;
}
.product-review {
  padding: 22px 0;
  border-bottom: 1px dashed var(--line);
}
.product-review:last-child { border-bottom: 0; }
.product-review-stars {
  color: var(--contour);
  letter-spacing: 2px;
  font-size: 0.88rem;
  margin-bottom: 8px;
}
.product-review-text {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 10px;
}
.product-review-meta {
  font-family: var(--font-mono);
  font-size: var(--fs-tiny);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* ============================================================
   CHECKOUT COMING-SOON STATE (replaces cart summary on click)
   ============================================================ */
.checkout-soon {
  text-align: center;
  padding: 4px 0;
}
.checkout-soon-icon {
  font-size: 2rem;
  color: var(--contour);
  opacity: 0.55;
  margin-bottom: 18px;
  line-height: 1;
}
.checkout-soon-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.55rem;
  margin-bottom: 14px;
  color: var(--ink);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line-dark);
}
.checkout-soon-sub {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 24px;
}
.checkout-soon-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 12px;
}
.checkout-soon-form input {
  padding: 14px 16px;
  border: 1px solid var(--line-dark);
  background: var(--paper-light);
  font-family: var(--font-mono);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s ease;
  color: var(--ink);
}
.checkout-soon-form input::placeholder { color: var(--ink-faint); }
.checkout-soon-form input:focus { border-color: var(--water); }
.checkout-soon-status {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--bridleway);
  letter-spacing: 0.06em;
  min-height: 1.5em;
  margin-bottom: 16px;
}
.checkout-soon-eta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px dashed var(--line);
  font-family: var(--font-mono);
  font-size: var(--fs-tiny);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.checkout-soon-eta-live { color: var(--bridleway); font-weight: 500; }
.checkout-soon-eta-dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--line-dark);
  display: inline-block;
}
