/* ==========================================================================
   Design Tokens — locked
   ========================================================================== */
:root {
  --ink: #1C1C1C;
  --ink-70: rgba(28, 28, 28, 0.7);
  --ink-55: rgba(28, 28, 28, 0.55);
  --ink-15: rgba(28, 28, 28, 0.15);
  --bg: #FFFFFF;
  --muted: #F4F2EF;
  --muted-2: #EFEFEF;
  --border: #DDDDDD;
  --border-soft: #E8E8E8;
  --accent: #E32C2B;

  --max: 1240px;
  --gutter: 40px;
  --section: 112px;
  --section-mobile: 64px;

  --ease: cubic-bezier(0.2, 0.6, 0.2, 1);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }

a { color: var(--ink); text-decoration: none; }
a:hover { text-decoration: underline; }

button { font-family: inherit; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ==========================================================================
   Typography helpers
   ========================================================================== */
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 600;
  opacity: 0.65;
  margin: 0 0 12px;
}

h1.product-title {
  font-size: 44px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.02;
  margin: 0 0 18px;
}

.section-title {
  font-size: 32px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.1;
  margin: 0 0 12px;
}
.section-lead {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-70);
  max-width: 58ch;
  margin: 0 0 48px;
}
.section-head {
  margin-bottom: 48px;
}
.section-head.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-head.center .section-lead { margin-left: auto; margin-right: auto; }

/* ==========================================================================
   USP bar (top)
   ========================================================================== */
.usp-bar {
  background: var(--ink);
  color: #fff;
  padding: 10px 20px;
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
}
.usp-bar .dot {
  display: inline-block;
  width: 3px;
  height: 3px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  margin: 0 12px;
  vertical-align: middle;
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 40;
}
.site-header .row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  height: 84px;
}
.site-header .logo {
  justify-self: start;
  display: inline-flex;
  align-items: center;
}
.site-header .logo img {
  height: 56px;
  width: auto;
  max-width: 170px;
  display: block;
  object-fit: contain;
}
.site-header nav {
  justify-self: center;
}
.site-header nav ul {
  display: flex;
  gap: 32px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-header nav a {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 500;
  color: var(--ink);
}
.site-header .util {
  justify-self: end;
  display: flex;
  gap: 24px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
}

/* Breadcrumbs */
.breadcrumbs {
  padding: 20px 0 0;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-55);
}
.breadcrumbs a { color: var(--ink-55); }
.breadcrumbs a:hover { color: var(--ink); }

/* ==========================================================================
   PDP hero (two-column)
   ========================================================================== */
.pdp {
  padding: 32px 0 var(--section);
}
.pdp-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 72px;
  align-items: start;
}

/* Gallery */
.gallery {
  position: relative;
}
.gallery-main {
  aspect-ratio: 4 / 5;
  background: var(--muted);
  overflow: hidden;
}
.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.25s var(--ease);
}
.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 12px;
}
.gallery-thumbs button {
  padding: 0;
  border: 1px solid var(--border);
  background: var(--muted);
  aspect-ratio: 1 / 1;
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.15s var(--ease);
}
.gallery-thumbs button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-thumbs button:hover { border-color: var(--ink); }
.gallery-thumbs button.is-active {
  border-color: var(--ink);
  outline: 1px solid var(--ink);
}

/* Info column — sticky on desktop */
.info {
  padding-top: 4px;
}
@media (min-width: 1025px) {
  .info { position: sticky; top: 108px; }
}

.rating-summary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-70);
}
.stars {
  color: var(--accent);
  letter-spacing: 2px;
  font-size: 16px;
  line-height: 1;
}
.rating-summary strong { color: var(--ink); font-weight: 600; letter-spacing: 0.06em; }
.rating-summary a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.price {
  font-size: 30px;
  font-weight: 700;
  margin: 6px 0 4px;
  letter-spacing: 0;
}
.price-hint {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-55);
  margin: 0 0 18px;
}

