/* Henry Tikkanen -- puhujasivusto.
   Fold A -design-jarjestelma (DRAFT v2, GHP 2026-06-15).
   Kelta/musta/punainen kirjankansi-ilme (Luovat suomalaiset). Anton + Hanken Grotesk.
   Punainen = yksittaisia kirjaimia (.r), ei kokonaisia sanoja. */

:root {
  --yellow: #F5C400;
  --yellow-deep: #e0b400;
  --red: #E22A18;
  --red-deep: #c41f0f;
  --ink: #161310;
  --ink-2: #211c16;
  --ink-soft: rgba(22, 19, 16, .66);
  --paper: #FFFDF3;
  --paper-2: #fbf5e2;
  --paper-dim: rgba(255, 253, 243, .82);
  --paper-faint: rgba(255, 253, 243, .58);
  --rule: rgba(22, 19, 16, .9);
  --rule-soft: rgba(22, 19, 16, .14);
  --rule-light: rgba(255, 253, 243, .16);

  --maxw: 1180px;
  --rail: 98px;
  --banner: 34px;

  --anton: "Anton", Impact, sans-serif;
  --sans: "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --shadow-cta: 3px 3px 0 var(--ink);
  --shadow-cta-hover: 5px 5px 0 var(--ink);
  --shadow-card: 0 22px 48px -28px rgba(22, 19, 16, .55);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
  padding-top: var(--banner);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.r { color: var(--red); }

h1, h2, h3 { font-family: var(--anton); font-weight: 400; line-height: 1.05; letter-spacing: .005em; }
h1 { font-size: clamp(2.8rem, 6vw, 5.4rem); text-transform: none; }
h2 { font-size: clamp(2rem, 4.4vw, 3.4rem); }
h3 { font-size: 1.25rem; letter-spacing: .01em; }

.eyebrow {
  display: inline-block;
  font-family: var(--sans); font-weight: 800;
  font-size: .8rem; letter-spacing: .24em; text-transform: uppercase;
  color: var(--red);
}
.eyebrow::after {
  content: ""; display: block; width: 34px; height: 3px;
  background: var(--red); margin-top: 8px;
}

/* ---------- Layout ---------- */
.page { padding-left: var(--rail); }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 40px; }
.section { padding: 104px 0; }
section[id] { scroll-margin-top: 56px; }

.sec--ink { background: var(--ink); color: var(--paper); }
.sec--ink h2, .sec--ink h3 { color: var(--paper); }
.sec--ink p { color: var(--paper-dim); }
.sec--ink .eyebrow { color: var(--yellow); }
.sec--ink .eyebrow::after { background: var(--yellow); }

.sec--paper { background: var(--paper); color: var(--ink); }
.sec--paper2 { background: var(--paper-2); color: var(--ink); }
.sec--paper p, .sec--paper2 p { color: var(--ink-soft); }

.sec--yellow { background: var(--yellow); color: var(--ink); }
.sec--yellow .eyebrow { color: var(--ink); }
.sec--yellow .eyebrow::after { background: var(--red); }
.sec--yellow p { color: rgba(22, 19, 16, .82); }

.lead { font-size: 1.2rem; font-weight: 500; max-width: 54ch; margin-top: 16px; }
.section-intro { max-width: 60ch; }

/* ---------- Draft banner (fixed, aina nakyvissa) ---------- */
.draft-banner {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--banner);
  background: var(--red); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: .78rem; font-weight: 700; letter-spacing: .02em;
  text-align: center; padding: 0 16px;
}

