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

:root {
    --bg: #F6F5F1;
    --card: #FFFFFF;
    --ink: #1A1C16;
    --mute: #50584A;
    --line: #E2DDD4;
    --line-2: #C9C2B6;
    --green: #3F5A1C;
    --green-2: #54762A;
    --green-dark: #2A3A14;
    --green-rgb: 63, 90, 28;
    --lime: #C5E6A0;
    --mint: #E8EDE0;
    --sipp: #536A26;
    --prom: #93A5B3;
    --err: #B42318;
    --header: 72px;
    --font: "Manrope", system-ui, sans-serif;
    --band: linear-gradient(165deg, var(--green) 0%, var(--green-dark) 100%);
}

html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--ink);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea { font-family: inherit; }
:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; }

.wrap { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }

.skip-link {
    position: absolute; left: 16px; top: -40px; z-index: 200;
    background: var(--green); color: #fff; padding: 8px 12px; border-radius: 8px;
}
.skip-link:focus { top: 12px; }

.site-header {
    position: sticky; top: 0; z-index: 50; height: var(--header);
    background: rgba(246, 245, 241, 0.94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid transparent;
}
.site-header.is-scrolled { border-bottom-color: var(--line); }
.header-inner {
    height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); flex-shrink: 0; }
.logo img { width: 48px; height: 48px; object-fit: contain; flex-shrink: 0; display: block; }
.logo-text { display: flex; flex-direction: column; justify-content: center; gap: 5px; line-height: 1; }
.logo-text strong {
    display: flex;
    align-items: baseline;
    gap: 0.5em;
    font-weight: 700;
    letter-spacing: 0.08em;
    font-size: 1.02rem;
    font-style: normal;
    text-transform: uppercase;
}
.logo-sipp { color: var(--sipp); }
.logo-prom { color: var(--prom); }
.logo-text em {
    font-style: normal;
    font-size: 0.56rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #6A6A6A;
}

.nav-links { display: flex; align-items: center; gap: 18px; }
.nav-links a { text-decoration: none; font-size: 0.9rem; font-weight: 600; color: var(--mute); }
.nav-links a:hover { color: var(--ink); }

