:root {
  --heat: #e4571b;
  --heat-deep: #b83e0e;
  --cool: #0e7490;
  --paper: #faf3e7;
  --ink: #211709;
  --muted: #756a58;
  --line: color-mix(in srgb, var(--ink) 14%, transparent);
  --tint: color-mix(in srgb, var(--heat) 8%, var(--paper));
  --tint-deep: color-mix(in srgb, var(--heat) 20%, var(--paper));
  --cool-tint: color-mix(in srgb, var(--cool) 12%, var(--paper));
  --card: color-mix(in srgb, #ffffff 78%, var(--paper));
  --shadow-hard: 7px 7px 0 color-mix(in srgb, var(--ink) 90%, transparent);
  --shadow-mid: 4px 4px 0 color-mix(in srgb, var(--ink) 88%, transparent);
  --shadow-soft: 0 18px 40px -18px color-mix(in srgb, var(--ink) 32%, transparent);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Instrument Sans", sans-serif;
  background: var(--paper); color: var(--ink);
  line-height: 1.6; font-weight: 400;
  -webkit-font-smoothing: antialiased;
  position: relative;
}
body::after {
  content: ""; position: fixed; inset: 0; z-index: 90; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E"); background-size: 240px; opacity: 0.05;
  mix-blend-mode: multiply;
}
h1, h2, h3, .brand, .price, .fbrand { font-family: "Fraunces", serif; }
a { color: var(--heat-deep); }
img { display: block; max-width: 100%; }
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--heat-deep);
}
.kicker::before { content: "☀"; font-size: 0.9rem; }

