:root {
    --ink: #17213a;
    --ink-soft: #4e5670;
    --paper: #f7f3ea;
    --white: #fffdf8;
    --purple: #5b3df5;
    --purple-dark: #4327d7;
    --teal: #10b9ad;
    --yellow: #ffc928;
    --coral: #f06455;
    --line: rgba(23, 33, 58, .16);
    --shadow: 0 24px 60px rgba(23, 33, 58, .13);
    --radius: 24px;
    --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: Inter, "Aptos", "Segoe UI", Arial, sans-serif;
    font-size: 17px;
    line-height: 1.62;
    text-rendering: optimizeLegibility;
}
body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: .14;
    z-index: 20;
    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='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
}
a { color: inherit; }
img { max-width: 100%; }
button, input, select, textarea { font: inherit; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.narrow { width: min(calc(100% - 40px), 860px); }
.center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; left: 20px; top: -80px; z-index: 100; padding: 10px 18px; background: var(--ink); color: white; border-radius: 8px; }
.skip-link:focus { top: 12px; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(247, 243, 234, .9);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid transparent;
    transition: border-color .2s, box-shadow .2s;
}
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 8px 30px rgba(23, 33, 58, .06); }
.nav-wrap { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); text-decoration: none; font-weight: 900; letter-spacing: -.045em; font-size: 21px; line-height: .9; }
.brand > span:last-child > span { display: block; color: var(--purple); }
.brand-mark { position: relative; display: grid; place-items: center; width: 44px; height: 38px; border: 3px solid var(--ink); border-radius: 11px; transform: rotate(-3deg); }
.brand-mark::before, .brand-mark::after { content: ""; position: absolute; width: 5px; height: 5px; background: var(--yellow); border: 2px solid var(--ink); border-radius: 50%; top: -6px; }
.brand-mark::before { left: 6px; } .brand-mark::after { right: 6px; }
.brand-mark span { width: 0; height: 0; border-top: 7px solid transparent; border-bottom: 7px solid transparent; border-left: 11px solid var(--purple); margin-left: 3px; }
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a { text-decoration: none; font-size: 14px; font-weight: 750; }
.main-nav > a:not(.button) { position: relative; }
.main-nav > a:not(.button)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px; background: var(--purple); transition: right .2s; }
.main-nav > a:hover::after, .main-nav > a[aria-current="page"]::after { right: 0; }
.main-nav .nav-shop { color: var(--purple); }
.nav-toggle { display: none; border: 0; background: transparent; width: 44px; height: 44px; padding: 10px; }
.nav-toggle i { display: block; height: 2px; background: var(--ink); margin: 6px 0; transition: .2s; }

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    min-height: 53px;
    padding: 13px 22px;
    border: 2px solid var(--ink);
    border-radius: 14px;
    background: var(--yellow);
    color: var(--ink);
    text-decoration: none;
    font-weight: 850;
    box-shadow: 4px 4px 0 var(--ink);
    cursor: pointer;
    transition: transform .18s, box-shadow .18s, background .18s;
}
.button:hover { transform: translate(3px, 3px); box-shadow: 1px 1px 0 var(--ink); }
.button-small { min-height: 42px; padding: 8px 15px; gap: 8px; border-radius: 10px; box-shadow: 3px 3px 0 var(--ink); font-size: 13px !important; }
.button-dark { color: white; background: var(--ink); box-shadow: 4px 4px 0 var(--yellow); border-color: var(--ink); }
.button-light { background: var(--white); color: var(--ink); }
.text-link { display: inline-block; font-weight: 800; text-underline-offset: 5px; text-decoration-thickness: 2px; }
.eyebrow, .card-eyebrow {
    margin: 0 0 13px;
    color: var(--purple);
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .16em;
}
h1, h2, h3, p { overflow-wrap: break-word; }
h1, h2, h3 { margin-top: 0; line-height: 1.06; letter-spacing: -.045em; }
h1 { font-size: clamp(46px, 6.5vw, 88px); }
h2 { font-size: clamp(36px, 4vw, 59px); }
h3 { font-size: 25px; }
h1 em, h2 em { color: var(--purple); font-family: Georgia, "Times New Roman", serif; font-weight: 500; }

.hero { padding: 76px 0 88px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 70px; align-items: center; }
.hero h1 { margin-bottom: 30px; max-width: 760px; }
.hero-intro { max-width: 670px; color: var(--ink-soft); font-size: 20px; }
.button-row { display: flex; align-items: center; gap: 27px; margin: 34px 0; }
.trust-list { display: flex; flex-wrap: wrap; gap: 18px 28px; margin: 0; padding: 0; list-style: none; font-size: 13px; font-weight: 750; }
.trust-list li::before { content: "✓"; display: inline-grid; place-items: center; width: 20px; height: 20px; margin-right: 7px; color: white; background: var(--teal); border-radius: 50%; font-size: 12px; }
.hero-visual { position: relative; min-height: 550px; }
.frame-card {
    position: absolute;
    width: 260px;
    height: 320px;
    padding: 16px;
    border: 3px solid var(--ink);
    border-radius: 18px;
    background: var(--white);
    box-shadow: 9px 10px 0 var(--ink);
}
.frame-one { left: 3%; top: 10px; transform: rotate(-8deg); }
.frame-two { right: 3%; top: 70px; transform: rotate(6deg); background: var(--teal); }
.frame-three { left: 25%; top: 228px; transform: rotate(-1deg); background: var(--yellow); }
.frame-label { text-transform: uppercase; font-size: 10px; font-weight: 900; letter-spacing: .14em; }
.paper-character { position: absolute; left: 50%; top: 51%; width: 112px; height: 142px; transform: translate(-50%, -50%); background: var(--purple); border: 3px solid var(--ink); border-radius: 54% 47% 48% 52%; }
.frame-one .paper-character { transform: translate(-58%, -50%) rotate(-12deg); }
.frame-two .paper-character { transform: translate(-45%, -51%) rotate(8deg); background: var(--coral); }
.frame-three .paper-character { transform: translate(-37%, -51%) rotate(23deg); }
.paper-character::before, .paper-character::after { content: ""; position: absolute; top: 37px; width: 18px; height: 22px; background: white; border: 3px solid var(--ink); border-radius: 50%; }
.paper-character::before { left: 23px; } .paper-character::after { right: 23px; }
.paper-character i::before, .paper-character i::after { content: ""; position: absolute; top: 44px; width: 5px; height: 8px; background: var(--ink); border-radius: 50%; z-index: 2; }
.paper-character i::before { left: 32px; } .paper-character i::after { right: 32px; }
.paper-character b { position: absolute; width: 44px; height: 19px; left: 31px; bottom: 30px; border-bottom: 4px solid var(--ink); border-radius: 50%; }
.play-note { position: absolute; right: 0; bottom: 12px; z-index: 4; padding: 16px 20px; background: var(--coral); color: white; border: 3px solid var(--ink); border-radius: 14px; font-weight: 850; line-height: 1.25; transform: rotate(3deg); }
.play-note span { margin-right: 7px; }
.scribble { position: absolute; font-family: Georgia, serif; color: var(--purple); font-size: 78px; font-weight: 900; }
.scribble-a { right: -35px; top: -40px; transform: rotate(24deg); }
.scribble-b { left: -30px; bottom: 20px; }

.proof-strip { border-block: 2px solid var(--ink); background: var(--ink); color: white; }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof-grid p { margin: 0; padding: 18px 15px; text-align: center; font-size: 14px; font-weight: 750; border-right: 1px solid rgba(255,255,255,.2); }
.proof-grid p:last-child { border: 0; }
.proof-grid strong { color: var(--yellow); margin-right: 6px; }

.section { padding: 112px 0; }
.section-heading { margin-bottom: 50px; max-width: 880px; }
.section-heading h2 { margin-bottom: 0; }
.split-heading { max-width: none; display: grid; grid-template-columns: 1.5fr .7fr; gap: 60px; align-items: end; }
.split-heading > p { color: var(--ink-soft); margin: 0 0 7px; }
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.service-card { min-height: 380px; display: flex; flex-direction: column; justify-content: space-between; padding: 35px; border: 2px solid var(--ink); border-radius: var(--radius); background: var(--white); box-shadow: 7px 7px 0 var(--ink); transition: transform .2s, box-shadow .2s; }
.service-card:hover { transform: translate(-2px, -4px); box-shadow: 10px 13px 0 var(--ink); }
.service-card h3 { font-size: 36px; max-width: 480px; }
.service-card p:not(.card-eyebrow) { color: var(--ink-soft); max-width: 520px; }
.service-vybaveni { background: var(--yellow); }
.service-krouzek { background: var(--teal); }
.service-krouzek p, .service-vybaveni p { color: var(--ink) !important; }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin: 25px 0; padding: 0; list-style: none; }
.tag-list li { padding: 5px 11px; border: 1px solid currentColor; border-radius: 999px; font-size: 11px; font-weight: 850; }
.card-link { display: flex; justify-content: space-between; align-items: center; padding-top: 18px; border-top: 2px solid currentColor; text-decoration: none; font-weight: 900; }
.card-link span { font-size: 25px; }