.burger-btn {
    display: none; flex-direction: column; justify-content: center; gap: 5px;
    width: 44px; height: 44px; border: 0; background: none; cursor: pointer;
}
.burger-btn span { display: block; width: 18px; height: 2px; background: var(--ink); border-radius: 2px; transition: 0.2s; }
.burger-btn.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger-btn.active span:nth-child(2) { opacity: 0; }
.burger-btn.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.btn {
    display: inline-flex; align-items: center; justify-content: center;
    min-height: 52px; padding: 0 24px; border-radius: 10px;
    background: var(--green); color: #fff; text-decoration: none; font-weight: 600;
    border: 0; cursor: pointer; font-size: 1rem;
    transition: background 0.15s;
}
.btn:hover { background: var(--green-2); color: #fff; }
.btn:disabled { opacity: 0.72; cursor: wait; }
.btn-small { min-height: 42px; padding: 0 16px; font-size: 0.9rem; border-radius: 8px; }
.btn-light { background: #fff; color: var(--ink); box-shadow: inset 0 0 0 1px var(--line); }
.btn-light:hover { background: #fff; color: var(--ink); }
.btn-ghost {
    background: transparent;
    color: var(--ink);
    box-shadow: inset 0 0 0 1px var(--line-2);
    min-height: 42px;
    padding: 0 16px;
    font-size: 0.9rem;
}
.btn-ghost:hover { background: #fff; color: var(--ink); }
.btn-submit { width: 100%; min-height: 54px; }

.hero {
    display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 48px; align-items: center; padding: 36px 0 40px;
}
.badge {
    display: inline-block; color: var(--green); font-size: 0.82rem; font-weight: 700;
    letter-spacing: 0.02em; margin-bottom: 14px;
}
.hero h1 {
    font-size: clamp(2rem, 3.8vw, 3.15rem);
    line-height: 1.12; letter-spacing: -0.03em; font-weight: 800;
}
.hero .lead { margin: 16px 0 28px; max-width: 34em; }
.hero-photo {
    position: relative;
    margin: 0;
    aspect-ratio: 4 / 3;
    background: var(--bg);
    border-radius: 20px;
    overflow: hidden;
}
.hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 48%;
}
.hero-photo::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 42%;
    background: linear-gradient(transparent, var(--bg) 72%);
    pointer-events: none;
}
.block h2, .industry h2, .about h2, .plant h2, .service h2, .request h2, .request-intro h2, .support h2, .map-section h2, .lineup-copy h2 {
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    line-height: 1.15; letter-spacing: -0.03em; font-weight: 800;
    overflow-wrap: break-word;
}
.lead, .sub { color: var(--mute); margin: 16px 0 28px; font-size: 1.08rem; max-width: 42em; line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.proof {
    background:
        radial-gradient(circle at 100% 0%, color-mix(in srgb, var(--lime) 16%, transparent), transparent 42%),
        var(--band);
    padding: 40px 0 36px;
}
.facts {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0 36px;
    list-style: none;
}
.facts li {
    position: relative;
    min-width: 0;
}
.facts li + li::after {
    content: "";
    position: absolute;
    left: -18px;
    top: 6px;
    bottom: 6px;
    width: 1px;
    background: rgba(255, 255, 255, 0.14);
}
.facts li::before {
    content: "";
    display: block;
    width: 18px;
    height: 2px;
    margin-bottom: 14px;
    background: var(--lime);
}
.facts strong {
    display: flex;
    align-items: flex-end;
    min-height: 3rem;
    color: #fff;
    font-size: clamp(1.7rem, 2.2vw, 2.05rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 0.95;
    margin-bottom: 8px;
    font-variant-numeric: tabular-nums;
}
.facts-num strong {
    font-size: clamp(2.35rem, 3.2vw, 3rem);
    letter-spacing: -0.05em;
    line-height: 0.9;
}
.facts span {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.4;
}

.lineup-band { padding: 72px 0 0; }
.lineup {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 40px;
    align-items: center;
}
.lineup-copy .sub { margin-bottom: 20px; }
.lineup-tags {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}
.lineup-tags li {
    padding: 8px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--mute);
}
.can-stage {
    position: relative;
    margin: 0;
    aspect-ratio: 4 / 3;
    background: var(--bg);
    border-radius: 20px;
    overflow: hidden;
}
.can-stage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 42%;
}
.can-stage figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    padding: 36px 22px 14px;
    background: linear-gradient(transparent, var(--bg) 72%);
    color: var(--mute);
    font-size: 0.86rem;
    font-weight: 600;
    text-align: center;
}

.industry {
    display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px;
    align-items: start; padding: 72px 0 0;
}
.industry p { color: var(--mute); margin-top: 14px; }
.goals { list-style: none; }
.goals li {
    padding: 16px 0; border-bottom: 1px solid var(--line);
    font-weight: 600; line-height: 1.4;
}
.tabs {
    display: flex; flex-wrap: wrap; gap: 0; margin: 8px 0 24px;
    border-bottom: 1px solid var(--line);
}
.tabs button {
    background: none; border: 0; border-bottom: 2px solid transparent;
    padding: 14px 4px 14px 0; margin-right: 28px; cursor: pointer;
    font: inherit; font-weight: 700; color: var(--mute);
}
.tabs button.is-active { color: var(--ink); border-bottom-color: var(--green); }
.tab-panel { padding: 8px 0 12px; }
.tab-panel > p { color: var(--mute); max-width: 46em; margin-bottom: 18px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.chips span {
    display: inline-flex; align-items: center;
    padding: 8px 14px; border: 1px solid var(--line); border-radius: 999px;
    background: #fff; font-size: 0.9rem; font-weight: 600;
}
.cycle { list-style: none; display: grid; gap: 0; }
.cycle li {
    padding: 16px 0; border-bottom: 1px solid var(--line); color: var(--mute);
}
.cycle b { display: block; color: var(--ink); margin-bottom: 4px; font-size: 1.05rem; }

.about {
    display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
    align-items: center; padding: 72px 0 0;
}
.about p { color: var(--mute); margin-top: 12px; }

.plant, .service { padding: 72px 0 0; }
.plant-head, .service-head { max-width: 42em; margin-bottom: 8px; }
.plant-bento {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}
.plant-card {
    grid-column: span 2;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 24px 22px 22px;
    min-height: 100%;
}
.plant-card-wide,
.plant-card-featured { grid-column: span 3; }
.plant-card-featured {
    background:
        radial-gradient(circle at 100% 0%, color-mix(in srgb, var(--lime) 18%, transparent), transparent 42%),
        var(--band);
    border: 0;
    color: #fff;
}
.plant-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 24px;
    padding: 0 8px;
    border-radius: 999px;
    background: var(--mint);
    color: var(--green);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
}
.plant-card-featured .plant-num {
    background: rgba(255, 255, 255, 0.12);
    color: var(--lime);
}
.plant-card h3 {
    font-size: 1.12rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 12px 0 8px;
}
.plant-card p { color: var(--mute); font-size: 0.95rem; line-height: 1.5; }
.plant-card-featured p { color: rgba(255, 255, 255, 0.82); }
.plant-specs {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}
.plant-specs li {
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--lime);
    font-size: 0.78rem;
    font-weight: 700;
}
.plant-quote {
    margin: 16px 0 0;
    padding: 26px 28px;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 16px;
    border-left: 4px solid var(--green);
}
.plant-quote p {
    font-size: clamp(1.15rem, 2.2vw, 1.45rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.35;
    max-width: 22em;
}
.plant-flow {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 16px;
    counter-reset: plant-step;
}
.plant-flow li {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 20px 18px 18px;
    color: var(--mute);
    font-size: 0.92rem;
}
.plant-flow li::before {
    counter-increment: plant-step;
    content: counter(plant-step, decimal-leading-zero);
    display: block;
    margin-bottom: 10px;
    color: var(--green);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
}
.plant-flow b {
    display: block;
    color: var(--ink);
    font-size: 1.02rem;
    margin-bottom: 6px;
}
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.service-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 26px 22px 24px;
}
.service-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--mint);
    color: var(--green);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}
