:root {
    --ink: #11120f;
    --muted: #5f5b52;
    --line: #d9d4c8;
    --paper: #f7f5ef;
    --soft: #ede9df;
    --olive: #6f674d;
    --olive-dark: #403b2a;
    --night: #101412;
    --white: #fffdf8;
}

* { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: Inter, Arial, Helvetica, sans-serif;
    letter-spacing: 0;
    animation: page-enter .34s ease-out both;
    transition: opacity .18s ease, transform .18s ease;
}

:target {
    scroll-margin-top: 118px;
}

body.is-leaving {
    opacity: 0;
    transform: translateY(6px);
}

a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }

.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;
}

@keyframes page-enter {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    min-height: 76px;
    padding: 18px clamp(22px, 5vw, 74px);
    background: rgba(247, 245, 239, .93);
    border-bottom: 1px solid rgba(17, 18, 15, .08);
    backdrop-filter: blur(16px);
}

.brand {
    display: inline-flex;
    align-items: center;
    width: clamp(220px, 18vw, 286px);
    min-width: 220px;
    line-height: 1;
}

.brand img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.brand-footer { width: clamp(220px, 18vw, 286px); min-width: 220px; }

.main-nav {
    display: flex;
    align-items: center;
    gap: clamp(18px, 3vw, 42px);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.main-nav a { padding: 10px 0; }
.main-nav a.active { color: var(--olive); }
.nav-group {
    position: relative;
    display: flex;
    align-items: center;
}
.nav-submenu {
    position: absolute;
    top: calc(100% + 12px);
    left: -22px;
    z-index: 30;
    display: grid;
    width: 350px;
    padding: 10px;
    background: rgba(255, 253, 248, .98);
    border: 1px solid var(--line);
    box-shadow: 0 18px 42px rgba(17, 18, 15, .14);
    opacity: 0;
    pointer-events: none;
    transform: translateY(6px);
    transition: opacity .18s ease, transform .18s ease;
}
.nav-submenu::before {
    content: "";
    position: absolute;
    inset: -13px 0 auto;
    height: 13px;
}
.nav-group:hover .nav-submenu,
.nav-group:focus-within .nav-submenu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
.nav-submenu a {
    display: grid;
    gap: 5px;
    padding: 14px 12px;
    border-bottom: 1px solid var(--line);
    text-transform: none;
}
.nav-submenu a:last-child { border-bottom: 0; }
.nav-submenu a:hover { background: var(--soft); }
.nav-submenu strong {
    font-size: 13px;
    line-height: 1.35;
}
.nav-submenu span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.35;
}

.nav-cta,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 46px;
    padding: 0 22px;
    border: 1px solid transparent;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    white-space: nowrap;
    transition: transform .18s ease, background-color .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease;
}

.nav-cta { background: var(--olive); color: var(--white); padding: 0 20px !important; }
.main-nav .nav-cta.active { color: var(--white); }
.button.dark { background: var(--ink); color: var(--white); }
.button.olive { background: var(--olive-dark); color: var(--white); }
.button.outline-light { border-color: rgba(255,255,255,.7); color: var(--white); }
.button span,
.text-link span,
.nav-cta span {
    display: inline-block;
    transition: transform .18s ease;
}
.button:hover,
.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(17, 18, 15, .12);
}
.button:hover span,
.text-link:hover span {
    transform: translateX(4px);
}
.button.outline-light:hover {
    background: rgba(255,255,255,.08);
}

.nav-toggle { display: none; }

.eyebrow {
    margin: 0 0 24px;
    color: var(--olive);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(42px, 6vw, 82px); line-height: .98; letter-spacing: 0; }
h2 { font-size: clamp(26px, 3.4vw, 44px); line-height: 1.08; letter-spacing: 0; }
h3 { font-size: 24px; line-height: 1.12; }
p, li { color: var(--muted); font-size: 16px; line-height: 1.75; }

.lead {
    position: relative;
    color: var(--ink);
    font-size: 19px;
}

.lead::before {
    content: "";
    display: block;
    width: 48px;
    height: 1px;
    margin-bottom: 18px;
    background: var(--olive);
}

.split-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
    min-height: calc(100vh - 76px);
}

.hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: clamp(44px, 7vw, 96px);
    max-width: none;
    min-width: 0;
}

.hero-copy h1 {
    max-width: 760px;
    font-size: 64px;
    line-height: 1.04;
    overflow-wrap: break-word;
    hyphens: auto;
    text-wrap: balance;
}
.hero-copy p:not(.eyebrow):not(.lead) { max-width: 620px; }
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    align-items: center;
}
.hero-media {
    min-height: 620px;
    overflow: hidden;
}

.reality-band,
.capability-section,
.offers-preview,
.formats-section,
.trust-section,
.knowledge-preview,
.home-faq,
.page-hero,
.involvement-levels,
.topic-showcase,
.offer-list,
.seminar-content,
.process-grid,
.two-column-text,
.article-grid,
.values {
    padding: clamp(54px, 7vw, 92px) clamp(22px, 5vw, 74px);
}

.reality-band {
    background: var(--soft);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.reality-band {
    display: grid;
    grid-template-columns: .85fr 1.4fr;
    gap: 58px;
}

.capability-section,
.formats-section,
.knowledge-preview,
.home-faq {
    background: var(--white);
    border-bottom: 1px solid var(--line);
}
.capability-section {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 58px;
    align-items: start;
}
.capability-section .section-intro p:not(.eyebrow) {
    max-width: 640px;
}
.capability-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    background: var(--line);
}
.capability-list span {
    display: flex;
    min-height: 72px;
    align-items: center;
    padding: 20px;
    background: var(--soft);
    color: var(--ink);
    font-weight: 800;
}
.format-grid,
.service-depth-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    background: var(--line);
}
.format-grid article,
.service-depth-grid article {
    background: var(--white);
    padding: 34px;
}
.format-grid h3,
.service-depth-grid h3 {
    margin-bottom: 14px;
    font-size: 24px;
}
.formats-section,
.service-formats {
    display: grid;
    gap: 30px;
}
.home-faq {
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    gap: 58px;
}
.faq-list {
    border-top: 1px solid var(--line);
}
.faq-list details {
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
}
.faq-list summary {
    cursor: pointer;
    color: var(--ink);
    font-weight: 800;
}
.faq-list p {
    margin: 12px 0 0;
}

