/* Ownrshp LLC — Block-parent light canvas + Square cream product bands
   White/near-white canvas, near-black ink, muted gray. Cream for product.
   Amber scarce (focus / outline chips). Dark band only for machine/proof strips. */

:root {
  --bg: #ffffff;
  --bg-elev: #fafafa;
  --bg-card: #ffffff;
  --bg-card-2: #f7f6f3;
  --cream: #f5f2eb;
  --cream-ink: #111111;
  --cream-muted: #5c5a55;
  --line: rgba(0, 0, 0, 0.08);
  --line-strong: rgba(0, 0, 0, 0.14);
  --ink: #111111;
  --muted: #5c5b57;
  --dim: #8a8984;
  --amber: #c4842a;
  --amber-bright: #d4943a;
  --amber-deep: #a56e22;
  --amber-soft: rgba(196, 132, 42, 0.08);
  --amber-glow: transparent;
  --ok: #15803d;
  --deny: #dc2626;
  --safe: #15803d;
  --gate: #a16207;
  --ink-on-dark: #fafaf8;
  --muted-on-dark: #a3a29c;
  --dim-on-dark: #6f6e69;
  --line-on-dark: rgba(255, 255, 255, 0.1);
  --radius: 28px;
  --radius-sm: 16px;
  --radius-pill: 999px;
  --wrap: 1120px;
  --wrap-narrow: 740px;
  --header-h: 60px;
  --font: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --serif: "Instrument Serif", "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --mono: "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  --shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
}

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

html { scroll-behavior: smooth; color-scheme: light; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: -0.011em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  max-width: 100%;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  position: relative;
}

body::before { content: none; }

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }

.wrap {
  width: min(var(--wrap), calc(100% - 48px));
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.wrap-narrow {
  width: min(var(--wrap-narrow), calc(100% - 48px));
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

/* Optional cream band (Square soft surfaces) */
.surface-cream,
.band-cream {
  background: var(--cream);
  color: var(--cream-ink);
}
.surface-cream .muted,
.band-cream .muted,
.surface-cream .lede,
.band-cream .lede { color: var(--cream-muted); }
.surface-cream .kicker,
.band-cream .kicker { color: var(--cream-muted); }
.surface-cream .kicker::before,
.band-cream .kicker::before { background: var(--cream-muted); box-shadow: none; }
.surface-cream h1, .surface-cream h2, .surface-cream h3,
.band-cream h1, .band-cream h2, .band-cream h3 { color: var(--cream-ink); }
.surface-cream .chip,
.band-cream .chip {
  background: rgba(0,0,0,0.04);
  border-color: rgba(0,0,0,0.1);
  color: var(--cream-muted);
}
.surface-cream .chip strong,
.band-cream .chip strong { color: var(--cream-ink); }

/* Optional dark band — machine-strip / agent JSON / proof only */
.band-dark,
.surface-dark {
  background: #0a0a0a;
  color: var(--ink-on-dark);
}
.band-dark .muted,
.surface-dark .muted { color: var(--muted-on-dark); }
.band-dark a,
.surface-dark a { color: var(--ink-on-dark); }

/* Header — light, compact mark, tiny uppercase letterspaced nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header-h);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px) saturate(1.05);
  -webkit-backdrop-filter: blur(16px) saturate(1.05);
  overflow: visible;
}

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  height: 32px;
  overflow: hidden;
  flex: 0 0 auto;
}

.brand img {
  height: 32px;
  width: auto;
  margin-top: 0;
  transform: none;
  filter: none;
}

.brand-text {
  font-family: var(--font);
  font-size: 18px;
  letter-spacing: -0.04em;
  font-weight: 600;
  color: var(--ink);
  text-transform: none;
  line-height: 1;
}
.brand-text .tag {
  display: block;
  margin-top: 3px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

.nav-burger {
  display: none;
  position: relative;
  z-index: 70;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: transparent;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.nav-burger span,
.nav-burger span::before,
.nav-burger span::after {
  display: block;
  width: 14px;
  height: 1.5px;
  background: var(--ink);
  position: relative;
  transition: 0.2s ease;
}

.nav-burger span::before,
.nav-burger span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-burger span::before { top: -5px; }
.nav-burger span::after { top: 5px; }

.nav {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
}

.nav > a:not(.btn) {
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  transition: color 0.15s ease, background 0.15s ease;
}

.nav > a:not(.btn):hover,
.nav > a:not(.btn).is-active {
  color: var(--ink);
  background: rgba(0, 0, 0, 0.04);
}

.nav .btn { color: #fff; margin-left: 8px; }

/* Agent meta links — quieter, tucked */
.nav-agent-links {
  display: none;
  align-items: center;
  gap: 8px;
  margin-left: 4px;
  padding-left: 10px;
  border-left: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.02em;
}
.nav-agent-links a { color: var(--dim); }
.nav-agent-links a:hover { color: var(--amber); }

/* Buttons — black pill primary on white; outline secondary; amber scarce */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 0 22px;
  border-radius: var(--radius-pill);
  background: var(--ink);
  color: #ffffff;
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: -0.015em;
  border: 1px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  box-shadow: none;
  white-space: nowrap;
}

.btn:hover {
  background: #000000;
  color: #ffffff;
  transform: translateY(-1px);
}

.btn-sm {
  height: 34px;
  padding: 0 14px;
  font-size: 12px;
  letter-spacing: 0.02em;
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(0, 0, 0, 0.22);
  box-shadow: none;
}

.btn-ghost:hover {
  background: rgba(0, 0, 0, 0.03);
  border-color: rgba(0, 0, 0, 0.4);
  color: var(--ink);
}

.btn-amber-outline {
  background: transparent;
  color: var(--amber-deep);
  border: 1px solid var(--amber);
  box-shadow: none;
}
.btn-amber-outline:hover {
  background: var(--amber-soft);
}

.surface-cream .btn,
.band-cream .btn {
  background: var(--cream-ink);
  color: var(--cream);
}
.surface-cream .btn:hover,
.band-cream .btn:hover { background: #000; color: #fff; }
.surface-cream .btn-ghost,
.band-cream .btn-ghost {
  background: transparent;
  color: var(--cream-ink);
  border-color: rgba(0,0,0,0.22);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* Type — Square energy: Instrument Serif headlines, readable case */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 560;
}

.kicker::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: none;
}

h1, h2, h3, h4 {
  margin: 0;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.12;
  text-transform: none;
  overflow-wrap: break-word;
}

h1 {
  font-family: var(--serif);
  font-size: clamp(42px, 6.4vw, 68px);
  font-weight: 400;
  letter-spacing: -0.035em;
  color: var(--ink);
}

h1 em, h2 em, .serif-em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink);
  font-weight: 400;
}