/* ---------- Buttons ---------- */
.cta {
  display: inline-flex; align-items: center; gap: .5em;
  font-family: var(--sans); font-weight: 800; font-size: .96rem;
  letter-spacing: .01em;
  background: var(--red); color: #fff;
  padding: .82em 1.5em; border-radius: 999px;
  border: 2px solid var(--ink);
  box-shadow: var(--shadow-cta);
  transition: transform .14s ease, box-shadow .14s ease, background .14s ease;
  cursor: pointer;
}
.cta:hover { transform: translate(-2px, -2px); box-shadow: var(--shadow-cta-hover); background: var(--red-deep); }
.cta:active { transform: translate(0, 0); box-shadow: 1px 1px 0 var(--ink); }
.cta--ink { background: var(--ink); }
.cta--ink:hover { background: #000; }
.cta--ghost {
  background: transparent; color: inherit; box-shadow: none;
  border: 2px solid currentColor;
}
.cta--ghost:hover { transform: translate(-2px, -2px); box-shadow: none; background: rgba(22, 19, 16, .06); }
.sec--ink .cta--ghost:hover { background: rgba(255, 253, 243, .08); }
.cta--lg { font-size: 1.05rem; padding: .95em 1.8em; }

/* ---------- Vertical rail nav (desktop >=820) ---------- */
.vnav {
  position: fixed; top: var(--banner); left: 0; bottom: 0; width: var(--rail);
  background: var(--yellow); border-right: 2px solid var(--ink);
  display: flex; flex-direction: column; align-items: center;
  justify-content: space-between; padding: 22px 0 26px; z-index: 80;
}
.vnav .mark {
  font-family: var(--anton); font-size: 1.5rem; color: var(--ink);
  letter-spacing: .02em; line-height: 1;
}
.vnav .links {
  display: flex; flex-direction: column; align-items: center; gap: 34px;
  flex: 1; justify-content: center;
}
.vnav .links a {
  font-family: var(--anton); color: var(--ink);
  text-transform: uppercase; letter-spacing: .07em; font-size: 1.32rem;
  writing-mode: vertical-rl; line-height: 1;
  transition: color .12s ease;
}
.vnav .links a:hover, .vnav .links a.active { color: var(--red); }
.vnav .book {
  writing-mode: vertical-rl; font-family: var(--anton); font-size: 1.2rem;
  letter-spacing: .12em; text-transform: uppercase;
  color: #fff; background: var(--red);
  padding: 16px 7px; border-radius: 999px; border: 2px solid var(--ink);
  transition: transform .14s ease;
}
.vnav .book:hover { transform: translateY(-3px); }

/* ---------- Mobile top bar (<820) ---------- */
.topbar { display: none; }
.topbar .brand { font-family: var(--anton); font-size: 1.5rem; color: var(--paper); letter-spacing: .02em; }
.nav-toggle { background: none; border: 0; color: var(--paper); font-size: 1.7rem; cursor: pointer; line-height: 1; }
.nav-links { display: flex; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: calc(100vh - var(--banner));
  display: flex; align-items: center; overflow: hidden;
  background: var(--ink);
}
.hero .photo {
  position: absolute; inset: 0; z-index: 0;
  background: var(--ink) url("img/henry-stage-wide.jpg") 50% 38% / cover no-repeat;
}
.hero .wash {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(95deg, rgba(22, 19, 16, .9) 0%, rgba(22, 19, 16, .66) 42%, rgba(22, 19, 16, .12) 78%, transparent 100%);
}
.hero .wrap { position: relative; z-index: 2; padding-top: 64px; padding-bottom: 64px; }
.hero-copy { max-width: 44ch; }
.hero h1 { color: var(--paper); margin: .2em 0 .34em; }
.hero .sell { font-size: 1.18rem; font-weight: 500; color: var(--paper-dim); max-width: 42ch; }
.hero-quote {
  margin-top: 26px; border-left: 4px solid var(--red); padding-left: 18px; max-width: 42ch;
}
.hero-quote p { font-family: var(--anton); font-weight: 400; font-size: 1.42rem; line-height: 1.16; color: var(--yellow); }
.hero-quote cite {
  display: block; margin-top: 9px; font-style: normal; font-weight: 700;
  font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: var(--paper-faint);
}
.hero-actions { margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero .credit {
  position: absolute; bottom: 14px; right: 20px; z-index: 2;
  font-size: .72rem; font-weight: 600; letter-spacing: .04em; color: var(--paper-faint);
}

/* ---------- Vertikaali-tuoterivisto (UUSI) ---------- */
.lineup { background: var(--yellow); padding-top: 50px; }
.lineup .row-head { max-width: var(--maxw); margin: 0 auto 28px; padding: 0 40px; }
.lineup .row-head h2 { margin-top: .14em; }
.lineup .row-head p { font-weight: 600; max-width: 50ch; margin-top: .5em; }
.spines {
  display: flex; border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink);
  min-height: 52vh;
}
.spine {
  flex: 1; border-right: 1.5px solid var(--rule);
  display: flex; flex-direction: column; align-items: center; justify-content: flex-start;
  padding: 42px 8px 26px; color: var(--ink); position: relative;
  transition: background .14s ease;
}
.spine:first-child { border-left: 1.5px solid var(--rule); }
.spine:hover { background: rgba(22, 19, 16, .07); }
.spine .name {
  font-family: var(--anton); font-size: clamp(1.5rem, 2.7vw, 2.5rem); letter-spacing: .03em;
  text-transform: uppercase; writing-mode: vertical-rl; white-space: nowrap; line-height: .9;
}
.spine .price { margin-top: auto; font-weight: 800; font-size: .82rem; letter-spacing: .03em; opacity: .74; }
.spine .arrow { margin-top: 10px; font-size: 1.1rem; color: var(--red); opacity: 0; transition: opacity .14s ease; }
.spine:hover .arrow { opacity: 1; }

/* ---------- Tuotelinjat / kortit ---------- */
.line-head { max-width: 60ch; }
.line-head h2 { margin-top: .14em; max-width: 18ch; }
.line-body { margin-top: 18px; font-size: 1.08rem; max-width: 60ch; }

.pullquote {
  margin: 34px 0 4px; border-left: 4px solid var(--red); padding: 4px 0 4px 20px; max-width: 56ch;
}
.pullquote p { font-family: var(--anton); font-weight: 400; font-size: 1.5rem; line-height: 1.18; color: inherit; }
.sec--ink .pullquote p { color: var(--yellow); }
.sec--paper .pullquote p, .sec--paper2 .pullquote p { color: var(--ink); }
.pullquote cite { display: block; margin-top: 10px; font-style: normal; font-weight: 700; font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-soft); }
.sec--ink .pullquote cite { color: var(--paper-faint); }