.section-rvp { background: var(--purple); color: white; }
.rvp-callout { display: grid; grid-template-columns: 160px 1.3fr .65fr; gap: 50px; align-items: center; }
.rvp-callout .eyebrow { color: var(--yellow); }
.rvp-callout h2 { max-width: 800px; }
.rvp-callout > div:nth-child(2) > p:not(.eyebrow) { max-width: 700px; color: rgba(255,255,255,.82); margin-bottom: 30px; }
.rvp-stamp { display: grid; place-items: center; aspect-ratio: 1; border: 4px solid var(--yellow); border-radius: 50%; color: var(--yellow); transform: rotate(-7deg); }
.rvp-stamp span { font-size: 43px; font-weight: 950; line-height: 1; }
.rvp-stamp small { font-weight: 850; }
.rvp-mini-list div { padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,.25); }
.rvp-mini-list strong, .rvp-mini-list span { display: block; }
.rvp-mini-list strong { color: var(--yellow); letter-spacing: .05em; }
.rvp-mini-list span { font-size: 13px; color: rgba(255,255,255,.75); }

.process-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; }
.process-list { margin: 0; padding: 0; list-style: none; }
.process-list li { display: grid; grid-template-columns: 60px 1fr; gap: 20px; padding: 26px 0; border-top: 1px solid var(--line); }
.process-list li > span { color: var(--purple); font-weight: 900; }
.process-list h3 { margin-bottom: 6px; }
.process-list p { margin: 0; color: var(--ink-soft); }

.festival-band { background: var(--coral); color: white; }
.festival-grid { display: grid; grid-template-columns: 100px 1.3fr .65fr auto; gap: 40px; align-items: center; }
.festival-grid h2 { margin: 0; font-size: clamp(32px, 3.4vw, 52px); }
.festival-grid .eyebrow { color: var(--yellow); }
.festival-number { display: grid; place-items: center; width: 82px; height: 82px; color: var(--ink); background: var(--yellow); border: 3px solid var(--ink); border-radius: 50%; font-size: 42px; font-weight: 950; transform: rotate(-7deg); }
.festival-grid > p { color: rgba(255,255,255,.86); }

.references-placeholder { background: var(--white); }
.draft-label { padding: 14px 17px; border: 2px dashed var(--coral); border-radius: 12px; color: var(--coral) !important; font-size: 13px; font-weight: 750; }
.quote-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.quote-grid article { padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); }
.quote-grid blockquote { margin: 0 0 25px; font: italic 27px/1.4 Georgia, serif; }
.quote-grid p { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-soft); }

.subhero { padding: 100px 0 110px; border-bottom: 2px solid var(--ink); background: var(--yellow); }
.subhero-rvp { background: var(--teal); }
.subhero-techniques { background: var(--coral); color: white; }
.subhero-techniques em { color: var(--yellow); }
.subhero .eyebrow { color: var(--ink); }
.subhero h1 { margin-bottom: 25px; }
.subhero p:last-child { max-width: 720px; margin-bottom: 0; font-size: 20px; }
.form-subhero { background: var(--purple); color: white; }
.form-subhero .eyebrow, .form-subhero em { color: var(--yellow); }
.legal-subhero { background: var(--white); }

.editorial-grid { display: grid; grid-template-columns: .65fr 1.35fr; gap: 100px; }
.editorial-aside { position: sticky; top: 130px; align-self: start; }
.big-index { display: block; color: var(--purple); font-size: 100px; line-height: 1; font-weight: 950; letter-spacing: -.09em; }
.big-index-rvp { display: flex; flex-direction: column; align-items: flex-start; width: fit-content; margin-bottom: 13px; }
.big-index-rvp .big-index-label { margin: 0 0 8px 5px; color: var(--purple); font-size: 13px; font-weight: 950; line-height: 1; letter-spacing: .16em; text-transform: uppercase; }
.editorial-aside p { color: var(--ink-soft); font-size: 14px; max-width: 280px; }
.editorial-content h2 { margin: 45px 0 14px; }
.editorial-content > p { color: var(--ink-soft); font-size: 20px; }
.source-note { margin-top: 40px; padding: 24px; border-left: 7px solid var(--yellow); background: var(--white); }
.source-note p { margin: 5px 0 0; color: var(--ink-soft); }
.section-table { background: var(--ink); color: white; }
.section-table .eyebrow { color: var(--yellow); }
.rvp-table-wrap { overflow-x: auto; }
.rvp-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.rvp-table th { padding: 16px; text-align: left; color: var(--yellow); border-bottom: 2px solid white; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.rvp-table td { padding: 24px 16px; vertical-align: top; border-bottom: 1px solid rgba(255,255,255,.2); }
.rvp-table td:first-child { width: 22%; }
.rvp-table td:nth-child(2) { width: 12%; }
.rvp-table td:nth-child(3) { width: 22%; }
.rvp-table code { display: block; width: fit-content; margin-bottom: 8px; padding: 4px 7px; color: var(--ink); background: var(--yellow); border-radius: 4px; font-weight: 850; }
.rvp-table td span { color: rgba(255,255,255,.78); }
.table-note { max-width: 700px; margin-top: 25px; color: rgba(255,255,255,.6); font-size: 13px; }
.subject-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-left: 1px solid var(--line); border-top: 1px solid var(--line); }
.subject-grid article { min-height: 260px; padding: 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.subject-grid span { display: grid; place-items: center; width: 48px; height: 48px; margin-bottom: 35px; border: 2px solid var(--ink); border-radius: 50%; background: var(--yellow); font-size: 11px; font-weight: 900; }
.subject-grid h3 { margin-bottom: 10px; }
.subject-grid p { margin: 0; color: var(--ink-soft); font-size: 15px; }
.official-sources { background: var(--white); }
.source-links { margin-top: 40px; border-top: 2px solid var(--ink); }
.source-links a { display: flex; justify-content: space-between; gap: 30px; padding: 22px 0; border-bottom: 1px solid var(--line); text-decoration: none; }
.source-links a:hover span { color: var(--purple); }
.source-links strong { font-size: 12px; }

.service-detail-list { border-top: 2px solid var(--ink); }
.service-detail { display: grid; grid-template-columns: 90px 1fr 260px; gap: 40px; align-items: center; padding: 55px 0; border-bottom: 1px solid var(--line); }
.service-detail-index { align-self: start; color: var(--purple); font-size: 31px; font-weight: 950; }
.service-detail-copy h2 { margin-bottom: 15px; font-size: clamp(34px, 3.7vw, 54px); }
.service-detail-copy > p:not(.eyebrow) { max-width: 680px; color: var(--ink-soft); }
.service-detail-action { display: flex; flex-direction: column; align-items: flex-start; gap: 22px; }

.technique-list { border-top: 2px solid var(--ink); }
.technique-list article { position: relative; display: grid; grid-template-columns: 100px .7fr 1fr 80px; gap: 30px; align-items: center; padding: 37px 10px; border-bottom: 1px solid var(--line); overflow: hidden; }
.technique-list article > span { color: var(--purple); font-weight: 900; }
.technique-list h2 { margin: 0; font-size: clamp(32px, 3.5vw, 54px); }
.technique-list p { margin: 0; color: var(--ink-soft); }
.technique-list i { display: block; justify-self: end; width: 58px; height: 58px; border-radius: 50% 42% 48% 45%; border: 3px solid var(--ink); background: var(--yellow); transition: transform .25s; }
.technique-list article:nth-child(2) i { border-radius: 4px; background: var(--teal); transform: rotate(15deg); }
.technique-list article:nth-child(3) i { background: var(--purple); clip-path: polygon(50% 0, 100% 100%, 0 100%); border-radius: 0; }
.technique-list article:nth-child(4) i { background: var(--coral); border-radius: 50%; }
.technique-list article:nth-child(5) i { width: 64px; height: 40px; background: transparent; border-radius: 50%; }
.technique-list article:hover i { transform: rotate(35deg) scale(1.08); }
.material-section { background: var(--purple); color: white; }
.material-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 80px; }
.material-grid .eyebrow { color: var(--yellow); }
.material-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.material-cards article { padding: 27px; border: 1px solid rgba(255,255,255,.28); border-radius: 18px; }
.material-cards strong { color: var(--yellow); }
.material-cards h3 { margin: 28px 0 8px; }
.material-cards p { margin: 0; color: rgba(255,255,255,.72); font-size: 14px; }
.shop-cta { background: var(--yellow); }
.shop-cta p:not(.eyebrow) { max-width: 650px; margin: 0 auto 30px; }