h2 {
  font-family: var(--serif);
  font-size: clamp(30px, 3.8vw, 44px);
  font-weight: 400;
  letter-spacing: -0.03em;
  color: var(--ink);
}

h3 {
  font-family: var(--font);
  font-size: 22px;
  font-weight: 560;
  letter-spacing: -0.025em;
}

h4 {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  font-family: var(--font);
}

.lede {
  font-size: clamp(16px, 1.7vw, 19px);
  color: var(--muted);
  max-width: 36rem;
  line-height: 1.6;
  font-weight: 400;
  text-transform: none;
}

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

.muted { color: var(--muted); }
.dim { color: var(--dim); }

/* Hero — Square product shop: clear hierarchy, room to breathe */
.hero {
  padding: 88px 0 56px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero .lede { margin: 20px 0 28px; }
.hero .btn-row { margin-top: 4px; }
.hero .fine { margin-top: 18px; }

.price-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 8px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 28px;
  padding: 0 11px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  font-family: var(--font);
  font-size: 12px;
  letter-spacing: -0.01em;
}

.chip strong { color: var(--ink); font-weight: 560; }
.chip-amber {
  border-color: rgba(196, 132, 42, 0.45);
  background: transparent;
  color: var(--amber-deep);
  font-weight: 560;
}
.chip-amber strong { color: var(--amber-deep); }

.hero-frame {
  position: relative;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: var(--cream);
  overflow: hidden;
  box-shadow: var(--shadow);
  padding: 14px;
}

.hero-frame img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 18px;
  background: #111;
}

.hero-frame figcaption {
  position: absolute;
  left: 28px;
  bottom: 28px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-on-dark);
  background: rgba(0, 0, 0, 0.72);
  border: 1px solid var(--line-on-dark);
  padding: 6px 10px;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(8px);
}

/* Name teach */
.name-band {
  padding: 8px 0 64px;
}

.name-card {
  border: 1px solid var(--line);
  background: var(--bg-elev);
  border-radius: var(--radius);
  padding: 28px 32px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: center;
}

.name-spell {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.1;
  white-space: nowrap;
  text-transform: none;
}

.name-spell b {
  color: var(--amber-deep);
  font-weight: 400;
}

.name-card p { color: var(--muted); max-width: 46rem; }

/* Sections */
section { padding: 48px 0 96px; position: relative; z-index: 1; }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 36px;
}

.section-head .lede { margin: 12px 0 0; }

/* Product card — cream */
.product-card {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 36px;
  overflow: hidden;
  background: var(--cream);
  color: var(--cream-ink);
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
  background: #111;
}

.product-card-body {
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.product-card h3 {
  font-size: 34px;
  color: var(--cream-ink);
  text-transform: none;
  font-family: var(--serif);
  font-weight: 400;
}

.product-card .muted,
.product-card p { color: var(--cream-muted); }

.product-meta {
  display: flex;
  gap: 16px;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--cream-muted);
}

.product-meta b { color: var(--amber-deep); font-weight: 500; }

.product-card .btn {
  background: var(--cream-ink);
  color: var(--cream);
}
.product-card .btn-ghost {
  background: transparent;
  color: var(--cream-ink);
  border-color: rgba(0,0,0,0.2);
}

/* Gates */
.gate-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gate {
  border: 1px solid var(--line);
  background: var(--bg-elev);
  border-radius: 28px;
  padding: 28px 24px 24px;
  min-height: 220px;
}