.angles { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 40px; }
.angle {
  background: var(--paper); border: 2px solid var(--ink); border-radius: 14px; padding: 24px 24px 22px;
  display: flex; flex-direction: column; gap: 8px; transition: transform .15s ease, box-shadow .2s ease;
}
.angle:hover { transform: translate(-2px, -2px); box-shadow: var(--shadow-cta); }
.angle .kicker { font-weight: 800; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--red); }
.angle h3 { font-family: var(--anton); font-size: 1.32rem; line-height: 1.04; }
.angle p { font-size: .98rem; color: var(--ink-soft); }

/* Formaatit + hinnat -lista */
.formats { margin-top: 36px; border-top: 2px solid currentColor; }
.format-row {
  display: flex; align-items: baseline; justify-content: space-between; gap: 20px;
  padding: 16px 0; border-bottom: 1px solid var(--rule-soft);
}
.sec--ink .format-row { border-bottom-color: var(--rule-light); }
.format-row .fmt { font-family: var(--anton); font-size: 1.34rem; letter-spacing: .02em; }
.format-row .fmt small { display: block; font-family: var(--sans); font-weight: 500; font-size: .82rem; letter-spacing: 0; opacity: .7; margin-top: 3px; text-transform: none; }
.format-row .amt { font-family: var(--anton); font-size: 1.5rem; white-space: nowrap; }
.format-row .amt span { color: var(--red); }

/* Juonto-lisaformaatti (band) */
.section--tight { padding: 64px 0; }
.addon { display: flex; align-items: center; justify-content: space-between; gap: 34px; flex-wrap: wrap; }
.addon-text { max-width: 62ch; }
.addon-text h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); margin-top: .14em; max-width: 22ch; }
.addon-text p { margin-top: 12px; }
.addon-cta { display: flex; flex-direction: column; align-items: flex-end; gap: 14px; }
.addon-price { font-family: var(--anton); font-size: 2.1rem; line-height: 1; white-space: nowrap; }
@media (max-width: 820px) { .addon-cta { align-items: flex-start; } }