.service-card h3 {
    font-size: 1.12rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 14px 0 8px;
}
.service-card p { color: var(--mute); font-size: 0.95rem; line-height: 1.5; }

.request-band { padding: 72px 0 0; }
.request-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 18px 48px rgba(var(--green-rgb), 0.08);
}
.request-intro {
    display: flex;
    flex-direction: column;
    padding: 40px 36px 36px;
    background:
        radial-gradient(circle at 0% 100%, color-mix(in srgb, var(--lime) 16%, transparent), transparent 42%),
        var(--band);
    color: #fff;
}
.request-intro .badge {
    display: inline-flex;
    align-self: flex-start;
    margin-bottom: 16px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--lime);
    font-size: 0.75rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.request-intro h2 { color: #fff; }
.request-intro .sub {
    color: rgba(255, 255, 255, 0.78);
    margin: 14px 0 28px;
    max-width: 28em;
}
.notes { list-style: none; display: grid; gap: 4px; }
.notes li {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 12px;
    align-items: start;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.78);
}
.notes li:last-child { border-bottom: 0; }
.note-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--lime);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}
.notes strong {
    display: block;
    color: #fff;
    font-size: 1rem;
    margin-bottom: 4px;
}
.notes li div span { font-size: 0.92rem; line-height: 1.4; }
.request-hotline {
    margin-top: auto;
    padding-top: 28px;
}
.request-hotline a {
    display: block;
    color: #fff;
    text-decoration: none;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    font-variant-numeric: tabular-nums;
}
.request-hotline a:hover { color: var(--lime); }
.request-hotline span {
    display: block;
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.88rem;
}
.request-hotline .request-max {
    margin-top: 14px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0;
}