.gate .lock {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: grid;
  place-items: center;
  color: var(--muted);
  margin-bottom: 18px;
  font-size: 16px;
}

.deny {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--deny);
  margin-bottom: 8px;
}

.gate h3 {
  font-family: var(--font);
  font-size: 26px;
  letter-spacing: -0.04em;
  font-weight: 560;
  margin-bottom: 10px;
  text-transform: none;
}

.gate p { color: var(--muted); font-size: 14.5px; }

/* Seats */
.seat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.seat {
  border: 1px solid var(--line);
  background: var(--bg-elev);
  border-radius: 24px;
  padding: 20px 18px;
  min-height: 148px;
}

.seat .num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--dim);
  letter-spacing: 0.08em;
}

.seat h3 {
  font-family: var(--font);
  font-size: 18px;
  margin: 8px 0 6px;
  letter-spacing: -0.03em;
  font-weight: 560;
  text-transform: none;
}

.seat p { color: var(--muted); font-size: 13.5px; }

.paste-block {
  background: #0a0a0a;
  border: 1px solid var(--line-on-dark);
  border-radius: 20px;
  padding: 16px 18px;
  color: var(--ink-on-dark);
}

.steps-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  counter-reset: step;
}

.step {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 18px 16px;
  background: var(--bg-elev);
  min-height: 160px;
}

.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--mono);
  font-size: 12px;
  color: var(--dim);
  letter-spacing: 0.08em;
}

.step h3 {
  font-family: var(--font);
  font-size: 17px;
  margin: 10px 0 8px;
  font-weight: 560;
  text-transform: none;
}

.step p { color: var(--muted); font-size: 13.5px; }

/* Guides */
.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.guide-card {
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px 24px;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  min-height: 240px;
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.guide-card:hover {
  border-color: rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.guide-card h3 {
  font-size: 26px;
  margin: 10px 0 12px;
  font-family: var(--serif);
  font-weight: 400;
}

.guide-card p { color: var(--muted); flex: 1; }

.guide-card .more {
  margin-top: 16px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 560;
}

/* Product page */
.crumb {
  padding: 28px 0 0;
  font-size: 13px;
  color: var(--dim);
}

.crumb a { color: var(--muted); }
.crumb a:hover { color: var(--ink); }

.pdp {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  padding: 28px 0 72px;
  align-items: start;
}

.gallery {
  display: grid;
  gap: 12px;
}

.gallery figure {
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--cream);
  padding: 12px;
}

.gallery img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 18px;
  background: #111;
}

.buybox {
  position: sticky;
  top: 88px;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 32px;
  padding: 32px 28px;
  background: var(--cream);
  color: var(--cream-ink);
  box-shadow: var(--shadow);
}

.buybox .kicker { color: var(--cream-muted); }
.buybox .kicker::before { background: var(--cream-muted); }
.buybox .muted,
.buybox .fine,
.buybox p { color: var(--cream-muted); }
.buybox .chip {
  background: rgba(0,0,0,0.04);
  border-color: rgba(0,0,0,0.1);
  color: var(--cream-muted);
}
.buybox .chip strong { color: var(--cream-ink); }
.buybox .chip-amber {
  border-color: rgba(196, 132, 42, 0.55);
  color: var(--amber-deep);
  background: transparent;
}
.buybox .chip-amber strong { color: var(--amber-deep); }

.buybox .price {
  font-family: var(--serif);
  font-size: 52px;
  letter-spacing: -0.04em;
  margin: 8px 0 4px;
  color: var(--cream-ink);
}

.buybox .price span {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--cream-muted);
  letter-spacing: 0;
}

.buybox .btn {
  width: 100%;
  margin: 18px 0 10px;
  background: var(--cream-ink);
  color: var(--cream);
}
.buybox .btn-ghost {
  background: transparent;
  color: var(--cream-ink);
  border-color: rgba(0,0,0,0.22);
}

.fine {
  font-size: 12.5px;
  color: var(--dim);
}

.includes {
  list-style: none;
  padding: 16px 0 0;
  margin: 16px 0 0;
  border-top: 1px solid rgba(0,0,0,0.1);
}

.includes li {
  padding: 7px 0;
  font-size: 14px;
  color: var(--cream-muted);
  padding-left: 18px;
  position: relative;
}

.includes li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--amber-deep);
}

/* Split */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  background: var(--bg-elev);
}

.panel .price {
  font-family: var(--serif);
  font-size: 42px;
  letter-spacing: -0.04em;
}
.panel .price span {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--muted);
}

.panel ul { margin: 12px 0 0; padding-left: 1.1em; color: var(--muted); }
.panel li { margin: 8px 0; }

/* FAQ */
.faq { display: grid; gap: 10px; }

details.faq-item {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--bg);
  padding: 0 20px;
}

details.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 0;
  font-weight: 560;
  letter-spacing: -0.02em;
}

details.faq-item summary::-webkit-details-marker { display: none; }

details.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--muted);
  font-weight: 400;
}

details.faq-item[open] summary::after { content: "–"; }