.reality-band h2 { max-width: 560px; font-size: clamp(24px, 2.6vw, 34px); }
.pain-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.pain-grid article { padding: 0 24px; border-left: 1px solid #c9c2b5; }
.pain-grid span { display: block; font-size: 30px; margin-bottom: 18px; }
.pain-grid p { font-size: 14px; }
.center-note { grid-column: 1 / -1; text-align: center; margin: 20px 0 0; }

.use-case-grid article {
    border: 1px solid var(--line);
    background: #fbfaf6;
}
.use-case-grid span,
.trust-strip span {
    color: var(--olive-dark);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}
.use-case-grid h3 {
    margin: 0;
}
.use-case-grid p {
    margin: 0;
}
.offers-preview { display: grid; grid-template-columns: .58fr 1.42fr; gap: 56px; background: var(--white); }
.section-intro h2 { max-width: 440px; }
.offer-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 22px; align-items: stretch; }
.offer-card {
    display: grid;
    grid-template-rows: 190px minmax(76px, auto) 1fr auto;
    min-height: 430px;
    padding-bottom: 4px;
}
.offer-card-media {
    display: block;
    overflow: hidden;
    background: var(--soft);
}
.offer-card img {
    height: 190px;
    margin-bottom: 0;
    transition: transform .45s ease, opacity .25s ease;
}
.offer-card:hover img {
    transform: scale(1.035);
    opacity: .94;
}
.offer-card h3 {
    display: flex;
    align-items: flex-start;
    margin: 22px 0 10px;
    min-height: 64px;
    font-size: clamp(22px, 1.8vw, 28px);
    line-height: 1.12;
}
.offer-card h3 a {
    color: inherit;
    text-decoration: none;
}
.offer-card h3 a:hover {
    color: var(--olive-dark);
}
.offer-card p {
    margin-bottom: 22px;
    font-size: 14px;
    line-height: 1.65;
}
.offer-card .text-link {
    align-self: end;
}
.offer-card ul, .wide-offer ul { padding-left: 18px; margin: 20px 0 26px; }
.offer-card li, .wide-offer li { font-size: 14px; line-height: 1.8; }
.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    width: fit-content;
    color: var(--olive-dark);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}
.text-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 18px;
    bottom: -4px;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .18s ease;
}
.text-link:hover::after {
    transform: scaleX(1);
}

.trust-section {
    display: grid;
    grid-template-columns: .54fr 1.46fr;
    gap: 46px;
    background: var(--soft);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.trust-section .section-intro {
    align-self: start;
}
.use-case-grid {
    display: grid;
    gap: 16px;
}
.use-case-grid article {
    display: grid;
    grid-template-columns: 180px minmax(0, .9fr) minmax(260px, 1fr);
    gap: 22px;
    align-items: start;
    padding: 24px;
}
.use-case-grid h3 {
    font-size: clamp(22px, 2.2vw, 32px);
}
.trust-strip {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    padding-top: 18px;
    border-top: 1px solid #c9c2b5;
}
.trust-strip span {
    display: inline-flex;
    min-height: 36px;
    align-items: center;
    padding: 0 12px;
    background: var(--white);
    border: 1px solid var(--line);
}

.about-band {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    background: var(--night);
    color: var(--white);
}

.about-band img { min-height: 520px; }
.about-band div { padding: clamp(46px, 7vw, 92px); align-self: center; }
.about-band p { color: #cbc8bf; max-width: 620px; }
.about-band h2 { color: var(--white); }

.cta-strip {
    display: grid;
    grid-template-columns: auto minmax(220px, 650px) auto;
    align-items: center;
    justify-content: center;
    gap: 36px;
    padding: 56px clamp(22px, 5vw, 74px);
    background: var(--white);
    border-top: 1px solid var(--line);
}

.cta-strip h2 { font-size: clamp(22px, 2.4vw, 32px); margin: 0; }
.calendar-icon {
    display: grid;
    place-items: center;
    position: relative;
    width: 72px;
    aspect-ratio: 1;
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--ink);
}
.calendar-icon::before {
    content: "";
    width: 31px;
    height: 29px;
    border: 2px solid var(--ink);
    border-radius: 4px;
    background:
        linear-gradient(var(--ink), var(--ink)) 0 8px / 100% 2px no-repeat,
        radial-gradient(circle, var(--ink) 0 2px, transparent 2px) 7px 16px / 8px 8px no-repeat,
        radial-gradient(circle, var(--ink) 0 2px, transparent 2px) 17px 16px / 8px 8px no-repeat;
}
.calendar-icon::after {
    content: "";
    position: absolute;
    top: 20px;
    width: 21px;
    height: 6px;
    border-left: 2px solid var(--ink);
    border-right: 2px solid var(--ink);
}

.site-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
    padding: 42px clamp(22px, 5vw, 74px);
    background: #0d1110;
    color: var(--white);
}

.footer-description {
    max-width: 520px;
    margin: 0;
    color: #d9d4c8;
    font-size: 13px;
    line-height: 1.65;
}
.site-footer nav { display: flex; gap: 26px; font-size: 11px; font-weight: 800; text-transform: uppercase; }
.footer-contact { display: flex; gap: 18px; align-items: center; color: #d9d4c8; font-size: 13px; }

.page-hero {
    min-height: 440px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 920px;
}

.page-hero p:not(.eyebrow) { max-width: 620px; }
.compact-grid { max-width: none; display: grid; grid-template-columns: .9fr 1fr; gap: 50px; align-items: center; }
.compact-grid img { min-height: 360px; }

.involvement-levels {
    display: grid;
    grid-template-columns: .62fr 1.38fr;
    gap: 46px;
    background: var(--soft);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.involvement-levels .section-intro {
    position: sticky;
    top: 110px;
    align-self: start;
}
.involvement-levels .section-intro p:not(.eyebrow) {
    max-width: 420px;
}
.level-ladder {
    display: grid;
    gap: 16px;
}
.level-card {
    display: grid;
    grid-template-columns: minmax(82px, auto) minmax(0, 1fr) minmax(210px, 280px);
    gap: 22px;
    align-items: start;
    position: relative;
    min-height: 150px;
    padding: 28px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 6px;
    box-shadow: 0 12px 30px rgba(24, 25, 23, .05);
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.level-card::before {
    content: "";
    position: absolute;
    inset: 18px auto 18px 0;
    width: 4px;
    background: var(--olive);
}
.level-card:hover {
    transform: translateY(-2px);
    border-color: #bfb6a6;
    box-shadow: 0 18px 42px rgba(24, 25, 23, .08);
}
.level-label {
    align-self: start;
    display: inline-flex;
    width: fit-content;
    min-height: 32px;
    align-items: center;
    padding: 0 10px;
    background: var(--soft);
    border: 1px solid var(--line);
    color: var(--olive-dark);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}
.level-main {
    display: grid;
    gap: 10px;
    min-width: 0;
}
.level-main h3 {
    margin: 0;
    max-width: 720px;
    font-size: clamp(25px, 2.4vw, 42px);
    line-height: 1.04;
}
.level-side {
    display: grid;
    gap: 18px;
    justify-items: end;
    align-content: space-between;
    min-height: 100%;
}
.level-side strong {
    display: inline-flex;
    align-items: center;
    max-width: 100%;
    min-height: 42px;
    padding: 8px 12px;
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: 6px;
    color: var(--ink);
    font-size: 15px;
    line-height: 1.3;
}
.level-main p {
    margin: 0;
    max-width: 820px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
}
.level-duration {
    color: var(--olive-dark);
    font-weight: 800;
}
.level-side .text-link {
    white-space: nowrap;
}

.topic-showcase {
    background: var(--white);
    border-bottom: 1px solid var(--line);
}
.topic-showcase .section-intro {
    display: grid;
    grid-template-columns: .65fr 1fr;
    gap: 44px;
    align-items: end;
    margin-bottom: 34px;
}
.topic-showcase .section-intro h2 {
    margin: 0;
    max-width: 520px;
}
.topic-showcase .section-intro p:not(.eyebrow) {
    max-width: 560px;
    margin: 0;
}
.topic-grid {
    display: grid;
    gap: 24px;
}
.topic-card {
    display: grid;
    grid-template-columns: minmax(280px, .72fr) minmax(0, 1fr);
    min-height: 520px;
    border: 1px solid var(--line);
    background: #fbfaf6;
}
.topic-card img {
    height: 100%;
    min-height: 420px;
}
.topic-card-body {
    display: grid;
    gap: 18px;
    min-width: 0;
    align-content: center;
    padding: clamp(28px, 5vw, 56px);
}
.topic-card-body h3 {
    margin: 0;
    max-width: 560px;
    font-size: clamp(30px, 3.5vw, 54px);
    overflow-wrap: anywhere;
    hyphens: auto;
    text-wrap: balance;
}
.topic-subtitle {
    max-width: 500px;
    color: var(--olive-dark);
    font-weight: 800;
}
.topic-card-body > p:not(.eyebrow):not(.topic-subtitle) {
    max-width: 610px;
}
.topic-format-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 2px;
}
.topic-format-strip span {
    border: 1px solid rgba(92, 82, 54, .28);
    background: rgba(92, 82, 54, .08);
    color: var(--olive-dark);
    padding: 8px 11px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .03em;
}
.topic-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin-top: 6px;
    background: var(--soft);
    border: 1px solid var(--line);
}
.topic-facts div {
    padding: 18px;
    border-left: 1px solid var(--line);
}
.topic-facts div:first-child {
    border-left: 0;
}
.topic-facts span,
.topic-content-preview span {
    display: block;
    margin-bottom: 8px;
    color: var(--olive-dark);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}
.topic-facts p,
.topic-facts li {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
}
.topic-facts ul {
    margin: 0;
    padding-left: 16px;
}
.topic-content-preview {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}
.topic-content-preview div {
    padding: 14px 0 0;
    border-top: 1px solid var(--line);
}
.topic-content-preview p {
    margin: 0;
    color: var(--ink);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.5;
}
.topic-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.offer-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    background: var(--white);
    padding-top: 0;
}