/* ---------- Tiede-aihekatalogi ---------- */
.catalog { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 40px; }
.topic {
  background: rgba(255, 253, 243, .05); border: 1px solid var(--rule-light); border-radius: 14px;
  padding: 22px 20px; display: flex; flex-direction: column; gap: 9px;
  transition: transform .15s ease, border-color .2s ease, background .2s ease;
}
.topic:hover { transform: translateY(-4px); border-color: var(--yellow); background: rgba(255, 253, 243, .08); }
.topic .no { font-family: var(--anton); font-size: 1.3rem; color: var(--yellow); line-height: 1; }
.topic h3 { font-family: var(--anton); font-size: 1.18rem; line-height: 1.06; color: var(--paper); }
.topic p { font-size: .92rem; color: var(--paper-dim); }
.topic .biz { margin-top: auto; padding-top: 8px; font-size: .82rem; font-style: italic; color: var(--yellow); }
.catalog-note { margin-top: 26px; font-size: .96rem; color: var(--paper-faint); }

/* ---------- Kenelle ---------- */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 48px; }
.usecase {
  background: var(--paper); border: 2px solid var(--ink); border-radius: 16px; padding: 30px 28px;
  display: flex; flex-direction: column; gap: 12px; box-shadow: var(--shadow-card);
  transition: transform .15s ease;
}
.usecase:hover { transform: translateY(-4px); }
.usecase .ic {
  width: 46px; height: 46px; border-radius: 10px; background: var(--yellow);
  border: 2px solid var(--ink); display: flex; align-items: center; justify-content: center;
  font-family: var(--anton); font-size: 1.3rem;
}
.usecase h3 { font-family: var(--anton); font-size: 1.32rem; line-height: 1.04; }
.usecase p { font-size: 1rem; }

/* ---------- Nain se toimii ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 48px; }
.step { position: relative; padding: 30px 26px; border: 1px solid var(--rule-light); border-radius: 16px; background: rgba(255, 253, 243, .04); }
.step .num { font-family: var(--anton); font-size: 3rem; line-height: 1; color: var(--red); }
.step h3 { font-family: var(--anton); font-size: 1.3rem; margin: 10px 0 8px; color: var(--paper); }
.step p { font-size: 1rem; }

/* ---------- Henrysta ---------- */
.about-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 56px; align-items: center; }
.about-portrait {
  position: relative; aspect-ratio: 4/5; border-radius: 18px; overflow: hidden;
  border: 2px solid var(--ink); box-shadow: var(--shadow-card);
  background: var(--ink) url("img/henry-stage-portrait.jpg") 50% 28% / cover no-repeat;
}
.about-portrait .credit {
  position: absolute; bottom: 10px; right: 12px;
  font-size: .68rem; font-weight: 600; color: rgba(255, 253, 243, .8);
  background: rgba(22, 19, 16, .5); padding: 4px 8px; border-radius: 7px; backdrop-filter: blur(3px);
}
.about-body h2 { max-width: 16ch; }
.about-body p { font-size: 1.06rem; }
.about-body p + p { margin-top: 14px; }
.about-body .lead { color: var(--ink); }
.about-quote { margin-top: 22px; border-left: 4px solid var(--red); padding-left: 18px; }
.about-quote p { font-family: var(--anton); font-size: 1.3rem; line-height: 1.16; color: var(--ink); }
.about-quote cite { display: block; margin-top: 8px; font-style: normal; font-weight: 700; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); }