details.faq-item p {
  color: var(--muted);
  padding-bottom: 16px;
}

/* Article / guides prose — light canvas contrast */
.article { padding: 48px 0 96px; }

.article .kicker { margin-bottom: 14px; }

.article h1 { margin-bottom: 16px; font-size: clamp(36px, 5.2vw, 56px); }

.article .lede { margin-bottom: 36px; text-transform: none; }

.prose h2 {
  font-size: 32px;
  margin: 2.2em 0 0.6em;
  font-family: var(--serif);
  font-weight: 400;
}

.prose h3 {
  font-size: 20px;
  margin: 1.6em 0 0.5em;
  text-transform: none;
}

.prose p, .prose li { color: var(--muted); font-size: 17px; line-height: 1.65; }

.prose ul, .prose ol { padding-left: 1.2em; }

.prose li { margin: 8px 0; }

.prose strong { color: var(--ink); font-weight: 600; }

.prose a {
  color: var(--ink);
  font-weight: 560;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.22);
}
.prose a:hover { border-bottom-color: var(--amber); color: var(--amber-deep); }

.prose blockquote {
  margin: 1.6em 0;
  padding: 18px 22px;
  border-left: 2px solid rgba(0,0,0,0.2);
  background: var(--bg-elev);
  border-radius: 0 16px 16px 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.35;
}

.prose pre {
  margin: 1.6em 0;
  padding: 16px 18px;
  border: 1px solid var(--line-on-dark);
  background: #0a0a0a;
  border-radius: 16px;
  color: var(--ink-on-dark);
  font-family: var(--mono);
  font-size: 13.5px;
  line-height: 1.55;
  white-space: pre-wrap;
  overflow-x: auto;
}

.prose code {
  font-family: var(--mono);
  font-size: 0.86em;
  color: var(--amber-deep);
}

.callout {
  margin: 36px 0 0;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: var(--bg-elev);
}

.callout h3 { margin-bottom: 8px; }

/* Support */
.support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding-bottom: 80px;
}

.mail {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 40px);
  color: var(--ink);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 48px 0 28px;
  position: relative;
  z-index: 1;
  background: var(--bg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 1fr 1fr 0.9fr;
  gap: 32px;
  padding-bottom: 36px;
}

.footer-brand {
  height: 40px;
  overflow: hidden;
  margin: 0 0 12px 0;
}

.footer-brand img {
  height: 40px;
  width: auto;
  transform: none;
  filter: none;
}

.footer-grid p { color: var(--muted); font-size: 14.5px; max-width: 28rem; }

.footer-grid a {
  display: block;
  color: var(--muted);
  font-size: 14.5px;
  padding: 4px 0;
}

.footer-grid a:hover { color: var(--ink); }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--dim);
  font-size: 12.5px;
}