.wide-offer {
    min-height: 360px;
    padding: 46px;
    border: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bottom-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 42px clamp(22px, 5vw, 74px);
    background: linear-gradient(90deg, #4d4732, #746c52);
    color: var(--white);
}

.bottom-cta p { margin: 0; color: var(--white); font-weight: 800; }
.bottom-cta span { color: #ddd8ca; }

.seminar-hero {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 56px;
    align-items: center;
    padding: clamp(44px, 6vw, 78px) clamp(22px, 5vw, 74px);
    background: var(--white);
}

.seminar-hero img { min-height: 390px; }
.seminar-hero h1 { font-size: clamp(40px, 5vw, 64px); }

.seminar-facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin: 0 clamp(22px, 5vw, 74px);
    background: var(--soft);
}

.seminar-facts article { padding: 38px; border-right: 1px solid #cec7b8; }
.seminar-facts article:last-child { border-right: 0; }
.seminar-facts span { font-size: 26px; }
.seminar-facts h3 { margin: 18px 0 10px; font-size: 13px; text-transform: uppercase; }
.seminar-facts p, .seminar-facts li { font-size: 14px; }

.seminar-content,
.service-depth,
.service-formats,
.service-faq { background: var(--white); }
.service-depth,
.service-formats,
.service-faq {
    padding: clamp(54px, 7vw, 92px) clamp(22px, 5vw, 74px);
    border-bottom: 1px solid var(--line);
}
.service-depth {
    display: grid;
    gap: 32px;
}
.content-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 34px 64px; }
.content-grid article { display: grid; grid-template-columns: 42px 1fr; gap: 20px; }
.content-grid span { font-size: 14px; font-weight: 800; border-top: 1px solid var(--ink); padding-top: 8px; }
.content-grid h3 { font-size: 17px; margin-bottom: 6px; }
.content-grid p { font-size: 14px; margin: 0; }

.process-grid, .article-grid, .values {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line);
}

.process-grid article, .article-grid article, .values article {
    background: var(--white);
    padding: 36px;
}

.process-grid span { color: var(--olive); font-size: 12px; font-weight: 800; }
.process-grid h2, .article-grid h2, .values h2 { font-size: 25px; }
.article-grid article {
    min-width: 0;
}
.article-grid h2 {
    overflow-wrap: anywhere;
    hyphens: auto;
    line-height: 1.12;
}
.article-grid h2 a {
    color: inherit;
    text-decoration: none;
}
.article-grid h2 a:hover {
    color: var(--olive-dark);
}
.two-column-text { display: grid; grid-template-columns: .8fr 1fr; gap: 60px; background: var(--soft); }
.two-column-text ul { margin: 0; }

.about-page, .contact-page, .booking-page, .flow-hero, .lead-flow, .thanks-page {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 58px;
    align-items: center;
    padding: clamp(48px, 7vw, 92px) clamp(22px, 5vw, 74px);
    background: var(--white);
}

.legal-page {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: 58px;
    align-items: start;
    padding: clamp(48px, 7vw, 92px) clamp(22px, 5vw, 74px);
    background: var(--white);
}
.legal-intro {
    position: sticky;
    top: 110px;
}
.legal-intro h1 {
    font-size: clamp(42px, 5vw, 72px);
}
.legal-content {
    display: grid;
    gap: 28px;
}
.legal-content section {
    padding-bottom: 28px;
    border-bottom: 1px solid var(--line);
}
.legal-content section:last-child {
    border-bottom: 0;
}
.legal-content h2 {
    margin-bottom: 12px;
    font-size: 24px;
}
.legal-content a {
    color: var(--olive-dark);
    font-weight: 800;
}

.about-page img { min-height: 560px; }
.about-page h1, .contact-page h1, .booking-page h1, .flow-hero h1, .thanks-page h1 { font-size: clamp(38px, 5vw, 66px); }
.values { grid-template-columns: repeat(3, 1fr); padding-top: 0; }
.article-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); background: var(--paper); }
.article-grid small {
    display: block;
    margin: 16px 0;
    color: var(--olive);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.knowledge-topics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    padding: 0 clamp(22px, 5vw, 74px);
    background: var(--white);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.knowledge-topics article {
    padding: clamp(28px, 4vw, 46px);
    border-left: 1px solid var(--line);
}

.knowledge-topics article:first-child { border-left: 0; }
.knowledge-topics span {
    display: block;
    width: fit-content;
    margin-bottom: 18px;
    padding-top: 8px;
    border-top: 1px solid var(--olive);
    color: var(--olive);
    font-size: 12px;
    font-weight: 800;
}
.knowledge-topics h2 {
    margin-bottom: 12px;
    font-size: clamp(22px, 2.4vw, 34px);
}
.knowledge-topics p {
    margin: 0;
    font-size: 14px;
}

.scheduled-articles {
    display: grid;
    grid-template-columns: .55fr 1fr;
    gap: 44px;
    padding: clamp(46px, 6vw, 78px) clamp(22px, 5vw, 74px);
    background: var(--soft);
    border-top: 1px solid var(--line);
}

.scheduled-articles > div:first-child {
    align-self: start;
    position: sticky;
    top: 110px;
}

.scheduled-list {
    display: grid;
    gap: 12px;
}

.scheduled-list article {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr) minmax(120px, .35fr);
    gap: 22px;
    align-items: start;
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
}

