/* Jony's Utilities — studio blocks, solid color, no image weight */
:root {
  --ink: #122033;
  --ink-soft: #1c2f45;
  --paper: #f4f6f8;
  --paper-deep: #e6ebf0;
  --mute: #5a6b7c;
  --line: #c8d2dc;
  --studio: #0b6e6a;
  --studio-deep: #085450;
  --studio-ink: #e8f5f4;
  --signal: #b5532a;
  --max: 70rem;
  --pad: clamp(1.25rem, 4vw, 2.25rem);
  /* Local stacks only — no Google Fonts (faster from mainland China) */
  --font-display: Georgia, "Iowan Old Style", "Palatino Linotype", Palatino, "Songti SC", serif;
  --font-body: "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Noto Sans SC", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  background: var(--paper);
}

a { color: var(--studio); text-decoration-thickness: 1px; text-underline-offset: 0.18em; }
a:hover { color: var(--studio-deep); }

.wrap {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

/* —— Top bar —— */
.site-header {
  background: var(--ink);
  color: #fff;
}
.site-header .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.75rem;
  align-items: baseline;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.brand {
  font-family: var(--font-display);
  font-weight: 560;
  font-size: clamp(1.05rem, 2.2vw, 1.28rem);
  letter-spacing: -0.03em;
  color: #fff;
  text-decoration: none;
  line-height: 1.15;
}
.brand:hover { color: var(--studio-ink); }
.nav { display: flex; flex-wrap: wrap; gap: 0.35rem 1.15rem; }
.nav a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
}
.nav a:hover { color: #fff; }

.site-main { flex: 1; width: 100%; }

/* —— Full-bleed color bands —— */
.band {
  width: 100%;
}
.band--hero {
  background: var(--studio);
  color: var(--studio-ink);
  min-height: min(72vh, 34rem);
  display: flex;
  align-items: flex-end;
  padding: clamp(2.5rem, 8vh, 4.5rem) 0 clamp(2rem, 5vh, 3rem);
  animation: rise 0.65s ease both;
}
.band--hero .brand-mark {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 9vw, 4.6rem);
  line-height: 0.92;
  letter-spacing: -0.045em;
  margin: 0 0 1.1rem;
  color: #fff;
  max-width: 11ch;
}
.band--hero h1 {
  color: #fff;
  max-width: 18ch;
  margin-bottom: 0.85rem;
}
.band--hero .lead {
  color: rgba(232, 245, 244, 0.88);
  max-width: 36rem;
}
.band--ink {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.88);
}
.band--ink h1,
.band--ink h2,
.band--ink .brand-mark { color: #fff; }
.band--ink .lead,
.band--ink p { color: rgba(255, 255, 255, 0.72); }
.band--paper {
  background: var(--paper);
  padding: clamp(2rem, 5vh, 3.25rem) 0;
}
.band--deep {
  background: var(--paper-deep);
  padding: clamp(2rem, 5vh, 3.25rem) 0;
}
.band--studio-soft {
  background: #d7ecea;
  padding: clamp(1.75rem, 4vh, 2.5rem) 0;
}

.page-mast {
  background: var(--ink-soft);
  color: #fff;
  padding: clamp(2rem, 6vh, 3.25rem) 0 clamp(1.75rem, 4vh, 2.5rem);
  animation: rise 0.55s ease both;
}
.page-mast h1 { color: #fff; margin-bottom: 0.65rem; }
.page-mast .lead {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 0;
}
.page-mast .meta-line {
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.85rem;
}
.page-mast .meta-line a { color: rgba(255, 255, 255, 0.8); }
.page-mast .meta-line a:hover { color: #fff; }

.page-body {
  padding: clamp(1.75rem, 4vh, 2.75rem) 0 3.5rem;
}

/* —— Type —— */
h1 {
  font-family: var(--font-display);
  font-weight: 560;
  letter-spacing: -0.035em;
  font-size: clamp(2rem, 4.5vw, 3.05rem);
  line-height: 1.05;
  margin: 0 0 0.75rem;
}
h2 {
  font-family: var(--font-display);
  font-weight: 560;
  letter-spacing: -0.02em;
  font-size: 1.4rem;
  margin: 0 0 0.65rem;
  color: var(--ink);
}
p.lead {
  font-size: 1.14rem;
  line-height: 1.5;
  color: var(--mute);
  max-width: 38rem;
  margin: 0 0 1.25rem;
}
p, li { line-height: 1.55; color: var(--mute); }
ul, ol { padding-left: 1.15rem; }

.section-label {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--mute);
  margin: 0 0 1rem;
}

/* —— CTAs —— */
.cta-row { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.4rem; }
.btn {
  display: inline-block;
  border: 0;
  padding: 0.8rem 1.2rem;
  font: inherit;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}
.btn-primary {
  background: var(--ink);
  color: #fff !important;
}
.btn-primary:hover { background: #0a1522; color: #fff !important; }
.band--hero .btn-primary {
  background: #fff;
  color: var(--studio-deep) !important;
}
.band--hero .btn-primary:hover {
  background: var(--studio-ink);
  color: var(--studio-deep) !important;
}
.btn-ghost {
  background: transparent;
  color: var(--ink) !important;
  outline: 2px solid var(--line);
  outline-offset: -2px;
}
.btn-ghost:hover { outline-color: var(--ink); }
.band--hero .btn-ghost,
.block--studio .btn-ghost,
.block--ink .btn-ghost,
.page-mast .btn-ghost {
  color: #fff !important;
  outline-color: rgba(255, 255, 255, 0.45);
}
.band--hero .btn-ghost:hover,
.block--studio .btn-ghost:hover,
.block--ink .btn-ghost:hover,
.page-mast .btn-ghost:hover { outline-color: #fff; }
.block--studio .btn-primary,
.page-mast .btn-primary {
  background: #fff;
  color: var(--studio-deep) !important;
}
.block--studio .btn-primary:hover,
.page-mast .btn-primary:hover {
  background: var(--studio-ink);
  color: var(--studio-deep) !important;
}
.block--ink .btn-primary {
  background: var(--studio);
  color: #fff !important;
}

/* —— Catalog as solid rows —— */
.product-list { list-style: none; padding: 0; margin: 0; }
.product-list li {
  display: grid;
  gap: 0.4rem 1.5rem;
  grid-template-columns: 1fr auto;
  align-items: start;
  padding: 1.35rem 1.25rem;
  margin: 0 0 0.65rem;
  background: #fff;
  animation: rise 0.6s ease both;
}
.product-list li:nth-child(even) {
  background: var(--paper-deep);
}
.product-list a.name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.product-list a.name:hover { color: var(--studio); }
.product-list .short { margin: 0; max-width: 40rem; grid-column: 1 / -1; }
.product-list .meta {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  padding-top: 0.15rem;
}
.status {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--studio);
  margin-right: 0.55rem;
}
.status.coming-soon { color: var(--signal); }

/* —— Content blocks (solid fills, not cards) —— */
.block {
  padding: 1.35rem 1.4rem;
  margin: 0 0 0.85rem;
  background: #fff;
}
.block--tint { background: var(--paper-deep); }
.block--studio {
  background: var(--studio);
  color: var(--studio-ink);
}
.block--studio h2,
.block--studio strong { color: #fff; }
.block--studio p,
.block--studio li { color: rgba(232, 245, 244, 0.9); }
.block--studio a { color: #fff; }
.block--ink {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.88);
}
.block--ink h2,
.block--ink strong { color: #fff; }
.block--ink p,
.block--ink li { color: rgba(255, 255, 255, 0.78); }
.block--ink a { color: #9fdad6; }
.block--ink a:hover { color: #fff; }

.price {
  font-family: var(--font-display);
  font-size: 1.85rem;
  color: var(--ink);
  margin: 0.25rem 0;
  letter-spacing: -0.02em;
}
.block--studio .price,
.block--ink .price { color: #fff; }
.fine { font-size: 0.92rem; margin-top: 0.6rem; }
.meta-line { font-size: 0.92rem; color: var(--mute); margin-bottom: 1rem; }

.legal-body { padding-bottom: 2rem; }
.legal-body h2 { margin-top: 1.75rem; }
.legal-body p,
.legal-body li { color: var(--ink); opacity: 0.88; }

/* —— Footer —— */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
  padding: 1.75rem 0 2.25rem;
  margin-top: auto;
}
.site-footer .foot-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.1rem;
  margin-bottom: 0.9rem;
}
.site-footer a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-weight: 600;
}
.site-footer a:hover { color: #fff; }
.trust-line { margin: 0.35rem 0 0; max-width: 46rem; line-height: 1.5; }

@keyframes rise {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .band--hero,
  .page-mast,
  .product-list li { animation: none; }
  html { scroll-behavior: auto; }
}
@media (max-width: 640px) {
  .product-list li { grid-template-columns: 1fr; }
  .product-list .meta { white-space: normal; }
}