/* ---------- Referenssit ---------- */
.proof-pillars { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 44px; }
.pillar {
  flex: 1 1 200px; background: var(--ink); color: var(--paper); border-radius: 14px; padding: 24px 22px;
  border: 2px solid var(--ink);
}
.pillar b { font-family: var(--anton); font-size: 2.2rem; line-height: 1; display: block; color: var(--yellow); }
.pillar span { display: block; margin-top: 8px; font-size: .96rem; color: var(--paper-dim); }
.testimonials { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 22px; }
.testimonial {
  background: var(--paper); border: 2px dashed var(--ink); border-radius: 14px; padding: 24px;
}
.testimonial p { font-size: 1.04rem; color: var(--ink); }
.testimonial .src { display: block; margin-top: 12px; font-weight: 700; font-size: .86rem; color: var(--ink-soft); }
.testimonial .draft-tag { font-weight: 800; font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--red); }
.logo-wall { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; align-items: center; }
.logo-slot {
  flex: 1 1 130px; min-width: 110px; height: 64px; border: 1.5px dashed var(--rule);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(22, 19, 16, .45);
}

/* ---------- UKK / FAQ ---------- */
.faq { max-width: 840px; margin: 44px auto 0; }
.faq details {
  background: var(--paper); border: 2px solid var(--ink); border-radius: 14px;
  padding: 2px 24px; margin-bottom: 12px;
}
.faq summary {
  font-family: var(--anton); font-size: 1.18rem; cursor: pointer; padding: 18px 0; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--red); font-size: 1.7rem; line-height: 1; font-family: var(--sans); font-weight: 700; }
.faq details[open] summary::after { content: "\2013"; }
.faq details p { padding: 0 0 20px; font-size: 1rem; color: var(--ink-soft); }

/* ---------- Varaa / booking ---------- */
.booking { text-align: center; }
.booking .lead { margin-left: auto; margin-right: auto; }
.booking-embed {
  margin: 40px auto 0; max-width: 920px; background: #fff; border-radius: 20px; padding: 8px;
  min-height: 560px; box-shadow: var(--shadow-card); overflow: hidden; border: 2px solid var(--ink);
}
.booking-fallback { padding: 64px 24px; color: var(--ink-soft); }
.booking-fallback strong { color: var(--ink); }
.booking-fallback .cta { margin-top: 20px; }