.scheduled-list span,
.scheduled-list p {
    color: var(--olive);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.scheduled-list h3 {
    margin: 0;
    font-size: clamp(19px, 2vw, 26px);
}

.scheduled-list p {
    margin: 0;
    text-align: right;
}

.admin-scheduled-list article {
    grid-template-columns: 100px minmax(0, 1fr) minmax(110px, .35fr);
    padding: 14px 0;
}

.admin-scheduled-list h3 {
    font-size: 18px;
}

.blog-admin-layout {
    display: grid;
    grid-template-columns: minmax(280px, .85fr) minmax(0, 1.35fr);
    gap: 22px;
    align-items: start;
}

.blog-library-list article {
    grid-template-columns: minmax(92px, .35fr) minmax(0, 1fr);
    gap: 14px;
}

.blog-library-list article p {
    text-align: left;
}

.blog-row-actions {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.blog-row-actions a {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    padding: 0 12px;
    border: 1px solid var(--line);
    color: var(--ink);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.blog-row-actions a:hover {
    background: var(--olive-dark);
    color: var(--white);
}

.blog-editor-form {
    gap: 18px;
}

.knowledge-article {
    background: var(--white);
}

.article-hero {
    max-width: 980px;
    padding: clamp(76px, 9vw, 128px) clamp(24px, 7vw, 100px) clamp(44px, 6vw, 76px);
}

.article-hero h1 {
    max-width: 860px;
    margin-bottom: 24px;
    font-size: clamp(38px, 5.5vw, 76px);
}

.article-hero > p:not(.eyebrow) {
    max-width: 720px;
    color: var(--ink);
    font-size: 20px;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
    color: var(--olive);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.article-body {
    display: grid;
    grid-template-columns: minmax(220px, 320px) minmax(0, 720px);
    gap: clamp(34px, 6vw, 86px);
    padding: 0 clamp(24px, 7vw, 100px) clamp(76px, 9vw, 124px);
}

.article-body aside {
    position: sticky;
    top: 110px;
    align-self: start;
    padding: 28px;
    background: var(--soft);
    border: 1px solid var(--line);
}

.article-body aside p:not(.eyebrow) {
    color: var(--ink);
    font-size: 15px;
}

.article-body aside small {
    display: block;
    margin: 18px 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.55;
}

.article-body section {
    padding-top: 12px;
    margin-bottom: 44px;
}

.article-body h2 {
    margin-bottom: 18px;
    font-size: clamp(25px, 3vw, 38px);
}

.article-faq {
    border-top: 1px solid var(--line);
}

.article-faq details {
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
}

.article-faq summary {
    cursor: pointer;
    color: var(--ink);
    font-weight: 800;
}

.article-faq p {
    margin: 12px 0 0;
}

.about-hero-page {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 58px;
    align-items: center;
    padding: clamp(54px, 7vw, 92px) clamp(22px, 5vw, 74px) 0;
    background: var(--white);
}
.about-hero-page > div {
    max-width: 620px;
    padding-bottom: clamp(42px, 6vw, 82px);
}
.about-hero-page h1 {
    font-size: clamp(46px, 6vw, 82px);
}
.about-hero-page img {
    min-height: 560px;
}
.profile-card {
    margin-top: 28px;
    padding: 24px;
    background: var(--soft);
    border: 1px solid var(--line);
}
.profile-card strong {
    display: block;
    margin-bottom: 14px;
    color: var(--olive-dark);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}
.profile-card ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.profile-card li {
    position: relative;
    padding-left: 22px;
    color: var(--ink);
    font-size: 14px;
    line-height: 1.55;
}
.profile-card li::before {
    content: "";
    position: absolute;
    top: .7em;
    left: 0;
    width: 9px;
    height: 1px;
    background: var(--olive);
}
.experience-band {
    display: grid;
    grid-template-columns: .82fr 1.4fr;
    gap: 46px;
    padding: clamp(46px, 6vw, 72px) clamp(22px, 5vw, 74px);
    background: var(--soft);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.experience-intro h2 {
    max-width: 430px;
    font-size: clamp(25px, 2.8vw, 38px);
}
.experience-intro p:not(.eyebrow) {
    max-width: 520px;
    font-size: 14px;
}
.experience-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
}
.experience-grid article {
    padding: 10px 22px;
    border-left: 1px solid #c9c2b5;
}
.experience-grid span,
.about-principles article > span {
    display: block;
    margin-bottom: 20px;
    color: var(--olive-dark);
    font-size: 34px;
}
.experience-grid h3 {
    margin-bottom: 10px;
    font-size: 15px;
}
.experience-grid p {
    margin: 0;
    font-size: 13px;
}
.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--white);
    border-bottom: 1px solid var(--line);
}
.about-split > div {
    align-self: center;
    padding: clamp(42px, 6vw, 82px);
}
.about-split img {
    min-height: 420px;
}
.about-split h2 {
    max-width: 760px;
    font-size: clamp(28px, 3vw, 44px);
}
.about-split p {
    max-width: 720px;
}
.approach-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 28px;
    margin-top: 24px;
}
.approach-list span {
    position: relative;
    padding-left: 28px;
    color: var(--ink);
    font-size: 14px;
    font-weight: 800;
}
.approach-list span::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    display: grid;
    place-items: center;
    width: 18px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--olive);
    color: var(--white);
    font-size: 11px;
}
.about-principles {
    padding: clamp(50px, 6vw, 78px) clamp(22px, 5vw, 74px);
    background: var(--white);
    border-bottom: 1px solid var(--line);
}
.about-principles > .eyebrow {
    max-width: 1180px;
    margin-right: auto;
    margin-left: auto;
}
.about-principles > div {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    max-width: 1180px;
    margin: 22px auto 0;
}
.about-principles article {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 8px 18px;
    align-items: start;
    min-height: 164px;
    padding: 28px;
    background: linear-gradient(180deg, #fffdf8 0%, #f7f5ef 100%);
    border: 1px solid var(--line);
}
.about-principles h3 {
    margin-bottom: 8px;
    font-size: 20px;
}
.about-principles p {
    grid-column: 2;
    margin: 0;
    font-size: 14px;
}
.about-principles article > span {
    display: grid;
    grid-row: 1 / span 2;
    place-items: center;
    width: 46px;
    aspect-ratio: 1;
    margin: 0;
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: 50%;
    font-size: 25px;
    line-height: 1;
}

.flow-hero {
    align-items: end;
    padding-top: clamp(34px, 5vw, 62px);
    padding-bottom: clamp(34px, 5vw, 62px);
    background: var(--white);
    border-bottom: 1px solid var(--line);
}
.flow-steps {
    display: grid;
    gap: 0;
    background: var(--soft);
    border: 1px solid var(--line);
}
.flow-steps article {
    padding: 18px 20px;
    border-bottom: 1px solid var(--line);
}
.flow-steps article:last-child { border-bottom: 0; }
.flow-steps span {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--olive);
    font-size: 12px;
    font-weight: 800;
}
.flow-steps h3 { margin-bottom: 6px; font-size: 20px; }
.flow-steps p { margin: 0; font-size: 14px; line-height: 1.6; }
.lead-flow {
    grid-template-columns: minmax(0, 1.05fr) minmax(260px, .55fr);
    align-items: start;
    gap: 34px;
    padding-top: clamp(34px, 5vw, 64px);
    padding-bottom: clamp(34px, 5vw, 64px);
    background: var(--paper);
}
.lead-form {
    display: grid;
    gap: 18px;
}
.lead-form label { margin-bottom: 0; }
.form-section {
    display: grid;
    gap: 8px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
}
.form-section:last-of-type {
    padding-bottom: 0;
    border-bottom: 0;
}
.form-section h2 {
    margin: 0;
    font-size: 24px;
}
.form-section > p {
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.6;
}
.form-section input[type="file"] {
    padding: 12px;
}
.compact-calendar {
    padding: 0;
    background: transparent;
    border: 0;
}
.compact-calendar .calendar-head {
    margin-bottom: 14px;
}
.compact-calendar .calendar-head h2 {
    font-size: 20px;
}
.compact-calendar .calendar-head button,
.compact-calendar .calendar-grid button,
.compact-calendar .time-slots button {
    min-height: 34px;
}
.compact-calendar .weekdays,
.compact-calendar .calendar-grid {
    gap: 5px;
}
.compact-calendar .time-slots {
    gap: 8px;
    margin: 16px 0;
}
.compact-calendar .booking-summary {
    margin-top: 16px;
    padding: 16px;
}
.flow-aside {
    position: sticky;
    top: 110px;
    padding: 26px;
    background: var(--white);
    border: 1px solid var(--line);
}
.flow-aside h2 {
    margin-bottom: 18px;
    font-size: 26px;
}
.flow-aside ul {
    margin: 0;
    padding-left: 18px;
}
.flow-aside li {
    font-size: 14px;
    line-height: 1.8;
}
.thanks-page {
    min-height: calc(100vh - 76px);
    align-items: center;
    background: var(--white);
}
.thanks-page > div {
    max-width: 740px;
}
.thanks-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    margin-top: 28px;
}
.thanks-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    padding: clamp(44px, 6vw, 72px) clamp(22px, 5vw, 74px);
    background: var(--paper);
    border-top: 1px solid var(--line);
}
.received-summary,
.missing-details {
    padding: clamp(22px, 3vw, 34px);
    background: var(--white);
    border: 1px solid var(--line);
}
.received-summary h2,
.missing-details h2 {
    font-size: clamp(24px, 3vw, 34px);
}
.received-summary dl {
    display: grid;
    gap: 0;
    margin: 22px 0 0;
}
.received-summary dl div {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
}
.received-summary dl div:last-child {
    border-bottom: 0;
}
.received-summary dt {
    color: var(--olive);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}