.cta-band {
  margin: 0 0 40px;
  padding: 48px 44px;
  border-radius: 36px;
  border: 1px solid transparent;
  background: var(--cream);
  color: var(--cream-ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.cta-band .kicker { color: var(--cream-muted); }
.cta-band .kicker::before { background: var(--cream-muted); }
.cta-band h2 { font-size: clamp(28px, 3.5vw, 42px); color: var(--cream-ink); }
.cta-band p { color: var(--cream-muted); margin-top: 8px; }
.cta-band .btn {
  background: var(--cream-ink);
  color: var(--cream);
}
.cta-band .btn-ghost {
  background: transparent;
  color: var(--cream-ink);
  border-color: rgba(0,0,0,0.22);
}

hr.rule {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 0;
}

/* Responsive */
@media (max-width: 980px) {
  .hero-grid,
  .product-card,
  .pdp,
  .split,
  .support-grid,
  .footer-grid,
  .cta-band,
  .name-card {
    grid-template-columns: 1fr;
  }

  .cta-band { align-items: flex-start; flex-direction: column; }

  .gate-grid,
  .guide-grid { grid-template-columns: 1fr; }

  .seat-grid { grid-template-columns: 1fr 1fr; }

  .steps, .steps-4 { grid-template-columns: 1fr 1fr; }

  .buybox { position: static; }

  .nav-burger { display: flex; }

  .nav {
    display: none;
    position: absolute;
    top: calc(var(--header-h) + 8px);
    right: 0;
    left: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: #fff;
    border: 1px solid var(--line-strong);
    border-radius: 20px;
    box-shadow: var(--shadow);
    z-index: 60;
  }

  .nav > a:not(.btn) {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 12px 14px;
    border-radius: 14px;
    letter-spacing: 0.12em;
  }

  .nav .btn {
    width: 100%;
    height: 48px;
    margin-top: 6px;
    margin-left: 0;
  }

  .nav-toggle:checked ~ .nav { display: flex; }

  .nav-toggle:checked + .nav-burger span { background: transparent; }
  .nav-toggle:checked + .nav-burger span::before { top: 0; transform: rotate(45deg); }
  .nav-toggle:checked + .nav-burger span::after { top: 0; transform: rotate(-45deg); }

  /* Full-viewport close target — does not sit on the burger (z 70) or nav (z 60) */
  .nav-toggle:checked {
    pointer-events: auto;
    position: fixed;
    inset: 0;
    width: auto;
    height: auto;
    margin: 0;
    clip: auto;
    clip-path: none;
    overflow: visible;
    opacity: 0;
    z-index: 45;
    cursor: default;
  }
  .nav::before {
    content: "";
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(17, 17, 17, 0.22);
    z-index: -1;
    pointer-events: none;
  }

  .hero { padding-top: 64px; }

  .name-spell { white-space: normal; }

  .footer-brand { margin-left: 0; }
}

@media (max-width: 560px) {
  .wrap, .wrap-narrow { width: min(var(--wrap), calc(100% - 48px)); }
  .seat-grid, .steps, .steps-4 { grid-template-columns: 1fr; }
  .hero-frame figcaption { display: none; }
  h1 { font-size: 36px; }
  .product-card-body, .buybox, .cta-band { padding: 22px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn, .guide-card { transition: none; }
}

@media (max-width: 1100px) {
  .nav-agent-links { display: none; }
}

/* ── AX / agent product surface ── */
.path-toggle {
  display: inline-flex;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  overflow: hidden;
  background: transparent;
  margin: 18px 0 0;
}
.path-toggle a {
  font-family: var(--font);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: none;
  font-weight: 560;
  padding: 8px 16px;
  color: var(--dim);
}
.path-toggle a.is-active,
.path-toggle a:hover {
  background: rgba(0, 0, 0, 0.04);
  color: var(--ink);
}

.ax-shell {
  padding: 28px 0 48px;
}
.ax-panel {
  border: 1px solid var(--line);
  border-radius: 32px;
  background: var(--bg);
  overflow: hidden;
  box-shadow: none;
}
.ax-panel-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-elev);
}
.ax-panel-head h2 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.03em;
  text-transform: none;
}
.ax-badge {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 5px 10px;
  background: transparent;
}
.ax-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.ax-cell {
  padding: 20px 18px 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  min-height: 168px;
}
.ax-cell:nth-child(5n) { border-right: 0; }
.ax-cell .ax-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 8px;
}
.ax-cell h3 {
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  text-transform: none;
}
.ax-cell p, .ax-cell li {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  margin: 0;
}
.ax-cell ul {
  margin: 0;
  padding-left: 1.05em;
}
.ax-cell li { margin: 4px 0; }
.ax-cell a {
  color: var(--ink);
  font-weight: 560;
  border-bottom: 1px solid rgba(0, 0, 0, 0.18);
}
.ax-cell a:hover { color: var(--amber-deep); border-bottom-color: var(--amber); }
.ax-cell code, .mono-link {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--amber-deep);
}

.dual-path {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}
.dual-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 22px 20px;
  background: var(--bg-elev);
}
.dual-card.agent {
  border-color: var(--line-strong);
  background: #fff;
}
.dual-card .who {
  font-family: var(--font);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.dual-card h3 {
  font-family: var(--font);
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 8px;
  text-transform: none;
}
.dual-card p { color: var(--muted); font-size: 13.5px; margin: 0 0 12px; }
.dual-card .btn-row { margin-top: 4px; }

/* Machine strip — dark band (agent endpoints only) */
.machine-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
  padding: 14px 16px;
  border-radius: 20px;
  background: #0a0a0a;
  border: 1px solid var(--line-on-dark);
}
.machine-strip a {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.02em;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line-on-dark);
  background: transparent;
  color: var(--muted-on-dark);
}
.machine-strip a:hover {
  color: var(--amber-bright);
  border-color: rgba(232, 165, 75, 0.45);
}

.catalog-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
}
.catalog-table th,
.catalog-table td {
  text-align: left;
  padding: 12px 8px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.catalog-table th {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dim);
  font-weight: 500;
}
.catalog-table td { color: var(--muted); }
.catalog-table td strong { color: var(--ink); font-weight: 560; }
.status-pill {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
}
.status-pill.live { color: var(--safe); border-color: rgba(21, 128, 61, 0.35); }
.status-pill.draft { color: var(--gate); border-color: rgba(161, 98, 7, 0.35); }
.status-pill.free { color: var(--amber-deep); border-color: rgba(196, 132, 42, 0.4); }

.gate-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  border-radius: var(--radius-pill);
  margin: 2px 4px 2px 0;
}
.gate-tag.safe {
  color: var(--safe);
  background: rgba(21, 128, 61, 0.06);
  border: 1px solid rgba(21, 128, 61, 0.22);
}
.gate-tag.gated {
  color: var(--deny);
  background: rgba(220, 38, 38, 0.06);
  border: 1px solid rgba(220, 38, 38, 0.22);
}

.incentive-banner {
  margin: 0 0 20px;
  padding: 14px 18px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: var(--bg-elev);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}
.incentive-banner strong {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.incentive-banner a { color: var(--amber-deep); font-weight: 560; }

.proof-card {
  border: 1px solid var(--line-on-dark);
  border-radius: 20px;
  padding: 18px 16px;
  background: #0a0a0a;
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--muted-on-dark);
}
.proof-card .pass {
  color: #86efac;
  font-weight: 600;
  letter-spacing: 0.06em;
}