/* ---------- Footer ---------- */
.site-footer { background: #0f0d0a; color: var(--paper-faint); padding: 60px 0 36px; }
.footer-grid { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 36px; }
.footer-brand .mark { font-family: var(--anton); font-size: 1.7rem; color: var(--paper); letter-spacing: .02em; }
.footer-brand p { margin-top: 12px; max-width: 34ch; font-size: .95rem; color: var(--paper-faint); }
.footer-col h4 { font-size: .78rem; text-transform: uppercase; letter-spacing: .14em; color: var(--yellow); margin-bottom: 14px; }
.footer-col a { display: block; color: var(--paper-dim); font-size: .96rem; margin-bottom: 8px; }
.footer-col a:hover { color: #fff; }
.footer-col address { font-style: normal; font-size: .92rem; color: var(--paper-faint); line-height: 1.7; }
.footer-bottom {
  margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--rule-light);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: .84rem; color: rgba(255, 253, 243, .42);
}

/* ---------- Load reveal ---------- */
.reveal { opacity: 0; transform: translateY(16px); animation: fadeUp .6s cubic-bezier(.2, .7, .2, 1) forwards; }
.d1 { animation-delay: .05s; } .d2 { animation-delay: .15s; } .d3 { animation-delay: .25s; }
.d4 { animation-delay: .35s; } .d5 { animation-delay: .45s; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .catalog { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 820px) {
  body { padding-top: calc(var(--banner) + 60px); }
  .page { padding-left: 0; }
  .vnav { display: none; }
  .wrap { padding: 0 22px; }
  .section { padding: 72px 0; }
  section[id] { scroll-margin-top: calc(var(--banner) + 64px); }

  .topbar {
    display: flex; align-items: center; justify-content: space-between;
    position: fixed; top: var(--banner); left: 0; right: 0; z-index: 90;
    height: 60px; padding: 0 22px; background: var(--ink); border-bottom: 2px solid var(--rule-light);
  }
  .nav-links {
    display: none; position: absolute; top: 60px; left: 0; right: 0;
    flex-direction: column; gap: 4px; background: var(--ink);
    border-bottom: 2px solid var(--rule-light); padding: 14px 22px 20px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-family: var(--sans); font-weight: 600; color: var(--paper-dim); padding: 10px 0; font-size: 1.02rem; }
  .nav-links a:hover { color: var(--paper); }
  .nav-links .cta { align-self: flex-start; margin-top: 8px; color: #fff; }

  .hero { min-height: auto; padding: 30px 0 56px; }
  .hero .wash { background: linear-gradient(180deg, rgba(22, 19, 16, .9) 0%, rgba(22, 19, 16, .62) 60%, rgba(22, 19, 16, .82) 100%); }
  .hero .photo { background-position: 50% 30%; }

  .angles, .cards-3, .steps, .testimonials { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 30px; }
  .about-portrait { aspect-ratio: 16/11; }

  /* tuoterivisto -> luettava vaakalista */
  .spines { flex-direction: column; min-height: 0; border: none; }
  .spine { flex-direction: row; justify-content: space-between; align-items: center;
    border: none; border-bottom: 1.5px solid var(--rule); padding: 18px 4px; }
  .spine:first-child { border-top: 2px solid var(--ink); border-left: none; }
  .spine .name { writing-mode: horizontal-tb; font-size: 1.5rem; }
  .spine .price { margin-top: 0; }
  .spine .arrow { opacity: 1; margin-top: 0; margin-left: 10px; }
}
@media (max-width: 560px) {
  body { font-size: 17px; }
  .catalog { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .cta { justify-content: center; }
  .format-row { flex-direction: column; gap: 4px; }
  .format-row .amt { font-size: 1.34rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { animation: none; opacity: 1; transform: none; }
  .cta, .angle, .usecase, .topic, .spine, .vnav .book { transition: none; }
}

/* ========== v3 components (productization restructure, 2026-06-16) ========== */

/* shared section header + photo grid */
.head-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; }
.theme-photo { border-radius: 16px; overflow: hidden; border: 2px solid var(--ink); box-shadow: var(--shadow-card); aspect-ratio: 4/5; }
.theme-photo--wide { aspect-ratio: 3/2; }
.theme-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-wrap { position: relative; }
.photo-wrap .credit {
  position: absolute; bottom: 10px; right: 12px; z-index: 2;
  font-size: .66rem; font-weight: 600; color: rgba(255, 253, 243, .82);
  background: rgba(22, 19, 16, .5); padding: 4px 8px; border-radius: 7px; backdrop-filter: blur(3px);
}

/* HENRY -- kuka / mitä / miksi + meriittipalkki */
.henry-block { margin-top: 24px; }
.henry-block h3 { font-family: var(--anton); font-size: 1.04rem; letter-spacing: .07em; text-transform: uppercase; color: var(--red); margin-bottom: 8px; }
.henry-block p { font-size: 1.04rem; }
.henry-block p + p { margin-top: 12px; }
.merits { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0 4px; padding: 0; }
.merits li { list-style: none; font-weight: 700; font-size: .82rem; border: 2px solid var(--ink); border-radius: 999px; padding: 7px 14px; }

/* AIHEET -- dual-theme topic cards */
.theme-intro { max-width: 64ch; }
.theme-intro .ingress { font-size: 1.12rem; font-weight: 500; margin-top: 16px; }
.themes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 38px; }
.tcard { border-radius: 14px; padding: 22px 20px; display: flex; flex-direction: column; gap: 10px;
  border: 2px solid var(--ink); background: var(--paper); transition: transform .15s ease; }
.tcard:hover { transform: translateY(-4px); }
.sec--ink .tcard { background: rgba(255, 253, 243, .05); border-color: var(--rule-light); }
.sec--ink .tcard:hover { border-color: var(--yellow); }
.sec--yellow .tcard { background: rgba(255, 253, 243, .55); border-color: var(--ink); }
.tcard .t-title { font-family: var(--anton); font-size: 1.16rem; line-height: 1.04; }
.sec--ink .tcard .t-title { color: var(--paper); }
.tcard .t-sub { font-size: .9rem; font-weight: 700; opacity: .82; margin-top: -4px; }
.tcard .t-line { font-size: .94rem; font-style: italic; border-left: 3px solid var(--red); padding-left: 12px; }
.tcard .t-biz { font-size: .9rem; opacity: .82; }
.sec--ink .tcard .t-biz { color: var(--paper-dim); }
.tcard .t-fmt { margin-top: auto; font-weight: 800; font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--red); }

/* TUOTTEET -- tier cards */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.tier { background: var(--paper); border: 2px solid var(--ink); border-radius: 16px; padding: 28px 26px;
  display: flex; flex-direction: column; gap: 10px; box-shadow: var(--shadow-card); transition: transform .15s ease; }
.tier:hover { transform: translateY(-4px); }
.tier.feat { border-color: var(--red); box-shadow: 0 18px 40px -22px rgba(226, 42, 24, .45); }
.tier .badge { align-self: flex-start; font-weight: 800; font-size: .66rem; letter-spacing: .12em; text-transform: uppercase;
  background: var(--yellow); border: 2px solid var(--ink); border-radius: 999px; padding: 4px 11px; }
.tier h3 { font-family: var(--anton); font-size: 1.3rem; }
.tier .price { font-family: var(--anton); font-size: 2rem; line-height: 1; }
.tier .price span { color: var(--red); }
.tier p { font-size: .98rem; }
.fineprint { margin-top: 18px; font-size: .92rem; opacity: .76; }

/* Named live references */
.refnote { border-left: 4px solid currentColor; padding: 4px 0 4px 18px; margin-top: 20px; max-width: 62ch; }
.refnote p { font-size: 1.02rem; }
.refnote .flag { display: block; margin-top: 6px; font-weight: 800; font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; color: var(--red); }

@media (max-width: 820px) {
  .head-grid { grid-template-columns: 1fr; gap: 26px; }
  .themes, .tiers { grid-template-columns: 1fr; }
  .head-grid .theme-photo { order: -1; }
}
@media (max-width: 560px) {
  .merits li { font-size: .78rem; }
  .tier .price { font-size: 1.7rem; }
}

/* ========== v3.1 (morning iteration: buying-path, persistent CTA, overlap fix) ========== */

.hero h1 { line-height: 1.0; }
/* hero credit to bottom-left so it never clashes with the floating CTA */
.hero .credit { left: 22px; right: auto; }

/* persistent floating "Varaa" CTA -- always reachable */
.float-cta { position: fixed; right: 18px; bottom: 18px; z-index: 120; box-shadow: 4px 4px 0 var(--ink); }
.float-cta:hover { box-shadow: 6px 6px 0 var(--ink); }
@media (max-width: 820px) { .float-cta { right: 14px; bottom: 14px; font-size: .9rem; padding: .7em 1.2em; } }
@media (prefers-reduced-motion: reduce) { .float-cta { transition: none; } }

/* "Keikka = formaatti + teema" rautalanka-explainer */
.formula { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 22px; font-family: var(--anton); font-size: clamp(1.2rem, 2.4vw, 1.8rem); }
.formula .chip { border: 2px solid currentColor; border-radius: 999px; padding: 6px 18px; }
.formula .plus, .formula .eq { color: var(--red); }
.sec--paper .formula .chip { background: var(--paper); }

/* Varaus = ostoskori: 4 numeroitua askelta */
.cart-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: 36px 0 10px; text-align: left; }
.cart-step { background: rgba(255, 253, 243, .05); border: 1px solid var(--rule-light); border-radius: 14px; padding: 20px 18px; }
.cart-step .n { font-family: var(--anton); font-size: 1.7rem; color: var(--yellow); line-height: 1; }
.cart-step h4 { font-family: var(--anton); font-weight: 400; font-size: 1.04rem; letter-spacing: .03em; margin: 8px 0 6px; color: var(--paper); }
.cart-step p { font-size: .9rem; color: var(--paper-dim); }
@media (max-width: 820px) { .cart-steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .cart-steps { grid-template-columns: 1fr; } }

/* ========== Yksinkertaistettu varauslomake (so-booking-form, 2026-06-23) ==========
   Sama lomake kahdessa kohdassa. Kelta/musta/punainen, mobile-first.
   Toimii sekä sec--ink (tumma) että sec--yellow (kelta) -taustalla. */

.booking-section .booking-head { max-width: 60ch; }
.booking-section.booking { text-align: left; }
.booking-section .booking-head .lead { margin-left: 0; margin-right: 0; }

.so-form-wrap {
  margin: 40px 0 0; max-width: 880px;
  background: var(--paper); color: var(--ink);
  border: 2px solid var(--ink); border-radius: 20px;
  box-shadow: var(--shadow-card);
  padding: 28px 22px;
}
.sec--yellow .so-form-wrap { box-shadow: 0 22px 48px -28px rgba(22, 19, 16, .45); }

/* mobile-first: yksi sarake; >=640 px kaksi saraketta */
.so-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.so-field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.so-col-2 { grid-column: 1 / -1; }

.so-field label,
.so-kickoff legend {
  font-weight: 700; font-size: .82rem; letter-spacing: .04em;
  color: var(--ink); text-transform: none;
}
.so-kickoff legend { padding: 0; }

.so-field input,
.so-field select,
.so-field textarea {
  font-family: var(--sans); font-size: 1rem; color: var(--ink);
  background: var(--paper-2);
  border: 2px solid var(--ink); border-radius: 10px;
  padding: .7em .8em; width: 100%;
  transition: border-color .14s ease, box-shadow .14s ease;
  -webkit-appearance: none; appearance: none;
}
.so-field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23161310' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat; background-position: right .8em center; padding-right: 2.4em;
}
.so-field textarea { resize: vertical; min-height: 84px; }
.so-field input:focus,
.so-field select:focus,
.so-field textarea:focus {
  outline: none; border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(226, 42, 24, .18);
}
.so-field input::placeholder,
.so-field textarea::placeholder { color: var(--ink-soft); }