.received-summary dd {
    margin: 0;
    color: var(--ink);
    line-height: 1.6;
}
.supplement-form {
    display: grid;
    gap: 16px;
    margin-top: 22px;
}
.supplement-form label {
    margin: 0;
}

.form-panel, .calendar-panel {
    background: var(--soft);
    border: 1px solid var(--line);
    padding: clamp(22px, 3vw, 36px);
}

label { display: grid; gap: 8px; margin-bottom: 18px; color: var(--ink); font-size: 13px; font-weight: 800; text-transform: uppercase; }
input, textarea, select {
    width: 100%;
    border: 1px solid #c9c2b5;
    background: var(--white);
    padding: 12px 14px;
    color: var(--ink);
    font: inherit;
}

.form-status { min-height: 28px; margin: 16px 0 0; font-size: 14px; }
.booking-page { align-items: start; }
.booking-copy { position: sticky; top: 110px; }
.booking-summary { margin-top: 28px; padding: 22px; background: var(--paper); border-left: 3px solid var(--olive); font-weight: 800; }

.calendar-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 22px; }
.calendar-head h2 { margin: 0; font-size: 25px; text-transform: capitalize; }
.calendar-head button, .calendar-grid button, .time-slots button {
    border: 1px solid var(--line);
    background: var(--white);
    color: var(--ink);
    min-height: 42px;
    cursor: pointer;
}

.weekdays, .calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 8px; }
.weekdays span { color: var(--muted); font-size: 12px; font-weight: 800; text-align: center; }
.calendar-grid { margin-top: 10px; }
.calendar-grid button { aspect-ratio: 1; font-weight: 800; }
.calendar-grid button:disabled { opacity: .25; cursor: not-allowed; }
.calendar-grid button.selected, .time-slots button.selected { background: var(--olive-dark); color: var(--white); }
.time-slots { display: flex; flex-wrap: wrap; gap: 10px; margin: 26px 0; }
.time-slots p { flex-basis: 100%; margin: 0 0 4px; color: var(--ink); font-weight: 800; }
.time-slots button { padding: 0 18px; font-weight: 800; }
.empty-slots { color: var(--muted); font-size: 14px; }

.admin-shell {
    padding: clamp(32px, 5vw, 72px);
    background: var(--white);
}
.admin-hero {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 28px;
    max-width: 1320px;
    margin: 0 auto 28px;
    padding: 34px;
    background: var(--soft);
    border: 1px solid var(--line);
}
.admin-hero h1 {
    margin-bottom: 12px;
    font-size: clamp(34px, 4vw, 58px);
}
.admin-hero p:not(.eyebrow) {
    max-width: 680px;
    margin: 0;
}
.admin-panel {
    max-width: 1320px;
    min-width: 0;
    margin: 0 auto;
}
.admin-toolbar {
    position: sticky;
    top: 76px;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    margin-bottom: 22px;
    padding: 10px;
    background: rgba(247, 245, 239, .94);
    border: 1px solid var(--line);
    backdrop-filter: blur(14px);
}
.admin-tabs {
    display: inline-grid;
    grid-template-columns: repeat(auto-fit, minmax(105px, 1fr));
    gap: 6px;
    min-width: min(100%, 780px);
}
.admin-tabs a,
.admin-quicklinks a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    background: var(--white);
    border: 1px solid var(--line);
    color: var(--ink);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
}
.admin-tabs a.active,
.admin-tabs a:hover,
.admin-quicklinks a:hover {
    background: var(--olive-dark);
    color: var(--white);
}
.admin-quicklinks {
    display: flex;
    gap: 8px;
    align-items: center;
}
.admin-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 28px;
}
.admin-stats.crm-stats {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}
.admin-stats article {
    background: var(--ink);
    color: var(--white);
    padding: 22px;
    min-height: 118px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.admin-stats span { font-size: 36px; font-weight: 800; line-height: 1; }
.admin-stats p { margin: 0; color: #d9d4c8; font-size: 13px; text-transform: uppercase; font-weight: 800; }
.admin-section {
    margin-top: 28px;
    padding: 34px;
    border: 1px solid var(--line);
    background: #fbfaf6;
}
.admin-section[hidden] { display: none; }
.admin-section-head {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: end;
    margin-bottom: 22px;
}
.admin-section-head h2 { margin: 0; font-size: clamp(26px, 3vw, 36px); }
.admin-section-head .eyebrow { margin-bottom: 10px; }
.admin-hint { color: var(--muted); font-size: 13px; font-weight: 800; text-transform: uppercase; }
.section-note {
    margin: -6px 0 22px;
    padding: 16px 18px;
    background: var(--soft);
    border-left: 3px solid var(--olive);
    color: var(--ink);
    font-size: 14px;
    line-height: 1.6;
}
.admin-actions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}
.calendar-control-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}
.availability-card {
    display: grid;
    gap: 18px;
    align-content: start;
}
.calendar-card-head {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.calendar-card-head > span {
    display: grid;
    place-items: center;
    flex: 0 0 34px;
    width: 34px;
    aspect-ratio: 1;
    background: var(--olive-dark);
    color: var(--white);
    font-size: 13px;
    font-weight: 800;
}
.danger-card .calendar-card-head > span {
    background: #7a2d20;
}
.calendar-card-head h3 {
    margin: 0 0 6px;
}
.calendar-card-head p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}
.calendar-settings-card {
    display: grid;
    gap: 14px;
}
.admin-card {
    background: var(--soft);
    border: 1px solid var(--line);
    padding: 28px;
}
.admin-card.danger-card {
    background: #f3eee8;
    border-color: #c9b7a7;
}
.admin-card h3 { margin-bottom: 22px; font-size: 22px; }
.settings-card {
    max-width: 920px;
}
.settings-card p {
    margin-bottom: 22px;
}
.settings-card h3 {
    margin: 28px 0 18px;
    font-size: 22px;
}
.settings-card h3:first-of-type {
    margin-top: 0;
}
.frontend-editor {
    display: grid;
    gap: 18px;
}
.editor-save-bar {
    position: sticky;
    top: 148px;
    z-index: 6;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    padding: 14px 16px;
    background: rgba(251, 250, 246, .96);
    border: 1px solid var(--line);
    box-shadow: 0 8px 20px rgba(24, 25, 23, .06);
    backdrop-filter: blur(12px);
}
.editor-save-bar strong {
    display: block;
    margin-bottom: 4px;
    font-size: 14px;
}
.editor-save-bar span {
    display: block;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.4;
}
.editor-page-nav {
    position: sticky;
    top: 224px;
    z-index: 5;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 10px;
    background: rgba(247, 245, 239, .92);
    border: 1px solid var(--line);
    backdrop-filter: blur(12px);
}
.editor-page-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    background: var(--white);
    border: 1px solid rgba(217, 212, 200, .9);
    color: var(--olive-dark);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}