.value-prop {
  border-left: 3px solid var(--ink);
  padding: 4px 0 4px 14px;
  margin: 0 0 22px;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
}

.description {
  font-size: 15px;
  line-height: 1.65;
  margin: 0 0 28px;
  max-width: 52ch;
  color: var(--ink);
}
.description p { margin: 0; }

/* Option groups */
.option-group {
  margin: 0 0 22px;
}
.option-group .label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0 10px;
}
.option-group .label .selected {
  font-weight: 500;
  color: var(--ink-70);
  letter-spacing: 0.1em;
}
.option-group .pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pill {
  border: 1px solid var(--border);
  background: #fff;
  color: var(--ink);
  padding: 11px 16px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  min-width: 64px;
  text-align: center;
  transition: all 0.15s var(--ease);
  font-weight: 500;
}
.pill:hover { border-color: var(--ink); }
.pill.is-active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

/* Timber swatches (thumbnails, richer than pills) */
.timber-swatches {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.swatch {
  padding: 0;
  background: #fff;
  border: 1px solid var(--border);
  cursor: pointer;
  text-align: left;
  transition: border-color 0.15s var(--ease), transform 0.15s var(--ease);
  overflow: hidden;
}
.swatch:hover { border-color: var(--ink); }
.swatch.is-active {
  border-color: var(--ink);
  outline: 1px solid var(--ink);
}
.swatch .thumb {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--muted);
}
.swatch .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.swatch .thumb.tone {
  display: block;
}
.swatch .name {
  display: block;
  padding: 8px 8px 9px;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  border-top: 1px solid var(--border-soft);
  text-align: center;
}
.timber-guide-link {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  background: none;
  border: 0;
  padding: 0;
  color: var(--ink);
  margin-left: 10px;
  font-weight: 500;
}

/* Spec summary */
.spec-summary {
  border: 1px solid var(--ink);
  padding: 16px 18px;
  margin: 24px 0 20px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.6;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 20px;
}
.spec-summary .k { color: var(--ink-55); }
.spec-summary .v { font-weight: 700; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: #fff;
  border: 1px solid var(--ink);
  padding: 18px 32px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  transition: all 0.15s var(--ease);
  text-align: center;
}
.btn:hover { opacity: 0.88; text-decoration: none; }
.btn.ghost {
  background: #fff;
  color: var(--ink);
}
.btn.ghost:hover { background: var(--ink); color: #fff; opacity: 1; }
.btn.inline { width: auto; padding: 16px 28px; }

.cta-wrap { margin: 0 0 12px; }

.cta-secondary {
  display: block;
  text-align: center;
  padding: 12px 0;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  margin: 0 0 20px;
}

/* Trust microcopy under CTA */
.trust-inline {
  border: 1px solid var(--border);
  background: var(--muted);
  padding: 14px 18px;
  margin: 0 0 8px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 20px;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
}
.trust-inline .item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
  color: var(--ink);
}
.trust-inline .item::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  background: var(--ink);
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
}

/* ==========================================================================
   Section: Trust strip (4 icons)
   ========================================================================== */
.trust-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--muted);
  padding: 40px 0;
}
.trust-strip .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-card {
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
}
.trust-card svg {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  stroke: var(--ink);
  stroke-width: 1.4;
  fill: none;
}
.trust-card .body { line-height: 1.35; }
.trust-card .k {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0 2px;
}
.trust-card .v {
  font-size: 12px;
  color: var(--ink-70);
}

/* ==========================================================================
   Section: Craftsmanship story
   ========================================================================== */
.story {
  padding: var(--section) 0;
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.story-media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--muted);
}
.story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story-body h2 {
  font-size: 36px;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.05;
  margin: 0 0 20px;
}
.story-body p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  margin: 0 0 16px;
  max-width: 46ch;
}
.story-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.story-facts .k {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-55);
  margin: 0 0 4px;
}
.story-facts .v {
  font-size: 15px;
  font-weight: 600;
}

