/* ============================================================
   Figtree — self-hostovaná, ne z Google Fonts.
   Načítání z fonts.gstatic.com posílá IP adresu každého návštěvníka
   Googlu do USA; self-hosting ten přenos úplně ruší (a ušetří dvě DNS
   dotazy + render-blocking CSS). Stejně to řeší opelli-site.
   Variabilní řez 400–700, dva subsety podle unicode-range jako u Googlu —
   latin-ext se stáhne jen kvůli češtině (ě š č ř ž ů ď ť ň).
   Licence: SIL Open Font License 1.1 — self-hosting povolen.
   ============================================================ */

@font-face {
  font-family: 'Figtree';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('figtree-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Figtree';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('figtree-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ============================================================
   ADHD Institut — adhdi.cz
   Teplá písková báze, šalvějová zeleň + terakota, zakulacené rohy.
   Paleta odvozena vzorkováním z návrhu prop1.png.
   ============================================================ */

:root {
  /* Pískový základ */
  --sand-50:  #FCF7F1;   /* stránka */
  --sand-100: #F9F2EA;   /* střídavé sekce a pásy */
  --sand-150: #F7EFE6;   /* karty */
  --sand-200: #EDE2D5;   /* linky a rámečky */
  --sand-300: #DECFBC;   /* výraznější rámečky */

  /* Text */
  --ink:       #302F2B;
  --ink-soft:  #5F5A55;
  --ink-faint: #8E8880;

  /* Šalvěj — primární barva značky */
  --sage:      #607D6F;
  --sage-dk:   #4B6457;
  --sage-soft: #DDE3DC;
  --sage-mist: #EAEFE8;
  --sage-light:#829282;
  --forest:    #3E5348;

  /* Terakota — akcent */
  --clay:      #D16341;
  --clay-dk:   #B44E2F;
  --clay-soft: #F6DFD2;

  /* Okr — doplněk (zlatý tier, uvozovky) */
  --ochre:      #C08A4A;
  --ochre-soft: #F2E3CD;

  /* Tmavá sekce */
  --dark:      #3A4E43;

  /* Radii — everything rounded */
  --r-xs: 10px;
  --r-sm: 16px;
  --r-md: 22px;
  --r-lg: 32px;
  --r-xl: 44px;
  --r-pill: 999px;

  --shadow-sm: 0 2px 6px rgba(60, 44, 28, .05);
  --shadow-md: 0 10px 30px -12px rgba(70, 50, 30, .18);
  --shadow-lg: 0 24px 60px -24px rgba(70, 50, 30, .28);

  --wrap: 1160px;
  --font: "Figtree", "Segoe UI Variable", system-ui, -apple-system,
          "Helvetica Neue", Arial, sans-serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 96px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--sand-50);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { max-width: 100%; }

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -.02em;
  margin: 0 0 .5em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.5rem, 6.4vw, 4.1rem); font-weight: 600; }
h2 { font-size: clamp(1.8rem, 3.7vw, 2.6rem); font-weight: 600; }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }
h4 { font-size: 1.1rem; }
p  { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--clay-dk); text-decoration-thickness: 1.5px; text-underline-offset: 3px; }
a:hover { color: var(--clay); }

strong { font-weight: 700; }
em { font-style: italic; }

.muted { color: var(--ink-soft); }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: clamp(1.15rem, 4vw, 2.5rem);
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ink); color: var(--sand-50);
  padding: .75rem 1.25rem; border-radius: 0 0 var(--r-sm) 0;
  font-weight: 700; text-decoration: none;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 3px solid var(--forest);
  outline-offset: 3px;
  border-radius: var(--r-xs);
}

/* ───────────────────────── Buttons ───────────────────────── */

.btn {
  --btn-bg: var(--clay-dk);
  --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  padding: .95em 1.7em;
  border: none; border-radius: var(--r-pill);
  background: var(--btn-bg); color: var(--btn-fg);
  font: inherit; font-weight: 700; font-size: 1rem;
  line-height: 1.2; text-align: center; text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
  box-shadow: 0 6px 18px -8px rgba(209, 99, 65, .5);
}
.btn:hover { transform: translateY(-2px); color: var(--btn-fg); }
.btn:active { transform: translateY(0); }