.editor-page-nav a:hover {
    background: var(--olive);
    border-color: var(--olive);
    color: var(--white);
}
.editor-page-nav a.active {
    background: var(--night);
    border-color: var(--night);
    color: var(--white);
}
.editor-hidden {
    display: none !important;
}
.editor-page-heading {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: end;
    margin-top: 14px;
    padding: 28px;
    background: var(--night);
    color: var(--white);
}
.editor-page-heading div {
    display: flex;
    gap: 18px;
    align-items: baseline;
}
.editor-page-heading span {
    color: #b9af95;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}
.editor-page-heading h3 {
    margin: 0;
    color: var(--white);
    font-size: clamp(24px, 3vw, 38px);
}
.editor-page-heading p {
    max-width: 520px;
    margin: 0;
    color: #d9d4c8;
    font-size: 14px;
}
.editor-bottom-actions {
    display: flex;
    justify-content: flex-end;
    padding: 18px;
    background: var(--white);
    border: 1px solid var(--line);
}
.editor-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}
.editor-card {
    display: grid;
    gap: 14px;
    align-content: start;
}
.editor-card-head {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: baseline;
    margin-bottom: 8px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
}
.editor-card-head span {
    color: var(--olive-dark);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}
.editor-card-head h3 {
    margin: 0;
}
.editor-list {
    display: grid;
    gap: 12px;
}
.compact-editor-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.editor-row {
    display: grid;
    grid-template-columns: 135px minmax(0, 1fr);
    gap: 12px;
    align-items: end;
    padding: 14px;
    background: var(--white);
    border: 1px solid var(--line);
}
.editor-row-stack {
    grid-template-columns: 115px repeat(2, minmax(0, 1fr));
    align-items: start;
}
.editor-row-stack label:last-child {
    grid-column: 1 / -1;
}
.compact-editor-list .editor-row-stack {
    grid-template-columns: 95px 80px minmax(0, 1fr);
}
.topic-editor-row {
    grid-template-columns: 100px 110px repeat(2, minmax(0, 1fr));
}
.topic-editor-row label:nth-last-child(-n+5) {
    grid-column: 1 / -1;
}
.order-input {
    text-align: center;
    font-weight: 800;
}
.editor-image-section {
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
}
.admin-list-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}
.booking-board {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 18px;
}
.calendar-sync-grid {
    align-items: start;
    margin-bottom: 18px;
}
.calendar-sync-grid input[readonly] {
    background: var(--white);
    cursor: text;
}
.mini-request-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 14px 0;
    border-top: 1px solid var(--line);
}
.mini-request-row:first-of-type {
    border-top: 0;
    padding-top: 0;
}
.mini-request-row span,
.mini-request-row strong {
    display: block;
}
.mini-request-row span {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
}
.mini-request-row strong {
    color: var(--ink);
    font-size: 14px;
}
.mini-request-row button,
.confirm-inline-form button {
    min-height: 44px;
    padding: 0 14px;
    border: 1px solid var(--line);
    background: var(--olive-dark);
    color: var(--white);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
}
.appointment-list {
    margin-top: 18px;
}
.appointment-card {
    grid-template-columns: minmax(0, 1fr) auto;
}
.appointment-card .lead-meta,
.appointment-card > p {
    grid-column: 1 / -1;
}
.archived-list {
    margin-bottom: 18px;
}
.request-list {
    background: var(--white);
    border: 1px solid var(--line);
}
.request-list h3 {
    margin: 0;
    padding: 22px 24px;
    border-bottom: 1px solid var(--line);
    font-size: 22px;
}
.request-list > p {
    padding: 0 24px 24px;
}
.request-card {
    display: grid;
    gap: 10px;
    padding: 20px 24px;
    border-bottom: 1px solid var(--line);
}
.request-card:last-child { border-bottom: 0; }
.request-card strong,
.request-card span,
.request-card a,
.request-card small {
    display: block;
}
.request-card span,
.request-card small {
    color: var(--muted);
}
.request-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}
.request-card a {
    color: var(--olive-dark);
    font-weight: 800;
}
.booking-card {
    position: relative;
}
.lead-list {
    display: grid;
    gap: 22px;
}
.lead-stage-group {
    display: grid;
    gap: 12px;
    padding: 18px;
    background: #f4f1ea;
    border: 1px solid var(--line);
}
.lead-stage-head {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: flex-start;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
}
.lead-stage-head h3 {
    margin: 0 0 6px;
    font-size: 21px;
}
.lead-stage-head p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.5;
    text-transform: uppercase;
}
.lead-stage-head span {
    display: grid;
    place-items: center;
    flex: 0 0 42px;
    width: 42px;
    aspect-ratio: 1;
    background: var(--olive-dark);
    color: var(--white);
    font-weight: 800;
}
.empty-stage {
    margin: 0;
    padding: 14px;
    background: var(--white);
    border: 1px dashed var(--line);
    color: var(--muted);
    font-size: 14px;
}
.pipeline-board {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 22px;
}
.pipeline-board article {
    display: grid;
    gap: 8px;
    min-height: 138px;
    padding: 18px;
    background: var(--white);
    border: 1px solid var(--line);
}
.pipeline-board span {
    color: var(--olive-dark);
    font-size: 34px;
    font-weight: 800;
    line-height: 1;
}
.pipeline-board strong {
    font-size: 15px;
}
.pipeline-board small {
    color: var(--muted);
    font-size: 11px;
    line-height: 1.5;
}
.lead-card {
    display: grid;
    gap: 18px;
    padding: 24px;
    background: var(--white);
    border: 1px solid var(--line);
}
.lead-card-head {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: flex-start;
}
.lead-card-head h3 {
    margin-bottom: 6px;
    font-size: 23px;
}
.lead-card-head p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}
.lead-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.lead-meta span,
.lead-meta a {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 10px;
    background: var(--soft);
    border: 1px solid var(--line);
    color: var(--ink);
    font-size: 12px;
    font-weight: 800;
}
.lead-meta a {
    color: var(--olive-dark);
}
.lead-card > p {
    margin: 0;
    padding: 16px;
    background: #fbfaf6;
    border-left: 3px solid var(--olive);
    font-size: 14px;
    line-height: 1.6;
}
.lead-stage-form {
    display: grid;
    grid-template-columns: minmax(220px, 360px) auto;
    gap: 12px;
    align-items: end;
    padding: 14px;
    background: var(--soft);
    border: 1px solid var(--line);
}
.lead-stage-form label {
    margin: 0;
}
.lead-stage-form button {
    min-height: 48px;
    padding: 0 16px;
    border: 1px solid var(--line);
    background: var(--olive-dark);
    color: var(--white);
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
}
.lead-admin-actions {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 12px;
    align-items: end;
}
.delete-inline-form {
    margin: 0;
}
.delete-inline-form button,
.booking-actions form:last-child button {
    min-height: 48px;
    padding: 0 16px;
    border: 1px solid #bda99b;
    background: #f3eee8;
    color: #7a2d20;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
}
.lead-edit {
    border: 1px solid var(--line);
    background: #fbfaf6;
}
.lead-edit summary {
    padding: 16px 18px;
    cursor: pointer;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 12px;
}
.lead-edit-form {
    display: grid;
    gap: 16px;
    padding: 18px;
    border-top: 1px solid var(--line);
}
.lead-edit-form label { margin-bottom: 0; }
.status-badge {
    justify-self: start;
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    border: 1px solid var(--line);
}
.status-badge.requested {
    background: #f5ead7;
    color: #6c4a16;
}
.status-badge.booked {
    background: #e4eddf;
    color: #2f5626;
}
.status-badge.rejected {
    background: #eee7e1;
    color: var(--muted);
}
.booking-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 6px;
}
.booking-actions form {
    margin: 0;
}
.booking-actions button,
.booking-actions .text-button {
    min-height: 38px;
}
.two-inputs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}
.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 14px;
    margin: 6px 0 22px;
}
.checkbox-grid label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
}
.checkbox-grid input { width: auto; }
.choice-group {
    margin: 0;
    padding: 0;
    border: 0;
}
.choice-group legend {
    margin-bottom: 10px;
    color: var(--ink);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}
