:root {
  /* barvy */
  --paper: #f6f2ee;
  --paper-deep: #ece6e0;
  --cream: #fffcf9;
  --ink: #241f4b;
  --ink-soft: #4a4470;
  --muted: #63608a;
  --muted-light: #b3b0cc;
  --mist: #dfe3f2;
  --peach: #e39d88;
  --blush: #f0b9b2;
  --peach-light: #f4cec4;
  --line: rgba(36, 31, 75, .14);
  --line-strong: rgba(36, 31, 75, .22);
  --line-light: rgba(255, 255, 255, .14);

  /* tvary */
  --r-card: 22px 22px 0 22px;
  --r-sm: 14px 14px 0 14px;
  --r-btn: 10px 10px 0 10px;
  --shadow-soft: 0 18px 38px -28px rgba(36, 31, 75, .45);

  /* typografie a rozmery */
  --serif: "Instrument Serif", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --fs-display: clamp(30px, 3.4vw, 46px);
  --fs-card: clamp(20px, 1.7vw, 25px);
  --fs-body: 16px;
  --header-height: 72px;
  --gutter: 24px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 12px); -webkit-text-size-adjust: 100%; }
body { margin: 0; overflow-x: hidden; background: var(--paper); color: var(--ink); font-family: var(--sans); font-size: var(--fs-body); line-height: 1.65; -webkit-font-smoothing: antialiased; -webkit-tap-highlight-color: transparent; }
body.menu-open, body.is-loading { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
img, svg { display: block; max-width: 100%; }
::selection { background: var(--peach-light); color: var(--ink); }
main section { scroll-margin-top: calc(var(--header-height) + 12px); }

.skip-link { position: fixed; top: 10px; left: 10px; z-index: 1200; transform: translateY(-150%); padding: 12px 18px; border-radius: var(--r-btn); background: var(--ink); color: white; font-size: 13px; }
.skip-link:focus { transform: translateY(0); }
.container { width: min(100% - (var(--gutter) * 2), 1180px); margin-inline: auto; }
.section { padding: clamp(56px, 6vw, 92px) 0; }

.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0; color: var(--muted); font-size: 11px; font-weight: 600; letter-spacing: .16em; line-height: 1.2; text-transform: uppercase; }
.eyebrow--light { color: var(--muted-light); }

/* jednotna hlavicka sekce: nadpis vlevo, shrnuti vpravo — zadny prazdny sloupec */
.section-head { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr); gap: clamp(20px, 3.4vw, 56px); align-items: end; margin-bottom: clamp(30px, 3.4vw, 48px); }
.section-head h2 { margin: 12px 0 0; font-family: var(--serif); font-size: var(--fs-display); font-weight: 400; letter-spacing: -.03em; line-height: 1.04; }
.section-head h2 em { color: var(--peach); font-weight: 400; }
.section-lead { max-width: 46ch; margin: 0 0 5px; color: var(--muted); font-size: var(--fs-body); line-height: 1.7; }
.section-lead a { border-bottom: 1px solid var(--peach); color: var(--ink); }
.approach .section-head h2 em { color: var(--blush); }
.approach .section-lead { color: var(--muted-light); }

.scroll-progress { position: fixed; inset: 0 0 auto; z-index: 200; height: 3px; pointer-events: none; }
.scroll-progress span { display: block; width: 100%; height: 100%; transform: scaleX(0); transform-origin: left; background: var(--peach); }

/* ---------- logo ---------- */
.mark { width: 100%; height: 100%; color: inherit; }
.mark path { fill: none; }
.mark-bowl { stroke: var(--peach); }
.brand-mark .mark path { stroke-width: 2.4; }