.btn-primary { --btn-bg: var(--clay-dk); }
.btn-primary:hover { --btn-bg: #9C4326; }

.btn-cool { --btn-bg: var(--sage); box-shadow: 0 6px 18px -8px rgba(75, 100, 87, .5); }
.btn-cool:hover { --btn-bg: var(--sage-dk); }

.btn-ghost {
  --btn-bg: transparent; --btn-fg: var(--ink);
  box-shadow: none;
  border: 2px solid var(--sand-300);
}
.btn-ghost:hover { --btn-bg: var(--sand-100); border-color: var(--sand-200); }

.btn-outline-light {
  --btn-bg: transparent; --btn-fg: var(--sand-100);
  box-shadow: none;
  border: 2px solid rgba(248, 241, 229, .3);
}
.btn-outline-light:hover { --btn-bg: rgba(248, 241, 229, .1); }

.btn-sm { padding: .68em 1.25em; font-size: .94rem; }
.btn-block { display: flex; width: 100%; }

@media (prefers-reduced-motion: reduce) {
  .btn, .btn:hover { transform: none; transition: none; }
}

/* ───────────────────────── Header ───────────────────────── */

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(252, 247, 241, .85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.site-header.is-stuck {
  border-bottom-color: var(--sand-200);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex; align-items: center; gap: 1.25rem;
  min-height: 74px;
}

.brand {
  display: inline-flex; align-items: center; gap: .6rem;
  font-weight: 700; font-size: 1.1rem; letter-spacing: -.02em;
  color: var(--ink); text-decoration: none;
  margin-right: auto;
}
/* Značka je zatím jen textová — logo teprve vznikne. */
.brand-text { color: var(--ink); }

.site-nav { display: flex; align-items: center; gap: .35rem; }
.site-nav a {
  padding: .5rem .85rem;
  border-radius: var(--r-pill);
  color: var(--ink-soft);
  font-weight: 600; font-size: .96rem; text-decoration: none;
  transition: background-color .18s ease, color .18s ease;
}
.site-nav a:hover { background: var(--sand-150); color: var(--ink); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  padding: 0; border: 2px solid var(--sand-200);
  border-radius: var(--r-xs);
  background: var(--sand-100);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px; height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: var(--ink);
  transition: transform .22s ease, opacity .22s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 900px) {
  .header-cta { display: none; }
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute; inset: 74px .9rem auto .9rem;
    flex-direction: column; align-items: stretch; gap: .2rem;
    padding: .75rem;
    border: 1px solid var(--sand-200);
    border-radius: var(--r-md);
    background: var(--sand-50);
    box-shadow: var(--shadow-lg);
    display: none;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: .8rem 1rem; font-size: 1.05rem; }
}

/* ───────────────────────── Hero ───────────────────────── */

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 7vw, 6rem) 0 clamp(3.5rem, 8vw, 6.5rem);
  background:
    radial-gradient(120% 90% at 12% 0%, var(--sand-100) 0%, transparent 60%),
    var(--sand-50);
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .5;
  pointer-events: none;
}
.blob-1 { width: 34vw; height: 34vw; min-width: 280px; min-height: 280px;
          top: -8%; right: -6%; background: var(--sage-soft); }
.blob-2 { width: 26vw; height: 26vw; min-width: 220px; min-height: 220px;
          bottom: -12%; right: 22%; background: var(--sage-soft); }
.blob-3 { width: 20vw; height: 20vw; min-width: 180px; min-height: 180px;
          top: 30%; left: -8%; background: var(--clay-soft); }

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, .95fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  margin: 0 0 1.1rem;
  padding: .4rem .95rem .4rem .75rem;
  border-radius: var(--r-pill);
  background: var(--sage-mist);
  color: var(--ink-soft);
  font-size: .85rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
}
.eyebrow-light { background: rgba(248, 241, 229, .12); color: var(--sand-150); }
.dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--clay); flex: none;
}
.dot-cool { background: var(--sage); }
.dot-warm { background: var(--ochre); }