.weekday-grid,
.time-choice-grid {
    display: grid;
    gap: 8px;
}
.weekday-grid {
    grid-template-columns: repeat(7, minmax(0, 1fr));
}
.time-choice-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 12px;
}
.weekday-grid label,
.time-choice-grid label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 42px;
    margin: 0;
    padding: 0 8px;
    background: var(--white);
    border: 1px solid var(--line);
    color: var(--ink);
    font-size: 12px;
    font-weight: 800;
}
.weekday-grid input,
.time-choice-grid input {
    width: auto;
}
.custom-time-label {
    margin: 0;
}
.segmented-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 6px 0 14px;
}
.segmented-options label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
}
.segmented-options input { width: auto; }
.notice {
    margin: 0 0 22px;
    padding: 18px 20px;
    border: 1px solid var(--line);
    background: var(--soft);
    color: var(--ink);
}
.notice p { margin: 0; }
.notice h2 { margin-bottom: 8px; font-size: 22px; }
.notice.success { border-left: 3px solid var(--olive); }
.notice.error, .error-text { color: #8a2d1f; }
.slot-form {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 18px;
    align-items: end;
    padding: 28px;
    background: var(--soft);
    border: 1px solid var(--line);
}
.slot-form label { margin-bottom: 0; }
.slot-list {
    margin-top: 28px;
    background: var(--white);
    border: 1px solid var(--line);
}
.slot-list h2 {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    margin: 0;
    padding: 24px 28px;
    font-size: 24px;
    border-bottom: 1px solid var(--line);
}
.slot-list h2 span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}
.slot-list > p { padding: 0 28px 24px; }
.slot-month {
    border-bottom: 1px solid var(--line);
}
.slot-month:last-child { border-bottom: 0; }
.slot-month summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 28px;
    cursor: pointer;
    background: var(--soft);
    list-style: none;
}
.slot-month summary::-webkit-details-marker { display: none; }
.slot-month summary::before {
    content: "+";
    display: grid;
    place-items: center;
    width: 24px;
    aspect-ratio: 1;
    border: 1px solid var(--line);
    background: var(--white);
    font-weight: 800;
}
.slot-month[open] summary::before { content: "−"; }
.slot-month summary strong {
    margin-right: auto;
    font-size: 18px;
}
.slot-month summary span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}
.slot-day { border-bottom: 1px solid var(--line); }
.slot-month .slot-day:last-child { border-bottom: 0; }
.slot-day-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 20px 28px 14px;
    background: #fbfaf6;
}
.slot-day-head h3 {
    margin: 0 0 4px;
    color: var(--olive-dark);
    font-size: 18px;
}
.slot-day-head p {
    margin: 0;
    font-size: 13px;
    line-height: 1.3;
}
.slot-day-head form { margin: 0; }
.slot-day-head button,
.slot-chip button,
.admin-logout-inline button,
.text-button {
    border: 1px solid var(--line);
    background: transparent;
    color: var(--ink);
    min-height: 38px;
    padding: 0 14px;
    font-weight: 800;
    cursor: pointer;
}
.slot-chip-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0 28px 24px;
}
.slot-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    min-height: 38px;
    padding: 0 0 0 12px;
    background: var(--white);
    border: 1px solid var(--line);
}
.slot-chip span {
    font-weight: 800;
    font-size: 14px;
}
.slot-chip button {
    min-height: 36px;
    width: 36px;
    padding: 0;
    border-width: 0 0 0 1px;
    font-size: 18px;
    line-height: 1;
}
.image-admin-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}
.image-admin-card {
    display: grid;
    gap: 18px;
    background: var(--white);
    border: 1px solid var(--line);
    padding: 18px;
}
.image-admin-card img {
    height: 220px;
    background: var(--soft);
}
.image-admin-card img[src*="brand-logo"],
.image-admin-card img[src*="key=brand-logo"] {
    object-fit: contain;
    padding: 18px;
    background: var(--night);
}
.image-admin-card h3 { margin-bottom: 8px; font-size: 21px; }
.image-admin-card p { margin-bottom: 10px; font-size: 14px; }
.image-admin-card small { display: block; color: var(--muted); line-height: 1.5; }
.image-admin-card form { display: grid; gap: 10px; }
.image-admin-card label { margin: 0; }
.image-spec {
    display: grid;
    gap: 4px;
    margin: 14px 0;
    padding: 14px;
    background: var(--soft);
    border-left: 3px solid var(--olive);
}
.image-spec span {
    color: var(--olive);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}