.form-card { padding: 36px 32px 28px; background: var(--card); }
.form-head { margin-bottom: 22px; }
.form-head h3 { font-size: 1.2rem; font-weight: 800; letter-spacing: -0.02em; }
.form-head p { color: var(--mute); font-size: 0.9rem; margin-top: 4px; }
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 14px;
}
.field { min-width: 0; }
.field-wide { grid-column: 1 / -1; }
.field label { display: block; font-size: 0.82rem; font-weight: 700; margin-bottom: 6px; }
.field .req { color: var(--green); }
.field input, .field textarea {
    width: 100%;
    border: 1px solid var(--line);
    background: var(--bg);
    border-radius: 10px;
    padding: 13px 14px;
    font-size: 16px;
    outline: none;
    color: var(--ink);
    transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
}
.field textarea { min-height: 96px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--mute); opacity: 0.72; }
.field input:hover, .field textarea:hover { border-color: var(--line-2); }
.field input:focus, .field textarea:focus {
    border-color: var(--green);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(var(--green-rgb), 0.12);
}
.field.error input, .field.error textarea {
    border-color: var(--err);
    background: #FFF8F7;
    box-shadow: 0 0 0 3px rgba(180, 35, 24, 0.08);
}
.error-message { display: none; color: var(--err); font-size: 0.78rem; margin-top: 6px; }
.field.error .error-message { display: block; }
.field-check {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin: 18px 0 16px;
}
.field-check input {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    margin-top: 1px;
    flex-shrink: 0;
    border: 1.5px solid var(--line-2);
    border-radius: 5px;
    background: #fff;
    cursor: pointer;
}
.field-check input:checked {
    background: var(--green) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23fff' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round' d='M3.5 8.5 6.5 11.5 12.5 4.5'/%3E%3C/svg%3E") center / 12px no-repeat;
    border-color: var(--green);
}
.field-check label { font-weight: 500; color: var(--mute); margin: 0; line-height: 1.4; }
.field-check a { text-decoration: underline; text-underline-offset: 2px; }
.field-check.error label { color: var(--err); }
.field-check.error input { border-color: var(--err); }
.form-hint {
    text-align: center;
    color: var(--mute);
    font-size: 0.82rem;
    margin-top: 10px;
}
.form-status { margin-top: 10px; min-height: 1.2em; text-align: center; font-weight: 600; }
.form-status.is-ok { color: var(--green); }
.form-status.is-error { color: var(--err); }