section.tight { padding: 40px 0 80px; }

/* Paths / dual human-agent — calm cream band below hero */
.paths-band {
  padding: 48px 0 56px;
  background: var(--cream);
  color: var(--cream-ink);
}
.paths-band .section-head { margin-bottom: 24px; }
.paths-band .lede { color: var(--cream-muted); }
.paths-band .dual-card {
  background: #fff;
  border-color: rgba(0,0,0,0.08);
}
.paths-band .dual-card.agent {
  background: rgba(255,255,255,0.72);
}
.paths-band .machine-strip { margin-top: 20px; }
.paths-band .path-toggle {
  margin: 0 0 16px;
  background: #fff;
  border-color: rgba(0,0,0,0.1);
}

/* Cream catalog / product sections */
section.band-cream { padding: 56px 0 72px; }
.band-cream .panel {
  background: #fff;
  border-color: rgba(0,0,0,0.06);
}
.band-cream .catalog-table td { color: var(--cream-muted); }
.band-cream .catalog-table td strong { color: var(--cream-ink); }
.band-cream .catalog-table th { color: var(--cream-muted); }
.band-cream .fine { color: var(--cream-muted); }



@media (max-width: 1100px) {
  .ax-grid { grid-template-columns: 1fr 1fr; }
  .ax-cell:nth-child(5n) { border-right: 1px solid var(--line); }
  .ax-cell:nth-child(2n) { border-right: 0; }
}
@media (max-width: 700px) {
  .ax-grid, .dual-path { grid-template-columns: 1fr; }
  .ax-cell { border-right: 0 !important; }
}

/* Focus — amber sparingly */
:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
}

/* Company homepage hero — Block parent calm, first screen is brand */
.hero-company {
  padding: 112px 0 72px;
}
.hero-company-inner {
  max-width: 40rem;
}
.hero-company h1 {
  margin-top: 14px;
  font-size: clamp(56px, 9vw, 88px);
  letter-spacing: -0.04em;
  line-height: 0.98;
}
.hero-company .lede {
  margin: 22px 0 32px;
  max-width: 34rem;
  font-size: clamp(17px, 1.9vw, 20px);
  line-height: 1.55;
}
.hero-company .fine {
  margin-top: 22px;
  color: var(--dim);
  font-size: 13.5px;
  max-width: 32rem;
}
.shop-strip {
  margin-top: 4px;
}
.band-cream .shop-strip {
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: none;
}
.band-cream .catalog-table a {
  color: var(--amber-deep);
  font-weight: 560;
}
@media (max-width: 900px) {
  .hero-company { padding: 72px 0 48px; }
  .hero-company h1 { font-size: clamp(48px, 14vw, 64px); }
}

/* Hybrid homepage — Brand frame + OF-001 flagship proof */
.hero-hybrid {
  padding: 88px 0 56px;
}
.hero-hybrid .hero-brand {
  max-width: 38rem;
  margin-bottom: 48px;
}
.hero-hybrid .hero-brand h1 {
  margin-top: 14px;
  font-size: clamp(52px, 8vw, 80px);
  letter-spacing: -0.04em;
  line-height: 0.98;
}
.hero-hybrid .hero-brand .lede {
  margin: 20px 0 16px;
  max-width: 34rem;
  font-size: clamp(17px, 1.9vw, 20px);
  line-height: 1.55;
}
.hero-hybrid .hero-brand .fine {
  color: var(--dim);
  font-size: 13.5px;
  max-width: 32rem;
}

.flagship-proof {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  padding: 22px;
  border-radius: 36px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: var(--cream);
  color: var(--cream-ink);
  box-shadow: var(--shadow);
}
.flagship-proof .flagship-thumb {
  margin: 0;
  box-shadow: none;
}
.flagship-proof .flagship-body {
  padding: 8px 12px 8px 4px;
}
.flagship-proof .kicker {
  color: var(--cream-muted);
}
.flagship-proof .kicker::before {
  background: var(--cream-muted);
  box-shadow: none;
}
.flagship-proof h2 {
  margin: 10px 0 12px;
  font-size: clamp(28px, 3.4vw, 36px);
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--cream-ink);
  text-transform: none;
}
.flagship-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 0 0 12px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cream-muted);
}
.flagship-price strong {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
  letter-spacing: -0.02em;
  text-transform: none;
  color: var(--cream-ink);
}
.flagship-one {
  margin: 0 0 22px;
  color: var(--cream-muted);
  max-width: 28rem;
  line-height: 1.55;
  font-size: 15.5px;
}
.flagship-proof .btn {
  background: var(--cream-ink);
  color: var(--cream);
}
.flagship-proof .btn:hover {
  background: #000;
  color: #fff;
}
.flagship-proof .btn-ghost {
  background: transparent;
  color: var(--cream-ink);
  border-color: rgba(0, 0, 0, 0.18);
}
.flagship-proof .btn-ghost:hover {
  border-color: rgba(0, 0, 0, 0.4);
  background: rgba(0, 0, 0, 0.04);
}
.flagship-proof .fine {
  margin-top: 18px;
  color: var(--cream-muted);
  font-size: 13px;
}
.flagship-proof .fine strong {
  color: var(--cream-ink);
  font-weight: 560;
}

