:root {
    --sage: #5e8375;
    --sage-deep: #3f6456;
    --sage-ink: #2f4d42;
    --ink: #3d4146;
    --ink-strong: #2a2e31;
    --muted: #5e6662;
    --line: #e3e8e4;
    --paper: #f4f7f5;
    --white: #ffffff;
    --danger: #8d3d3d;
    --ok: #2f4d42;
    --shadow: 0 18px 50px rgba(47, 77, 66, 0.08);
    --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: Manrope, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.65;
}
img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
address { font-style: normal; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.15; letter-spacing: -0.03em; color: var(--ink-strong); }

.skip {
    position: absolute;
    left: 12px;
    top: -40px;
    background: var(--sage-ink);
    color: white;
    padding: 8px 12px;
    z-index: 50;
}
.skip:focus { top: 12px; }

.wrap { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.letterhead { height: 4px; background: var(--sage); }

.topbar { background: var(--paper); color: var(--muted); font-size: 13px; }
.topbar-row { display: flex; justify-content: space-between; gap: 16px; padding: 8px 0; }
.topbar-links { display: flex; gap: 16px; }
.topbar a:hover { color: var(--sage-deep); }

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
}
.header-row { display: flex; align-items: center; gap: 28px; min-height: 84px; }
.logo { display: flex; align-items: center; margin-right: auto; }
.logo img { height: 48px; width: auto; display: block; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav a { display: block; padding: 10px 12px; font-size: 14.5px; font-weight: 600; color: var(--ink); }
.nav a:hover, .nav a.is-active { color: var(--sage-deep); }
.nav-item { position: relative; }
.sub {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 230px;
    padding: 8px;
    background: white;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}
.sub a { padding: 10px 12px; font-weight: 500; }
.has-sub:hover > .sub, .has-sub:focus-within > .sub { display: block; }
.sub .nav-item { position: relative; }
.sub .sub { top: 0; left: 100%; }
.footer-nav a.depth-1 { padding-left: 14px; }
.footer-nav a.depth-2, .footer-nav a.depth-3 { padding-left: 28px; }
.nav-toggle {
    display: none;
    border: 1px solid var(--line);
    background: white;
    padding: 8px 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
}

.btn,
a.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border: 1px solid transparent;
    background: var(--sage-deep);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.01em;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.btn:hover,
a.btn:hover { transform: translateY(-1px); color: #fff; text-decoration: none; }
.btn-sage,
a.btn-sage { background: var(--sage-deep); color: #fff; }
.btn-sage:hover,
a.btn-sage:hover { background: var(--sage-ink); color: #fff; }
.btn-ghost,
a.btn-ghost { background: transparent; border-color: var(--line); color: var(--ink-strong); }
.btn-ghost:hover,
a.btn-ghost:hover { border-color: var(--sage); color: var(--sage-deep); }
.header-phone { display: grid; line-height: 1.15; text-align: right; color: var(--ink-strong); }
.header-phone small { color: var(--sage-deep); font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.header-phone strong { font-size: 16px; }

.kicker {
    margin: 0 0 12px;
    color: var(--sage-deep);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}
.lead { color: var(--muted); font-size: 18px; max-width: 62ch; }

.hero-slider {
    position: relative;
    height: 560px;
    min-height: 420px;
    background: #1a2420;
    overflow: hidden;
}
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease;
}
.hero-slide.is-active { opacity: 1; visibility: visible; z-index: 1; }
.hero-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.04);
}
.hero-slide.is-active .hero-photo { animation: drift 8s linear forwards; }
@keyframes drift {
    from { transform: scale(1.04); }
    to { transform: scale(1.12); }
}
.hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(16, 24, 21, 0.82) 0%, rgba(16, 24, 21, 0.46) 42%, rgba(16, 24, 21, 0.12) 100%);
}
.hero-frame {
    position: relative;
    z-index: 2;
    height: 100%;
}
.hero-copy {
    height: 100%;
    max-width: 680px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 92px;
}
.hero-copy .kicker { color: #d5e6dc; }
.hero-copy h1, .hero-copy h2 {
    color: white;
    font-size: clamp(32px, 4vw, 46px);
    font-weight: 600;
    margin-bottom: 14px;
    max-width: 14ch;
}
.hero-copy .lead { color: rgba(255, 255, 255, 0.84); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.hero-copy .btn-ghost,
.hero-copy a.btn-ghost { border-color: rgba(255, 255, 255, 0.55); color: #fff; background: transparent; }
.hero-copy .btn-ghost:hover,
.hero-copy a.btn-ghost:hover { border-color: white; color: #fff; }
.hero-nav {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 46px;
    height: 46px;
    margin-top: -23px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: rgba(16, 24, 21, 0.28);
    cursor: pointer;
}
.hero-nav::before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    margin: 0 auto;
    border-top: 2px solid white;
    border-right: 2px solid white;
}
.hero-prev { left: 22px; }
.hero-prev::before { transform: rotate(-135deg); margin-left: 18px; }
.hero-next { right: 22px; }
.hero-next::before { transform: rotate(45deg); margin-right: 18px; }
.hero-dots {
    position: absolute;
    z-index: 3;
    left: 0;
    right: 0;
    bottom: 28px;
    display: flex;
    justify-content: center;
    gap: 8px;
}
.hero-dots button {
    position: relative;
    width: 42px;
    height: 3px;
    border: 0;
    padding: 0;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
}
.hero-dots button.is-active::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: white;
    animation: slidebar 6.5s linear forwards;
}
@keyframes slidebar { to { width: 100%; } }

.livebar { background: var(--sage-ink); color: white; }
.livebar-row { display: grid; grid-template-columns: repeat(4, 1fr); }
.livebar a, .livebar span { display: grid; gap: 2px; padding: 16px 18px; border-left: 1px solid rgba(255, 255, 255, 0.12); }
.livebar a:first-child, .livebar span:first-child { border-left: 0; }
.livebar small { color: #b7d0c4; font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.livebar strong { font-size: 15px; font-weight: 700; }
.livebar a:hover strong { color: #d5e6dc; }

.id-card {
    background: white;
    border: 1px solid var(--line);
    border-left: 3px solid var(--sage);
    padding: 28px 26px 24px;
    box-shadow: var(--shadow);
}
.card-logo { height: 54px; width: auto; margin-bottom: 22px; }
.person {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-strong);
}
.role { margin: 4px 0 16px; color: var(--sage-deep); font-weight: 700; font-size: 14px; }
.legal { margin: 0 0 10px; font-size: 14px; color: var(--ink); }
.id-card address { display: grid; gap: 2px; color: var(--muted); font-size: 14px; margin-bottom: 16px; }
.id-card .phone, .id-card .mail, .id-card .web, .id-card .map { display: block; font-size: 14px; }
.id-card .phone { color: var(--sage-deep); font-weight: 700; font-size: 18px; margin-bottom: 4px; }
.id-card .mail, .id-card .web, .id-card .map { color: var(--muted); }
.id-card a:hover { color: var(--sage-ink); }

.band { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.band-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.band-item { padding: 28px 28px 28px 0; }
.band-item + .band-item { padding-left: 28px; border-left: 1px solid var(--line); }
.band-item h2 { font-size: 20px; margin-bottom: 8px; }
.band-item p { margin: 0; color: var(--muted); }

.section { padding: 84px 0; }
.section-sage {
    background:
        radial-gradient(ellipse at top left, rgba(94, 131, 117, .16), transparent 46%),
        #e7efe9;
}
.section-head { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: 32px; margin-bottom: 36px; align-items: end; }
.section-head h2 { font-size: clamp(32px, 4vw, 46px); margin: 0; max-width: 16ch; }
.section-head p { margin: 0; color: var(--muted); }

.split { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: start; }
.prose { font-size: 16.5px; line-height: 1.7; max-width: 68ch; }
.prose h2 { font-size: 22px; line-height: 1.3; margin: 1.5em 0 0.4em; }
.prose h2:first-child { margin-top: 0; }
.prose p { margin: 0 0 0.85em; }
.prose p, .prose li { color: var(--ink); }
.prose ul { margin: 0 0 1em; padding-left: 1.15em; }
.prose li + li { margin-top: 0.3em; }
.prose a:not(.btn) { color: var(--sage-deep); text-decoration: underline; text-underline-offset: 3px; }
.file-gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 10px; margin: 16px 0; }
.file-gallery img { width: 100%; height: 140px; object-fit: cover; display: block; background: var(--paper); }
.file-docs { list-style: none; margin: 12px 0; padding: 0; display: grid; gap: 8px; }
.file-docs a { font-weight: 700; }

.cards-3, .cards-4 { display: grid; gap: 16px; }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.cards-4 { grid-template-columns: repeat(3, 1fr); }
.svc, .swatch, .sector, .news-card, .brand-card, .team-card, .fair-card, .cert-card {
    display: block;
    border: 1px solid var(--line);
    background: white;
    padding: 22px;
    min-height: 100%;
}
.svc:hover, .swatch:hover, .sector:hover, .news-card:hover, .brand-card:hover, .team-card:hover { border-color: var(--sage); }
.num { display: block; color: var(--sage); font-weight: 700; letter-spacing: 0.14em; font-size: 12px; margin-bottom: 18px; }
.svc h3, .swatch h3, .sector h3, .news-card h3, .brand-card h3 { font-size: 22px; margin-bottom: 8px; }
.svc p, .swatch p, .sector p, .news-card p, .brand-card p, .team-card p { margin: 0; color: var(--muted); }
.more { display: inline-block; margin-top: 16px; color: var(--sage-deep); font-weight: 700; font-size: 14px; }
.swatch {
    background-color: #f7faf8;
    background-image:
        repeating-linear-gradient(90deg, rgba(94, 131, 117, 0.09) 0 1px, transparent 1px 12px),
        repeating-linear-gradient(0deg, rgba(94, 131, 117, 0.05) 0 1px, transparent 1px 12px);
}
.swatch-visual, .cover {
    aspect-ratio: 4 / 3;
    display: grid;
    place-items: center;
    overflow: hidden;
    background:
        repeating-linear-gradient(115deg, rgba(94, 131, 117, 0.16) 0 1px, transparent 1px 10px),
        #e7f0eb;
    color: var(--sage-ink);
    font-weight: 700;
    letter-spacing: 0.14em;
}
.swatch > .cover, .swatch > .swatch-visual, .news-card > .cover, .team-card > .cover, .fair-card > .cover {
    margin: -22px -22px 18px;
}
.cover img, .logo-slot img { width: 100%; height: 100%; object-fit: cover; display: block; }
.logo-slot { height: 72px; display: flex; align-items: center; margin-bottom: 12px; }
.logo-slot img { width: auto; height: 48px; object-fit: contain; }
.meta { margin-top: 12px; color: var(--sage-deep); font-size: 13px; font-weight: 700; letter-spacing: 0.04em; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step { padding-top: 16px; border-top: 1px solid var(--sage); }
.step h3 { margin: 8px 0; font-size: 20px; }
.step p { margin: 0; color: var(--muted); }

.faq { display: grid; gap: 10px; }
.faq-item { border: 1px solid var(--line); background: white; }
.faq-item button {
    width: 100%;
    text-align: left;
    background: transparent;
    border: 0;
    padding: 18px 20px;
    font-weight: 700;
    cursor: pointer;
}
.faq-item .faq-a { display: none; padding: 0 20px 18px; color: var(--muted); }
.faq-item.is-open .faq-a { display: block; }

.cta { background: var(--sage-ink); color: #e7f0eb; }
.cta h2, .cta .kicker { color: white; }
.cta .kicker { color: #b7d0c4; }
.cta-row { display: flex; justify-content: space-between; gap: 24px; align-items: end; }
.cta p { max-width: 52ch; color: #d5e4dc; }
.cta .btn-sage,
.cta a.btn-sage { background: white; color: var(--sage-ink); }
.cta .btn-sage:hover,
.cta a.btn-sage:hover { background: #e7f0eb; color: var(--sage-ink); }

.site-footer { border-top: 0; padding-top: 36px; background: white; }
.footer-grid { display: grid; grid-template-columns: 240px 1fr; gap: 28px 48px; align-items: start; }
.footer-logo img { height: 40px; }
.footer-text { margin: 14px 0 0; color: var(--muted); font-size: 14px; max-width: 28ch; }
.footer-nav { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px 18px; }
.footer-nav a { font-weight: 700; font-size: 14.5px; }
.footer-nav a:hover, .site-footer a:not(.btn):hover { color: var(--sage-deep); }
.footer-reach {
    display: grid;
    grid-template-columns: 1.4fr auto auto;
    gap: 28px;
    align-items: start;
    margin-top: 28px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}
.footer-reach small { display: block; margin-bottom: 4px; color: var(--sage-deep); font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.footer-reach strong { color: var(--ink-strong); font-size: 16px; }
.footer-address { display: grid; gap: 2px; color: var(--muted); font-size: 14.5px; }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 28px;
    padding: 16px 0 22px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 13px;
}
.footer-bottom span:last-child { display: flex; gap: 14px; }

.page-hero + .section { padding-top: 48px; }
.page-hero {
    padding: 36px 0 32px;
    background:
        radial-gradient(ellipse at top left, rgba(94, 131, 117, .18), transparent 52%),
        var(--paper);
}
.page-hero h1 { font-size: clamp(32px, 4vw, 44px); max-width: 18ch; margin-bottom: 10px; line-height: 1.15; }
.page-hero.has-photo {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: flex-end;
    padding: 0;
    overflow: hidden;
    background: #121a17;
    color: white;
}
.page-hero-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero.has-photo::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(16, 24, 21, .12) 0%, rgba(16, 24, 21, .78) 100%);
}
.page-hero.has-photo .wrap { position: relative; z-index: 1; width: min(var(--max), calc(100% - 40px)); padding: 56px 0 36px; }
.page-hero.has-photo .kicker { color: #d7ebe3; }
.page-hero.has-photo h1, .page-hero.has-photo .lead { color: white; }
.page-hero.has-photo .lead { max-width: 46ch; color: rgba(255, 255, 255, .88); }
.detail-cover { margin: 0 0 28px; overflow: hidden; }
.detail-cover img { width: 100%; height: min(420px, 52vw); object-fit: cover; display: block; }
.form-card { background: white; padding: 28px; box-shadow: 0 12px 32px rgba(28, 42, 36, .05); }
.reach-head { text-align: center; padding: 12px 0 4px; }
.reach-head h1 { margin: 0 0 8px; color: var(--sage-deep); font-size: clamp(34px, 4vw, 46px); }
.reach-head p { margin: 0 auto; max-width: 62ch; color: var(--muted); }
.reach-cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin: 28px 0 16px; }
.reach-card, .reach-panel {
    background: #f6faf8;
    border: 1px solid #e5eeea;
    border-radius: 16px;
}
.reach-card { display: flex; gap: 14px; align-items: flex-start; padding: 18px 16px; }
.reach-ico {
    width: 42px;
    height: 42px;
    flex: none;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: white;
    color: var(--sage-deep);
}
.reach-ico svg { width: 20px; height: 20px; }
.reach-card strong { display: block; margin-bottom: 4px; font-size: 15px; }
.reach-card a, .reach-card address { color: var(--muted); font-size: 14.5px; }
.reach-card a { display: block; font-weight: 700; }
.reach-card a:hover { color: var(--sage-deep); }
.reach-card address { display: grid; gap: 2px; }
.reach-grid { display: grid; grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr); gap: 16px; align-items: start; }
.reach-panel { padding: 22px; }
.reach-panel h2 { margin: 0 0 12px; font-size: 20px; }
.reach-person { margin: 0; font-weight: 700; }
.reach-role { margin: 2px 0 12px; color: var(--sage-deep); font-weight: 700; font-size: 14px; }
.reach-panel address { display: grid; gap: 2px; margin: 10px 0; color: var(--muted); font-size: 14.5px; }
.reach-web { font-weight: 700; color: var(--sage-deep); }
.reach-social { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.reach-social a { border: 1px solid var(--line); background: white; border-radius: 999px; padding: 6px 12px; font-size: 13px; font-weight: 700; }
.reach-form .field input, .reach-form .field textarea, .reach-form .field select { background: white; border-radius: 10px; }
.reach-form .btn { justify-self: end; }
.reach-map { width: 100%; height: 380px; margin-top: 16px; border: 0; border-radius: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.search-line { display: flex; gap: 8px; margin: 0 0 16px; }
.search-line input { flex: 1; border: 1px solid var(--line); background: white; padding: 12px 14px; }
.layout-2 .data { background: white; box-shadow: var(--shadow); }
.layout-2 .data th, .layout-2 .data td { padding: 12px 18px; }
.crumb { padding: 18px 0 0; color: var(--muted); font-size: 13px; }
.crumb .wrap { display: flex; gap: 8px; flex-wrap: wrap; }
.crumb a:hover { color: var(--sage-deep); }

.layout-2 { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 28px; align-items: start; }
.data { width: 100%; border-collapse: collapse; }
.data th, .data td { text-align: left; padding: 12px 0; border-bottom: 1px solid var(--line); vertical-align: top; }
.data th { width: 42%; color: var(--muted); font-weight: 600; font-size: 14px; }
.filters { display: flex; flex-wrap: wrap; gap: 8px; margin: 8px 0 22px; }
.filters a { border: 1px solid var(--line); background: white; padding: 8px 12px; font-size: 14px; font-weight: 700; }
.filters a.is-active, .filters a:hover { border-color: var(--sage-deep); color: var(--sage-deep); }
.pager { display: flex; gap: 8px; margin-top: 22px; }
.pager a, .pager span { border: 1px solid var(--line); min-width: 40px; height: 40px; display: grid; place-items: center; font-weight: 700; }
.pager .is-active { background: var(--sage-deep); color: white; border-color: var(--sage-deep); }

.form { display: grid; gap: 14px; }
.field { display: grid; gap: 6px; }
.field span { font-size: 13px; font-weight: 700; letter-spacing: 0.04em; }
.field input, .field textarea, .field select {
    width: 100%;
    border: 1px solid var(--line);
    background: white;
    padding: 12px 12px;
    outline: none;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--sage); }
.checkline { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--muted); }
.hp { position: absolute; left: -9999px; }

.note {
    border: 1px solid var(--line);
    background: var(--paper);
    padding: 22px;
}
.team-grid, .news-grid, .gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-grid a { position: relative; display: block; background: #1c2824; overflow: hidden; min-height: 240px; }
.gallery-grid img { width: 100%; height: 280px; object-fit: cover; display: block; transition: transform .45s ease; }
.gallery-grid a:hover img { transform: scale(1.06); }
.gallery-grid span {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 48px 16px 14px;
    color: white;
    font-weight: 700;
    background: linear-gradient(transparent, rgba(16, 24, 21, .78));
}
.avatar {
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    margin-bottom: 12px;
    border-radius: 50%;
    background: var(--sage-deep);
    color: white;
    font-size: 28px;
    font-weight: 700;
}
.sheet { display: grid; grid-template-columns: minmax(240px, .72fr) minmax(0, 1.28fr); gap: 28px; align-items: start; }
.sheet .data { background: white; border: 1px solid var(--line); }
.sheet .data th, .sheet .data td { padding: 12px 16px; }
.demand { display: grid; grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr); gap: 18px; align-items: start; }
.demand-visual { position: relative; min-height: 100%; overflow: hidden; background: #121a17; }
.demand-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.demand-visual div { position: relative; z-index: 1; padding: 36px 28px; color: white; background: linear-gradient(180deg, rgba(16,24,21,.15), rgba(16,24,21,.72)); min-height: 520px; display: flex; flex-direction: column; justify-content: flex-end; }
.demand-visual h1 { color: white; margin: 0 0 8px; font-size: clamp(32px, 4vw, 46px); }
.demand-visual p { margin: 0; color: rgba(255,255,255,.88); max-width: 28ch; }
.demand-visual .kicker { color: #d7ebe3; }

.block-title { text-align: center; margin-bottom: 28px; }
.block-title h2 { font-size: 32px; margin: 0 0 8px; }
.block-title p { margin: 0 auto; max-width: 68ch; color: var(--muted); }
.logo-wall { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.logo-wall a {
    min-height: 120px;
    border: 1px solid var(--line);
    background: white;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 14px;
    font-weight: 700;
}
.logo-wall a:hover { border-color: var(--sage); }
.logo-wall img { max-height: 54px; width: auto; }
.logo-wall small { display: block; margin-top: 6px; color: var(--muted); font-weight: 500; font-size: 12px; }
.tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.tile { display: flex; flex-direction: column; background: white; border: 1px solid var(--line); min-height: 100%; transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease; }
.tile:hover { border-color: var(--sage); transform: translateY(-4px); box-shadow: var(--shadow); }
.shots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.shot {
    position: relative;
    display: block;
    min-height: 280px;
    overflow: hidden;
    background: #1a2420;
    color: white;
}
.shot img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}
.shot:hover img { transform: scale(1.07); }
.shot-copy {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    gap: 4px;
    padding: 56px 16px 16px;
    background: linear-gradient(transparent, rgba(16, 24, 21, 0.88));
}
.shot-copy strong { font-size: 22px; letter-spacing: -0.03em; }
.shot-copy em { font-style: normal; color: rgba(255, 255, 255, 0.86); font-size: 14px; }
.flow { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.flow-step { padding-top: 14px; border-top: 2px solid var(--sage); }
.flow-step span { color: var(--sage-deep); font-weight: 700; letter-spacing: 0.12em; font-size: 12px; }
.flow-step h3 { margin: 8px 0 6px; font-size: 18px; }
.flow-step p { margin: 0; color: var(--muted); font-size: 14px; }
.group-rail { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; margin: 8px 0 28px; }
.rail-card { display: grid; gap: 8px; font-weight: 700; }
.rail-card > span:first-child { display: block; overflow: hidden; height: 110px; }
.rail-card img { width: 100%; height: 110px; object-fit: cover; display: block; transition: transform 0.45s ease; }
.rail-card:hover img { transform: scale(1.05); }
.rail-card.is-active { color: var(--sage-deep); }
.js .rise { opacity: 0; transform: translateY(18px); }
.js .rise.is-in { opacity: 1; transform: none; transition: opacity 0.55s ease, transform 0.55s ease; }
.close-band {
    display: grid;
    grid-template-columns: minmax(320px, 1.05fr) minmax(360px, 0.95fr);
    min-height: 560px;
    background: #121a17;
    color: #e7f0eb;
}
.close-photo { position: relative; min-height: 420px; overflow: hidden; }
.close-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.close-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 64px max(36px, calc((100vw - 1160px) / 2)) 64px 56px;
}
.close-panel .kicker { color: #b7d0c4; }
.close-panel h2 { margin: 0 0 18px; color: white; font-size: clamp(34px, 4vw, 52px); max-width: 11em; }
.close-person { display: grid; gap: 2px; margin: 0 0 16px; color: white; }
.close-person strong { font-weight: 700; }
.close-person span { color: #d5e4dc; font-weight: 600; }
.close-address { display: grid; gap: 2px; margin: 0 0 22px; color: #d5e4dc; font-size: 15px; }
.close-side { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 22px; }
.close-line { display: grid; gap: 4px; padding-top: 12px; border-top: 1px solid rgba(255, 255, 255, 0.16); }
.close-line small { color: #b7d0c4; font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.close-line strong { color: white; font-size: 18px; letter-spacing: -0.02em; }
.close-line:hover strong { color: #d5e6dc; }
.btn-light,
a.btn-light { align-self: flex-start; background: white; color: var(--sage-ink); }
.btn-light:hover,
a.btn-light:hover { background: #e7f0eb; color: var(--sage-ink); }
.tile-thumb { height: 160px; display: grid; place-items: center; background: #e7f0eb; color: var(--sage-ink); font-weight: 700; letter-spacing: 0.08em; }
.tile-thumb img { width: 100%; height: 100%; object-fit: cover; }
.tile-body { padding: 16px 16px 18px; }
.tile-body h3 { font-size: 20px; margin-bottom: 6px; }
.tile-body p { margin: 0; color: var(--muted); font-size: 14.5px; }
.section-tight { padding: 56px 0; }
.section-block { padding: 72px 0; }
.section-line {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    margin-bottom: 28px;
}
.section-line h2 { margin: 0; font-size: clamp(32px, 4vw, 46px); letter-spacing: -0.04em; }
.section-line p { margin: 8px 0 0; max-width: 46ch; color: var(--muted); }
.section-line > a { flex: none; color: var(--sage-deep); font-weight: 700; text-decoration: none; border-bottom: 1px solid currentColor; padding-bottom: 2px; }
.section-line > a:hover { color: var(--sage-ink); }
.about-split { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 36px; align-items: stretch; }
.about-photo { position: relative; min-height: 420px; overflow: hidden; }
.about-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.about-copy { display: flex; flex-direction: column; justify-content: center; padding: 12px 0; }
.home-about h2 { margin: 0 0 16px; font-size: clamp(34px, 4vw, 48px); max-width: 12em; }
.about-copy .prose { margin-bottom: 22px; }
.about-copy .btn { align-self: flex-start; }
.catalog { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.catalog-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    background: white;
    border: 1px solid transparent;
    box-shadow: 0 10px 30px rgba(28, 42, 36, .04);
    overflow: hidden;
    isolation: isolate;
    transition: transform .25s ease, box-shadow .25s ease;
}
.catalog-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: transform .6s ease;
}
.catalog-card.has-photo::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(16, 24, 21, .28) 0%, rgba(16, 24, 21, .78) 100%);
}
.catalog-card.has-photo:hover .catalog-photo { transform: scale(1.08); }
.catalog-card::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: var(--sage);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s ease;
}
.catalog-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(28, 42, 36, .1); }
.catalog-card:hover::after { transform: scaleX(1); }
.catalog-body { position: relative; z-index: 2; display: flex; flex-direction: column; gap: 8px; padding: 22px 22px 24px; min-height: 230px; }
.catalog-card.has-photo .catalog-body strong,
.catalog-card.has-photo .catalog-body .more { color: white; }
.catalog-card.has-photo .catalog-body em { color: rgba(255, 255, 255, .86); }
.catalog-card.has-photo .catalog-body .num { color: #d7ebe3; }
.catalog-card.has-photo::after { background: white; }
.catalog-body .num {
    margin: 0 0 8px;
    font-size: 13px;
    letter-spacing: .16em;
    color: var(--sage);
}
.catalog-body strong { font-size: 26px; letter-spacing: -0.04em; color: var(--ink-strong); }
.catalog-body em { font-style: normal; color: var(--muted); font-size: 15px; line-height: 1.45; max-width: 28ch; }
.catalog-body .more { margin-top: auto; font-weight: 700; color: var(--sage-deep); }
.catalog-body .more::after { content: " →"; }
.stage {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(220px, .7fr);
    gap: 28px;
    align-items: end;
    min-height: 320px;
    background: #1c2824;
    color: #e7f0eb;
    padding: 36px;
}
.stage-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .42; }
.stage > div, .stage-index { position: relative; z-index: 1; }
.stage .kicker { color: #b7d0c4; }
.stage h3 { margin: 0 0 10px; max-width: 16ch; font-size: clamp(28px, 3vw, 40px); color: white; }
.stage p { margin: 0 0 16px; max-width: 42ch; color: #c5d9d0; }
.stage > div > a { color: white; font-weight: 700; border-bottom: 1px solid rgba(255,255,255,.5); text-decoration: none; }
.stage-index { display: grid; gap: 2px; }
.stage-index a {
    display: flex;
    gap: 12px;
    align-items: baseline;
    color: #d7e6df;
    text-decoration: none;
    padding: 6px 0;
    border-top: 1px solid rgba(255,255,255,.08);
    font-weight: 600;
}
.stage-index a:hover { color: white; }
.stage-index span { color: #8fbfae; font-size: 12px; letter-spacing: .08em; }
.empty-row {
    min-height: 120px;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 24px;
    border: 1px solid var(--line);
    background: white;
    color: var(--muted);
}
.desk-set { border: 0; margin: 0; padding: 0; display: grid; gap: 12px; }
.desk-set legend { padding: 0; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; font-size: 12px; color: var(--sage-deep); }
.desk-grid .span-2 { grid-column: 1 / -1; }

.hero-pills {
    position: absolute;
    z-index: 3;
    left: 16px;
    right: 16px;
    bottom: 22px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}
.hero-pills button {
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(16, 24, 21, 0.4);
    color: white;
    border-radius: 999px;
    padding: 8px 14px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
}
.hero-pills button.is-active { background: white; color: var(--sage-ink); border-color: white; }

.marquee { overflow: hidden; background: #eef4f1; border-bottom: 1px solid var(--line); }
.marquee-track { display: flex; width: max-content; animation: ticker 32s linear infinite; padding: 12px 0; }
.marquee-track span { padding: 0 22px; font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sage-ink); }
.marquee-track span::before { content: ""; display: inline-block; width: 6px; height: 6px; margin-right: 22px; border-radius: 50%; background: var(--sage); transform: translateY(-1px); }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes ticker { to { transform: translateX(-50%); } }

.desk { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 36px; align-items: start; }
.desk-form { display: grid; gap: 14px; background: white; border: 1px solid var(--line); padding: 20px; }
.desk-chips { display: none; flex-wrap: wrap; gap: 8px; }
.js .desk-chips { display: flex; }
.js .desk-select { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.chip { border: 1px solid var(--line); background: white; border-radius: 999px; padding: 8px 12px; font-weight: 700; font-size: 14px; cursor: pointer; }
.chip.is-on, .chip:hover { background: var(--sage-ink); color: white; border-color: var(--sage-ink); }
.desk-hint { margin: 0; color: var(--sage-deep); font-weight: 600; }
.desk-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.desk-form .field:has(textarea) { grid-column: 1 / -1; }
.chain { display: flex; flex-wrap: wrap; gap: 8px 10px; justify-content: center; margin: -8px 0 22px; color: var(--sage-deep); font-weight: 700; }
.switcher { display: grid; grid-template-columns: 280px 1fr; gap: 16px; align-items: start; }
.switch-list { display: grid; background: white; border: 1px solid var(--line); }
.switch-list button { display: flex; gap: 10px; align-items: center; width: 100%; text-align: left; border: 0; border-bottom: 1px solid var(--line); background: transparent; padding: 14px 14px; font-weight: 700; cursor: pointer; }
.switch-list button:last-child { border-bottom: 0; }
.switch-list button span { color: var(--sage); letter-spacing: 0.08em; font-size: 12px; }
.switch-list button.is-on { background: var(--sage-ink); color: white; }
.switch-list button.is-on span { color: #d5e6dc; }
.switch-panel { background: white; border: 1px solid var(--line); padding: 28px; min-height: 240px; }
.switch-panel h3 { font-size: 28px; margin-bottom: 10px; }
.switch-panel p { color: var(--muted); }

.flashes { padding-top: 16px; }
.flash { padding: 12px 14px; border: 1px solid var(--line); }
.flash-ok { background: #eef5f1; color: var(--ok); }
.flash-error { background: #f8eeee; color: var(--danger); }

.dock {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 40;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.dock-btn {
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--sage-deep);
    box-shadow: 0 10px 24px rgba(20, 32, 28, .2);
    text-decoration: none;
    cursor: pointer;
}
.dock-btn svg { width: 24px; height: 24px; display: block; }
.dock-phone { background: #2f6fed; }
.dock-wa { background: #25d366; }
.dock-top {
    opacity: 0;
    pointer-events: none;
    transform: translateY(6px);
    transition: opacity .2s ease, transform .2s ease;
}
.dock-top.is-on { opacity: 1; pointer-events: auto; transform: none; }
.dock-phone:hover,
.dock-wa:hover,
.dock-top.is-on:hover { color: #fff; transform: translateY(-2px); }

@media (max-width: 980px) {
    .section-head, .split, .layout-2, .footer-grid, .cta-row, .stage, .close-band, .about-split, .reach-cards, .reach-grid, .sheet, .demand { grid-template-columns: 1fr; }
    .demand-visual div { min-height: 280px; }
    .page-hero.has-photo { min-height: 300px; }
    .close-photo { height: 280px; min-height: 0; }
    .close-panel { padding: 40px 22px 48px; }
    .about-photo { height: 280px; min-height: 0; }
    .footer-nav, .footer-reach { grid-template-columns: 1fr 1fr; }
    .hero-slider { height: 460px; min-height: 420px; }
    .hero-shade { background: linear-gradient(180deg, rgba(16, 24, 21, 0.2) 0%, rgba(16, 24, 21, 0.78) 100%); }
    .hero-prev { left: 12px; }
    .hero-next { right: 12px; }
    .cards-3, .cards-4, .steps, .band-grid, .team-grid, .news-grid, .gallery-grid { grid-template-columns: 1fr 1fr; }
    .band-item + .band-item { border-left: 0; padding-left: 0; border-top: 1px solid var(--line); }
    .header-phone { display: none; }
    .logo-wall, .tiles, .shots { grid-template-columns: 1fr 1fr; }
    .flow, .livebar-row, .group-rail, .desk, .switcher, .desk-grid, .catalog { grid-template-columns: 1fr 1fr; }
    .section-line { align-items: flex-start; flex-direction: column; }
    .livebar a, .livebar span { border-left: 0; border-top: 1px solid rgba(255, 255, 255, 0.12); }
    .nav-toggle { display: inline-flex; }
    .nav {
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        background: white;
        border-bottom: 1px solid var(--line);
        flex-direction: column;
        align-items: stretch;
        padding: 8px 20px 16px;
    }
    .nav.is-open { display: flex; }
    .sub { position: static; display: block; border: 0; box-shadow: none; padding: 0 0 8px 12px; }
    .sub .sub { left: auto; top: auto; padding-left: 12px; }
    .site-header { position: sticky; }
    .header-row { position: relative; }
}

@media (max-width: 640px) {
    .wrap { width: min(var(--max), calc(100% - 28px)); }
    .cards-3, .cards-4, .steps, .band-grid, .team-grid, .news-grid, .gallery-grid, .logo-wall, .tiles, .shots, .flow, .group-rail, .catalog, .livebar-row, .desk-grid { grid-template-columns: 1fr; }
    .close-side { grid-template-columns: 1fr; }
    .topbar-row { flex-direction: column; gap: 4px; }
    .hero-slider { min-height: 520px; }
    .hero-copy { padding-bottom: 72px; }
    .section { padding: 56px 0; }
    .footer-bottom { flex-direction: column; }
    .footer-reach { grid-template-columns: 1fr; }
    .form-row, .search-line { grid-template-columns: 1fr; flex-direction: column; }
    .reach-map { height: 260px; }
    .dock { right: 12px; bottom: 12px; }
    .dock-btn { width: 46px; height: 46px; }
}

@media (prefers-reduced-motion: reduce) {
    .hero-slide.is-active .hero-photo,
    .hero-dots button.is-active::after,
    .marquee-track,
    .shot img,
    .btn,
    .tile,
    .js .rise { animation: none; transition: none; transform: none; opacity: 1; }
}