.map-section { padding: 72px 0 72px; }
.map-section .sub { max-width: 38em; }
.map-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.42fr) minmax(300px, 0.82fr);
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 18px 48px rgba(var(--green-rgb), 0.08);
    min-height: 560px;
}
.map-container {
    display: grid;
    min-height: 560px;
    background: var(--line);
}
.map-container iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 560px;
    border: 0;
}
.map-aside {
    display: flex;
    flex-direction: column;
    padding: 32px 28px 28px;
    background:
        radial-gradient(circle at 100% 0%, color-mix(in srgb, var(--lime) 22%, transparent), transparent 46%),
        #fff;
}
.map-address {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 14px;
    align-items: start;
    margin-bottom: 22px;
}
.map-pin {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--mint);
    color: var(--green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.map-address h3 {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--mute);
    font-weight: 700;
    margin-bottom: 6px;
}
.map-address p {
    font-size: 1.12rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.35;
    color: var(--ink);
}
.map-route { width: 100%; }
.map-open {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 12px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--green);
    text-decoration: none;
}
.map-open:hover { text-decoration: underline; }
.map-group {
    margin-top: 24px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
}
.map-group h4 {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--mute);
    font-weight: 700;
    margin-bottom: 12px;
}
.stop-list, .metro-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.stop-list li, .metro-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    line-height: 1.35;
    padding: 8px 10px;
    border-radius: 10px;
    background: var(--bg);
}
.stop-dist {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--green);
    background: var(--mint);
    padding: 2px 8px;
    border-radius: 99px;
    flex-shrink: 0;
}
.metro-line {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 800;
    text-align: center;
    line-height: 22px;
    color: #fff;
    flex-shrink: 0;
}
.metro-line.line-2 { background: #0066B3; }
.metro-line.line-5 { background: #D43D3D; }
.metro-dist { color: var(--mute); font-size: 0.8rem; margin-left: auto; white-space: nowrap; }
.map-transit-note {
    margin-top: 12px;
    font-size: 0.82rem;
    color: var(--mute);
    line-height: 1.45;
}

.site-footer {
    background:
        radial-gradient(circle at 0% 100%, rgba(255, 255, 255, 0.06), transparent 42%),
        var(--band);
    color: rgba(255, 255, 255, 0.78);
    padding: 56px 0 48px;
}
.site-footer > .wrap::before {
    content: "";
    display: block;
    height: 1px;
    margin-bottom: 40px;
    background: rgba(255, 255, 255, 0.16);
}
.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) repeat(3, minmax(0, 0.9fr));
    gap: 40px 36px;
    align-items: start;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #fff;
    margin-bottom: 18px;
}
.footer-logo img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    flex-shrink: 0;
    display: block;
}
.footer-logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    line-height: 1;
}
.footer-logo-text strong {
    display: flex;
    align-items: baseline;
    gap: 0.5em;
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.08em;
    font-size: 1.02rem;
    text-transform: uppercase;
}
.footer-logo-text strong span:last-child { color: rgba(255, 255, 255, 0.72); }
.footer-logo-text em {
    font-style: normal;
    font-size: 0.56rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.48);
}
.footer-brand p {
    max-width: 32em;
    font-size: 0.95rem;
    line-height: 1.55;
    text-wrap: pretty;
}
.footer-col h2 {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.52);
    margin-bottom: 16px;
}
.footer-col h2::before {
    content: "";
    display: block;
    width: 18px;
    height: 1px;
    margin-bottom: 12px;
    background: rgba(255, 255, 255, 0.28);
}
.footer-col a,
.footer-col p,
.footer-col address {
    display: block;
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    font-style: normal;
    font-size: 0.95rem;
    line-height: 1.45;
    margin-bottom: 10px;
}
.footer-col a {
    transition: color 0.15s;
}
.footer-col a:hover { color: #fff; }
.footer-phone {
    color: #fff !important;
    font-size: 1.22rem !important;
    font-weight: 800;
    letter-spacing: -0.02em;
    font-variant-numeric: tabular-nums;
    margin-bottom: 4px !important;
}
.footer-note {
    display: block;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.8rem;
    line-height: 1.4;
    margin-bottom: 16px;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px 24px;
    flex-wrap: wrap;
    margin-top: 44px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
}
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: 8px 20px; }
.footer-bottom a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}
.footer-bottom a:hover { color: #fff; }

.mobile-bar { display: none; }

.chat-widget { position: fixed; right: 20px; bottom: 20px; z-index: 80; }
.chat-toggle-btn {
    width: 54px; height: 54px; border: 0; border-radius: 50%;
    background: var(--green); color: #fff; cursor: pointer; position: relative;
    display: flex; align-items: center; justify-content: center;
}
.notification-badge {
    display: none; position: absolute; top: -2px; right: -2px;
    min-width: 16px; height: 16px; border-radius: 99px; background: var(--err);
    color: #fff; font-size: 10px; font-weight: 700; align-items: center; justify-content: center;
}
.notification-badge.is-visible { display: flex; }
.chat-window {
    position: absolute; right: 0; bottom: 64px; width: 340px; max-width: calc(100vw - 32px);
    height: 460px; max-height: 70vh; background: #fff; border-radius: 18px;
    display: none; flex-direction: column; overflow: hidden; box-shadow: 0 16px 40px rgba(0,0,0,.12);
}
.chat-window.is-open { display: flex !important; }
.chat-header { background: var(--green); color: #fff; padding: 12px 14px; display: flex; justify-content: space-between; align-items: center; }
.chat-header-left { display: flex; gap: 10px; align-items: center; }
.chat-header-avatar { width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,.12); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.chat-header-avatar img { width: 28px; height: 28px; object-fit: contain; display: block; }
.chat-header-info h3 { font-size: 0.9rem; }
.chat-header-info p { font-size: 0.72rem; opacity: .8; }
.chat-header-info p.is-online { color: var(--lime); opacity: 1; }
.chat-header-close { width: 28px; height: 28px; border: 0; border-radius: 50%; background: rgba(255,255,255,.15); color: #fff; cursor: pointer; }
.chat-messages { flex: 1; padding: 12px; overflow: auto; background: var(--bg); display: flex; flex-direction: column; gap: 8px; }
.message { max-width: 85%; padding: 8px 12px; border-radius: 12px; font-size: 0.9rem; }
.message .time { display: block; font-size: 0.68rem; opacity: .55; margin-top: 4px; }
.message.user { align-self: flex-end; background: var(--green); color: #fff; }
.message.bot { align-self: flex-start; background: #fff; }
.typing-indicator { display: none; gap: 4px; padding: 10px; background: #fff; border-radius: 12px; align-self: flex-start; }
.typing-indicator.is-active { display: inline-flex; }
.typing-indicator span { width: 6px; height: 6px; border-radius: 50%; background: #bbb; }
.quick-replies { display: flex; gap: 6px; flex-wrap: wrap; padding: 8px 12px; }
.quick-reply-btn { border: 1px solid var(--line); background: #fff; border-radius: 999px; padding: 5px 10px; font-size: 0.75rem; cursor: pointer; }
.chat-input-area { display: flex; gap: 8px; padding: 10px; border-top: 1px solid var(--line); }
.chat-input-area textarea { flex: 1; border: 1px solid var(--line); border-radius: 10px; padding: 8px; font-size: 15px; resize: none; min-height: 40px; }
.chat-send-btn { width: 40px; height: 40px; border: 0; border-radius: 10px; background: var(--green); color: #fff; cursor: pointer; }

body.is-legal { overflow-x: hidden; }
body.is-legal .site-header { border-bottom-color: var(--line); }
body.is-legal .site-footer { padding: 0 0 48px; }
body.is-legal .site-footer > .wrap::before { display: none; }
.legal-footer-bottom { margin-top: 0; }

.legal-page {
    width: min(860px, calc(100% - 48px));
    margin: 28px auto 72px;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 48px 56px 56px;
}
.legal-kicker {
    color: var(--green);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.4;
    margin-bottom: 12px;
}
.legal-page h1 {
    font-size: clamp(1.7rem, 3vw, 2.35rem);
    line-height: 1.15;
    letter-spacing: -0.03em;
    font-weight: 800;
    margin: 0 0 16px;
}
.legal-lead {
    font-size: 1.05rem;
    color: var(--mute);
    max-width: 46em;
    margin-bottom: 24px;
}
.legal-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px 24px;
    padding: 18px 0;
    margin: 0 0 28px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.legal-meta div { min-width: 0; }
.legal-meta dt {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--mute);
    margin-bottom: 4px;
}
.legal-meta dd { font-weight: 600; }
.legal-toc {
    background: var(--mint);
    border-radius: 14px;
    padding: 22px 24px 20px;
    margin-bottom: 36px;
}
.legal-toc h2 {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--mute);
    margin: 0 0 12px;
}
.legal-toc ol {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 28px;
    counter-reset: toc;
}
.legal-toc li { counter-increment: toc; }
.legal-toc a {
    display: flex;
    gap: 10px;
    color: var(--ink);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.35;
    padding: 4px 0;
}
.legal-toc a::before {
    content: counter(toc, decimal-leading-zero);
    color: var(--green);
    font-variant-numeric: tabular-nums;
    flex-shrink: 0;
}
.legal-toc a:hover { color: var(--green); }
.legal-page section { margin-top: 32px; padding-top: 8px; scroll-margin-top: 88px; }
.legal-page h2 {
    font-size: 1.2rem;
    line-height: 1.3;
    margin: 0 0 14px;
    letter-spacing: -0.02em;
}
.legal-page h3 {
    font-size: 1.02rem;
    margin: 20px 0 8px;
}
.legal-page p, .legal-page li { margin-bottom: 10px; }
.legal-page p, .legal-page li, .legal-page dd { line-height: 1.6; overflow-wrap: break-word; }
.legal-page ul { padding-left: 1.2em; margin-bottom: 12px; }
.legal-page a {
    color: var(--green);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.legal-page .legal-back { display: none; }
.legal-card {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 22px 24px 10px;
    margin: 8px 0 18px;
}
.legal-card h3 { margin: 0 0 14px; }
.legal-requisites { display: grid; gap: 12px; }
.legal-requisites > div {
    display: grid;
    grid-template-columns: minmax(140px, 220px) minmax(0, 1fr);
    gap: 8px 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--line);
}
.legal-requisites > div:last-child { border-bottom: 0; }
.legal-requisites dt { color: var(--mute); font-size: 0.86rem; }
.legal-requisites dd { font-weight: 600; }

@media (max-width: 900px) {
    .burger-btn { display: flex; }
    .nav-links {
        display: none; position: absolute; top: var(--header); left: 0; right: 0;
        background: var(--bg); padding: 12px 24px 20px; flex-direction: column; align-items: stretch; gap: 0;
        border-bottom: 1px solid var(--line);
    }
    .nav-links.open { display: flex; }
    .nav-links a { padding: 12px 0; }
    .industry, .about, .request-panel, .map-panel, .hero, .lineup,
    .plant-bento, .service-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px 24px; }
    .footer-brand { grid-column: 1 / -1; }
    .plant-card, .plant-card-wide, .plant-card-featured { grid-column: auto; }
    .plant-flow { grid-template-columns: 1fr 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .request-intro { padding: 32px 28px 28px; }
    .form-card { padding: 28px 22px 22px; }
    .map-panel { min-height: 0; }
    .map-container,
    .map-container iframe { min-height: 340px; }
    .map-aside { padding: 26px 22px 22px; }
    .hero-photo,
    .can-stage { border-radius: 16px; }
    .facts {
        grid-template-columns: 1fr 1fr;
        gap: 28px 32px;
    }
    .facts li + li::after { display: none; }
    .legal-page { padding: 36px 28px 40px; }
    .legal-toc ol,
    .legal-meta { grid-template-columns: 1fr; }
    .legal-requisites > div { grid-template-columns: 1fr; gap: 4px; }
}

@media (max-width: 640px) {
    .wrap { width: calc(100% - 32px); }
    .hero { padding-top: 24px; }
    .block, .about, .plant, .service, .request-band, .industry, .lineup-band { padding-top: 48px; }
    .plant-flow { grid-template-columns: 1fr; }
    .mobile-bar {
        display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; position: fixed;
        left: 0; right: 0; bottom: 0; background: var(--green); z-index: 70;
    }
    .mobile-bar a { color: #fff; text-align: center; text-decoration: none; padding: 14px 4px 18px; font-weight: 700; font-size: 0.75rem; }
    .chat-widget { bottom: 70px; right: 14px; }
    .site-footer { padding: 44px 0 120px; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-brand { grid-column: auto; }
    .footer-phone { font-size: 1.12rem !important; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; }
    .proof { padding: 26px 0 24px; }
    .facts { gap: 22px 24px; }
    .facts strong { font-size: 1.45rem; }
    .facts-num strong { font-size: 2.15rem; }
    .can-stage figcaption {
        font-size: 0.8rem;
        padding: 32px 16px 14px;
        line-height: 1.4;
    }
    .legal-page {
        width: calc(100% - 32px);
        padding: 28px 20px 32px;
        border-radius: 16px;
        margin-top: 20px;
        margin-bottom: 48px;
    }
    body.is-legal .site-footer { padding: 0 0 36px; }
    .is-legal .logo-text { display: none; }
    .is-legal .legal-home {
        min-height: 38px;
        padding: 0 14px;
        font-size: 0.84rem;
        flex-shrink: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    * { transition: none !important; animation: none !important; }
}
