:root {
  --accent: #0e7490;
  --accent-dark: #155e75;
  --paper: #f8fafc;
  --ink: #221c14;
  --muted: #6f6656;
  --line: color-mix(in srgb, var(--ink) 12%, transparent);
  --tint: color-mix(in srgb, var(--accent) 9%, var(--paper));
  --tint-deep: color-mix(in srgb, var(--accent) 22%, var(--paper));
  --card: color-mix(in srgb, #ffffff 72%, var(--paper));
  --radius: 18px;
  --shadow: 0 2px 4px color-mix(in srgb, var(--ink) 7%, transparent),
            0 14px 34px -14px color-mix(in srgb, var(--ink) 22%, transparent);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Outfit", sans-serif;
  background: var(--paper); color: var(--ink);
  line-height: 1.6; font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, .brand, .price { font-family: "Fraunces", serif; }
a { color: var(--accent-dark); }
.wrap { max-width: 1100px; margin: 0 auto; padding: 0 22px; }

/* ---------- ticker ---------- */
.ticker { background: var(--ink); color: var(--paper); overflow: hidden; white-space: nowrap; }
.ticker__inner {
  display: inline-block; padding: 7px 0;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  animation: ticker 28s linear infinite;
}
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- header ---------- */
header.site {
  position: sticky; top: 0; z-index: 20;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
header.site .wrap { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; padding-bottom: 14px; }
.brand { font-size: 1.35rem; font-weight: 700; letter-spacing: -0.01em; text-decoration: none; color: var(--ink); }
.brand b { color: var(--accent); font-weight: 900; }
.badge {
  font-family: "Outfit", sans-serif; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--paper);
  background: var(--accent); border-radius: 999px; padding: 6px 16px;
  transform: rotate(2deg); box-shadow: var(--shadow);
}

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; padding: 92px 0 74px; }
.hero__blob, .hero__blob2 { position: absolute; border-radius: 50%; pointer-events: none; }
.hero__blob {
  width: 560px; height: 560px; right: -160px; top: -220px;
  background: radial-gradient(circle at 35% 35%, var(--tint-deep), transparent 68%);
}
.hero__blob2 {
  width: 380px; height: 380px; left: -180px; bottom: -220px;
  background: radial-gradient(circle at 60% 40%, var(--tint), transparent 70%);
}
.hero .wrap { position: relative; }
.hero h1 {
  font-size: clamp(2.6rem, 7vw, 4.6rem); font-weight: 800; letter-spacing: -0.03em;
  line-height: 1.02; max-width: 700px;
}
.hero h1 em { color: var(--accent); font-style: italic; font-weight: 600; }
.hero p.sub { color: var(--muted); max-width: 520px; margin-top: 22px; font-size: 1.12rem; font-weight: 350; }
.hero .updated { font-size: 0.8rem; color: var(--muted); margin-top: 10px; letter-spacing: 0.04em; }
.hero .cta-row { margin-top: 32px; 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; font-family: "Outfit", sans-serif;
  background: var(--ink); color: var(--paper); text-decoration: none;
  font-weight: 700; font-size: 0.95rem; letter-spacing: 0.02em;
  padding: 14px 30px; border-radius: 999px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); background: var(--accent-dark); }
.btn.buy { background: var(--accent); }
.btn.buy:hover { background: var(--accent-dark); }
.btn.soon {
  background: transparent; color: var(--muted); cursor: default;
  border: 1.5px dashed color-mix(in srgb, var(--ink) 30%, transparent);
}
.btn.soon:hover { transform: none; box-shadow: none; }
.btn.ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
.btn.ghost:hover { background: var(--ink); color: var(--paper); }

/* ---------- trust strip ---------- */
.trust { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--tint); }
.trust .wrap {
  display: flex; gap: 12px; justify-content: space-between; flex-wrap: wrap;
  padding-top: 16px; padding-bottom: 16px;
  font-size: 0.86rem; font-weight: 600; letter-spacing: 0.02em;
}
.trust span { display: flex; align-items: center; gap: 8px; }