h1 { margin-bottom: .35em; }
.h1-sub {
  display: block;
  color: var(--ink);
}
.h1-main {
  display: block;
  color: var(--sage);
}

.hero-claim {
  margin: 0 0 1.2rem;
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  font-weight: 700;
  color: var(--ink);
}
.hero-claim::after {
  content: "";
  display: block;
  width: 74px; height: 5px;
  margin-top: .9rem;
  border-radius: var(--r-pill);
  background: var(--sage);
}

.lead {
  max-width: 40ch;
  font-size: clamp(1.02rem, 1.5vw, 1.14rem);
  color: var(--ink-soft);
}

.cta-row {
  display: flex; flex-wrap: wrap; gap: .8rem;
  margin: 1.9rem 0 2.4rem;
}

.hero-facts {
  display: flex; flex-wrap: wrap; gap: .6rem;
  margin: 0; padding: 0; list-style: none;
}
.hero-facts li {
  flex: 1 1 150px;
  padding: .85rem 1.1rem;
  border: 1px solid var(--sand-200);
  border-radius: var(--r-sm);
  background: rgba(253, 250, 245, .7);
}
.hero-facts strong { display: block; font-size: 1.02rem; }
.hero-facts span { font-size: .87rem; color: var(--ink-soft); }

.hero-card {
  padding: clamp(1.5rem, 3vw, 2.1rem);
  border: 1px solid var(--sand-200);
  border-radius: var(--r-lg);
  background: #fff;
  box-shadow: var(--shadow-lg);
}
.hero-card-top { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.4rem; }
.pill {
  padding: .35rem .8rem;
  border-radius: var(--r-pill);
  font-size: .8rem; font-weight: 700;
}
.pill-warm { background: var(--clay-soft); color: #A6472A; }
.pill-cool { background: var(--sage-soft); color: var(--sage-dk); }

.info-list { margin: 0 0 1.6rem; }
.info-list > div { padding: .9rem 0; border-top: 1px solid var(--sand-150); }
.info-list > div:first-child { border-top: none; padding-top: 0; }
.info-list dt {
  font-size: .78rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: .25rem;
}
.info-list dd { margin: 0; font-weight: 600; }
.info-list .muted { font-weight: 400; font-size: .93rem; }

.hero-card-note {
  margin: .9rem 0 0;
  font-size: .85rem; text-align: center;
  color: var(--ink-faint);
}

@media (max-width: 940px) {
  .hero-inner { grid-template-columns: 1fr; }
  .lead { max-width: 60ch; }
}

/* ───────────────────────── Sections ───────────────────────── */

.section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.section-cream { background: var(--sand-100); }
.section-dark { background: var(--dark); color: var(--sand-100); }
.section-dark h2 { color: #fff; }
.section-dark .section-lead { color: rgba(248, 241, 229, .75); }

.section-head { max-width: 62ch; margin-bottom: clamp(2.2rem, 5vw, 3.4rem); }
.section-lead {
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  color: var(--ink-soft);
}

/* ───────────────────────── Cards ───────────────────────── */

.card-grid {
  display: grid;
  gap: clamp(1rem, 2vw, 1.5rem);
}
.card-grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.card-grid-3 { grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); }
.card-grid-4 { grid-template-columns: repeat(auto-fit, minmax(235px, 1fr)); }

.card {
  padding: clamp(1.4rem, 2.5vw, 1.9rem);
  border: 1px solid var(--sand-200);
  border-radius: var(--r-lg);
  background: var(--sand-50);
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.section-cream .card { background: #fff; }
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.card p { color: var(--ink-soft); margin-bottom: 0; }

.card-icon {
  display: grid; place-items: center;
  width: 54px; height: 54px;
  margin-bottom: 1.1rem;
  border-radius: var(--r-sm);
  font-size: 1.6rem;
  line-height: 1;
}
.icon-sage  { background: var(--sage-mist); }
.icon-clay { background: var(--clay-soft); }
.icon-ochre  { background: var(--ochre-soft); }

.card-flat { box-shadow: none; }
.card-flat:hover { transform: none; box-shadow: var(--shadow-sm); }
.num {
  display: inline-block;
  margin-bottom: .8rem;
  font-size: 1.5rem; font-weight: 700;
  letter-spacing: -.02em;
}
.num-clay { color: var(--clay); }
.num-ochre { color: var(--ochre); }
.num-sage  { color: var(--sage); }
.num-forest  { color: var(--forest); }

@media (prefers-reduced-motion: reduce) {
  .card:hover { transform: none; }
}

/* ───────────────────────── Panels & lists ───────────────────────── */

.two-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(1rem, 2.5vw, 2rem);
  margin-top: clamp(1rem, 2vw, 1.5rem);
  align-items: start;
}
.two-col-wide { gap: clamp(1.5rem, 5vw, 4rem); align-items: center; }

.panel {
  padding: clamp(1.5rem, 3vw, 2.2rem);
  border-radius: var(--r-lg);
}
.panel-warm { background: linear-gradient(150deg, var(--clay-soft), var(--ochre-soft)); }
.panel-cool { background: linear-gradient(150deg, var(--sage-soft), var(--sage-mist)); }
.panel-plain {
  background: var(--sand-50);
  border: 1px solid var(--sand-200);
}
.panel p:not(:last-child) { margin-bottom: .9rem; }

.check-list { margin: 0; padding: 0; list-style: none; }
.check-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: .8rem;
  color: var(--ink);
}
.check-list li:last-child { margin-bottom: 0; }
.check-list li::before {
  content: "";
  position: absolute; left: 0; top: .45em;
  width: 1.1rem; height: 1.1rem;
  border-radius: 50%;
  background: var(--clay) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23fff' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3.5 8.5 6.5 11.5 12.5 5'/%3E%3C/svg%3E") center / 78% no-repeat;
}
.check-list-cool li::before { background-color: var(--sage-dk); }

/* Odsazení tlačítka, které následuje hned za odrážkami */
.check-list + .btn { margin-top: 1.7rem; }

.note-inline {
  margin-top: clamp(1.5rem, 3vw, 2.2rem);
  padding: 1.1rem 1.4rem;
  border-radius: var(--r-md);
  border: 1px dashed var(--sand-300);
  background: var(--sand-50);
  color: var(--ink-soft);
  font-size: .96rem;
}
.note-inline a { font-weight: 700; white-space: nowrap; }

/* ───────────────────────── Quote ───────────────────────── */

.quote {
  margin: clamp(2.5rem, 6vw, 4rem) auto 0;
  max-width: 46rem;
  padding: clamp(1.8rem, 4vw, 3rem);
  border-radius: var(--r-xl);
  background: var(--sage);   /* ne --sage-light: bílý text potřebuje kontrast 4.5:1 */
  color: #fff;
  text-align: center;
}
.quote blockquote {
  margin: 0 0 1rem;
  font-size: clamp(1.15rem, 2.4vw, 1.6rem);
  font-weight: 700; line-height: 1.42;
  letter-spacing: -.015em;
  text-wrap: balance;
}
/* Záporný margin ruší mezeru z odřádkování v HTML zdroji */
.quote blockquote::before { content: "„"; color: rgba(255,255,255,.6); margin-right: -.12em; }
.quote blockquote::after  { content: "“"; color: rgba(255,255,255,.6); margin-left: -.14em; }
.quote figcaption {
  font-size: .88rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: #fff;
}

/* ───────────────────────── Tiers ───────────────────────── */

.tier-group-title {
  margin: clamp(2rem, 4vw, 3rem) 0 1.1rem;
  font-size: .88rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-faint);
}
.tier-group-title:first-of-type { margin-top: 0; }