.form-layout { display: grid; grid-template-columns: 310px 1fr; gap: 70px; align-items: start; }
.form-layout aside { position: sticky; top: 130px; }
.form-layout aside ol { margin: 30px 0; padding: 0; list-style: none; }
.form-layout aside li { display: flex; gap: 13px; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 14px; font-weight: 700; }
.form-layout aside li span { display: grid; place-items: center; flex: 0 0 29px; height: 29px; border-radius: 50%; color: white; background: var(--purple); font-size: 12px; }
.direct-contact { display: flex; flex-direction: column; margin-top: 35px; padding: 22px; background: var(--yellow); border: 2px solid var(--ink); border-radius: 15px; }
.direct-contact a { font-weight: 800; }
.form-card { padding: 46px; border: 2px solid var(--ink); border-radius: var(--radius); background: var(--white); box-shadow: 9px 9px 0 var(--ink); }
.form-card form { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field-full { grid-column: 1 / -1; }
.field label { font-size: 12px; font-weight: 850; text-transform: uppercase; letter-spacing: .05em; }
input, select, textarea { width: 100%; border: 1px solid rgba(23,33,58,.4); border-radius: 10px; background: white; color: var(--ink); padding: 13px 14px; }
input:focus, select:focus, textarea:focus { outline: 3px solid rgba(91,61,245,.18); border-color: var(--purple); }
textarea { resize: vertical; min-height: 140px; }
.consent { display: flex; align-items: flex-start; gap: 12px; font-size: 13px; }
.consent input { width: 20px; height: 20px; margin-top: 2px; flex: 0 0 auto; accent-color: var(--purple); }
.form-submit { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 8px; }
.form-submit p { color: var(--ink-soft); font-size: 11px; }
.hp-field { position: absolute; left: -9999px; }
.error-message { margin-bottom: 25px; padding: 18px 20px; border-left: 5px solid var(--coral); background: #fff0ee; }
.error-message ul { margin-bottom: 0; }
.success-message { padding: 20px; text-align: center; }
.success-message > span { display: grid; place-items: center; width: 72px; height: 72px; margin: 0 auto 25px; border-radius: 50%; color: white; background: var(--teal); font-size: 38px; font-weight: 900; }
.success-message p { max-width: 560px; margin: 0 auto 28px; color: var(--ink-soft); }

.prose { max-width: 800px; }
.prose h2 { margin: 48px 0 10px; font-size: 30px; }
.prose p { color: var(--ink-soft); }

.site-footer { padding: 95px 0 30px; background: var(--ink); color: white; }
.footer-lead { display: grid; grid-template-columns: 1fr auto; gap: 25px; align-items: end; padding-bottom: 70px; border-bottom: 1px solid rgba(255,255,255,.2); }
.footer-lead .eyebrow { grid-column: 1 / -1; margin-bottom: 0; color: var(--yellow); }
.footer-lead h2 { margin: 0; max-width: 780px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, .7fr); gap: 50px; padding: 65px 0; }
.brand-footer { color: white; margin-bottom: 20px; }
.brand-footer .brand-mark { border-color: white; }
.footer-grid > div:first-child p { max-width: 340px; color: rgba(255,255,255,.6); }
.footer-grid h3 { margin-bottom: 20px; color: var(--yellow); font-size: 13px; text-transform: uppercase; letter-spacing: .1em; }
.footer-grid a { display: block; margin: 9px 0; color: rgba(255,255,255,.83); text-decoration: none; font-size: 14px; }
.footer-grid a:hover { color: var(--yellow); }
.footer-grid p { color: rgba(255,255,255,.6); font-size: 13px; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.2); color: rgba(255,255,255,.45); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.site-version { margin-top: 12px; color: rgba(255,255,255,.28); font-size: 8px; line-height: 1; letter-spacing: .08em; text-align: right; text-transform: uppercase; }

@media (max-width: 980px) {
    .main-nav { position: fixed; inset: 82px 0 auto; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 20px; background: var(--paper); border-bottom: 2px solid var(--ink); }
    .main-nav.is-open { display: flex; }
    .main-nav a { padding: 15px 5px; font-size: 18px; }
    .main-nav .button { margin-top: 10px; }
    .nav-toggle { display: block; }
    .hero-grid { grid-template-columns: 1fr; }
    .hero-copy { max-width: 800px; }
    .hero-visual { width: min(100%, 600px); margin: 20px auto 0; }
    .rvp-callout { grid-template-columns: 120px 1fr; }
    .rvp-mini-list { grid-column: 2; }
    .process-grid, .editorial-grid, .material-grid { grid-template-columns: 1fr; gap: 45px; }
    .editorial-aside, .form-layout aside { position: static; }
    .festival-grid { grid-template-columns: 90px 1fr; }
    .festival-grid > p, .festival-grid > a { grid-column: 2; }
    .subject-grid { grid-template-columns: 1fr 1fr; }
    .service-detail { grid-template-columns: 65px 1fr; }
    .service-detail-action { grid-column: 2; }
    .form-layout { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
    .footer-grid > div:last-child { grid-column: 2; }
}

@media (max-width: 700px) {
    body { font-size: 16px; }
    .container, .narrow { width: min(calc(100% - 28px), var(--container)); }
    .nav-wrap { min-height: 72px; }
    .main-nav { top: 72px; }
    .brand { font-size: 18px; }
    .brand-mark { width: 39px; height: 34px; }
    .hero { padding: 55px 0 70px; }
    .hero-intro, .subhero p:last-child { font-size: 17px; }
    .button-row { align-items: flex-start; flex-direction: column; }
    .hero-visual { min-height: 465px; transform: scale(.88); transform-origin: top center; margin-bottom: -45px; }
    .frame-card { width: 225px; height: 285px; }
    .frame-one { left: 0; }
    .frame-two { right: 0; }
    .frame-three { left: 18%; top: 205px; }
    .proof-grid { grid-template-columns: 1fr 1fr; }
    .proof-grid p:nth-child(2) { border-right: 0; }
    .section { padding: 78px 0; }
    .split-heading, .service-grid { grid-template-columns: 1fr; gap: 28px; }
    .service-card { min-height: 350px; padding: 27px; }
    .service-card h3 { font-size: 30px; }
    .rvp-callout { grid-template-columns: 1fr; }
    .rvp-stamp { width: 110px; }
    .rvp-mini-list { grid-column: 1; }
    .festival-grid { grid-template-columns: 1fr; }
    .festival-grid > p, .festival-grid > a { grid-column: 1; }
    .quote-grid, .subject-grid, .material-cards { grid-template-columns: 1fr; }
    .subhero { padding: 70px 0 75px; }
    .editorial-content > p { font-size: 17px; }
    .rvp-table thead { display: none; }
    .rvp-table, .rvp-table tbody, .rvp-table tr, .rvp-table td { display: block; }
    .rvp-table tr { padding: 20px 0; border-bottom: 2px solid rgba(255,255,255,.35); }
    .rvp-table td { padding: 8px 0 8px 115px; border: 0; width: auto !important; position: relative; }
    .rvp-table td::before { content: attr(data-label); position: absolute; left: 0; width: 100px; color: var(--yellow); font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
    .service-detail { grid-template-columns: 1fr; gap: 14px; padding: 40px 0; }
    .service-detail-action { grid-column: 1; }
    .technique-list article { grid-template-columns: 45px 1fr 50px; gap: 15px; }
    .technique-list h2 { grid-column: 2; }
    .technique-list p { grid-column: 2 / -1; }
    .technique-list i { grid-column: 3; grid-row: 1 / 3; width: 44px; height: 44px; }
    .form-card { padding: 25px 20px; box-shadow: 5px 5px 0 var(--ink); }
    .form-card form { grid-template-columns: 1fr; }
    .field-full { grid-column: 1; }
    .form-submit { align-items: stretch; flex-direction: column; }
    .footer-lead { grid-template-columns: 1fr; }
    .footer-lead .eyebrow { grid-column: 1; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 35px 25px; }
    .footer-grid > div:first-child { grid-column: 1 / -1; }
    .footer-grid > div:last-child { grid-column: auto; }
    .footer-bottom { flex-direction: column; gap: 8px; }
}

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

/* Version 2.0 */
.brand > span:last-child { line-height: .86; }
.brand > span:last-child small { display: block; color: var(--purple); font-size: .78em; font-weight: 900; }
.main-nav { gap: 19px; }
.main-nav a { font-size: 13px; white-space: nowrap; }
.breadcrumbs { padding-top: 13px; padding-bottom: 4px; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 7px; margin: 0; padding: 0; list-style: none; font-size: 12px; color: var(--ink-soft); }
.breadcrumbs li:not(:last-child)::after { content: "/"; margin-left: 7px; opacity: .5; }
.breadcrumbs a { text-underline-offset: 3px; }
.hero-v2 { padding-top: 58px; }
.hero-v2 h1 { font-size: clamp(46px, 5.7vw, 78px); }
.hero-slogan { margin-top: 22px; color: var(--purple); font: italic 24px Georgia, serif; }
.decision-section { background: var(--white); }
.solution-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.solution-card { min-height: 390px; border: 2px solid var(--ink); border-radius: var(--radius); box-shadow: 7px 7px 0 var(--ink); overflow: hidden; transition: transform .2s, box-shadow .2s; }
.solution-card:hover { transform: translate(-2px, -4px); box-shadow: 10px 13px 0 var(--ink); }
.solution-card .card-cover { height: 100%; display: flex; flex-direction: column; padding: 34px; color: var(--ink); text-decoration: none; }
.solution-card h3 { font-size: clamp(32px, 3.3vw, 48px); margin-bottom: 20px; }
.solution-card .card-cover > p:not(.card-eyebrow) { max-width: 560px; color: var(--ink-soft); }
.solution-card .card-action { display: flex; justify-content: space-between; align-items: center; margin-top: auto; padding-top: 24px; border-top: 2px solid var(--ink); font-weight: 900; }
.solution-card .card-action b { font-size: 24px; }
.solution-paper { background: var(--white); }
.solution-purple { color: white; background: var(--purple); }
.solution-purple .card-cover, .solution-purple .card-cover > p:not(.card-eyebrow) { color: white; }
.solution-purple .card-eyebrow { color: var(--yellow); }
.solution-purple .card-action { border-color: white; }
.solution-yellow { background: var(--yellow); }
.solution-teal { background: var(--teal); }
.solution-yellow .card-cover > p:not(.card-eyebrow), .solution-teal .card-cover > p:not(.card-eyebrow) { color: var(--ink); }
.unsure-cta { display: grid; grid-template-columns: 1fr auto; gap: 55px; align-items: center; margin-top: 30px; padding: 34px; border: 2px dashed var(--purple); border-radius: var(--radius); background: var(--paper); }
.unsure-cta h3 { margin-bottom: 8px; font-size: 30px; }
.unsure-cta p:not(.eyebrow) { margin-bottom: 0; color: var(--ink-soft); }
.why-section { background: var(--paper); }
.benefit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 35px; }
.benefit-grid.wide { grid-template-columns: repeat(4, 1fr); }
.benefit-grid article { padding: 24px; border: 1px solid var(--line); border-radius: 16px; background: var(--white); }
.benefit-grid strong { font-size: 19px; }
.benefit-grid p { margin-bottom: 0; color: var(--ink-soft); font-size: 14px; }
.comparison-section { background: var(--white); }
.comparison-wrap { overflow-x: auto; border: 2px solid var(--ink); border-radius: 18px; box-shadow: 6px 6px 0 var(--ink); }
.comparison-table { width: 100%; border-collapse: collapse; font-size: 14px; background: var(--white); }
.comparison-table th { padding: 17px 14px; text-align: left; color: white; background: var(--ink); font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }
.comparison-table td { padding: 20px 14px; border-bottom: 1px solid var(--line); vertical-align: top; }
.comparison-table tr:last-child td { border-bottom: 0; }
.comparison-table tbody tr:nth-child(even) { background: var(--paper); }
.section-action { margin-top: 34px; }
.comparison-notes { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 50px; }
.comparison-notes article { padding: 30px; border-left: 7px solid var(--yellow); background: var(--paper); }
.comparison-notes h2 { font-size: 30px; }
.process-section { background: var(--paper); }
.process-section .section-heading p:last-child { color: var(--ink-soft); }
.outcomes-section { background: var(--white); }
.outcome-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
.outcome-grid article { min-height: 260px; padding: 25px; border: 2px solid var(--ink); border-radius: 18px; }
.outcome-grid article:nth-child(2) { background: var(--yellow); }
.outcome-grid article:nth-child(3) { background: var(--teal); }
.outcome-grid article:nth-child(4) { color: white; background: var(--purple); }
.outcome-grid span { font-weight: 900; }
.outcome-grid h3 { margin-top: 70px; margin-bottom: 9px; }
.outcome-grid p { margin-bottom: 0; font-size: 14px; }
.number-grid { width: min(calc(100% - 40px), var(--container)); margin: 0 auto 100px; display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); border: 2px solid var(--ink); }
.number-grid div { padding: 25px; text-align: center; border-right: 1px solid var(--line); }
.number-grid strong, .number-grid span { display: block; }
.number-grid strong { color: var(--purple); font-size: 46px; }
.number-grid span { font-size: 12px; font-weight: 800; text-transform: uppercase; }
.references-section { background: var(--paper); }
.reference-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.reference-card { padding: 32px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.reference-card blockquote { margin: 20px 0; font: italic 25px/1.4 Georgia, serif; }
.reference-card p span { display: block; color: var(--ink-soft); font-size: 13px; }
.reference-invitation { display: grid; grid-template-columns: 1fr .7fr auto; gap: 40px; align-items: center; padding: 40px; border: 2px solid var(--ink); border-radius: var(--radius); background: var(--white); box-shadow: 7px 7px 0 var(--ink); }
.reference-invitation h2 { margin-bottom: 0; font-size: 36px; }
.reference-invitation > p { color: var(--ink-soft); }
.about-preview { background: var(--yellow); }
.about-preview-grid { display: grid; grid-template-columns: 1fr .8fr; gap: 80px; align-items: center; }
.about-preview-grid p { color: var(--ink-soft); }
.faq-section { background: var(--white); }
.faq-list { border-top: 2px solid var(--ink); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; justify-content: space-between; gap: 25px; padding: 23px 4px; cursor: pointer; font-weight: 850; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--purple); font-size: 25px; transition: transform .2s; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details > div { padding: 0 50px 22px 4px; color: var(--ink-soft); }
.faq-list details > div p { margin: 0; }
.consultation-band { color: white; background: var(--ink); }
.consultation-band .eyebrow { color: var(--yellow); }
.consultation-grid { display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: center; }
.consultation-grid h2 { margin-bottom: 12px; }
.consultation-grid p:last-child { color: rgba(255,255,255,.7); }
.subhero-teal { background: var(--teal); }
.subhero-coral { color: white; background: var(--coral); }
.subhero-coral .eyebrow { color: var(--yellow); }
.subhero-yellow { background: var(--yellow); }
.service-hero { padding: 85px 0 95px; border-bottom: 2px solid var(--ink); }
.service-hero-paper { background: var(--white); }
.service-hero-purple { color: white; background: var(--purple); }
.service-hero-purple .eyebrow { color: var(--yellow); }
.service-hero-yellow { background: var(--yellow); }
.service-hero-teal { background: var(--teal); }
.service-hero-grid { display: grid; grid-template-columns: 1.25fr .55fr; gap: 80px; align-items: center; }
.service-hero h1 { font-size: clamp(46px, 5vw, 74px); }
.service-facts { border-top: 2px solid currentColor; }
.service-facts div { display: flex; gap: 12px; padding: 17px 0; border-bottom: 1px solid currentColor; font-weight: 750; }
.service-facts span { color: var(--purple); }
.service-hero-purple .service-facts span { color: var(--yellow); }
.two-column-section { background: var(--white); }
.two-column { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.check-list { margin: 25px 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding: 15px 0 15px 36px; border-bottom: 1px solid var(--line); }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 15px; display: grid; place-items: center; width: 23px; height: 23px; border-radius: 50%; color: white; background: var(--teal); font-size: 12px; font-weight: 900; }
.warning-list li::before { content: "!"; background: var(--coral); }
.learning-section { background: var(--paper); }
.learning-grid { display: grid; grid-template-columns: repeat(5, 1fr); border-top: 2px solid var(--ink); }
.learning-grid article { padding: 24px 18px; border-right: 1px solid var(--line); }
.learning-grid span { color: var(--purple); font-weight: 900; }
.learning-grid p { margin-top: 55px; font-weight: 750; }
.rvp-callout.compact { grid-template-columns: 130px 1fr; max-width: 1000px; }
.technique-directory { border-top: 2px solid var(--ink); }
.technique-directory article { border-bottom: 1px solid var(--line); }
.technique-directory a { display: grid; grid-template-columns: 70px 1fr 50px; gap: 28px; align-items: center; padding: 32px 10px; text-decoration: none; }
.technique-directory a > span { color: var(--purple); font-weight: 900; }
.technique-directory h2 { margin-bottom: 10px; font-size: 40px; }
.technique-directory p { color: var(--ink-soft); }
.technique-directory a > b { font-size: 30px; }
.technique-directory article:hover { background: var(--white); }
.technique-facts { display: grid; grid-template-columns: .7fr .7fr 1.6fr; border: 2px solid var(--ink); border-radius: 18px; overflow: hidden; }
.technique-facts article { padding: 25px; border-right: 1px solid var(--line); }
.technique-facts article:last-child { border-right: 0; }
.technique-facts span, .technique-facts strong { display: block; }
.technique-facts span { margin-bottom: 8px; color: var(--purple); font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; }
.related-section { color: white; background: var(--purple); }
.related-section .eyebrow { color: var(--yellow); }
.stacked-actions { display: flex; flex-direction: column; gap: 18px; align-items: flex-start; }
.stacked-actions .text-link { color: white; }
.content-directory { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.content-directory > a { min-height: 280px; display: flex; flex-direction: column; padding: 30px; border: 2px solid var(--ink); border-radius: 18px; color: var(--ink); background: var(--white); text-decoration: none; }
.content-directory > a:nth-child(3n) { background: var(--yellow); }
.content-directory > a:nth-child(4n) { background: var(--teal); }
.content-directory .featured-content { grid-column: 1 / -1; color: white; background: var(--purple); }
.content-directory .featured-content .eyebrow { color: var(--yellow); }
.content-directory h2 { font-size: 36px; }
.content-directory p:not(.eyebrow) { color: inherit; opacity: .78; }
.content-directory span { margin-top: auto; font-weight: 900; }
.article-meta { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 30px; font-size: 12px; font-weight: 750; }
.article-prose section { margin-bottom: 52px; }
.article-prose h2 { font-size: 38px; }
.relationship-section { color: white; background: var(--purple); }
.relationship-section .eyebrow { color: var(--yellow); }
.relationship-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.relationship-grid article { padding: 30px; border: 1px solid rgba(255,255,255,.3); border-radius: 18px; }
.relationship-grid span { color: var(--yellow); font-weight: 900; }
.relationship-grid h3 { margin-top: 55px; }
.relationship-grid p { color: rgba(255,255,255,.72); }
.relationship-grid a { color: var(--yellow); font-weight: 850; }
.relationship-brand { display: flex; align-items: center; gap: 12px; min-height: 104px; margin-top: 28px; color: var(--white); }
.relationship-brand .brand-mark { flex: 0 0 52px; width: 52px; height: 45px; border-color: var(--white); }
.relationship-brand .brand-mark span { border-left-color: var(--white); }
.relationship-brand strong { font-size: 25px; font-weight: 950; line-height: .84; letter-spacing: -.045em; }
.relationship-brand strong small { display: block; color: var(--yellow); font-size: .75em; }
.relationship-brand-image { display: block; width: auto; max-width: 82%; height: 72px; margin-top: 38px; object-fit: contain; object-position: left center; }
.relationship-brand-learniga { width: 220px; }
.relationship-brand-animaxik { width: 230px; }
.faq-layout { display: grid; grid-template-columns: 220px 1fr; gap: 70px; align-items: start; }
.faq-layout aside { position: sticky; top: 120px; }
.faq-layout aside a { display: block; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 13px; font-weight: 750; }
.faq-category { margin-bottom: 75px; scroll-margin-top: 120px; }
.future-card { display: grid; grid-template-columns: 1fr 100px; gap: 30px; align-items: center; padding: 35px; border: 2px dashed var(--purple); border-radius: var(--radius); background: var(--white); }
.future-card > span { display: grid; place-items: center; width: 80px; height: 100px; border: 2px solid var(--ink); background: var(--paper); font-weight: 900; transform: rotate(4deg); }
.svp-download-section { background: var(--paper); }
.svp-download-card { display: grid; grid-template-columns: minmax(0, 1fr); padding: clamp(30px, 5vw, 58px); border: 2px solid var(--ink); border-radius: 24px; background: var(--white); box-shadow: 9px 9px 0 var(--ink); }
.svp-download-copy h2 { margin: 8px 0 18px; }
.svp-download-lead { color: var(--ink); font-size: clamp(19px, 2.2vw, 24px); line-height: 1.5; }
.svp-download-copy > p:not(.eyebrow):not(.svp-download-lead):not(.svp-download-note) { color: var(--ink-soft); }
.svp-download-topics { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; margin: 25px 0 30px; padding: 0; list-style: none; }
.svp-download-topics li { position: relative; padding-left: 23px; color: var(--ink); font-size: 14px; font-weight: 750; }
.svp-download-topics li::before { content: "✓"; position: absolute; left: 0; color: var(--teal); font-weight: 950; }
.svp-download-actions { display: flex; flex-wrap: wrap; gap: 15px 20px; align-items: center; }
.svp-download-note { margin: 25px 0 0; padding: 15px 18px; border-left: 5px solid var(--yellow); color: var(--ink-soft); background: var(--paper); font-size: 12px; line-height: 1.55; }
.field-primary { padding: 20px; border: 2px solid var(--purple); border-radius: 14px; background: rgba(91,61,245,.06); }
.field-primary label { color: var(--purple); font-size: 15px; }
.form-divider { position: relative; margin: 10px 0; border-top: 1px solid var(--line); }
.form-divider span { position: absolute; top: -12px; left: 0; padding-right: 12px; background: var(--white); color: var(--ink-soft); font-size: 11px; font-weight: 850; text-transform: uppercase; letter-spacing: .08em; }

:focus-visible { outline: 3px solid var(--coral); outline-offset: 4px; }

@media (max-width: 1120px) {
    .main-nav { gap: 14px; }
    .main-nav a { font-size: 12px; }
    .main-nav .button-small { display: none; }
    .benefit-grid.wide, .outcome-grid { grid-template-columns: repeat(2, 1fr); }
    .learning-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 980px) {
    .main-nav .button-small { display: inline-flex; }
    .solution-grid { grid-template-columns: 1fr 1fr; }
    .service-hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .service-facts { max-width: 600px; }
    .reference-invitation { grid-template-columns: 1fr; }
    .relationship-grid { grid-template-columns: 1fr; }
    .learning-grid { grid-template-columns: repeat(2, 1fr); }
    .faq-layout { grid-template-columns: 1fr; }
    .faq-layout aside { position: static; }
    .faq-layout aside nav { display: flex; flex-wrap: wrap; gap: 8px; }
    .faq-layout aside a { padding: 7px 10px; border: 1px solid var(--line); border-radius: 999px; text-decoration: none; }
}

@media (max-width: 700px) {
    .breadcrumbs { padding-top: 9px; }
    .hero-v2 { padding-top: 38px; }
    .hero-v2 .hero-visual { margin-top: 0; }
    .solution-grid, .benefit-grid, .benefit-grid.wide, .outcome-grid, .comparison-notes, .two-column, .content-directory, .about-preview-grid, .reference-grid { grid-template-columns: 1fr; }
    .solution-card { min-height: 365px; }
    .solution-card .card-cover { padding: 27px; }
    .unsure-cta, .consultation-grid, .reference-invitation { grid-template-columns: 1fr; gap: 25px; }
    .comparison-table thead { display: none; }
    .comparison-table, .comparison-table tbody, .comparison-table tr, .comparison-table td { display: block; }
    .comparison-table tr { padding: 15px 0; border-bottom: 2px solid var(--ink); }
    .comparison-table td { position: relative; padding: 8px 12px 8px 125px; border: 0; }
    .comparison-table td::before { content: attr(data-label); position: absolute; left: 12px; width: 100px; color: var(--purple); font-size: 10px; font-weight: 900; text-transform: uppercase; }
    .learning-grid { grid-template-columns: 1fr; }
    .learning-grid article { border-right: 0; border-bottom: 1px solid var(--line); }
    .learning-grid p { margin-top: 20px; }
    .technique-directory a { grid-template-columns: 38px 1fr 25px; gap: 13px; padding: 25px 4px; }
    .technique-directory h2 { font-size: 29px; }
    .technique-facts { grid-template-columns: 1fr; }
    .technique-facts article { border-right: 0; border-bottom: 1px solid var(--line); }
    .content-directory .featured-content { grid-column: 1; }
    .relationship-grid { grid-template-columns: 1fr; }
    .future-card { grid-template-columns: 1fr; }
    .future-card > span { display: none; }
    .svp-download-card { grid-template-columns: 1fr; }
    .svp-download-topics { grid-template-columns: 1fr; }
    .rvp-callout.compact { grid-template-columns: 1fr; }
    .outcome-grid article { min-height: 220px; }
    .outcome-grid h3 { margin-top: 45px; }
    .consultation-band .button { width: 100%; }
}

/* Version 2.1: concise homepage and compact footer */
.page-home .section { padding-block: 112px; }
.page-home .hero-v2 { padding-block: 64px 82px; }
.page-home .hero-intro { max-width: 630px; }
.page-home .decision-section { background: var(--white); }
.page-home .decision-section .section-heading { margin-bottom: 50px; }
.page-home .solution-card { min-height: 350px; }
.page-home .solution-card .card-cover { padding: 32px; }
.page-home .solution-card h3 { font-size: clamp(31px, 3vw, 44px); }

.home-rvp-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 88px;
    align-items: center;
}
.home-rvp-copy > p:not(.eyebrow) { max-width: 680px; color: rgba(255,255,255,.82); }
.home-rvp-copy .button { margin-top: 18px; }
.home-rvp-points { border-top: 1px solid rgba(255,255,255,.3); }
.home-rvp-points article {
    display: grid;
    grid-template-columns: 190px 1fr;
    gap: 24px;
    padding: 21px 0;
    border-bottom: 1px solid rgba(255,255,255,.3);
}
.home-rvp-points strong { color: var(--yellow); }
.home-rvp-points span { color: rgba(255,255,255,.78); }

.credibility-section { background: var(--white); }
.credibility-grid {
    display: grid;
    grid-template-columns: 1fr .8fr;
    gap: 80px;
    align-items: center;
}
.credibility-grid p { color: var(--ink-soft); }
.inline-links { display: flex; flex-wrap: wrap; gap: 18px 30px; }

.page-home .faq-section { background: var(--paper); }
.page-home .consultation-band { background: var(--purple); }
.page-home .festival-band-compact {
    padding-block: 72px;
    color: var(--ink);
    background: var(--white);
    border-top: 1px solid var(--line);
}
.page-home .festival-band-compact .festival-grid { grid-template-columns: 155px 1.25fr .7fr auto; }
.page-home .festival-band-compact .festival-number { width: 66px; height: 66px; font-size: 34px; }
.page-home .festival-band-compact h2 { font-size: clamp(28px, 3vw, 43px); }
.page-home .festival-band-compact .eyebrow { color: var(--purple); }
.page-home .festival-band-compact .festival-grid > p { color: var(--ink-soft); }

.site-footer { padding-top: 68px; }
.footer-grid { grid-template-columns: 1.35fr repeat(3, .75fr); gap: 45px; padding: 0 0 55px; }

@media (max-width: 980px) {
    .home-rvp-grid, .credibility-grid { grid-template-columns: 1fr; gap: 48px; }
    .page-home .festival-band-compact .festival-grid { grid-template-columns: 140px 1fr; }
    .page-home .festival-band-compact .festival-grid > p,
    .page-home .festival-band-compact .festival-grid > a { grid-column: 2; }
    .page-home .festival-band-compact .festival-grid > .festival-mascot { grid-column: 1; grid-row: 1 / span 3; }
}

@media (max-width: 700px) {
    .page-home .section { padding-block: 78px; }
    .page-home .hero-v2 { padding-block: 48px 62px; }
    .page-home .solution-card { min-height: 315px; }
    .home-rvp-points article { grid-template-columns: 1fr; gap: 5px; }
    .credibility-grid { gap: 28px; }
    .page-home .festival-band-compact { padding-block: 58px; }
    .page-home .festival-band-compact .festival-grid { grid-template-columns: 1fr; }
    .page-home .festival-band-compact .festival-grid > p,
    .page-home .festival-band-compact .festival-grid > a { grid-column: 1; }
    .page-home .festival-band-compact .festival-grid > .festival-mascot { grid-row: auto; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-grid > div:first-child,
    .footer-grid > div:last-child { grid-column: 1; }
}

/* Version 2.2: cookies and anonymous analytics */
.cookie-settings-link,
.cookie-detail-open {
    padding: 0;
    border: 0;
    background: none;
    color: inherit;
    cursor: pointer;
    font: inherit;
    font-weight: 800;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}
.footer-grid .cookie-settings-link { margin-top: 8px; color: rgba(255,255,255,.83); font-size: 14px; text-align: left; }
.footer-grid .cookie-settings-link:hover { color: var(--yellow); }
.cookie-banner {
    position: fixed;
    z-index: 100;
    left: 22px;
    right: 22px;
    bottom: 22px;
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr) auto;
    gap: 20px;
    align-items: center;
    width: min(calc(100% - 44px), 1180px);
    margin-inline: auto;
    padding: 22px 24px;
    border: 2px solid var(--ink);
    border-radius: 20px;
    background: var(--white);
    box-shadow: 8px 8px 0 var(--ink), 0 24px 70px rgba(23,33,58,.22);
}
.cookie-banner[hidden],
.cookie-backdrop[hidden],
.cookie-modal[hidden] { display: none; }
.cookie-signal { display: grid; place-items: center; width: 50px; height: 50px; border: 2px solid var(--ink); border-radius: 14px; background: var(--yellow); transform: rotate(-3deg); }
.cookie-signal span { width: 20px; height: 20px; border: 3px dotted var(--purple); border-radius: 50%; }
.cookie-kicker { margin: 0 0 5px; color: var(--purple); font-size: 10px; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.cookie-copy h2 { margin: 0 0 5px; font-size: 23px; }
.cookie-copy p:not(.cookie-kicker) { max-width: 720px; margin: 0; color: var(--ink-soft); font-size: 13px; line-height: 1.5; }
.cookie-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; min-width: 330px; }
.cookie-detail-open { grid-column: 1 / -1; color: var(--purple); font-size: 12px; }
.cookie-button { min-height: 44px; padding: 9px 14px; border: 2px solid var(--ink); border-radius: 10px; background: var(--white); color: var(--ink); cursor: pointer; font-size: 12px; font-weight: 900; }
.cookie-button:hover { transform: translateY(-1px); }
.cookie-button:disabled { cursor: not-allowed; opacity: .55; transform: none; }
.cookie-accept,
.cookie-save { background: var(--yellow); }
.cookie-backdrop { position: fixed; z-index: 110; inset: 0; background: rgba(23,33,58,.72); backdrop-filter: blur(7px); }
.cookie-modal {
    position: fixed;
    z-index: 111;
    left: 50%;
    top: 50%;
    width: min(680px, calc(100% - 32px));
    max-height: calc(100vh - 40px);
    overflow: auto;
    transform: translate(-50%, -50%);
    padding: 34px;
    border: 2px solid var(--ink);
    border-radius: 22px;
    background: var(--paper);
    box-shadow: 10px 10px 0 var(--ink), 0 35px 100px rgba(0,0,0,.4);
}
.cookie-modal-close { position: absolute; right: 16px; top: 12px; width: 42px; height: 42px; border: 0; background: none; color: var(--ink); cursor: pointer; font-size: 30px; }
.cookie-modal h2 { margin: 0 45px 10px 0; font-size: clamp(31px, 4vw, 47px); }
.cookie-modal > p:not(.cookie-kicker) { color: var(--ink-soft); }
.cookie-option { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 13px; padding: 17px; border: 1px solid var(--line); border-radius: 14px; background: var(--white); cursor: pointer; }
.cookie-option strong,
.cookie-option span { display: block; }
.cookie-option strong { font-size: 16px; }
.cookie-option div span { max-width: 470px; margin-top: 4px; color: var(--ink-soft); font-size: 12px; }
.cookie-status { white-space: nowrap; color: var(--purple); font-size: 10px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.cookie-switch { position: relative; flex: 0 0 48px; width: 48px; height: 27px; }
.cookie-switch input { position: absolute; opacity: 0; }
.cookie-switch i { position: absolute; inset: 0; border: 2px solid var(--ink); border-radius: 99px; background: var(--paper); transition: .2s; }
.cookie-switch i::after { content: ""; position: absolute; width: 17px; height: 17px; left: 3px; top: 3px; border-radius: 50%; background: var(--ink-soft); transition: .2s; }
.cookie-switch input:checked + i { background: var(--yellow); }
.cookie-switch input:checked + i::after { transform: translateX(21px); background: var(--purple); }
.cookie-switch input:focus-visible + i { outline: 3px solid var(--coral); outline-offset: 3px; }
.cookie-switch input:disabled + i { opacity: .5; }
.privacy-details { margin: 17px 2px; color: var(--ink-soft); font-size: 12px; }
.privacy-details summary { color: var(--purple); cursor: pointer; font-weight: 850; }
.privacy-details a { color: var(--purple); }
.cookie-modal-actions { display: flex; gap: 9px; margin-top: 22px; }
.cookie-modal-actions .cookie-button { flex: 1; }

@media (max-width: 980px) {
    .cookie-banner { grid-template-columns: 48px 1fr; }
    .cookie-actions { grid-column: 1 / -1; display: flex; min-width: 0; }
    .cookie-detail-open { margin-left: auto; }
}

@media (max-width: 640px) {
    .cookie-banner { left: 10px; right: 10px; bottom: 10px; grid-template-columns: 1fr; width: calc(100% - 20px); gap: 11px; padding: 18px; box-shadow: 5px 5px 0 var(--ink); }
    .cookie-signal { display: none; }
    .cookie-copy h2 { font-size: 20px; }
    .cookie-actions { display: grid; grid-template-columns: 1fr 1fr; }
    .cookie-detail-open { grid-column: 1 / -1; margin: 3px 0 0; }
    .cookie-modal { padding: 28px 18px; }
    .cookie-option { align-items: flex-start; padding: 14px; }
    .cookie-option-required { display: block; }
    .cookie-status { margin-top: 9px; }
    .cookie-modal-actions { flex-direction: column; }
}

/* Version 2.3: Animaxík, žákovské filmy a ověřené reference */
.home-reference-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 28px; }
.home-reference-card { display: flex; flex-direction: column; min-width: 0; min-height: 235px; padding: 22px; border: 1px solid var(--line); border-radius: 16px; background: var(--paper); }
.home-reference-card:nth-child(2) { background: #f0eafd; }
.home-reference-card:nth-child(3) { background: #e4f8f4; }
.home-reference-category { align-self: flex-start; margin-bottom: 15px; padding: 5px 8px; border-radius: 999px; background: var(--yellow); font-size: 9px; font-weight: 900; letter-spacing: .07em; text-transform: uppercase; }
.home-reference-card blockquote { display: -webkit-box; overflow: hidden; margin: 0 0 20px; font: italic 16px/1.45 Georgia, serif; -webkit-box-orient: vertical; -webkit-line-clamp: 6; }
.home-reference-card p { margin: 0; }
.home-reference-card p:last-child { margin-top: auto; padding-top: 4px; }
.home-reference-card p span { display: block; margin-top: 3px; color: var(--ink-soft); font-size: 11px; line-height: 1.35; }
.credibility-links { margin-top: 22px; }

.festival-logo { display: block; width: 96px; margin: 0 !important; transform: rotate(-3deg); }
.festival-logo img { display: block; width: 100%; height: auto; }
.festival-mascot { display: block; align-self: center; width: 145px; margin: -22px 0 -28px !important; transform: rotate(-4deg); }
.festival-mascot img { display: block; width: 100%; height: auto; }

.reference-category { display: inline-flex; padding: 6px 10px; border-radius: 999px; background: var(--yellow); color: var(--ink); font-size: 10px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.reference-more { margin-top: 26px; }
.reference-more > summary { display: flex; justify-content: center; gap: 10px; width: fit-content; margin: 0 auto; padding: 14px 20px; border: 2px solid var(--ink); border-radius: 999px; background: var(--white); box-shadow: 4px 4px 0 var(--ink); cursor: pointer; font-weight: 900; list-style: none; }
.reference-more > summary::-webkit-details-marker { display: none; }
.reference-more[open] > summary { margin-bottom: 28px; background: var(--yellow); }
.reference-more[open] > summary span { transform: rotate(180deg); }

.films-section { overflow: hidden; background: var(--ink); color: var(--white); }
.films-section .eyebrow { color: var(--yellow); }
.films-section .section-heading > p { color: rgba(255,255,255,.7); }
.film-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.film-card { overflow: hidden; border: 1px solid rgba(255,255,255,.22); border-radius: 18px; background: #26304d; }
.film-stage { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: #090d18; }
.film-stage iframe { width: 100%; height: 100%; border: 0; }
.film-caption { padding: 18px 19px 20px; }
.film-caption h3 { margin: 0 0 5px; font-size: 20px; }
.film-caption p { margin: 0; color: rgba(255,255,255,.65); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; }
.film-privacy-note { margin: 24px 0 0; color: rgba(255,255,255,.58); font-size: 12px; }
.film-section-links { margin-top: 24px; }
.text-link-light { color: var(--white); }
.technique-film-detail { background: var(--paper); }
.technique-film-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 60px; align-items: center; }
.technique-film-grid > div:first-child > p:not(.eyebrow) { color: var(--ink-soft); }
.technique-film-grid .film-grid-single { grid-template-columns: 1fr; }
.technique-film-grid .film-card { box-shadow: 7px 7px 0 var(--ink); }

.relationship-animaxik { background: rgba(255,255,255,.06); }
.footer-partner { display: block; width: 170px; max-width: 100%; margin-top: 24px !important; }
.footer-partner span { display: block; margin-bottom: 8px; color: rgba(255,255,255,.48); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.footer-partner img { display: block; width: 100%; height: auto; }

@media (max-width: 1100px) {
    .home-reference-grid { grid-template-columns: 1fr 1fr; }
    .home-reference-card:nth-child(3) { grid-column: 1 / -1; min-height: 0; }
}

@media (max-width: 700px) {
    .home-reference-grid,
    .film-grid { grid-template-columns: 1fr; }
    .technique-film-grid { grid-template-columns: 1fr; gap: 30px; }
    .home-reference-card,
    .home-reference-card:nth-child(3) { grid-column: auto; min-height: 0; }
    .reference-card { padding: 25px; }
    .reference-card blockquote { font-size: 21px; }
    .page-home .festival-band-compact .festival-mascot { width: 130px; margin: -10px 0 0 !important; }
}

/* Long-form methodology articles */
.article-prose { margin-inline: auto; }
.article-prose > p,
.article-prose section > p,
.article-prose li { line-height: 1.72; }
.article-prose .article-lead { margin: 0 0 22px; color: var(--ink); font-size: clamp(21px, 2.4vw, 27px); line-height: 1.5; }
.article-prose h3 { margin: 34px 0 10px; font-size: 24px; }
.article-prose ul,
.article-prose ol { margin: 16px 0 24px; padding-left: 24px; }
.article-prose li { margin-bottom: 8px; color: var(--ink-soft); }
.article-prose a:not(.button):not(.text-link) { color: var(--purple); font-weight: 750; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.article-table-wrap { overflow-x: auto; margin: 24px 0 36px; border: 1px solid var(--line); border-radius: 16px; background: var(--white); }
.article-table-wrap table { width: 100%; min-width: 680px; border-collapse: collapse; font-size: 14px; }
.article-table-wrap th,
.article-table-wrap td { padding: 17px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.article-table-wrap thead th { color: var(--white); background: var(--ink); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.article-table-wrap tbody th { width: 24%; background: var(--yellow); }
.article-table-wrap tr:last-child > * { border-bottom: 0; }
.article-table-wrap tr > *:last-child { border-right: 0; }
.article-check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.article-check-grid > div { padding: 24px; border: 1px solid var(--line); border-radius: 16px; background: var(--paper); }
.article-check-grid h3 { margin-top: 0; }
.article-check-list,
.article-warning-list { padding-left: 0 !important; list-style: none; }
.article-check-list li,
.article-warning-list li { position: relative; padding-left: 28px; }
.article-check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--teal); font-weight: 950; }
.article-warning-list { padding: 24px !important; border-left: 7px solid var(--coral); border-radius: 0 16px 16px 0; background: #fff0ed; }
.article-warning-list li::before { content: "!"; position: absolute; left: 2px; color: var(--coral); font-weight: 950; }
.article-next-step { padding: 30px; border: 2px solid var(--ink); border-radius: var(--radius); background: var(--yellow); box-shadow: 7px 7px 0 var(--ink); }
.article-next-step .eyebrow { color: var(--purple); }
.article-next-step h2 { margin-top: 0; }
.article-next-step p { color: var(--ink) !important; }

@media (max-width: 700px) {
    .article-prose h2 { font-size: 31px; }
    .article-prose h3 { font-size: 21px; }
    .article-check-grid { grid-template-columns: 1fr; }
    .article-check-grid > div,
    .article-warning-list,
    .article-next-step { padding: 21px !important; }
}

/* Version 2.4: article series */
.featured-series { background: var(--yellow) !important; color: var(--ink) !important; }
.series-directory { margin-top: 64px; padding-top: 56px; border-top: 1px solid var(--line); }
.series-directory > h2 { max-width: 720px; margin: 8px 0 28px; }
.series-card-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.series-card { display: grid; grid-template-columns: 54px minmax(0, 1fr); gap: 18px; min-height: 225px; padding: 25px; border: 1px solid var(--line); border-radius: 18px; color: var(--ink); background: var(--white); text-decoration: none; transition: transform .18s ease, box-shadow .18s ease; }
.series-card:nth-child(3n + 2) { background: #f0eafd; }
.series-card:nth-child(3n) { background: #e4f8f4; }
.series-card:hover { transform: translate(-3px, -3px); box-shadow: 7px 7px 0 var(--ink); }
.series-number { display: grid; place-items: center; width: 48px; height: 48px; border: 2px solid var(--ink); border-radius: 50%; color: var(--white); background: var(--purple); font-size: 20px; font-weight: 950; }
.series-card h3 { margin: 4px 0 11px; font-size: 23px; line-height: 1.15; }
.series-card p { margin: 0 0 16px; color: var(--ink-soft); font-size: 14px; line-height: 1.55; }
.series-card .series-time { margin: 0; color: var(--purple); font-size: 10px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.series-card strong { color: var(--ink); font-size: 13px; text-decoration: underline; text-underline-offset: 4px; }
.series-navigation { margin-top: 64px; padding: 30px; border: 2px solid var(--ink); border-radius: 20px; background: var(--yellow); box-shadow: 7px 7px 0 var(--ink); }
.series-navigation > .eyebrow { margin-bottom: 18px; color: var(--purple); }
.series-navigation-grid { display: grid; grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr); gap: 18px; align-items: center; }
.series-navigation-link { display: flex; flex-direction: column; gap: 5px; min-width: 0; color: var(--ink); text-decoration: none; }
.series-navigation-link span { color: var(--purple); font-size: 10px; font-weight: 950; letter-spacing: .08em; text-transform: uppercase; }
.series-navigation-link strong { font-size: 15px; line-height: 1.25; }
.series-navigation-next { text-align: right; }
.series-navigation-home { padding: 10px 14px; border: 1px solid var(--ink); border-radius: 999px; color: var(--ink); background: var(--white); font-size: 12px; font-weight: 900; text-align: center; text-decoration: none; }
.series-navigation-link:hover strong,
.series-navigation-home:hover { color: var(--purple); }

@media (max-width: 760px) {
    .series-card-grid { grid-template-columns: 1fr; }
    .series-card { min-height: 0; padding: 21px; }
    .series-navigation { padding: 22px; }
    .series-navigation-grid { grid-template-columns: 1fr; }
    .series-navigation-placeholder { display: none; }
    .series-navigation-home { grid-row: 1; justify-self: start; }
    .series-navigation-next { text-align: left; }
}

/* Version 3.0: lehčí cesta pro úplné začátečníky */
.hero-v3 { padding: clamp(72px, 9vw, 130px) 0; border-bottom: 2px solid var(--ink); background: var(--yellow); }
.hero-v3-grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr); gap: clamp(48px, 8vw, 110px); align-items: center; }
.hero-v3 h1 { max-width: 850px; }
.hero-v3 h1 em { color: var(--purple); }
.v3-reassurance { max-width: 680px; margin: 28px 0 0; padding-top: 20px; border-top: 1px solid rgba(23,33,58,.28); color: var(--ink-soft); font-size: 14px; }
.v3-reassurance strong { color: var(--ink); }
.v3-first-film { padding: 30px; border: 2px solid var(--ink); border-radius: 22px; background: var(--white); box-shadow: 8px 8px 0 var(--purple); transform: rotate(1.5deg); }
.v3-first-film ol { display: grid; gap: 20px; margin: 22px 0 28px; padding: 0; list-style: none; }
.v3-first-film li { display: grid; grid-template-columns: 38px 1fr; gap: 13px; align-items: center; color: var(--ink); font-weight: 750; line-height: 1.4; }
.v3-first-film li span { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; color: var(--white); background: var(--purple); font-weight: 950; }
.v3-first-film > a { color: var(--purple); font-weight: 900; text-underline-offset: 4px; }
.v3-learning { background: var(--white); }
.v3-skill-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.v3-skill-grid article { min-height: 230px; padding: 25px; border: 1px solid var(--line); border-radius: 17px; background: var(--paper); }
.v3-skill-grid article:nth-child(2n) { background: #f0eafd; }
.v3-skill-grid article:nth-child(3n) { background: #e4f8f4; }
.v3-skill-grid span { color: var(--purple); font-size: 12px; font-weight: 950; letter-spacing: .08em; }
.v3-skill-grid h3 { margin: 48px 0 9px; font-size: 24px; }
.v3-skill-grid p { margin: 0; color: var(--ink-soft); font-size: 14px; line-height: 1.55; }
.v3-tip-section { padding-block: clamp(52px, 7vw, 90px); background: var(--teal); }
.v3-tip-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(35px, 8vw, 100px); align-items: center; }
.v3-tip-grid h2 { max-width: 680px; }
.v3-tip-grid > div:first-child > p:not(.eyebrow) { max-width: 700px; font-size: 19px; }
.v3-tip-note { padding: 27px; border: 2px solid var(--ink); border-radius: 18px; background: var(--white); box-shadow: 7px 7px 0 var(--ink); transform: rotate(-1deg); }
.v3-tip-note strong { color: var(--purple); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.v3-tip-note p { color: var(--ink); font-size: 20px; font-weight: 850; line-height: 1.35; }
.v3-tip-note small { color: var(--ink-soft); }
.v3-help-link { margin-top: 38px; }
.v3-rvp-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(50px, 8vw, 100px); align-items: center; }
.v3-rvp-grid > div:first-child > p:not(.eyebrow) { max-width: 740px; color: rgba(255,255,255,.82); font-size: 18px; }
.v3-rvp-list { padding: 28px; border: 1px solid rgba(255,255,255,.35); border-radius: 18px; background: rgba(255,255,255,.08); }
.v3-rvp-list strong { color: var(--yellow); }
.v3-rvp-list ul { margin: 18px 0 0; padding-left: 20px; }
.v3-rvp-list li { margin: 10px 0; color: rgba(255,255,255,.86); }
.v3-route-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.v3-route-grid a { display: flex; flex-direction: column; min-height: 285px; padding: 28px; border: 2px solid var(--ink); border-radius: 18px; color: var(--ink); background: var(--white); text-decoration: none; box-shadow: 6px 6px 0 var(--ink); }
.v3-route-grid a:nth-child(2) { background: var(--yellow); }
.v3-route-grid a:nth-child(3) { color: var(--white); background: var(--purple); }
.v3-route-grid span { font-size: 10px; font-weight: 950; letter-spacing: .1em; text-transform: uppercase; }
.v3-route-grid h3 { margin: 45px 0 10px; font-size: 26px; }
.v3-route-grid p { margin: 0 0 25px; opacity: .8; }
.v3-route-grid strong { margin-top: auto; text-decoration: underline; text-underline-offset: 4px; }
.v3-content-directory > a { min-height: 235px; }
.page-home .solution-card { min-height: 315px; }
.page-home .solution-card .card-cover { padding: 29px; }
.page-home .solution-card h3 { font-size: clamp(30px, 3.2vw, 43px); }

@media (max-width: 980px) {
    .hero-v3-grid,
    .v3-rvp-grid { grid-template-columns: 1fr; }
    .v3-first-film { max-width: 620px; }
    .v3-skill-grid { grid-template-columns: repeat(2, 1fr); }
    .v3-route-grid { grid-template-columns: 1fr; }
    .v3-route-grid a { min-height: 220px; }
}

@media (max-width: 700px) {
    .hero-v3 { padding-block: 62px; }
    .hero-v3-grid,
    .v3-tip-grid { grid-template-columns: 1fr; gap: 38px; }
    .v3-first-film { padding: 23px; transform: none; }
    .v3-skill-grid { grid-template-columns: 1fr; }
    .v3-skill-grid article { min-height: 0; }
    .v3-skill-grid h3 { margin-top: 28px; }
    .v3-tip-note { transform: none; }
}