/* Full-bleed craftsmanship banner */
.story-banner {
  aspect-ratio: 16 / 6;
  background: var(--muted);
  overflow: hidden;
  margin: 0;
}
.story-banner img { width: 100%; height: 100%; object-fit: cover; }

/* ==========================================================================
   Section: Dimensions & Size Guide
   ========================================================================== */
.dimensions {
  padding: var(--section) 0;
  background: var(--muted);
}
.dim-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}
.dim-svg {
  background: #fff;
  border: 1px solid var(--border);
  padding: 32px;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dim-svg svg { width: 100%; height: auto; max-height: 420px; }
.dim-list {
  display: grid;
  gap: 18px;
}
.dim-item {
  border-top: 1px solid var(--border);
  padding-top: 18px;
}
.dim-item:first-child { border-top: 0; padding-top: 0; }
.dim-item .k {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-55);
  margin: 0 0 6px;
}
.dim-item .v {
  font-size: 20px;
  font-weight: 700;
}
.dim-item .n {
  font-size: 14px;
  color: var(--ink-70);
  margin-top: 4px;
  line-height: 1.5;
}

/* ==========================================================================
   Section: Timber options overview
   ========================================================================== */
.timber-showcase {
  padding: var(--section) 0;
}
.timber-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.timber-tile {
  background: #fff;
  border: 1px solid var(--border);
  overflow: hidden;
}
.timber-tile .media {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--muted);
}
.timber-tile .media img,
.timber-tile .media .tone {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.timber-tile .body { padding: 16px 18px 18px; }
.timber-tile .name {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin: 0 0 4px;
}
.timber-tile .desc {
  font-size: 13px;
  color: var(--ink-70);
  line-height: 1.4;
  margin: 0;
}
.timber-note {
  margin-top: 24px;
  font-size: 13px;
  color: var(--ink-70);
  text-align: center;
}
.timber-note a { text-decoration: underline; text-underline-offset: 3px; }

/* ==========================================================================
   Section: How it's made (3 steps)
   ========================================================================== */
.how {
  padding: var(--section) 0;
  border-top: 1px solid var(--border);
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.how-step {
  padding: 0;
}
.how-step .n {
  font-size: 14px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink-55);
  margin: 0 0 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
  display: block;
}
.how-step h3 {
  font-size: 22px;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0 12px;
  letter-spacing: 0.02em;
  line-height: 1.15;
}
.how-step p {
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  color: var(--ink-70);
  max-width: 36ch;
}

/* ==========================================================================
   Section: Reviews
   ========================================================================== */
.reviews {
  padding: var(--section) 0;
  background: var(--muted);
}
.reviews-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 48px;
}
.reviews-summary .score {
  font-size: 88px;
  font-weight: 700;
  line-height: 1;
  margin: 0 0 6px;
  letter-spacing: -0.02em;
}
.reviews-summary .stars { font-size: 22px; letter-spacing: 3px; }
.reviews-summary .count {
  font-size: 13px;
  color: var(--ink-70);
  margin: 8px 0 0;
  letter-spacing: 0.06em;
}
.reviews-bars { display: grid; gap: 8px; }
.rbar {
  display: grid;
  grid-template-columns: 44px 1fr 40px;
  gap: 12px;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-70);
}
.rbar .track {
  height: 6px;
  background: rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;
}
.rbar .fill {
  position: absolute;
  inset: 0;
  background: var(--ink);
  transform-origin: left center;
}
.rbar .n { text-align: right; font-variant-numeric: tabular-nums; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.review-card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 28px 26px;
}
.review-card .stars { display: block; margin-bottom: 14px; font-size: 15px; letter-spacing: 2px; }
.review-card blockquote {
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 1.6;
  font-style: normal;
  color: var(--ink);
}
.review-card cite {
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink-70);
}
.review-card .verified {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 12px;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-55);
}
.review-card .verified::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
}
.reviews-footer {
  text-align: center;
}