/* ---------- loading screen ---------- */
.preloader { position: fixed; inset: 0; z-index: 1000; display: grid; place-items: center; background: var(--paper); transition: opacity .6s var(--ease), transform .7s var(--ease), visibility .7s; }
.preloader.is-done { visibility: hidden; transform: translateY(-2.5%); opacity: 0; }
.preloader__inner { display: flex; flex-direction: column; align-items: center; padding: 0 24px; text-align: center; }
.preloader__mark { width: clamp(56px, 13vw, 74px); aspect-ratio: 1; color: var(--ink); }
.preloader__mark path { fill: none; stroke-linecap: round; stroke-dasharray: 1; stroke-dashoffset: 1; animation: markDraw 1.05s var(--ease) forwards; }
.preloader__mark .mark-stem { animation-delay: .16s; }
.preloader__mark .mark-bowl { animation-delay: .3s; }
@keyframes markDraw { to { stroke-dashoffset: 0; } }
.preloader__name { margin: 22px 0 0; font-family: var(--serif); font-size: clamp(22px, 4vw, 28px); letter-spacing: -.02em; opacity: 0; animation: fadeUp .7s var(--ease) .72s forwards; }
.preloader__role { margin: 6px 0 0; color: var(--muted); font-size: 10px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; opacity: 0; animation: fadeUp .7s var(--ease) .84s forwards; }
.preloader__bar { width: min(180px, 46vw); height: 2px; margin-top: 26px; overflow: hidden; border-radius: 2px; background: rgba(36, 31, 75, .12); }
.preloader__bar span { display: block; width: 0; height: 100%; background: var(--peach); animation: barLoad 1.4s var(--ease) forwards; }
@keyframes barLoad { to { width: 100%; } }
@keyframes fadeUp { from { transform: translateY(10px); opacity: 0; } to { transform: none; opacity: 1; } }