/* ---------- lanes + cards ---------- */
main { padding: 26px 0 10px; }
h2.lane {
  font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; letter-spacing: -0.02em;
  margin: 54px 0 24px;
  text-decoration: underline wavy var(--accent);
  text-decoration-thickness: 2.5px; text-underline-offset: 10px;
}
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(248px, 1fr)); gap: 26px; }
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.media {
  aspect-ratio: 4 / 3; display: grid; place-items: center; overflow: hidden;
  background: linear-gradient(140deg, var(--tint), var(--tint-deep));
}
.media img { width: 100%; height: 100%; object-fit: cover; }
.media .glyph {
  font-size: 4.6rem; line-height: 1; transform: rotate(-6deg);
  filter: drop-shadow(0 10px 12px color-mix(in srgb, var(--ink) 25%, transparent));
  transition: transform 0.25s ease;
}
.card:hover .glyph { transform: rotate(4deg) scale(1.12); }
.card__body { padding: 18px 20px 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card__body h3 { font-size: 1.14rem; font-weight: 600; letter-spacing: -0.01em; line-height: 1.3; }
.card__body h3 a { color: var(--ink); text-decoration: none; }
.card__body h3 a:hover { color: var(--accent-dark); }
.card__body .angle { color: var(--muted); font-size: 0.9rem; flex: 1; font-weight: 350; }
.card__foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 8px; }
.price { font-size: 1.3rem; font-weight: 700; }
.card .btn { padding: 10px 20px; font-size: 0.86rem; }

/* ---------- product page ---------- */
.product { padding: 44px 0 30px; }
.crumb { font-size: 0.85rem; margin-bottom: 30px; font-weight: 600; }
.crumb a { text-decoration: none; }
.pgrid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: 48px; align-items: start; }
.pgrid .media { border-radius: var(--radius); border: 1px solid var(--line); aspect-ratio: 1 / 1; }
.pgrid .media .glyph { font-size: 7rem; }
.season-flag {
  display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--accent-dark);
  background: var(--tint-deep); border-radius: 999px; padding: 5px 14px; margin-bottom: 18px;
}
.product h1 { font-size: clamp(1.9rem, 4.5vw, 2.9rem); font-weight: 800; letter-spacing: -0.025em; line-height: 1.08; }
.product .sub { color: var(--muted); font-size: 1.1rem; margin: 16px 0 4px; font-weight: 350; }
.product ul { list-style: none; margin: 22px 0 30px; }
.product li { padding-left: 30px; position: relative; margin-bottom: 10px; }
.product li::before {
  content: "\2600"; position: absolute; left: 0; top: 1px;
  color: var(--accent); font-size: 0.95rem;
}
.product .price { font-size: 2rem; margin-bottom: 18px; }
.shipnote { color: var(--muted); font-size: 0.85rem; margin-top: 14px; }
@media (max-width: 760px) {
  .pgrid { grid-template-columns: 1fr; gap: 26px; }
  .hero { padding: 60px 0 46px; }
}

/* ---------- footer ---------- */
footer.site { border-top: 1px solid var(--line); margin-top: 80px; background: var(--tint); }
footer.site .wrap { padding-top: 34px; padding-bottom: 46px; }
footer.site .fbrand { font-family: "Fraunces", serif; font-weight: 700; font-size: 1.2rem; }
footer.site p { color: var(--muted); font-size: 0.85rem; margin-top: 6px; }

.preview-banner {
  background: #7c2d12; color: #fff; text-align: center; font-size: 0.82rem;
  font-weight: 700; padding: 7px 10px; letter-spacing: 0.06em;
}
@media (prefers-reduced-motion: reduce) {
  .ticker__inner { animation: none; }
  .rise { opacity: 1; animation: none; }
  .card, .btn, .media .glyph { transition: none; }
}