@media (max-width: 900px) {
  .hero-hybrid { padding: 64px 0 40px; }
  .hero-hybrid .hero-brand { margin-bottom: 32px; }
  .hero-hybrid .hero-brand h1 { font-size: clamp(40px, 11vw, 56px); }
  .flagship-proof {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 18px;
    border-radius: 28px;
  }
  .flagship-proof .flagship-thumb { order: 0; }
  .flagship-proof .flagship-body { order: 1; padding: 4px 6px 8px; }
  .flagship-proof h2 {
    font-size: clamp(24px, 6.8vw, 32px);
    line-height: 1.2;
    text-wrap: balance;
    overflow-wrap: break-word;
    hyphens: manual;
  }
}


/* ── Mobile phone pass (~390) ── */
.hero-grid > *,
.flagship-proof > *,
.pdp > *,
.product-card > *,
.footer-grid > *,
.split > *,
.support-grid > * { min-width: 0; }

.mail { overflow-wrap: anywhere; }

@media (max-width: 980px) {
  .section-head { align-items: flex-start; }
  .footer-grid a {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 10px 0;
  }
  .path-toggle a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
  details.faq-item summary {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }
  details.faq-item summary::after { float: none; }
}

@media (max-width: 700px) {
  .panel:has(.catalog-table) {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    max-width: 100%;
    padding: 8px 12px 4px !important;
  }
  .catalog-table { min-width: 36rem; }

  .btn-row {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .btn-row .btn { width: 100%; }

  .machine-strip { gap: 8px; }
  .machine-strip a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    max-width: 100%;
    overflow-wrap: anywhere;
    white-space: normal;
  }

  .product-card img { min-height: 200px; }
  .ax-cell { min-height: 0; }
  h2 { text-wrap: balance; }
  .buybox h1 {
    font-size: clamp(26px, 7vw, 34px) !important;
    line-height: 1.2;
    text-wrap: balance;
    overflow-wrap: break-word;
  }
}

@media (max-width: 560px) {
  .hero-hybrid { padding: 36px 0 24px; }
  .hero-hybrid .hero-brand { margin-bottom: 20px; }
  .hero-hybrid .hero-brand h1 {
    font-size: clamp(40px, 10.4vw, 48px);
    line-height: 1.05;
  }
  .hero-company { padding: 40px 0 28px; }
  .hero-company h1 { font-size: clamp(40px, 10.4vw, 48px); }

  .flagship-proof {
    padding: 16px;
    gap: 14px;
    border-radius: 24px;
  }
  .flagship-proof .flagship-body { padding: 2px 4px 6px; }
  .flagship-proof h2 { margin: 8px 0 8px; }
  .flagship-one { margin-bottom: 16px; }
  .flagship-price strong { font-size: 28px; }
  .product-card h3 { font-size: 26px; }
  .gate h3 { font-size: 22px; }
  .article h1 { font-size: clamp(32px, 9vw, 40px); }

  .cta-band .btn-row { width: 100%; }
  .cta-band { padding: 24px 20px; border-radius: 24px; margin-bottom: 0; }
  .cta-band .btn { width: 100%; }
  main .wrap:has(.cta-band) { padding-bottom: 32px !important; }

  .buybox { padding: 22px 20px; border-radius: 24px; }
  .buybox .price { font-size: 40px; }
  .buybox .btn { width: 100%; }

  .panel { padding: 20px 18px; }
  .gate, .guide-card { padding: 20px 18px; min-height: 0; }
  .hero-frame { padding: 10px; border-radius: 22px; }
  .hero-frame img { border-radius: 14px; }
  .gallery figure { padding: 10px; border-radius: 22px; }

  section { padding: 28px 0 40px; }
  section.tight { padding: 20px 0 32px; }
  section.band-cream { padding: 28px 0 36px; }
  .hero { padding: 36px 0 24px; }
  .ax-shell { padding: 16px 0 28px; }
  .section-head { margin-bottom: 20px; }

  .footer-grid { gap: 4px 16px; padding-bottom: 16px; }
  .site-footer { padding: 28px 0 20px; }
  .footer-bottom { gap: 8px; }
  .mail { font-size: clamp(22px, 6.4vw, 32px); }

  .incentive-banner { padding: 12px 14px; }
  .ax-panel-head { padding: 14px 16px; }
  .ax-cell { padding: 14px 16px; }
  .name-card { padding: 18px 16px; }
  .callout { padding: 18px 16px; }
  .prose pre { padding: 14px; font-size: 12.5px; }
  .prose blockquote { font-size: 20px; padding: 14px 16px; }

  .crumb { overflow-wrap: anywhere; padding-top: 18px; }
}


/* Quiet-company homepage craft — 2026-09-13 */
.hero-hybrid .hero-brand h1 {
  font-size: clamp(40px, 6.2vw, 64px);
  letter-spacing: -0.035em;
  line-height: 1.05;
  max-width: 14ch;
  text-wrap: balance;
}