/* ---------- ticker ---------- */
.ticker { background: var(--ink); color: var(--paper); overflow: hidden; white-space: nowrap; }
.ticker__inner {
  display: inline-block; padding: 8px 0;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.26em; text-transform: uppercase;
  animation: ticker 30s linear infinite;
}
.ticker__inner b { color: color-mix(in srgb, var(--heat) 75%, #fff); font-weight: 700; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- header ---------- */
header.site {
  position: sticky; top: 0; z-index: 40;
  background: color-mix(in srgb, var(--paper) 90%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--ink);
}
header.site .wrap { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding-top: 15px; padding-bottom: 15px; }
.brand { font-size: 1.42rem; font-weight: 900; letter-spacing: -0.01em; text-decoration: none; color: var(--ink); font-style: italic; }
.brand b { color: var(--heat); font-weight: 900; }
nav.main { display: flex; gap: 26px; align-items: center; }
nav.main a {
  font-size: 0.86rem; font-weight: 600; letter-spacing: 0.04em;
  color: var(--ink); text-decoration: none; border-bottom: 2px solid transparent; padding-bottom: 2px;
}
nav.main a:hover { border-bottom-color: var(--heat); }
.badge {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--paper); background: var(--heat); padding: 7px 16px;
  transform: rotate(2deg); box-shadow: var(--shadow-mid); border: 2px solid var(--ink);
}

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; padding: 104px 0 88px; border-bottom: 2px solid var(--ink); }
.hero__mark {
  position: absolute; right: -0.06em; bottom: -0.22em; z-index: 0;
  font-family: "Fraunces", serif; font-weight: 900; font-style: italic;
  font-size: clamp(6rem, 22vw, 17rem); line-height: 1; letter-spacing: -0.04em;
  color: transparent; -webkit-text-stroke: 1.5px color-mix(in srgb, var(--ink) 18%, transparent);
  pointer-events: none; user-select: none; white-space: nowrap;
}
.hero__sun {
  position: absolute; right: 6%; top: 46px; width: 300px; height: 300px; z-index: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 34%, color-mix(in srgb, var(--heat) 62%, #ffd76a), var(--heat) 62%, var(--heat-deep));
  border: 2.5px solid var(--ink); box-shadow: var(--shadow-hard);
}
.hero__sun::before, .hero__sun::after {
  content: ""; position: absolute; inset: -34px; border-radius: 50%;
  border: 1.5px dashed color-mix(in srgb, var(--ink) 42%, transparent);
  animation: spin 46s linear infinite;
}
.hero__sun::after { inset: -68px; animation-duration: 80s; animation-direction: reverse; border-style: dotted; }
@keyframes spin { to { transform: rotate(360deg); } }
.hero__stamp {
  position: absolute; right: calc(6% - 24px); top: 300px; z-index: 2;
  background: var(--cool); color: var(--paper);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 9px 18px; transform: rotate(-4deg);
  border: 2px solid var(--ink); box-shadow: var(--shadow-mid);
}
.hero .wrap { position: relative; z-index: 3; }
.hero h1 {
  font-size: clamp(2.9rem, 8vw, 5.6rem); font-weight: 900; letter-spacing: -0.03em;
  line-height: 0.98; max-width: 760px; margin-top: 18px;
}
.hero h1 em { color: var(--heat); font-style: italic; font-weight: 600; }
.hero p.sub { color: var(--muted); max-width: 540px; margin-top: 24px; font-size: 1.14rem; }
.hero .cta-row { margin-top: 36px; display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.rise { opacity: 0; animation: rise 0.7s cubic-bezier(0.2, 0.7, 0.3, 1) forwards; }
.rise.d1 { animation-delay: 0.08s; } .rise.d2 { animation-delay: 0.18s; }
.rise.d3 { animation-delay: 0.28s; } .rise.d4 { animation-delay: 0.38s; }
@keyframes rise { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  background: var(--ink); color: var(--paper); text-decoration: none;
  font-weight: 700; font-size: 0.95rem; letter-spacing: 0.02em;
  padding: 15px 32px; border: 2px solid var(--ink);
  box-shadow: var(--shadow-mid);
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: var(--shadow-hard); }
.btn:active { transform: translate(2px, 2px); box-shadow: none; }
.btn.buy { background: var(--heat); }
.btn.buy:hover { background: var(--heat-deep); }
.btn.ghost { background: transparent; color: var(--ink); }
.btn.ghost:hover { background: var(--cool-tint); }
.btn.soon {
  background: transparent; color: var(--muted); cursor: default;
  border: 2px dashed color-mix(in srgb, var(--ink) 34%, transparent); box-shadow: none;
}
.btn.soon:hover { transform: none; box-shadow: none; }

/* ---------- stats strip ---------- */
.stats { border-bottom: 2px solid var(--ink); background: var(--cool-tint); }
.stats .wrap {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  padding: 0;
}
.stats .stat {
  padding: 18px 24px; border-left: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 2px;
}
.stats .stat:first-child { border-left: none; }
.stats .stat b { font-family: "Fraunces", serif; font-size: 1.3rem; font-weight: 800; }
.stats .stat span { font-size: 0.78rem; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; }

/* ---------- feature rows ---------- */
main { padding: 10px 0; }
.lineup-head { padding: 64px 0 8px; }
.lineup-head h2 { font-size: clamp(1.9rem, 4.4vw, 3rem); font-weight: 900; letter-spacing: -0.02em; }
.lineup-head h2 em { color: var(--heat); font-style: italic; font-weight: 600; }
.lineup-head p { color: var(--muted); margin-top: 8px; max-width: 560px; }
.row {
  display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: 56px; align-items: center; padding: 64px 0;
  border-bottom: 1px solid var(--line);
}
.row:last-of-type { border-bottom: none; }
.row.flip .row__media { order: 2; }
.row__media { position: relative; }
.row__media .frame {
  border: 2.5px solid var(--ink); box-shadow: var(--shadow-hard);
  background: var(--card); overflow: hidden; aspect-ratio: 5 / 4;
  transform: rotate(-1deg); transition: transform 0.25s ease;
}
.row.flip .row__media .frame { transform: rotate(1deg); }
.row:hover .row__media .frame { transform: rotate(0deg); }
.frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.row:hover .frame img { transform: scale(1.04); }
.frame .glyph { font-size: 6rem; display: grid; place-items: center; height: 100%; }
.row__media .lane-tag {
  position: absolute; top: -16px; left: -12px; z-index: 2;
  background: var(--paper); border: 2px solid var(--ink); box-shadow: var(--shadow-mid);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 7px 14px; transform: rotate(-3deg);
}
.row__num {
  font-family: "Fraunces", serif; font-weight: 900; font-style: italic;
  font-size: 1.05rem; color: var(--heat); letter-spacing: 0.06em;
}
.row__body h3 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); font-weight: 900; letter-spacing: -0.02em; line-height: 1.05; margin-top: 6px; }
.row__body h3 a { color: var(--ink); text-decoration: none; }
.row__body h3 a:hover { color: var(--heat-deep); }
.row__body .tag { font-size: 1.08rem; color: var(--muted); margin-top: 10px; font-style: italic; font-family: "Fraunces", serif; }
.ticks { list-style: none; margin: 20px 0 26px; }
.ticks li { padding-left: 30px; position: relative; margin-bottom: 9px; font-size: 0.98rem; }
.ticks li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--paper); background: var(--cool); border: 1.5px solid var(--ink);
  width: 19px; height: 19px; font-size: 0.72rem; font-weight: 800;
  display: grid; place-items: center; margin-top: 4px;
}
.row__foot { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.price { font-size: 1.9rem; font-weight: 900; }
.price small { font-size: 0.78rem; color: var(--muted); font-family: "Instrument Sans", sans-serif; font-weight: 600; display: block; letter-spacing: 0.06em; text-transform: uppercase; }
.details-link { font-size: 0.9rem; font-weight: 600; }

/* ---------- story band ---------- */
.story { background: var(--ink); color: var(--paper); padding: 84px 0; border-top: 2px solid var(--ink); }
.story .kicker { color: color-mix(in srgb, var(--heat) 80%, #fff); }
.story h2 {
  font-size: clamp(1.8rem, 4.4vw, 3rem); font-weight: 600; font-style: italic;
  max-width: 820px; line-height: 1.2; margin-top: 16px;
}
.story h2 b { color: color-mix(in srgb, var(--heat) 82%, #fff); font-weight: 900; }
.story p { color: color-mix(in srgb, var(--paper) 68%, transparent); max-width: 620px; margin-top: 18px; }

/* ---------- FAQ ---------- */
.faq { padding: 80px 0; }
.faq h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 900; margin-bottom: 30px; }
.faq details {
  border: 2px solid var(--ink); background: var(--card);
  margin-bottom: 12px; box-shadow: var(--shadow-mid);
}
.faq summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center;
  padding: 18px 22px; font-weight: 700; font-size: 1rem; gap: 14px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: "Fraunces", serif; font-size: 1.5rem; font-weight: 600; color: var(--heat); transition: transform 0.2s ease; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 22px 20px; color: var(--muted); max-width: 720px; }

/* ---------- final CTA ---------- */
.final { padding: 30px 0 96px; text-align: center; }
.final h2 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 900; letter-spacing: -0.02em; }
.final h2 em { color: var(--heat); font-style: italic; font-weight: 600; }
.final p { color: var(--muted); margin: 12px 0 30px; }

/* ---------- product page ---------- */
.product { padding: 52px 0 20px; }
.crumb { font-size: 0.86rem; margin-bottom: 34px; font-weight: 600; }
.crumb a { text-decoration: none; }
.pgrid { display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 5fr); gap: 60px; align-items: start; }
.gallery .frame {
  border: 2.5px solid var(--ink); box-shadow: var(--shadow-hard);
  background: var(--card); overflow: hidden; aspect-ratio: 1 / 1;
}
.gallery .frame img { width: 100%; height: 100%; object-fit: cover; }
.gallery .thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 18px; }
.gallery .thumbs a {
  border: 2px solid var(--ink); box-shadow: var(--shadow-mid); overflow: hidden;
  aspect-ratio: 1 / 1; background: var(--card); display: block;
  transition: transform 0.16s ease;
}
.gallery .thumbs a:hover { transform: translate(-2px, -2px); }
.gallery .thumbs img { width: 100%; height: 100%; object-fit: cover; }
.season-flag {
  display: inline-block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--paper);
  background: var(--cool); border: 2px solid var(--ink); box-shadow: var(--shadow-mid);
  padding: 6px 14px; margin-bottom: 20px; transform: rotate(-2deg);
}
.product h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 900; letter-spacing: -0.025em; line-height: 1.02; }
.product .tag { color: var(--muted); font-size: 1.15rem; margin: 14px 0 4px; font-style: italic; font-family: "Fraunces", serif; }
.product .buy-row { display: flex; align-items: center; gap: 24px; margin: 26px 0 8px; flex-wrap: wrap; }
.specs { width: 100%; border-collapse: collapse; margin: 30px 0 10px; font-size: 0.94rem; }
.specs th, .specs td { text-align: left; padding: 10px 14px; border: 1.5px solid var(--line); }
.specs th { font-weight: 700; white-space: nowrap; background: var(--tint); width: 34%; }
.shipbox {
  margin-top: 26px; border: 2px solid var(--ink); background: var(--cool-tint);
  box-shadow: var(--shadow-mid); padding: 16px 20px; font-size: 0.9rem;
  display: flex; flex-direction: column; gap: 6px;
}
.shipbox b { font-weight: 700; }
.cross { padding: 70px 0 80px; }
.cross h2 { font-size: clamp(1.6rem, 3.6vw, 2.3rem); font-weight: 900; margin-bottom: 26px; }
.cross-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 26px; }
.xcard {
  border: 2px solid var(--ink); background: var(--card); box-shadow: var(--shadow-mid);
  text-decoration: none; color: var(--ink); display: flex; flex-direction: column;
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}
.xcard:hover { transform: translate(-2px, -2px); box-shadow: var(--shadow-hard); }
.xcard .media { aspect-ratio: 4 / 3; overflow: hidden; border-bottom: 2px solid var(--ink); background: var(--tint); }
.xcard .media img { width: 100%; height: 100%; object-fit: cover; }
.xcard .media .glyph { font-size: 4rem; display: grid; place-items: center; height: 100%; }
.xcard .body { padding: 16px 18px 20px; display: flex; justify-content: space-between; align-items: baseline; gap: 10px; }
.xcard .body h3 { font-size: 1.05rem; font-weight: 700; }
.xcard .body .p { font-family: "Fraunces", serif; font-weight: 800; font-size: 1.05rem; color: var(--heat-deep); }