/* kick-off-lohko */
.so-kickoff { border: 2px dashed var(--ink); border-radius: 14px; padding: 18px 16px; gap: 12px; }
.so-kickoff .so-hint { font-size: .86rem; color: var(--ink-soft); margin: -2px 0 2px; }
.so-kickoff-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
/* [hidden] saa voittaa luokan display:grid-säännön (rivit 2-3 piilossa kunnes avataan) */
.so-form-wrap [hidden] { display: none !important; }
.so-add {
  align-self: flex-start;
  font-family: var(--sans); font-weight: 800; font-size: .84rem;
  color: var(--ink); background: var(--yellow);
  border: 2px solid var(--ink); border-radius: 999px;
  padding: .5em 1.1em; cursor: pointer;
  transition: transform .14s ease, box-shadow .14s ease;
}
.so-add:hover { transform: translate(-1px, -1px); box-shadow: 2px 2px 0 var(--ink); }

.so-actions { margin-top: 22px; }
.so-actions .cta { width: 100%; justify-content: center; }

.so-form-status { margin-top: 14px; font-weight: 600; font-size: .94rem; }
.so-form-status--pending { color: var(--ink-soft); }
.so-form-status--error { color: var(--red-deep); }
.so-form-status--ok { color: var(--ink); }

.so-gdpr { margin-top: 14px; font-size: .82rem; color: var(--ink-soft); }
.so-gdpr a { text-decoration: underline; }

.so-form-thanks { text-align: center; padding: 28px 12px; }
.so-form-thanks h3 { font-family: var(--anton); font-size: 1.6rem; color: var(--ink); }
.so-form-thanks p { margin-top: 10px; color: var(--ink-soft); max-width: 46ch; margin-left: auto; margin-right: auto; }

@media (min-width: 640px) {
  .so-form-wrap { padding: 34px 32px; }
  .so-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
  .so-actions .cta { width: auto; }
}