.image-spec strong { font-size: 18px; }
.upload-note {
    margin: -4px 0 4px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
}
.captcha-field {
    display: grid;
    gap: 8px;
    padding: 14px;
    background: var(--soft);
    border: 1px solid var(--line);
}
.captcha-field label {
    margin: 0;
}
.hp-field {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
.text-button {
    justify-self: start;
    min-height: 36px;
    padding: 0 12px;
}
.admin-logout-inline { flex: 0 0 auto; }
.admin-logout-inline button { background: var(--white); min-height: 42px; }

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

@media (min-width: 981px) and (max-width: 1180px) {
    .hero-copy h1 {
        font-size: 54px;
    }
}

@media (max-width: 980px) {
    .nav-toggle {
        display: grid;
        gap: 6px;
        width: 42px;
        height: 42px;
        border: 1px solid var(--line);
        background: transparent;
        place-content: center;
    }

    .nav-toggle span { display: block; width: 20px; height: 2px; background: var(--ink); }
    .main-nav {
        position: absolute;
        inset: 76px 0 auto 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 22px;
        background: var(--paper);
        border-bottom: 1px solid var(--line);
    }
    .main-nav.open { display: flex; }
    .main-nav a { padding: 14px 0; }
    .nav-group {
        display: grid;
    }
    .nav-submenu {
        position: static;
        width: auto;
        padding: 0 0 0 14px;
        background: transparent;
        border: 0;
        box-shadow: none;
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }
    .nav-submenu::before { display: none; }
    .nav-submenu a {
        padding: 10px 0;
    }
    .nav-submenu a:hover { background: transparent; }
    .nav-cta { justify-content: center; }
    .hero-copy h1 {
        font-size: 46px;
    }

    .split-hero,
    .reality-band,
    .capability-section,
    .offers-preview,
    .home-faq,
    .trust-section,
    .about-band,
    .about-hero-page,
    .experience-band,
    .about-split,
    .about-principles > div,
    .compact-grid,
    .involvement-levels,
    .topic-showcase .section-intro,
    .topic-card,
    .seminar-hero,
    .about-page,
    .contact-page,
    .booking-page,
    .flow-hero,
    .lead-flow,
    .thanks-page,
    .legal-page,
    .two-column-text,
    .article-body,
    .knowledge-topics,
    .scheduled-articles,
    .scheduled-list article {
        grid-template-columns: 1fr;
    }

    .knowledge-topics article { border-left: 0; border-top: 1px solid var(--line); }
    .knowledge-topics article:first-child { border-top: 0; }
    .article-body aside { position: static; }
    .scheduled-articles > div:first-child { position: static; }
    .scheduled-list p { text-align: left; }
    .hero-media, .about-band img, .about-page img, .about-hero-page img, .about-split img { min-height: 430px; }
    .pain-grid, .capability-list, .format-grid, .service-depth-grid, .offer-cards, .use-case-grid article, .experience-grid, .approach-list, .about-principles article, .seminar-facts, .content-grid, .process-grid, .article-grid, .values, .offer-list, .topic-facts, .topic-content-preview { grid-template-columns: 1fr; }
    .experience-grid article { border-left: 0; border-top: 1px solid #c9c2b5; padding: 24px 0; }
    .experience-grid article:first-child { border-top: 0; }
    .about-principles article {
        grid-template-columns: 48px minmax(0, 1fr);
        min-height: 0;
        padding: 24px;
        border: 1px solid var(--line);
    }
    .about-principles article > span {
        width: 42px;
        grid-row: 1 / span 2;
    }
    .about-principles p {
        grid-column: 2;
    }
    .topic-card img { min-height: 320px; }
    .topic-facts div { border-left: 0; border-top: 1px solid var(--line); }
    .topic-facts div:first-child { border-top: 0; }
    .involvement-levels .section-intro { position: static; }
    .level-card { grid-template-columns: 1fr; align-items: start; min-height: 0; }
    .level-side { justify-items: start; min-height: 0; }
    .level-side .text-link { white-space: normal; }
    .pain-grid article, .seminar-facts article { border-left: 0; border-top: 1px solid #c9c2b5; padding: 24px 0; }
    .seminar-facts { margin: 0; }
    .cta-strip, .bottom-cta, .site-footer { grid-template-columns: 1fr; flex-direction: column; align-items: flex-start; }
    .booking-copy { position: static; }
    .flow-aside { position: static; }
    .legal-intro { position: static; }
    .admin-hero { flex-direction: column; padding: 24px; }
    .admin-toolbar { position: static; flex-direction: column; align-items: stretch; }
    .admin-tabs { width: 100%; }
    .admin-quicklinks { flex-wrap: wrap; }
    .editor-save-bar, .editor-page-nav { position: static; }
    .editor-save-bar { flex-direction: column; align-items: stretch; }
    .editor-page-heading { flex-direction: column; align-items: flex-start; }
    .editor-bottom-actions { justify-content: stretch; }
    .editor-bottom-actions .button { width: 100%; }
    .slot-form, .admin-stats, .admin-stats.crm-stats, .admin-actions-grid, .calendar-control-grid, .image-admin-grid, .admin-list-grid, .booking-board, .pipeline-board, .thanks-details, .editor-grid, .editor-row, .editor-row-stack, .compact-editor-list, .compact-editor-list .editor-row-stack, .blog-admin-layout, .blog-library-list article { grid-template-columns: 1fr; }
    .lead-stage-form, .lead-admin-actions { grid-template-columns: 1fr; }
    .lead-card-head { flex-direction: column; }
    .slot-day-head { align-items: flex-start; flex-direction: column; }
    .admin-section-head { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 620px) {
    .site-header { padding: 16px 18px; }
    .brand { width: 178px; min-width: 178px; }
    h1 { font-size: 42px; }
    .hero-copy h1 { font-size: 40px; }
    .hero-copy, .reality-band, .offers-preview, .trust-section, .about-hero-page, .experience-band, .about-principles, .page-hero, .involvement-levels, .topic-showcase, .seminar-content, .process-grid, .two-column-text, .article-grid, .values, .article-hero, .article-body, .knowledge-topics, .scheduled-articles, .about-page, .contact-page, .booking-page, .flow-hero, .lead-flow, .thanks-page, .thanks-details, .legal-page { padding-left: 20px; padding-right: 20px; }
    .about-hero-page > div, .about-split > div { padding-left: 0; padding-right: 0; }
    .received-summary dl div { grid-template-columns: 1fr; gap: 4px; }
    .admin-shell { padding: 20px; }
    .admin-section { padding: 20px; }
    .wide-offer, .process-grid article, .article-grid article, .values article { padding: 28px 20px; }
    .site-footer nav, .footer-contact { flex-direction: column; align-items: flex-start; }
    .weekdays, .calendar-grid { gap: 5px; }
    .two-inputs, .checkbox-grid, .segmented-options, .weekday-grid, .time-choice-grid { grid-template-columns: 1fr; }
    .admin-tabs { grid-template-columns: 1fr; }
    .admin-card, .image-admin-card { padding: 18px; }
    .image-admin-card img { height: 180px; }
    .slot-list h2 { align-items: flex-start; flex-direction: column; }
    .slot-day-head, .slot-chip-grid { padding-left: 18px; padding-right: 18px; }
}