.gate-quiet {
  min-height: 0;
  padding: 22px 22px 20px;
  background: var(--bg);
  border-radius: 24px;
}
.gate-quiet h3 {
  margin: 0;
  font-size: 22px;
  letter-spacing: -0.03em;
}
.gate-grid-quiet {
  gap: 12px;
}
.gates-quiet .section-head {
  align-items: flex-end;
}
.section-head-side {
  margin: 0;
  text-align: right;
}

.quiet-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.5;
}
.quiet-links a {
  color: var(--ink);
  border-bottom: 1px solid rgba(0, 0, 0, 0.14);
  padding-bottom: 1px;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.quiet-links a:hover {
  color: var(--amber-deep);
  border-bottom-color: var(--amber);
}

.ax-shell-quiet {
  padding: 20px 0 40px;
}
.ax-shell-quiet .machine-strip {
  margin-top: 0;
}

@media (max-width: 900px) {
  .hero-hybrid .hero-brand h1 {
    font-size: clamp(32px, 9vw, 44px);
    max-width: none;
  }
  .gates-quiet .section-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
  .section-head-side { text-align: left; }
}


/* PDP buybox craft — 2026-09-13 */
.buybox-craft .buybox-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 4px;
}
.buybox-craft .buybox-top .kicker { margin: 0; }
.buybox-title {
  font-family: var(--serif);
  font-size: clamp(30px, 3.6vw, 40px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin: 10px 0 8px;
  color: var(--cream-ink);
  text-wrap: balance;
}
.buybox-one {
  margin: 0 0 16px;
  color: var(--cream-muted);
  font-size: 15.5px;
  line-height: 1.5;
  max-width: 28rem;
}
.buybox-craft .price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 0 0 14px;
  font-size: 56px;
  line-height: 1;
}
.buybox-craft .price span {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.buybox-craft .price-row { margin-bottom: 4px; }
.buybox-craft .btn { margin: 16px 0 0; }
.buybox-craft .btn + .btn { margin-top: 10px; }
.buybox-craft .fine { margin-top: 12px; }
.buybox-craft .includes { margin-top: 18px; padding-top: 14px; }
.buybox-craft .includes li::before { content: "·"; color: var(--cream-muted); font-weight: 700; }

.seat-grid-7 {
  grid-template-columns: repeat(7, 1fr);
}
@media (max-width: 1100px) {
  .seat-grid-7 { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 700px) {
  .seat-grid-7 { grid-template-columns: repeat(2, 1fr); }
  .buybox-craft .price { font-size: 48px; }
  .buybox-title { font-size: clamp(28px, 7vw, 34px); }
}


/* Quiet catalog cards — 2026-09-13 */
.catalog-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.catalog-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px 20px 20px;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.72);
  color: var(--cream-ink);
  transition: border-color 0.15s ease, transform 0.15s ease, background 0.15s ease;
  min-height: 100%;
}
.catalog-card:hover {
  border-color: rgba(0, 0, 0, 0.18);
  transform: translateY(-1px);
  background: #fff;
}
.catalog-card-flagship {
  border-color: rgba(0, 0, 0, 0.12);
  background: #fff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.04);
}
.catalog-card-muted {
  opacity: 0.78;
}
.catalog-card-muted:hover { opacity: 1; }
.catalog-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.catalog-card .sku {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream-muted);
}
.catalog-card h3 {
  margin: 4px 0 0;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: var(--cream-ink);
  text-wrap: balance;
}
.catalog-card-price {
  margin: 4px 0 0;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream-muted);
}
.catalog-card-price strong {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.02em;
  text-transform: none;
  color: var(--cream-ink);
  margin-right: 6px;
}
.catalog-card-one {
  margin: 0;
  color: var(--cream-muted);
  font-size: 14px;
  line-height: 1.45;
  flex: 1;
}
.catalog-card-cta {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 560;
  color: var(--amber-deep);
  border-bottom: 1px solid transparent;
  align-self: flex-start;
}
.catalog-card:hover .catalog-card-cta {
  border-bottom-color: var(--amber);
}
.band-cream .catalog-card .status-pill.live,
.band-cream .catalog-card .status-pill.draft,
.band-cream .catalog-card .status-pill.free {
  /* inherit existing pills */
}

@media (max-width: 900px) {
  .catalog-cards { grid-template-columns: 1fr; }
}


/* Quiet footer — 2026-09-13 */
.site-footer-quiet {
  padding-top: 48px;
}
.footer-quiet {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px 40px;
  flex-wrap: wrap;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.footer-quiet-brand {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 22rem;
}
.footer-quiet-brand p {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
}
.footer-quiet-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  align-items: center;
}
.footer-quiet-links a {
  color: var(--muted);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: -0.01em;
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.footer-quiet-links a:hover {
  color: var(--ink);
  border-bottom-color: rgba(0, 0, 0, 0.22);
}
.site-footer-quiet .footer-bottom {
  border-top: none;
  padding-top: 16px;
}
@media (max-width: 700px) {
  .footer-quiet {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }
}
