/* ==========================================================================
   KoiSwarm — design system
   High contrast, large type, restrained colour. Japanese garden soul,
   modern AI-company scale. Base text is black on paper / white on ink.
   ========================================================================== */

/* ---- Tokens -------------------------------------------------------------- */
:root {
  /* Surfaces — clean, warm near-white. No texture. */
  --paper:      #FAF9F5;
  --paper-2:    #F1EFE8;
  --card:       #FFFFFF;
  --dark:       #0F0E0C;
  --dark-2:     #1A1815;

  /* Text — base is near-pure black or pure white. */
  --ink:        #0B0B0A;
  --ink-2:      #3B382F;   /* secondary */
  --ink-3:      #6A6559;   /* tertiary, sparing */
  --white:      #FFFFFF;
  --white-2:    rgba(255,255,255,.76);
  --white-3:    rgba(255,255,255,.55);

  /* Lines */
  --line:       #E3DED2;
  --line-2:     #CFC9B9;
  --line-dark:  rgba(255,255,255,.14);

  /* Accent — links, CTAs, small marks only. */
  --accent:     #C6613F;
  --accent-deep:#A2452A;
  --accent-soft:#F3E3D9;
  --gold:       #D79A3C;

  /* Radii */
  --r:    14px;
  --r-lg: 20px;
  --r-xl: 28px;

  /* Shadows */
  --shadow: 0 1px 2px rgba(16,14,11,.05);
  --lift:   0 18px 40px -22px rgba(16,14,11,.28), 0 2px 6px rgba(16,14,11,.05);

  /* Motion */
  --ease: cubic-bezier(.22,1,.36,1);

  /* Layout */
  --nav-h: 74px;
  --pad:   clamp(22px, 5vw, 56px);
  --maxw:  1240px;

  /* Fonts */
  --serif: "Shippori Mincho", "Source Serif 4", Georgia, serif;
  --sans:  "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

/* ---- Reset --------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, canvas, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; border: none; background: none; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--accent-soft); color: var(--accent-deep); }

/* ---- Typography ---------------------------------------------------------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; color: var(--ink); letter-spacing: -0.02em; line-height: 1.08; }

.display  { font-size: clamp(46px, 7.4vw, 98px); line-height: 1.0;  letter-spacing: -0.035em; }
.h-xl     { font-size: clamp(38px, 5.6vw, 72px); line-height: 1.04; letter-spacing: -0.03em; }
.h-lg     { font-size: clamp(32px, 4.4vw, 56px); line-height: 1.06; letter-spacing: -0.025em; }
.h-md     { font-size: clamp(26px, 3vw, 38px);   line-height: 1.1;  letter-spacing: -0.02em; }
.h-sm     { font-size: clamp(21px, 2.1vw, 27px); line-height: 1.2;  letter-spacing: -0.015em; }

.lead     { font-size: clamp(19px, 1.7vw, 24px); line-height: 1.55; color: var(--ink-2); }
.body-lg  { font-size: clamp(17px, 1.3vw, 20px); line-height: 1.65; color: var(--ink-2); }
p         { font-size: 18px; line-height: 1.65; }
.small    { font-size: 16px; color: var(--ink-2); }

.serif { font-family: var(--serif); }
.muted { color: var(--ink-2); }
.tint  { color: var(--accent); }

/* Section label — plain sentence case, left aligned. No uppercase tracking. */
.label {
  display: block; font-family: var(--sans); font-size: 16px; font-weight: 500;
  color: var(--ink-3); margin-bottom: 20px;
}
.label::before { content: ""; display: inline-block; width: 26px; height: 1px; background: var(--line-2); vertical-align: middle; margin-right: 12px; }

/* ---- Layout -------------------------------------------------------------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }
.narrow { max-width: 820px; }
/* Centred reading column — keeps long-form pages off the left edge. */
.col { max-width: 900px; margin-inline: auto; }
.section { padding-block: clamp(84px, 12vw, 168px); position: relative; }
.section-sm { padding-block: clamp(56px, 8vw, 104px); }
.head { max-width: 900px; }
.head .lead { margin-top: 26px; }
.mt-1 { margin-top: 12px; } .mt-2 { margin-top: 24px; } .mt-3 { margin-top: 40px; } .mt-4 { margin-top: 64px; }

.rule { height: 1px; border: 0; background: var(--line); }
/* in-page anchors must clear the fixed nav */
[id] { scroll-margin-top: calc(var(--nav-h) + 28px); }

/* ---- Buttons ------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-size: 17px; font-weight: 500; letter-spacing: -0.01em;
  padding: 15px 28px; border-radius: 999px; border: 1.5px solid transparent;
  transition: background .2s var(--ease), color .2s, border-color .2s, transform .2s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--ink); color: var(--white); }
.btn-primary:hover { background: #000; transform: translateY(-1px); }
.btn-accent { background: var(--accent); color: var(--white); }
.btn-accent:hover { background: var(--accent-deep); transform: translateY(-1px); }
.btn-ghost { border-color: var(--line-2); color: var(--ink); }
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-1px); }
.btn-lg { font-size: 18px; padding: 17px 34px; }
.btn-block { width: 100%; }
.on-dark .btn-primary { background: var(--white); color: var(--ink); }
.on-dark .btn-primary:hover { background: #f2f2f2; }
.on-dark .btn-ghost { border-color: rgba(255,255,255,.3); color: var(--white); }
.on-dark .btn-ghost:hover { border-color: var(--white); }

/* Text link with arrow */
.link {
  display: inline-flex; align-items: center; gap: 8px; font-size: 17px; font-weight: 500;
  color: var(--ink); border-bottom: 1.5px solid var(--line-2); padding-bottom: 3px;
  transition: border-color .2s, color .2s;
}
.link:hover { border-color: var(--ink); }
.link svg { width: 16px; height: 16px; transition: transform .2s var(--ease); }
.link:hover svg { transform: translateX(3px); }
.on-dark .link { color: var(--white); border-color: rgba(255,255,255,.35); }
.on-dark .link:hover { border-color: var(--white); }

/* ---- Nav ----------------------------------------------------------------- */
.nav {
  position: fixed; inset: 0 0 auto 0; height: var(--nav-h); z-index: 200;
  display: flex; align-items: center;
  background: color-mix(in srgb, var(--paper) 84%, transparent);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent; transition: border-color .25s, background .25s;
}
.nav.scrolled { border-bottom-color: var(--line); }
.nav .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand .crest { width: 34px; height: 34px; }
.brand .word { font-family: var(--serif); font-weight: 600; font-size: 22px; letter-spacing: -0.02em; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links > a, .nav-drop > button {
  font-size: 16.5px; font-weight: 450; color: var(--ink); padding: 9px 15px; border-radius: 10px;
  transition: background .16s; display: inline-flex; align-items: center; gap: 6px;
}
.nav-links > a:hover, .nav-drop > button:hover { background: rgba(0,0,0,.05); }
.nav-links a.active { font-weight: 600; }

/* Specialists dropdown */
.nav-drop { position: relative; }
.nav-drop > button svg { width: 14px; height: 14px; transition: transform .2s; }
.nav-drop:hover > button svg, .nav-drop:focus-within > button svg { transform: rotate(180deg); }
.nav-menu {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(-6px);
  min-width: 232px; background: var(--card); border: 1px solid var(--line); border-radius: var(--r);
  box-shadow: var(--lift); padding: 8px; opacity: 0; pointer-events: none;
  transition: opacity .18s, transform .18s var(--ease);
}
.nav-drop:hover .nav-menu, .nav-drop:focus-within .nav-menu { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.nav-menu a { display: block; padding: 10px 14px; border-radius: 8px; font-size: 16.5px; color: var(--ink); white-space: nowrap; transition: background .15s; }
.nav-menu a:hover { background: var(--paper-2); }

.burger { display: none; width: 44px; height: 44px; border-radius: 10px; align-items: center; justify-content: center; }
.burger span { display: block; width: 22px; height: 1.7px; background: var(--ink); border-radius: 2px; transition: transform .25s var(--ease), opacity .2s; }
.burger span + span { margin-top: 6px; }
.burger.open span:nth-child(1) { transform: translateY(7.7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7.7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: var(--nav-h) 0 auto 0; z-index: 199; background: var(--paper);
  border-bottom: 1px solid var(--line); padding: 18px var(--pad) 34px; max-height: calc(100dvh - var(--nav-h)); overflow-y: auto;
  transform: translateY(-10px); opacity: 0; pointer-events: none; transition: transform .28s var(--ease), opacity .2s;
}
.mobile-menu.open { transform: none; opacity: 1; pointer-events: auto; }
.mobile-menu a { display: block; font-size: 20px; padding: 15px 2px; border-bottom: 1px solid var(--line); }
.mobile-menu .sub { font-size: 17px; padding-left: 16px; color: var(--ink-2); }
.mobile-menu .btn { margin-top: 22px; }
@media (max-width: 1000px) { .nav-links { display: none; } .nav .btn-nav { display: none; } .burger { display: flex; } }

/* ---- Footer -------------------------------------------------------------- */
.footer { background: var(--dark); color: var(--white); padding-block: 88px 40px; }
.footer a { color: var(--white); }
.footer a:hover { text-decoration: underline; text-underline-offset: 4px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr repeat(4, 1fr); gap: 48px 28px; }
.footer .brand .word { color: var(--white); }
.footer h4 { font-family: var(--sans); font-size: 16px; font-weight: 600; color: var(--white); margin-bottom: 20px; letter-spacing: 0; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.footer ul a { font-size: 16.5px; color: var(--white); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap;
  margin-top: 72px; padding-top: 28px; border-top: 1px solid var(--line-dark); font-size: 15.5px; color: var(--white-2); }
@media (max-width: 1100px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } .footer-brand { grid-column: 1 / -1; } }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---- Cards --------------------------------------------------------------- */
.card { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 32px; }
.card h3 { margin-bottom: 12px; }
.card p { font-size: 17px; color: var(--ink-2); }

/* ---- Specialist tiles ---------------------------------------------------- */
/* Lead tile: the entry point, paired with a real screen. */
.spec-feature {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(28px, 4vw, 60px); align-items: center;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-xl);
  padding: clamp(26px, 3.2vw, 50px); margin-bottom: 20px;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.spec-feature:hover { border-color: var(--line-2); box-shadow: var(--lift); }
.spec-feature .idx { font-size: 14px; color: var(--ink-3); font-variant-numeric: tabular-nums; margin-bottom: 18px; }
.spec-feature h3 { font-size: clamp(28px, 2.8vw, 40px); margin-bottom: 14px; }
.spec-feature p { font-size: clamp(17px, 1.25vw, 19px); color: var(--ink-2); }
.spec-feature .frame { background: var(--paper-2); border-radius: var(--r-lg); padding: clamp(10px, 1.2vw, 18px); }
.spec-feature .frame img { width: 100%; border-radius: 10px; border: 1px solid rgba(0,0,0,.07);
  box-shadow: 0 18px 36px -22px rgba(16,14,11,.4); }
@media (max-width: 900px) { .spec-feature { grid-template-columns: 1fr; } }

.spec-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 1000px) { .spec-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 660px)  { .spec-grid { grid-template-columns: 1fr; } }

.spec {
  position: relative; overflow: hidden; display: flex; flex-direction: column; min-height: 236px; min-width: 0;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 32px;
  transition: transform .32s var(--ease), border-color .32s var(--ease), box-shadow .32s var(--ease);
}
.spec::before {                       /* warm wash that surfaces on hover */
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0;
  background: radial-gradient(120% 90% at 100% 0%, rgba(198,97,63,.10), transparent 62%);
  transition: opacity .38s var(--ease);
}
.spec:hover { transform: translateY(-4px); border-color: var(--line-2); box-shadow: var(--lift); }
.spec:hover::before { opacity: 1; }
.spec > * { position: relative; }
.spec .idx { font-size: 14px; color: var(--ink-3); font-variant-numeric: tabular-nums; margin-bottom: 20px; }
.spec h3 { font-size: clamp(21px, 1.8vw, 25px); margin-bottom: 10px; }
.spec p { font-size: 16.5px; line-height: 1.58; color: var(--ink-2); }
.spec .go { margin-top: auto; padding-top: 24px; display: inline-flex; align-items: center; gap: 9px; font-size: 16px; font-weight: 500; color: var(--ink); }
.spec .go svg { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.spec:hover .go svg { transform: translateX(5px); }

/* ---- Grids --------------------------------------------------------------- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1000px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px) { .grid-2, .grid-3 { grid-template-columns: 1fr; } }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 88px); align-items: center; }
.split.wide-r { grid-template-columns: 0.85fr 1.15fr; }
@media (max-width: 900px) { .split, .split.wide-r { grid-template-columns: 1fr; gap: 44px; } }

/* ---- Dark band ----------------------------------------------------------- */
.ink-band { background: var(--dark); color: var(--white); }
.ink-band h1, .ink-band h2, .ink-band h3 { color: var(--white); }
.ink-band .lead, .ink-band p { color: var(--white-2); }
.ink-band .label { color: var(--white-3); }
.ink-band .label::before { background: rgba(255,255,255,.28); }
.on-dark { color: var(--white); }

/* ---- Media frame (real product screenshots / video only) ------------------ */
.media {
  position: relative; border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; background: var(--card); box-shadow: var(--lift);
}
.media img, .media video { width: 100%; height: auto; display: block; }
.ink-band .media { border-color: var(--line-dark); background: var(--dark-2); }
/* Neutral slot shown until the real capture is dropped in — deliberately not a
   fake UI: just an empty frame with a note. */
.media-slot { aspect-ratio: 16 / 10; display: grid; place-items: center; text-align: center; padding: 32px;
  background: repeating-linear-gradient(135deg, var(--paper) 0 12px, var(--paper-2) 12px 24px); }
.ink-band .media-slot { background: repeating-linear-gradient(135deg, var(--dark-2) 0 12px, #221E18 12px 24px); }
.media-slot p { font-size: 16px; color: var(--ink-3); }
.ink-band .media-slot p { color: var(--white-3); }
.media-cap { margin-top: 16px; font-size: 15.5px; color: var(--ink-3); }
.ink-band .media-cap { color: var(--white-3); }

/* ---- Hero ---------------------------------------------------------------- */
.hero { position: relative; min-height: 94svh; display: flex; align-items: flex-end; overflow: hidden;
  background: var(--dark) url("/assets/img/koi-pond.jpg") center / cover no-repeat; }
.hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
@media (prefers-reduced-motion: reduce) { .hero-canvas { display: none; } }
.hero-veil { position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(10,8,6,.52) 0%, rgba(10,8,6,.12) 38%, rgba(10,8,6,.55) 78%, rgba(10,8,6,.86) 100%); }
.hero .wrap { position: relative; z-index: 2; padding-top: calc(var(--nav-h) + 80px); padding-bottom: 80px; }
.hero h1 { color: var(--white); max-width: 16ch; }
.hero .lead { color: var(--white-2); margin-top: 30px; max-width: 60ch; font-size: clamp(19px, 1.8vw, 25px); }
.hero-actions { margin-top: 44px; display: flex; gap: 16px; flex-wrap: wrap; }
/* The hero sits on dark water — buttons must read against it. */
.hero .btn-primary { background: var(--white); color: var(--ink); }
.hero .btn-primary:hover { background: #ECEAE4; }
.hero .btn-ghost { border-color: rgba(255,255,255,.42); color: var(--white); background: rgba(255,255,255,.06); backdrop-filter: blur(6px); }
.hero .btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,.14); }

/* Interior page header */
.page-head { padding-top: calc(var(--nav-h) + 96px); padding-bottom: 20px; }
.page-head h1 { max-width: 18ch; }
.page-head .lead { margin-top: 28px; max-width: 62ch; }

/* ---- Specialist page hero ------------------------------------------------ */
.spec-hero { padding-top: calc(var(--nav-h) + 88px); }
.spec-eyebrow { font-size: 17px; color: var(--ink-3); margin-bottom: 22px; }
.spec-eyebrow a { color: var(--ink-3); }
.spec-eyebrow a:hover { color: var(--ink); }

/* Fact rows on specialist pages */
.facts { display: grid; gap: 0; margin-top: 8px; }
.fact { display: grid; grid-template-columns: 260px 1fr; gap: 32px; padding: 30px 0; border-top: 1px solid var(--line); align-items: start; }
.fact:last-child { border-bottom: 1px solid var(--line); }
.fact h3 { font-size: 21px; letter-spacing: -0.01em; }
.fact p { font-size: 17.5px; color: var(--ink-2); }
@media (max-width: 760px) { .fact { grid-template-columns: 1fr; gap: 10px; } }

/* Other specialists strip */
.more-specs { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
@media (max-width: 900px) { .more-specs { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .more-specs { grid-template-columns: 1fr; } }
.more-specs a { border: 1px solid var(--line); border-radius: var(--r); padding: 22px 24px; transition: border-color .2s, transform .2s var(--ease); background: var(--card); }
.more-specs a:hover { border-color: var(--ink); transform: translateY(-2px); }
.more-specs .n { font-family: var(--serif); font-size: 20px; }
.more-specs .d { font-size: 15.5px; color: var(--ink-3); margin-top: 5px; }

/* ---- Forms --------------------------------------------------------------- */
.field { display: flex; flex-direction: column; gap: 9px; margin-bottom: 20px; text-align: left; }
.field label { font-size: 16px; font-weight: 500; color: var(--ink); }
.field input, .field textarea {
  font: inherit; font-size: 17px; color: var(--ink); background: var(--card);
  border: 1.5px solid var(--line-2); border-radius: 12px; padding: 14px 16px; width: 100%;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--ink); }
.field textarea { resize: vertical; min-height: 140px; }
.form-note { font-size: 15px; color: var(--ink-3); margin-top: 8px; }

.signup { display: flex; gap: 12px; flex-wrap: wrap; max-width: 540px; }
.signup input { flex: 1 1 240px; font: inherit; font-size: 17px; padding: 16px 20px; border-radius: 999px;
  border: 1.5px solid var(--line-2); background: var(--card); color: var(--ink); }
.signup input:focus { outline: none; border-color: var(--ink); }
.on-dark .signup input, .ink-band .signup input { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.26); color: var(--white); }
.on-dark .signup input::placeholder, .ink-band .signup input::placeholder { color: var(--white-3); }
.form-msg { font-size: 16px; margin-top: 14px; min-height: 20px; }
.form-msg.ok { color: #4E7A3F; } .form-msg.err { color: var(--accent-deep); }
.ink-band .form-msg.ok { color: #9CCB86; } .ink-band .form-msg.err { color: #E8A88E; }

/* ---- Legal / doc pages --------------------------------------------------- */
.doc { max-width: 820px; margin-inline: auto; }
.doc h1 { font-size: clamp(36px, 5vw, 60px); margin-bottom: 18px; }
.doc .updated { color: var(--ink-3); font-size: 16px; margin-bottom: 56px; }
.doc h2 { font-size: clamp(24px, 2.6vw, 32px); margin: 56px 0 16px; }
.doc p, .doc li { font-size: 18px; line-height: 1.75; color: var(--ink-2); }
.doc p + p { margin-top: 18px; }
.doc ul, .doc ol { margin: 16px 0 16px 24px; }
.doc li + li { margin-top: 10px; }
.doc a { color: var(--accent-deep); text-decoration: underline; text-underline-offset: 3px; }
.doc strong { color: var(--ink); }

table.legal { width: 100%; border-collapse: collapse; }
table.legal th, table.legal td { padding: 24px 0; border-bottom: 1px solid var(--line); vertical-align: top; text-align: left; font-size: 17.5px; line-height: 1.7; }
table.legal th { width: 280px; font-weight: 600; color: var(--ink); padding-right: 32px; }
table.legal td { color: var(--ink-2); }
table.legal a { color: var(--accent-deep); }
@media (max-width: 700px) { table.legal, table.legal tbody, table.legal tr, table.legal th, table.legal td { display: block; width: 100%; }
  table.legal th { border: 0; padding-bottom: 6px; } table.legal td { padding-top: 0; } }

/* ---- Pricing ------------------------------------------------------------- */
.price-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; max-width: 900px; margin-inline: auto; }
@media (max-width: 760px) { .price-grid { grid-template-columns: 1fr; } }
.price { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 40px; display: flex; flex-direction: column; min-width: 0; }
.price .tier { font-size: 17px; font-weight: 600; color: var(--ink); }
.price .amount { font-family: var(--serif); font-size: clamp(38px, 4vw, 52px); margin: 16px 0 6px; letter-spacing: -0.03em; }
.price .amount small { font-size: 18px; font-family: var(--sans); color: var(--ink-3); letter-spacing: 0; }
.price .desc { color: var(--ink-2); font-size: 17px; margin-bottom: 28px; }
.price ul { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 34px; }
.price li { display: flex; gap: 12px; font-size: 17px; color: var(--ink-2); }
.price li svg { width: 19px; height: 19px; flex-shrink: 0; margin-top: 3px; color: var(--ink); }
.price .btn { margin-top: auto; }
@media (max-width: 460px) { .price { padding: 28px; } .btn { padding: 14px 22px; } }

/* ---- FAQ ----------------------------------------------------------------- */
.faq { max-width: 900px; margin-inline: auto; }
details.q { border-bottom: 1px solid var(--line); }
details.q:first-child { border-top: 1px solid var(--line); }
details.q summary { list-style: none; cursor: pointer; padding: 30px 0; display: flex; justify-content: space-between; gap: 24px; align-items: center;
  font-family: var(--serif); font-size: clamp(20px, 2vw, 25px); color: var(--ink); }
details.q summary::-webkit-details-marker { display: none; }
details.q summary .chev { width: 20px; height: 20px; flex-shrink: 0; color: var(--ink-3); transition: transform .25s var(--ease); }
details.q[open] summary .chev { transform: rotate(180deg); }
details.q .a { padding: 0 0 30px; color: var(--ink-2); font-size: 18px; line-height: 1.75; max-width: 68ch; }

/* ---- Prose --------------------------------------------------------------- */
.prose { max-width: 760px; margin-inline: auto; }
.prose p { font-size: 20px; line-height: 1.75; color: var(--ink-2); }
.prose p + p { margin-top: 26px; }
.prose h2 { font-size: clamp(28px, 3.4vw, 42px); margin: clamp(56px,7vw,88px) 0 22px; }
.prose .pull { font-family: var(--serif); font-size: clamp(26px, 3.4vw, 40px); line-height: 1.25; color: var(--ink);
  margin: clamp(48px,6vw,72px) 0; letter-spacing: -0.02em; }
.prose a { color: var(--accent-deep); text-decoration: underline; text-underline-offset: 3px; }

/* ---- Photographic panel (contained, no parallax) -------------------------- */
.image-band { position: relative; border-radius: var(--r-xl); overflow: hidden;
  background-color: var(--dark); background-size: cover; background-position: center;
  min-height: 460px; display: grid; align-items: end; }
.image-band .overlay { position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(8,7,5,.10) 0%, rgba(8,7,5,.42) 55%, rgba(8,7,5,.78) 100%); }
.image-band .wrap { position: relative; z-index: 2; padding: 56px clamp(28px,4vw,56px); max-width: none; }
.image-band .band-line { font-family: var(--serif); color: var(--white); font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.12; letter-spacing: -0.03em; max-width: 22ch; }
.image-band .band-sub { color: var(--white-2); margin-top: 16px; font-size: clamp(17px, 1.4vw, 19px); max-width: 52ch; }

/* ---- Product screenshot panel (tinted frame, rounded, soft depth) --------- */
.shot { background: var(--paper-2); border-radius: var(--r-xl); padding: clamp(14px, 2.4vw, 34px); }
.shot img, .shot video { width: 100%; height: auto; border-radius: 12px; border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 24px 48px -28px rgba(16,14,11,.45), 0 2px 6px rgba(16,14,11,.06); }
.shot.dark { background: var(--dark-2); }
.shot-cap { margin-top: 18px; font-size: 16px; color: var(--ink-3); }
/* Honest empty slot — never a fake UI. */
.shot .slot { aspect-ratio: 16/9; display: grid; place-items: center; text-align: center; padding: 32px;
  border-radius: 12px; border: 1px dashed var(--line-2); background: var(--card); }
.shot .slot p { font-size: 16px; color: var(--ink-3); max-width: 40ch; }

/* Ink brushstroke divider */
.ink-divider { display: block; width: min(70%, 560px); height: auto; margin: 0 auto; opacity: .8; mix-blend-mode: multiply;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent); }

/* Full artwork shown complete (never cropped), museum-style */
.plate { margin: 0; }
.plate img { width: 100%; border-radius: var(--r-lg); border: 1px solid var(--line); box-shadow: var(--lift); }
.plate figcaption { margin-top: 18px; font-size: 16px; color: var(--ink-3); max-width: 70ch; }

.koi-figure { margin: clamp(40px,5vw,64px) 0; }
.koi-figure img { width: 100%; border-radius: var(--r); }
.koi-figure figcaption { margin-top: 16px; font-size: 16px; color: var(--ink-3); }

/* ---- Cookie consent ------------------------------------------------------ */
.cookie {
  position: fixed; left: 20px; right: 20px; bottom: 20px; z-index: 300;
  max-width: 620px; background: var(--card); border: 1px solid var(--line-2);
  border-radius: var(--r-lg); box-shadow: 0 24px 60px -20px rgba(16,14,11,.42);
  padding: 26px 28px; transform: translateY(140%); transition: transform .45s var(--ease);
}
.cookie.show { transform: translateY(0); }
.cookie h4 { font-family: var(--serif); font-size: 21px; margin-bottom: 10px; }
.cookie p { font-size: 16px; color: var(--ink-2); line-height: 1.6; }
.cookie p a { color: var(--accent-deep); text-decoration: underline; text-underline-offset: 3px; }
.cookie-actions { display: flex; gap: 12px; margin-top: 22px; flex-wrap: wrap; }
.cookie .btn { font-size: 16px; padding: 12px 22px; }
@media (max-width: 560px) { .cookie { left: 12px; right: 12px; bottom: 12px; padding: 22px; } .cookie-actions .btn { flex: 1 1 auto; } }

/* ---- Reveal -------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .07s; } .reveal.d2 { transition-delay: .14s; } .reveal.d3 { transition-delay: .21s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1 !important; transform: none !important; transition: none !important; } }
@media (scripting: none) { .reveal { opacity: 1 !important; transform: none !important; } }

.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
