:root {
  --bg: #faf7f2;
  --surface: #f2ece2;
  --ink: #1c1917;
  --muted: #6b6157;
  --accent: #b4532a;
  --accent-ink: #fffaf5;
  --line: #e3dace;
  --radius: 14px;
  --max: 1080px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', -apple-system, system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 20px; }

.topbar {
  background: var(--accent);
  color: var(--accent-ink);
  text-align: center;
  padding: 9px 16px;
  font-size: 14px;
  letter-spacing: .02em;
}

header.site {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0;
}
.brand {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 24px; font-weight: 700; letter-spacing: -.02em;
}

.hero { display: grid; grid-template-columns: 1.05fr 1fr; gap: 48px; padding: 32px 0 64px; align-items: center; }
.hero h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.05; letter-spacing: -.03em; margin: 0 0 16px;
}
.hero .sub { font-size: 19px; color: var(--muted); margin: 0 0 28px; }

/* Square, and the product is contained rather than cropped. Supplier shots vary
   wildly in aspect; cover would slice the edges off a landscape product, which
   is exactly the detail shoppers are trying to judge. White backdrop because
   most studio shots already sit on white, so the box disappears. */
.media {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  aspect-ratio: 1;
  display: grid; place-items: center;
  color: var(--muted); font-size: 14px; text-align: center;
  overflow: hidden; padding: 0;
}
.media:not(:has(img)) { background: var(--surface); padding: 24px; }
.media img { width: 100%; height: 100%; object-fit: contain; }

.thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 10px; }
.thumbs button {
  padding: 0; border: 1px solid var(--line); border-radius: 10px; overflow: hidden;
  background: #fff; cursor: pointer; aspect-ratio: 1; line-height: 0;
}
.thumbs button[aria-current="true"] { border-color: var(--accent); }
.thumbs img { width: 100%; height: 100%; object-fit: contain; }

.variants { margin: 4px 0 22px; }
.variants .axis + .axis { margin-top: 14px; }
.variants label { display: block; font-size: 13px; color: var(--muted); margin-bottom: 8px; }
.variants .opts { display: flex; flex-wrap: wrap; gap: 8px; }
.variants button {
  font: inherit; font-size: 14px; padding: 9px 14px; cursor: pointer;
  background: var(--surface); color: var(--ink);
  border: 1px solid var(--line); border-radius: 9px;
}
.variants button[aria-pressed="true"] { border-color: var(--accent); background: var(--bg); }
.variants .note { font-size: 12px; color: var(--muted); margin-top: 8px; }

.price { display: flex; align-items: baseline; gap: 12px; margin-bottom: 20px; }
.price .now { font-size: 30px; font-weight: 700; }
.price .was { color: var(--muted); text-decoration: line-through; font-size: 18px; }

.btn {
  display: inline-block; width: 100%; text-align: center;
  background: var(--accent); color: var(--accent-ink);
  padding: 17px 28px; border: 0; border-radius: var(--radius);
  font-size: 18px; font-weight: 650; cursor: pointer; text-decoration: none;
  transition: transform .12s ease, filter .12s ease;
}
.btn:hover { filter: brightness(1.06); transform: translateY(-1px); }
.btn-alt {
  background: transparent; color: var(--ink);
  border: 1px solid var(--line); margin-top: 10px; font-size: 16px;
}
.btn-alt span { color: var(--accent); font-weight: 700; }
.btn-alt:hover { border-color: var(--accent); }

.reassure { margin-top: 12px; font-size: 14px; color: var(--muted); text-align: center; }

ul.bullets { list-style: none; padding: 0; margin: 0 0 28px; }
ul.bullets li { padding: 9px 0 9px 30px; position: relative; }
ul.bullets li::before {
  content: ""; position: absolute; left: 6px; top: 18px;
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
}

/* Spec strip: real, verifiable facts. This is what reads as "established" —
   a store that answers shipping, returns and stock before being asked. */
.specs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.specs div { text-align: center; }
.specs b { display: block; font-size: 15px; letter-spacing: -.01em; }
.specs span { font-size: 13px; color: var(--muted); }

.detail { display: grid; grid-template-columns: 1.6fr 1fr; gap: 40px; align-items: start; }
.spec-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 22px 24px;
}
.spec-card h3 { margin: 0 0 12px; font-size: 15px; letter-spacing: .02em; text-transform: uppercase; }
.spec-card dl { margin: 0; display: grid; grid-template-columns: auto 1fr; gap: 10px 16px; font-size: 15px; }
.spec-card dt { color: var(--muted); }
.spec-card dd { margin: 0; text-align: right; }

section.band { border-top: 1px solid var(--line); padding: 64px 0; }
section.band h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(26px, 3.4vw, 36px); letter-spacing: -.02em; margin: 0 0 24px;
}
.prose p { max-width: 68ch; color: var(--muted); }

details.faq {
  border-bottom: 1px solid var(--line); padding: 16px 0;
}
details.faq summary { cursor: pointer; font-weight: 600; list-style: none; }
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after { content: "+"; float: right; color: var(--muted); }
details.faq[open] summary::after { content: "\2013"; }
details.faq p { color: var(--muted); margin: 12px 0 0; }

.trust { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.trust div {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 22px;
}
.trust h3 { margin: 0 0 6px; font-size: 16px; }
.trust p { margin: 0; font-size: 15px; color: var(--muted); }

footer.site {
  border-top: 1px solid var(--line); padding: 40px 0 64px;
  font-size: 14px; color: var(--muted);
}
footer.site nav { display: flex; gap: 18px; flex-wrap: wrap; margin-bottom: 14px; }

@media (max-width: 820px) {
  /* Photo above the copy on phones. Every ecommerce app puts the product first
     on mobile, and a wall of text before the first image is why people leave. */
  .hero { grid-template-columns: 1fr; gap: 28px; padding-bottom: 40px; }
  .hero-copy { order: 2; }
  .hero-media { order: 1; }
  .trust { grid-template-columns: 1fr; }
  .detail { grid-template-columns: 1fr; gap: 28px; }
  .specs { grid-template-columns: repeat(2, 1fr); gap: 22px; }
}