/* ==========================================================================
   Section: Complete the look
   ========================================================================== */
.complete {
  padding: var(--section) 0;
}
.complete-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.bench-card {
  border: 1px solid var(--border);
  background: #fff;
  overflow: hidden;
  transition: transform 0.2s var(--ease);
}
.bench-card:hover { transform: translateY(-2px); }
.bench-card .media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--muted);
}
.bench-card .media img { width: 100%; height: 100%; object-fit: cover; }
.bench-card .body { padding: 24px 28px 28px; }
.bench-card .eyebrow { margin: 0 0 8px; }
.bench-card h3 {
  font-size: 22px;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0 8px;
  letter-spacing: 0.02em;
}
.bench-card p {
  font-size: 14px;
  color: var(--ink-70);
  margin: 0 0 18px;
  line-height: 1.55;
}
.bench-card a.link {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ==========================================================================
   Section: Delivery / FAQ (accordions)
   ========================================================================== */
.faq {
  padding: var(--section) 0;
  border-top: 1px solid var(--border);
  background: var(--muted);
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
}
.faq-side h2 {
  font-size: 32px;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0 12px;
  line-height: 1.1;
}
.faq-side p {
  font-size: 15px;
  color: var(--ink-70);
  line-height: 1.6;
  margin: 0 0 24px;
  max-width: 32ch;
}
.faq-side .contact-line {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
}
.faq-side .contact-line a { text-decoration: underline; text-underline-offset: 3px; }

/* Accordion */
.accordion { border-top: 1px solid var(--border); }
.accordion details {
  border-bottom: 1px solid var(--border);
  background: transparent;
}
.accordion summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  gap: 24px;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after {
  content: "+";
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.2s var(--ease);
}
.accordion details[open] summary::after { content: "−"; }
.accordion .panel {
  padding: 0 0 22px;
  font-size: 15px;
  line-height: 1.65;
  max-width: 60ch;
  color: var(--ink-70);
}
.accordion .panel p { margin: 0 0 10px; }
.accordion .panel p:last-child { margin: 0; }

/* ==========================================================================
   Section: Final CTA band
   ========================================================================== */
.final-cta {
  background: var(--ink);
  color: #fff;
  padding: 96px 0;
  text-align: center;
}
.final-cta h2 {
  font-size: 40px;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.05;
  margin: 0 0 16px;
  letter-spacing: 0.01em;
}
.final-cta p {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  margin: 0 auto 32px;
  max-width: 46ch;
  line-height: 1.6;
}
.final-cta .buttons {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.final-cta .btn {
  width: auto;
  padding: 18px 32px;
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}
.final-cta .btn.ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.final-cta .btn.ghost:hover { background: #fff; color: var(--ink); border-color: #fff; opacity: 1; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 64px 0 40px;
  background: var(--ink);
  color: #fff;
}
.site-footer .row {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 48px;
}
.site-footer img { height: 72px; width: auto; max-width: 180px; margin-bottom: 20px; }
.site-footer h4 {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin: 0 0 16px;
  opacity: 0.9;
  font-weight: 700;
}
.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13px;
  line-height: 2;
}
.site-footer a { color: #fff; opacity: 0.75; }
.site-footer a:hover { opacity: 1; }
.site-footer .fine {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.6;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

/* ==========================================================================
   Sticky mobile buy bar
   ========================================================================== */
.sticky-mobile-bar {
  display: none;
}

/* ==========================================================================
   Timber guide modal
   ========================================================================== */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 100;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal.is-open { display: flex; }
.modal .modal-body {
  background: #fff;
  max-width: 960px;
  width: 100%;
  max-height: 92vh;
  overflow: auto;
  position: relative;
}
.modal .modal-body img { width: 100%; height: auto; }
.modal .modal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: #fff;
}
.modal .modal-head h3 {
  margin: 0;
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 700;
}
.modal .close {
  background: none;
  border: 0;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
}
.modal .foot {
  padding: 20px 24px;
  border-top: 1px solid var(--border);
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-70);
}

/* ==========================================================================
   Responsive — tablet
   ========================================================================== */
@media (max-width: 1024px) {
  :root { --section: 80px; }
  .pdp-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  h1.product-title { font-size: 36px; }
  .section-title { font-size: 28px; }
  .site-header .row { grid-template-columns: 1fr auto; }
  .site-header nav { display: none; }
  .site-footer .row { grid-template-columns: 1fr 1fr; }
  .story-grid { grid-template-columns: 1fr; gap: 32px; }
  .dim-grid { grid-template-columns: 1fr; gap: 32px; }
  .trust-strip .grid { grid-template-columns: 1fr 1fr; }
  .timber-grid { grid-template-columns: repeat(3, 1fr); }
  .how-grid { grid-template-columns: 1fr; gap: 28px; }
  .reviews-head { grid-template-columns: 1fr; gap: 24px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .complete-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ==========================================================================
   Responsive — mobile
   ========================================================================== */
@media (max-width: 640px) {
  :root { --gutter: 20px; --section: var(--section-mobile); }
  .usp-bar { font-size: 9px; letter-spacing: 0.16em; padding: 8px 14px; }
  .usp-bar .dot { margin: 0 8px; }

  .site-header .row { height: 68px; }
  .site-header .logo img { height: 40px; max-width: 130px; }
  .site-header .util { gap: 16px; font-size: 11px; letter-spacing: 0.14em; }

  .breadcrumbs { padding: 14px 0 0; font-size: 10px; }

  .pdp { padding: 20px 0 var(--section); }
  h1.product-title { font-size: 28px; }
  .section-title { font-size: 24px; }
  .section-lead { font-size: 15px; margin-bottom: 32px; }
  .section-head { margin-bottom: 32px; }
  .price { font-size: 26px; }

  .gallery-main { aspect-ratio: 1 / 1; }
  .timber-swatches { grid-template-columns: repeat(4, 1fr); gap: 8px; }
  .trust-inline { grid-template-columns: 1fr; }
  .trust-strip { padding: 28px 0; }
  .trust-strip .grid { grid-template-columns: 1fr; gap: 18px; }
  .trust-card { gap: 12px; }

  .story-body h2 { font-size: 26px; }
  .story-facts { grid-template-columns: 1fr; gap: 14px; }

  .dim-svg { padding: 20px; }
  .timber-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .timber-tile .body { padding: 12px 14px; }

  .reviews-summary .score { font-size: 64px; }

  .bench-card .body { padding: 20px 22px; }

  .faq-side h2 { font-size: 24px; }

  .final-cta { padding: 56px 0; }
  .final-cta h2 { font-size: 28px; }
  .final-cta .buttons { flex-direction: column; width: 100%; }
  .final-cta .btn { width: 100%; }

  .site-footer { padding: 40px 0 28px; }
  .site-footer .row { grid-template-columns: 1fr; gap: 32px; }
  .site-footer img { width: 150px; }
  .site-footer .fine { flex-direction: column; gap: 8px; }

  /* Mobile sticky buy bar */
  .sticky-mobile-bar.enabled {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    border-top: 1px solid var(--border);
    padding: 12px 16px;
    align-items: center;
    gap: 12px;
    z-index: 50;
    box-shadow: 0 -6px 20px rgba(0,0,0,0.08);
  }
  .sticky-mobile-bar.enabled .price-mini {
    font-size: 15px;
    font-weight: 700;
    flex-shrink: 0;
  }
  .sticky-mobile-bar.enabled .btn {
    padding: 14px 18px;
    font-size: 11px;
    letter-spacing: 0.18em;
    flex: 1;
  }

  /* Add bottom padding so sticky bar doesn't cover footer content */
  body { padding-bottom: 68px; }
}