.tier {
  display: flex; flex-direction: column;
  padding: clamp(1.4rem, 2.5vw, 1.8rem);
  border: 1px solid var(--sand-200);
  border-radius: var(--r-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.tier-name {
  margin: 0 0 .3rem;
  font-size: 1.05rem; font-weight: 700;
  letter-spacing: -.015em;
  text-wrap: balance;
}
.tier-price {
  margin: 0 0 1.1rem;
  font-size: 2rem; font-weight: 700;
  letter-spacing: -.03em;
  color: var(--clay-dk);
}
.tier-price span { font-size: .5em; font-weight: 700; color: var(--ink-faint); }
.tier ul {
  margin: 0; padding: 0; list-style: none;
  font-size: .95rem; color: var(--ink-soft);
}
.tier ul li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: .5rem;
}
.tier ul li:last-child { margin-bottom: 0; }
.tier ul li::before {
  content: "";
  position: absolute; left: 0; top: .62em;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--ochre);
}
.tier-note {
  margin: 1rem 0 0;
  font-size: .82rem; color: var(--ink-faint);
}

.tier-featured {
  position: relative;
  border: 2px solid var(--clay);
  background: linear-gradient(170deg, #fff 55%, var(--clay-soft));
  box-shadow: var(--shadow-md);
}
.tier-flag {
  position: absolute; top: -.85rem; left: clamp(1.4rem, 2.5vw, 1.8rem);
  padding: .28rem .8rem;
  border-radius: var(--r-pill);
  background: var(--clay-dk); color: #fff;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
}

.tier-pro { border-color: var(--sage); border-width: 2px; }
.tier-pro .tier-price { color: var(--sage-dk); }
.tier-pro ul li::before { background: var(--sage); }

.tier-badge {
  align-self: flex-start;
  margin-bottom: .8rem;
  padding: .3rem .8rem;
  border-radius: var(--r-pill);
  font-size: .74rem; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
}
.tier-bronze .tier-badge { background: var(--sand-200); color: #7A5327; }
.tier-silver .tier-badge { background: var(--sage-mist); color: var(--sage-dk); }
.tier-gold   .tier-badge { background: var(--ochre-soft); color: #7E5518; }
.tier-silver { border-color: var(--sage); }
.tier-silver .tier-price { color: var(--sage-dk); }
.tier-silver ul li::before { background: var(--sage); }
.tier-gold { border-color: var(--ochre); border-width: 2px; }
.tier-gold .tier-price { color: #9A6A28; }

/* ───────────────────────── CTA band ───────────────────────── */

.cta-band {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 1.6rem;
  margin-top: clamp(2.2rem, 5vw, 3.4rem);
  padding: clamp(1.7rem, 4vw, 2.6rem);
  border-radius: var(--r-xl);
  background: linear-gradient(115deg, var(--sage-soft) 0%, var(--sand-150) 55%, var(--ochre-soft) 100%);
}
.cta-band h3 { margin-bottom: .35rem; }
.cta-band p { margin: 0; max-width: 46ch; color: var(--ink-soft); font-size: .96rem; }
.cta-band-actions { display: flex; flex-wrap: wrap; gap: .7rem; }

/* ───────────────────────── Bio ───────────────────────── */

.bio {
  padding: clamp(1.6rem, 3vw, 2.2rem);
  border: 1px solid var(--sand-200);
  border-radius: var(--r-lg);
  background: var(--sand-100);
  box-shadow: var(--shadow-md);
}
.bio-avatar {
  display: block;
  width: 96px; height: 96px;
  margin-bottom: 1.1rem;
  border-radius: 50%;
  object-fit: cover;
  background: var(--sage-mist);       /* než se fotka načte */
  box-shadow: 0 0 0 3px var(--sand-50), 0 0 0 5px var(--sage-soft);
}
.bio h3 { margin-bottom: .2rem; }
.bio-role {
  margin-bottom: 1rem;
  font-weight: 600; font-size: .95rem;
  color: var(--sage-dk);
}
.bio p:not(.bio-role) { color: var(--ink-soft); font-size: .97rem; }
.link-out {
  display: inline-block;
  margin-top: 1.1rem;
  font-weight: 700; font-size: .95rem;
  color: var(--sage-dk);
}
.link-out:hover { color: var(--forest); }

/* ───────────────────────── Odběr novinek ───────────────────────── */

/* Pouze pro čtečky obrazovky */
.vh {
  position: absolute; width: 1px; height: 1px;
  margin: -1px; padding: 0; border: 0;
  clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}

.signup {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem clamp(1.2rem, 3vw, 2rem);
  align-items: start;
  padding: clamp(1.6rem, 4vw, 2.6rem);
  border: 1px solid var(--sand-200);
  border-radius: var(--r-xl);
  background: var(--sand-50);
  box-shadow: var(--shadow-md);
}

.signup-icon {
  display: grid; place-items: center;
  width: 62px; height: 62px;
  border-radius: 50%;
  background: var(--sage-mist);
  color: var(--sage-dk);
  grid-row: span 2;
}
.signup-icon svg { width: 28px; height: 28px; }

.signup-copy h2 { margin-bottom: .3rem; }
.signup-copy p {
  margin: 0;
  max-width: 52ch;
  color: var(--ink-soft);
}

.signup-form { grid-column: 2; }

.signup-fields {
  display: flex; flex-wrap: wrap; gap: .7rem;
  margin-top: 1.4rem;
}
.signup-field { flex: 1 1 190px; margin: 0; }

.signup-field input {
  width: 100%;
  padding: .92em 1.15em;
  border: 1px solid var(--sand-300);
  border-radius: var(--r-pill);
  background: #fff;
  color: var(--ink);
  font: inherit; font-size: 1rem;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.signup-field input::placeholder { color: var(--ink-faint); }
.signup-field input:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(96, 125, 111, .22);
}
.signup-field input:user-invalid {
  border-color: var(--clay-dk);
  box-shadow: 0 0 0 3px rgba(180, 78, 47, .18);
}

.signup-fields .btn { flex: 0 0 auto; }
.signup-fields .btn[disabled] { opacity: .6; cursor: progress; }

.signup-hp { position: absolute; left: -9999px; width: 1px; height: 1px; }

.signup-note {
  margin: .9rem 0 0;
  font-size: .85rem;
  color: var(--ink-faint);
}

.signup-status {
  margin: .9rem 0 0;
  font-size: .95rem; font-weight: 600;
}
.signup-status:empty { display: none; }
.signup-status.is-pending { color: var(--ink-soft); }
.signup-status.is-ok      { color: var(--sage-dk); }
.signup-status.is-err     { color: var(--clay-dk); }

@media (max-width: 620px) {
  .signup { grid-template-columns: 1fr; }
  .signup-icon { grid-row: auto; }
  .signup-form { grid-column: 1; }
  .signup-fields .btn { width: 100%; }
}

/* ───────────────────────── Contact ───────────────────────── */

/* Jednosloupcová — pravý sloupec s rozcestníkem byl odstraněn.
   Šířku omezujeme uvnitř, ne na .wrap, aby sekce zůstala zarovnaná se zbytkem. */
.contact-inner > div { max-width: 62ch; }

/* Odkazy v tmavé sekci — terakota na zelené nemá kontrast */
.section-dark a:not(.btn) { color: var(--clay-soft); }
.section-dark a:not(.btn):hover { color: #fff; }
.contact-actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.8rem; }

/* ───────────────────────── Footer ───────────────────────── */

.site-footer {
  padding: clamp(2.2rem, 5vw, 3.2rem) 0;
  background: var(--sand-150);
  border-top: 1px solid var(--sand-200);
}
.footer-inner {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 1.5rem 2rem;
}
.footer-brand { display: flex; align-items: center; gap: .8rem; }
.footer-brand p { margin: 0; font-size: .9rem; color: var(--ink-soft); }
.footer-nav { display: flex; flex-wrap: wrap; gap: .3rem .4rem; }
.footer-nav a {
  padding: .45rem .8rem;
  border-radius: var(--r-pill);
  color: var(--ink-soft);
  font-weight: 600; font-size: .92rem; text-decoration: none;
}
.footer-nav a:hover { background: var(--sand-100); color: var(--ink); }
.footer-legal {
  flex-basis: 100%;
  margin: 0; padding-top: 1.2rem;
  border-top: 1px solid var(--sand-200);
  font-size: .85rem; color: var(--ink-faint);
}

/* ───────────────────────── Reveal on scroll ───────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

@media print {
  .site-header, .nav-toggle, .blob { display: none; }
  body { background: #fff; }
}