/* ---------- header ---------- */
.site-header { position: fixed; inset: 0 0 auto; z-index: 100; height: var(--header-height); border-bottom: 1px solid transparent; transition: height .3s var(--ease), background .3s, border-color .3s; }
.site-header.is-scrolled { height: 62px; border-color: var(--line); background: rgba(246, 242, 238, .9); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); }
.header-shell { display: flex; align-items: center; width: min(100% - (var(--gutter) * 2), 1180px); height: 100%; margin-inline: auto; }
.brand { display: inline-flex; align-items: center; gap: 11px; min-height: 44px; }
body.menu-open .site-header { border-color: var(--line); background: var(--paper); -webkit-backdrop-filter: none; backdrop-filter: none; }
.brand-mark { display: grid; width: 40px; height: 40px; flex: 0 0 auto; place-items: center; padding: 4px; border: 1px solid var(--line-strong); border-radius: var(--r-btn); background: var(--cream); color: var(--ink); transition: color .3s, background .3s, border-color .3s, transform .3s var(--ease); }
.brand-copy strong, .brand-copy small { display: block; }
.brand-copy strong { font-size: 12px; font-weight: 600; letter-spacing: .07em; line-height: 1.1; text-transform: uppercase; }
.brand-copy small { margin-top: 4px; color: var(--muted); font-size: 8.5px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
.desktop-nav { display: flex; align-items: center; gap: clamp(16px, 2vw, 30px); margin-left: auto; }
.desktop-nav a { position: relative; padding: 10px 0; color: var(--muted); font-size: 12px; font-weight: 500; letter-spacing: .02em; transition: color .25s; }
.desktop-nav a::after { content: ""; position: absolute; right: 0; bottom: 4px; left: 0; height: 1px; transform: scaleX(0); transform-origin: right; background: var(--peach); transition: transform .3s var(--ease); }
.desktop-nav a.is-active { color: var(--ink); }
.desktop-nav a.is-active::after { transform: scaleX(1); transform-origin: left; }
.header-contact { display: inline-flex; align-items: center; gap: 14px; min-height: 44px; margin-left: clamp(18px, 2.4vw, 34px); padding: 0 6px 0 16px; border-radius: var(--r-btn); background: var(--ink); color: white; font-size: 12px; font-weight: 500; }
.header-contact i { display: grid; width: 32px; height: 32px; place-items: center; border-radius: 8px 8px 0 8px; background: var(--blush); color: var(--ink); font-family: var(--sans); font-size: 13px; font-style: normal; transition: transform .3s var(--ease); }

.menu-button { display: none; width: 44px; height: 44px; margin-left: auto; padding: 0; border: 0; background: none; cursor: pointer; touch-action: manipulation; }
.menu-button span { display: block; width: 23px; height: 1.5px; margin: 6px auto; border-radius: 2px; background: var(--ink); transition: transform .3s var(--ease); }
.menu-button.is-open span:first-child { transform: translateY(3.75px) rotate(45deg); }
.menu-button.is-open span:last-child { transform: translateY(-3.75px) rotate(-45deg); }

.mobile-menu { visibility: hidden; position: fixed; inset: var(--header-height) 0 0; z-index: 99; display: flex; flex-direction: column; justify-content: space-between; overflow-y: auto; overscroll-behavior: contain; -webkit-overflow-scrolling: touch; transform: translateY(-14px); background: var(--paper); opacity: 0; transition: opacity .28s, transform .28s var(--ease), visibility .28s; }
.mobile-menu.is-open { visibility: visible; transform: translateY(0); opacity: 1; }
.mobile-menu__foot { width: min(100% - (var(--gutter) * 2), 640px); margin: 24px auto 0; padding-top: 18px; padding-bottom: calc(24px + env(safe-area-inset-bottom, 0px)); border-top: 1px solid var(--line); }
.mobile-menu__foot a { display: inline-block; min-height: 44px; font-family: var(--serif); font-size: 20px; line-height: 44px; }
.mobile-menu__foot p { margin: 0; color: var(--muted); font-size: 11px; font-weight: 500; }

/* ---------- hero ---------- */
.hero { position: relative; padding-top: var(--header-height); overflow: hidden; background: var(--paper); }
.hero-noise { position: absolute; inset: 0; opacity: .2; pointer-events: none; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.08'/%3E%3C/svg%3E"); }
.hero-shell { position: relative; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(330px, .8fr); width: min(100% - (var(--gutter) * 2), 1180px); margin-inline: auto; gap: 0 clamp(28px, 4vw, 56px); }
.hero-copy { position: relative; z-index: 3; align-self: center; padding: 42px 0 46px; }
.status-dot { position: relative; width: 7px; height: 7px; flex: 0 0 auto; border-radius: 50%; background: #6f9c86; box-shadow: 0 0 0 5px rgba(111, 156, 134, .14); }
.status-dot::after { content: ""; position: absolute; inset: -4px; border: 1px solid #6f9c86; border-radius: inherit; animation: pulse 2.4s ease-out infinite; }
@keyframes pulse { 0% { transform: scale(.5); opacity: .9; } 75%, 100% { transform: scale(1.8); opacity: 0; } }
.hero-title { position: relative; z-index: 2; margin: 20px 0 0; font-family: var(--serif); font-size: clamp(38px, 5.2vw, 68px); font-weight: 400; letter-spacing: -.035em; line-height: 1.02; }
.title-line { display: block; overflow: hidden; padding: 0 6px 2px 0; }
.title-line > span { display: block; }
.title-line--indent { padding-left: clamp(16px, 2.6vw, 40px); color: var(--ink-soft); }
.title-line--accent { padding-left: clamp(34px, 5.2vw, 82px); color: var(--peach); }
.title-line em { font-weight: 400; }
.hero-intro { margin-top: 24px; }
.hero-intro > p { max-width: 48ch; margin: 0; color: var(--muted); font-size: var(--fs-body); line-height: 1.7; }
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-top: 24px; }

.button { position: relative; display: inline-flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 50px; padding: 0 6px 0 20px; overflow: hidden; border: 1px solid var(--ink); border-radius: var(--r-btn); font-size: 14px; font-weight: 500; touch-action: manipulation; }
.button::before { content: ""; position: absolute; inset: 0; transform: translateX(-101%); background: var(--blush); transition: transform .4s var(--ease); }
.button > * { position: relative; z-index: 1; }
.button i { display: grid; width: 38px; height: 38px; flex: 0 0 auto; place-items: center; border-radius: 8px 8px 0 8px; background: var(--blush); color: var(--ink); font-size: 14px; font-style: normal; transition: background .3s, color .3s; }
.button--primary { background: var(--ink); color: white; }
.button--ghost { background: transparent; }
.button--ghost i { background: var(--ink); color: var(--paper); }
.text-link { display: inline-flex; align-items: center; gap: 10px; min-height: 44px; padding: 0 4px; color: var(--muted); font-size: 14px; font-weight: 500; transition: color .3s; }
.text-link i { font-size: 13px; font-style: normal; }

.hero-visual { position: relative; min-height: 430px; overflow: hidden; border-radius: var(--r-card); box-shadow: var(--shadow-soft); }
.visual-art { width: 100%; height: 100%; object-fit: cover; }
.visual-label { position: absolute; z-index: 3; color: var(--ink-soft); font-size: 9px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.visual-label--top { top: 18px; left: 20px; }
.visual-label--side { display: none; }
.visual-note { position: absolute; right: 0; bottom: 0; z-index: 4; display: flex; gap: 14px; align-items: flex-start; width: min(82%, 300px); padding: 18px 20px; border-radius: 18px 0 0 0; background: rgba(255, 252, 249, .94); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
.visual-note span { padding-top: 4px; color: var(--peach); font-size: 12px; line-height: 1; }
.visual-note p { margin: 0; font-family: var(--serif); font-size: clamp(19px, 1.6vw, 23px); letter-spacing: -.02em; line-height: 1.15; }
.visual-orbit { position: absolute; top: 18px; right: 18px; z-index: 5; display: grid; width: 78px; height: 78px; place-items: center; border-radius: 50%; background: rgba(255, 252, 249, .92); box-shadow: 0 12px 30px rgba(36, 31, 75, .16); }
.visual-orbit svg { position: absolute; inset: 5px; width: calc(100% - 10px); animation: spin 22s linear infinite; }
.visual-orbit text { fill: var(--ink); font-family: var(--sans); font-size: 10px; font-weight: 600; letter-spacing: .12em; }
.visual-orbit > span { color: var(--peach); font-size: 16px; }
@keyframes spin { to { transform: rotate(360deg); } }

.hero-meta { position: relative; z-index: 5; grid-column: 1 / -1; display: grid; grid-template-columns: repeat(4, 1fr); margin: 22px 0 0; overflow: hidden; border: 1px solid var(--line); border-radius: var(--r-card); background: var(--cream); }
.hero-meta > div { display: grid; gap: 3px; min-height: 64px; align-content: center; padding: 12px clamp(16px, 2vw, 24px); border-right: 1px solid var(--line); }
.hero-meta > div:last-child { border-right: 0; }
.hero-meta dt { color: var(--muted); font-size: 10px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; }
.hero-meta dd { margin: 0; font-size: 15px; font-weight: 500; }
.hero-meta__availability dd { display: flex; align-items: center; gap: 7px; }
.hero-meta__availability dd span { width: 6px; height: 6px; flex: 0 0 auto; border-radius: 50%; background: #6f9c86; }

/* ---------- manifest ---------- */
.manifesto { background: var(--cream); }
.manifesto-grid { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, .7fr); gap: clamp(24px, 4vw, 60px); align-items: end; }
.manifesto-title { margin: 0; font-family: var(--serif); font-size: clamp(27px, 3.2vw, 42px); font-weight: 400; letter-spacing: -.03em; line-height: 1.12; }
.manifesto-title em { color: var(--peach); font-weight: 400; }
.manifesto-side > p { margin: 0; color: var(--muted); font-size: var(--fs-body); line-height: 1.7; }
.hand-note { display: inline-block; margin-top: 16px; padding: 12px 16px; border-radius: var(--r-sm); background: var(--peach-light); color: var(--ink); font-family: var(--serif); font-size: 19px; font-style: italic; line-height: 1.2; }

/* ---------- pristup ---------- */
.approach { background: var(--ink); color: var(--paper); }
.principles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.principle { position: relative; overflow: hidden; padding: 26px 24px 28px; border: 1px solid var(--line-light); border-radius: var(--r-card); background: rgba(255, 255, 255, .05); transition: background .35s, transform .35s var(--ease); }
.principle--accent { background: rgba(240, 185, 178, .12); }
.principle--accent::before { content: ""; position: absolute; inset: 0; z-index: 0; transform: scaleY(0); transform-origin: bottom; background: var(--blush); transition: transform .45s var(--ease); }
.principle > * { position: relative; z-index: 1; }
.principle-icon { display: grid; width: 46px; height: 46px; place-items: center; padding: 9px; border-radius: 12px 12px 0 12px; background: rgba(255, 255, 255, .08); }
.principle-icon svg { width: 100%; height: 100%; fill: none; stroke: var(--blush); stroke-width: 1.4; transition: stroke .3s; }
.principle h3 { margin: 20px 0 0; font-family: var(--serif); font-size: var(--fs-card); font-weight: 400; letter-spacing: -.02em; line-height: 1.15; }
.principle p { margin: 8px 0 0; color: var(--muted-light); font-size: 15px; line-height: 1.65; transition: color .3s; }

/* ---------- temata ---------- */
.topics { background: var(--mist); }
.topic-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.topic-item { position: relative; display: grid; grid-template-columns: 1fr 38px; gap: 16px; align-items: center; padding: 24px 26px; overflow: hidden; border-radius: var(--r-card); background: var(--cream); transition: transform .35s var(--ease), box-shadow .35s var(--ease), color .3s; }
.topic-item::before { content: ""; position: absolute; inset: 0; transform: translateY(101%); background: var(--ink); transition: transform .45s var(--ease); }
.topic-item > * { position: relative; z-index: 1; }
.topic-item h3 { margin: 0; font-family: var(--serif); font-size: var(--fs-card); font-weight: 400; letter-spacing: -.02em; line-height: 1.15; }
.topic-item p { margin: 8px 0 0; color: var(--muted); font-size: 15px; line-height: 1.65; transition: color .3s; }
.topic-symbol { display: grid; width: 38px; height: 38px; flex: 0 0 auto; place-items: center; border-radius: 50%; background: var(--peach-light); color: var(--ink); font-size: 15px; transition: transform .3s var(--ease), background .3s; }

/* ---------- o mne ---------- */
.about { background: var(--cream); }
.about-grid { display: grid; grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr); gap: clamp(28px, 4.5vw, 64px); align-items: center; }
.about-portrait { position: relative; padding-right: 46px; }
.portrait-placeholder { position: relative; aspect-ratio: 4 / 4.4; overflow: hidden; border-radius: var(--r-card); background: var(--mist); box-shadow: var(--shadow-soft); }
.portrait-placeholder svg { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.portrait-initials { position: absolute; top: 16px; left: 16px; z-index: 2; padding: 4px 11px; border-radius: 9px 9px 0 9px; background: rgba(255, 252, 249, .9); font-family: var(--serif); font-size: 17px; font-style: italic; }
.portrait-caption { position: absolute; left: 16px; bottom: 16px; z-index: 2; padding: 8px 11px; border-radius: 10px 10px 0 10px; background: rgba(255, 252, 249, .93); color: var(--muted); font-size: 9px; font-weight: 600; letter-spacing: .1em; line-height: 1.5; text-transform: uppercase; }
.portrait-side-note { position: absolute; right: -10px; bottom: 9%; width: min(66%, 190px); margin: 0; padding: 14px 16px; transform: rotate(-3deg); border-radius: var(--r-sm); background: var(--peach); color: var(--ink); font-family: var(--serif); font-size: 16px; font-style: italic; line-height: 1.25; box-shadow: var(--shadow-soft); }
.about-copy h2 { margin: 12px 0 0; font-family: var(--serif); font-size: var(--fs-display); font-weight: 400; letter-spacing: -.03em; line-height: 1.04; }
.about-copy h2 em { color: var(--peach); font-weight: 400; }
.about-text { display: grid; gap: 12px; margin-top: 20px; }
.about-text p { max-width: 60ch; margin: 0; color: var(--muted); font-size: var(--fs-body); line-height: 1.7; }
.credentials { margin: 24px 0 0; padding: 4px 20px; border-radius: var(--r-card); background: var(--paper); }
.credentials > div { display: grid; grid-template-columns: 170px 1fr; gap: 16px; align-items: baseline; padding: 14px 0; border-bottom: 1px solid var(--line); }
.credentials > div:last-child { border-bottom: 0; }
.credentials dt { color: var(--muted); font-size: 10px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; }
.credentials dd { margin: 0; font-size: 15px; font-weight: 500; }

/* ---------- prubeh ---------- */
.process { background: var(--paper-deep); }
.process-track { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.process-line { position: absolute; top: 41px; right: 40px; left: 40px; height: 1px; background: rgba(36, 31, 75, .16); }
.process-line span { display: block; width: 0; height: 100%; background: var(--peach); }
.process-track article { position: relative; padding: 24px 22px 26px; border-radius: var(--r-card); background: var(--cream); }
.step-dot { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 50%; background: var(--peach-light); }
.step-dot::after { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--ink); }
.process-track h3 { margin: 16px 0 0; font-family: var(--serif); font-size: clamp(19px, 1.5vw, 22px); font-weight: 400; letter-spacing: -.015em; line-height: 1.2; }
.process-track p { margin: 8px 0 0; color: var(--muted); font-size: 15px; line-height: 1.65; }

/* ---------- caste otazky ---------- */
.faq { position: relative; overflow: hidden; background: var(--paper); }
.faq::before { content: ""; position: absolute; top: -110px; right: -90px; width: 300px; height: 300px; border-radius: 50%; background: rgba(240, 185, 178, .22); pointer-events: none; }
.faq .container { position: relative; z-index: 1; }
.faq-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; align-items: start; }
.faq-item { overflow: hidden; border: 1px solid var(--line); border-radius: var(--r-sm); background: var(--cream); transition: border-color .3s, box-shadow .3s; }
.faq-item[open] { border-color: transparent; box-shadow: var(--shadow-soft); }
.faq-item summary { display: flex; gap: 16px; align-items: center; justify-content: space-between; min-height: 58px; padding: 14px 18px; cursor: pointer; font-size: 16px; font-weight: 500; line-height: 1.35; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary i { position: relative; display: block; width: 28px; height: 28px; flex: 0 0 auto; border-radius: 50%; background: var(--peach-light); transition: background .3s, transform .3s var(--ease); }
.faq-item summary i::before, .faq-item summary i::after { content: ""; position: absolute; top: 50%; right: 8px; left: 8px; height: 1.5px; border-radius: 2px; background: var(--ink); transition: background .3s, transform .3s var(--ease), opacity .3s; }
.faq-item summary i::after { transform: rotate(90deg); }
.faq-item[open] summary i { background: var(--ink); }
.faq-item[open] summary i::before, .faq-item[open] summary i::after { background: var(--paper); }
.faq-item[open] summary i::after { transform: rotate(0); opacity: 0; }
.faq-answer { padding: 0 18px 18px; }
.faq-item[open] .faq-answer { animation: faqIn .35s var(--ease); }
@keyframes faqIn { from { transform: translateY(-6px); opacity: 0; } }
.faq-answer p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.7; }

/* ---------- kontakt ---------- */
.contact { position: relative; padding: clamp(60px, 6.5vw, 100px) 0; overflow: hidden; background: var(--ink); color: var(--paper); }
.contact-orb { position: absolute; border-radius: 50%; pointer-events: none; }
.contact-orb--one { top: -220px; right: 6%; width: 520px; height: 520px; border: 1px solid rgba(240, 185, 178, .16); box-shadow: 0 0 0 80px rgba(240, 185, 178, .03); }
.contact-orb--two { bottom: -280px; left: 14%; width: 440px; height: 440px; background: rgba(227, 157, 136, .12); }
.contact-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(300px, .9fr); gap: clamp(28px, 4.5vw, 64px); align-items: center; }
.contact-main h2 { margin: 12px 0 0; font-family: var(--serif); font-size: clamp(30px, 3.8vw, 50px); font-weight: 400; letter-spacing: -.032em; line-height: 1.04; }
.contact-main h2 em { color: var(--blush); font-weight: 400; }
.contact-lead { max-width: 46ch; margin: 16px 0 0; color: var(--muted-light); font-size: var(--fs-body); line-height: 1.7; }
.contact-email { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 24px; padding: 12px 12px 12px 20px; border-radius: var(--r-card); background: rgba(255, 255, 255, .07); font-family: var(--serif); font-size: clamp(20px, 2.4vw, 32px); letter-spacing: -.02em; transition: background .3s; }
.contact-email > span { min-width: 0; overflow-wrap: anywhere; }
.contact-email i { display: grid; width: 44px; height: 44px; flex: 0 0 auto; place-items: center; border-radius: 50%; background: var(--blush); color: var(--ink); font-family: var(--sans); font-size: 16px; font-style: normal; transition: transform .35s var(--ease); }
.contact-card { padding: 22px 24px; border-radius: var(--r-card); background: var(--blush); color: var(--ink); box-shadow: var(--shadow-soft); }
.contact-card__top { display: flex; align-items: center; justify-content: space-between; padding-bottom: 14px; border-bottom: 1px solid rgba(36, 31, 75, .2); }
.contact-card__top span { font-size: 11px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.contact-card__top i { color: var(--ink); font-size: 16px; font-style: normal; }
.contact-card dl { margin: 0; }
.contact-card dl > div { display: grid; grid-template-columns: 1fr 1.3fr; gap: 14px; align-items: baseline; padding: 12px 0; border-bottom: 1px solid rgba(36, 31, 75, .16); }
.contact-card dt { color: rgba(36, 31, 75, .72); font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.contact-card dd { margin: 0; font-size: 15px; font-weight: 500; }
.contact-card > p { margin: 14px 0 0; color: rgba(36, 31, 75, .72); font-size: 11px; line-height: 1.6; }

/* ---------- paticka ---------- */
.site-footer { padding-bottom: env(safe-area-inset-bottom, 0px); border-top: 1px solid var(--line); background: var(--paper); }
.footer-row { display: flex; min-height: 84px; align-items: center; justify-content: space-between; gap: 24px; }
.footer-row > p, .footer-row > a:last-child { color: var(--muted); font-size: 12px; }
.footer-row > a:last-child { display: inline-flex; align-items: center; min-height: 44px; }
.footer-row > a:last-child span { margin-left: 8px; color: var(--ink); }

[data-reveal] { will-change: transform, opacity; }
:focus-visible { outline: 2px solid var(--peach); outline-offset: 3px; }

/* ---------- hover jen pro mys / trackpad ---------- */
@media (hover: hover) and (pointer: fine) {
  .brand:hover .brand-mark { transform: rotate(-4deg); border-color: var(--ink); background: var(--ink); color: var(--paper); }
  .desktop-nav a:hover { color: var(--ink); }
  .desktop-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
  .header-contact:hover i { transform: rotate(45deg); }
  .button:hover::before { transform: translateX(0); }
  .button:hover { color: var(--ink); }
  .button:hover i { background: var(--ink); color: var(--paper); }
  .button--ghost:hover i { background: var(--paper); color: var(--ink); }
  .text-link:hover { color: var(--ink); }
  .principle:hover { transform: translateY(-4px); }
  .principle--accent:hover::before { transform: scaleY(1); }
  .principle--accent:hover, .principle--accent:hover p { color: var(--ink); }
  .principle--accent:hover .principle-icon { background: rgba(36, 31, 75, .1); }
  .principle--accent:hover .principle-icon svg { stroke: var(--ink); }
  .topic-item:hover::before { transform: translateY(0); }
  .topic-item:hover { transform: translateY(-3px); color: var(--paper); box-shadow: var(--shadow-soft); }
  .topic-item:hover p { color: var(--muted-light); }
  .topic-item:hover .topic-symbol { transform: rotate(45deg); background: var(--peach); }
  .portrait-placeholder:hover svg { transform: scale(1.03); }
  .faq-item:hover { border-color: var(--line-strong); }
  .contact-email:hover { background: rgba(255, 255, 255, .11); }
  .contact-email:hover i { transform: rotate(45deg); }
}

@media (hover: none) {
  .topic-item:active { transform: scale(.99); }
  .topic-item:active .topic-symbol { background: var(--peach); }
  .button:active, .header-contact:active, .mobile-menu__cta:active, .contact-email:active { opacity: .82; }
  .faq-item summary:active i { transform: scale(.93); }
}

/* ---------- < 1080px: mobilni navigace ---------- */
@media (max-width: 1080px) {
  .desktop-nav, .header-contact { display: none; }
  .menu-button { display: block; }
  .mobile-menu nav { width: min(100% - (var(--gutter) * 2), 640px); margin-inline: auto; padding-top: 14px; }
  .mobile-menu a { display: grid; grid-template-columns: 1fr auto; align-items: center; min-height: 58px; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 26px; }
  .mobile-menu a i { font-size: 16px; font-style: normal; }
  .mobile-menu__cta { margin-top: 16px; padding-inline: 20px; border-bottom: 0 !important; border-radius: var(--r-btn); background: var(--ink); color: var(--paper); font-size: 22px; }
}

/* ---------- < 900px: hlavicky a mrizky na jeden sloupec ---------- */
@media (max-width: 900px) {
  :root { --gutter: 20px; }
  .section-head { grid-template-columns: 1fr; gap: 14px; align-items: start; }
  .section-lead { max-width: 58ch; margin-bottom: 0; }
  .hero-shell { display: flex; flex-direction: column; }
  .hero-copy { padding: 34px 0 28px; }
  .hero-visual { aspect-ratio: 5 / 4; min-height: 0; }
  .manifesto-grid { grid-template-columns: 1fr; gap: 22px; align-items: start; }
  .principles { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-portrait { width: min(78%, 420px); padding-right: 40px; }
  .process-track { grid-template-columns: 1fr 1fr; }
  .process-line { display: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-card { width: 100%; }
}

/* ---------- < 640px: telefon ---------- */
@media (max-width: 640px) {
  :root { --header-height: 64px; --gutter: max(16px, env(safe-area-inset-left, 0px)); --fs-display: clamp(26px, 7.4vw, 34px); --fs-card: 20px; }
  .section { padding: 48px 0; }
  .brand-copy small { display: none; }
  .hero-copy { padding: 26px 0 24px; }
  .hero-title { margin-top: 16px; font-size: clamp(32px, 9.4vw, 42px); }
  .title-line--indent { padding-left: 4vw; }
  .title-line--accent { padding-left: 9vw; }
  .hero-intro { margin-top: 18px; }
  .hero-actions { gap: 10px; margin-top: 20px; }
  .button { width: 100%; }
  .text-link { width: 100%; justify-content: center; border: 1px solid var(--line-strong); border-radius: var(--r-btn); min-height: 48px; }
  .hero-visual { aspect-ratio: 1 / 1; }
  .visual-orbit { width: 64px; height: 64px; top: 14px; right: 14px; }
  .visual-orbit > span { font-size: 13px; }
  .visual-orbit text { font-size: 11px; }
  .visual-note { width: min(92%, 280px); padding: 15px 16px; }
  .visual-note p { font-size: 18px; }
  .hero-meta { grid-template-columns: 1fr 1fr; margin-top: 16px; }
  .hero-meta > div { min-height: 58px; padding: 10px 16px; }
  .hero-meta > div:nth-child(2), .hero-meta > div:nth-child(4) { border-right: 0; }
  .hero-meta > div:nth-child(1), .hero-meta > div:nth-child(2) { border-bottom: 1px solid var(--line); }
  .manifesto-title { font-size: clamp(24px, 6.6vw, 30px); }
  .hand-note { font-size: 18px; }
  .principles, .topic-list, .process-track, .faq-list { grid-template-columns: 1fr; gap: 10px; }
  .principle { padding: 22px 20px 24px; }
  .topic-item { padding: 20px; gap: 14px; }
  .process-track article { padding: 20px; }
  .about-portrait { width: 100%; padding-right: 34px; }
  .portrait-side-note { right: -6px; width: min(70%, 176px); font-size: 15px; }
  .credentials { padding: 4px 16px; }
  .credentials > div { grid-template-columns: 1fr; gap: 4px; padding: 12px 0; }
  .faq-item summary { min-height: 54px; padding: 13px 16px; font-size: 15.5px; }
  .faq-answer { padding: 0 16px 16px; }
  .contact-email { margin-top: 20px; padding: 10px 10px 10px 16px; font-size: clamp(18px, 5.4vw, 24px); }
  .contact-email i { width: 40px; height: 40px; }
  .contact-card { padding: 20px; }
  .footer-row { min-height: 0; flex-wrap: wrap; gap: 12px; padding: 22px 0; }
  .brand--footer { width: 100%; }
}

@media (max-width: 380px) {
  .hero-meta { grid-template-columns: 1fr; }
  .hero-meta > div { border-right: 0; border-bottom: 1px solid var(--line); }
  .hero-meta > div:last-child { border-bottom: 0; }
  .visual-note p { font-size: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