/* ---------- footer ---------- */
footer.site { border-top: 2px solid var(--ink); background: var(--tint); }
footer.site .wrap {
  padding-top: 46px; padding-bottom: 54px;
  display: grid; grid-template-columns: 2fr 1fr 1.4fr; gap: 40px;
}
.fbrand { font-weight: 900; font-size: 1.5rem; font-style: italic; }
.fbrand b { color: var(--heat); }
footer.site p { color: var(--muted); font-size: 0.88rem; margin-top: 8px; max-width: 340px; }
footer.site h4 { font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 12px; }
footer.site ul { list-style: none; }
footer.site li { margin-bottom: 8px; font-size: 0.9rem; }
footer.site li a { text-decoration: none; color: var(--ink); font-weight: 600; }
footer.site li a:hover { color: var(--heat-deep); }
footer.site .promise li { color: var(--muted); font-weight: 400; }
footer.site .legal { grid-column: 1 / -1; border-top: 1px solid var(--line); padding-top: 18px; font-size: 0.78rem; color: var(--muted); }

.preview-banner {
  background: #7c2d12; color: #fff; text-align: center; font-size: 0.82rem;
  font-weight: 700; padding: 7px 10px; letter-spacing: 0.06em;
}

@media (max-width: 860px) {
  .hero { padding: 64px 0 56px; }
  .hero__sun { width: 170px; height: 170px; right: -40px; top: 26px; opacity: 0.9; }
  .hero__stamp { display: none; }
  .row { grid-template-columns: 1fr; gap: 34px; padding: 48px 0; }
  .row.flip .row__media { order: 0; }
  .pgrid { grid-template-columns: 1fr; gap: 34px; }
  footer.site .wrap { grid-template-columns: 1fr; gap: 28px; }
  nav.main { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .ticker__inner { animation: none; }
  .rise { opacity: 1; animation: none; }
  .hero__sun::before, .hero__sun::after { animation: none; }
  .btn, .frame img, .xcard, .row__media .frame { transition: none; }
}
