@font-face {
    font-family: "Manrope";
    src: url("../fonts/manrope-latin-400.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Manrope";
    src: url("../fonts/manrope-latin-600.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Manrope";
    src: url("../fonts/manrope-latin-700.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --color-primary: #16bfa0;
    --color-primary-dark: #0e8f78;
    --color-secondary: #ff4d59;
    --color-bg: #ffffff;
    --color-bg-soft: #f4fbf9;
    --color-bg-dark: #0c1717;
    --color-text: #111918;
    --color-text-soft: #60706d;
    --color-border: #dfe9e6;
    --container: 1280px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --shadow-soft: 0 12px 35px rgba(10, 40, 35, 0.08);
    --header-h: 96px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation: none !important; transition: none !important; }
}
html, body { margin: 0; padding: 0; }
html {
    scrollbar-width: thin;
    scrollbar-color: #243836 #eef2f1;
}
html::-webkit-scrollbar,
body::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}
html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track {
    background: #eef2f1;
}
html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb {
    background: #243836;
    border: 2px solid #eef2f1;
    border-radius: 999px;
}
html::-webkit-scrollbar-thumb:hover,
body::-webkit-scrollbar-thumb:hover {
    background: #0e8f78;
}
html::-webkit-scrollbar-corner,
body::-webkit-scrollbar-corner {
    background: #eef2f1;
}
body {
    font-family: "Manrope", "Inter", Arial, sans-serif;
    color: var(--color-text);
    background: var(--color-bg);
    font-size: 17px;
    line-height: 1.7;
    font-weight: 400;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { padding-left: 1.2rem; }
.container { width: min(100% - 48px, var(--container)); margin-inline: auto; }
.narrow { width: min(100%, 820px); }
.skip-link {
    position: absolute; left: -999px; top: 0; background: var(--color-primary); color: #fff; padding: 8px 16px; z-index: 1000;
}
.skip-link:focus { left: 12px; top: 12px; }

.site-header {
    position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.92);
    backdrop-filter: blur(12px); border-bottom: 1px solid transparent;
    transform: translateZ(0);
    backface-visibility: hidden;
}
.site-header.is-scrolled { border-bottom-color: var(--color-border); box-shadow: var(--shadow-soft); }
.header-inner { display: flex; align-items: center; gap: 24px; min-height: var(--header-h); }
.logo { flex-shrink: 0; }
.logo img { height: 64px; width: auto; }
.nav {
    display: grid;
    grid-template-columns: 90px 90px 88px 80px 140px 68px 80px;
    column-gap: 20px;
    align-items: center;
    margin-left: auto;
    flex: 0 0 auto;
    font-weight: 500;
}
.nav > a,
.nav > .nav-item > a {
    display: flex;
    justify-content: center;
    white-space: nowrap;
}
.nav a { padding: 8px 0; position: relative; }
.nav > a:hover,
.nav > .nav-item > a:hover { color: var(--color-primary-dark); }
.nav-item { position: relative; }
.nav-sub {
    display: none;
    position: absolute;
    top: calc(100% - 2px);
    left: 0;
    z-index: 60;
    min-width: 276px;
    padding: 8px;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    box-shadow: 0 16px 40px rgba(10, 40, 35, .12);
}
.nav-item:hover .nav-sub,
.nav-item:focus-within .nav-sub { display: grid; gap: 2px; }
.nav-sub a {
    display: block;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.35;
    color: var(--color-text);
    white-space: nowrap;
}
.nav-sub a:hover,
.nav-sub a:focus {
    background: var(--color-bg-soft);
    color: var(--color-primary-dark);
}
.header-tools { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.lang { position: relative; font-weight: 600; font-size: 14px; }
.header-tools .lang { width: 56px; flex-shrink: 0; }
.lang summary {
    list-style: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: 100%;
    min-height: 40px;
    user-select: none;
}
.lang summary::-webkit-details-marker { display: none; }
.lang summary::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    opacity: .65;
}
.lang[open] summary::after { transform: rotate(180deg); }
.lang-menu {
    position: absolute;
    top: calc(100% - 2px);
    right: 0;
    min-width: 92px;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-soft);
    padding: 8px;
    display: grid;
    gap: 2px;
    z-index: 60;
}
.lang-menu a { padding: 8px 12px; border-radius: 6px; }
.lang-menu a:link, .lang-menu a:visited { color: var(--color-text); }
.lang-menu a:hover, .lang-menu a:focus, .lang-menu a:active { color: var(--color-primary-dark); background: var(--color-bg-soft); }
.lang-menu a.is-active:link, .lang-menu a.is-active:visited,
.lang-menu a.is-active:hover, .lang-menu a.is-active:focus, .lang-menu a.is-active:active {
    color: var(--color-primary-dark);
}
.lang--stack { display: flex; gap: 12px; padding-top: 8px; }
.lang--stack a:link, .lang--stack a:visited { color: var(--color-text); }
.lang--stack a:hover, .lang--stack a:focus, .lang--stack a:active { color: var(--color-primary-dark); }
.lang--stack a.is-active:link, .lang--stack a.is-active:visited,
.lang--stack a.is-active:hover, .lang--stack a.is-active:focus, .lang--stack a.is-active:active {
    color: var(--color-primary-dark);
}
.menu-toggle { display: none; width: 42px; height: 42px; border: 0; background: none; }
.menu-toggle span { display: block; height: 2px; background: var(--color-text); margin: 6px 0; }
.mobile-menu { display: none; }

.btn, .btn-ghost, .btn-line, .btn-sm {
    display: inline-flex; align-items: center; justify-content: center;
    min-height: 48px; padding: 0 22px; border-radius: var(--radius-sm);
    background: var(--color-primary); color: #fff; font-weight: 600; border: 1px solid transparent;
}
.btn:hover { background: var(--color-primary-dark); }
.btn-ghost { background: transparent; border-color: #fff; color: #fff; }
.btn-line { background: transparent; color: var(--color-primary-dark); border-color: var(--color-primary); }
.btn-sm { min-height: 40px; padding: 0 16px; font-size: 14px; }
.header-tools .btn-sm { min-width: 128px; width: 128px; padding-left: 12px; padding-right: 12px; box-sizing: border-box; }

.hero {
    position: relative;
    width: 100%;
    height: min(86vh, 820px);
    display: grid;
    align-items: end;
    color: #fff;
    overflow: hidden;
    background: var(--color-bg-dark);
}
.hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background-color: var(--color-bg-dark);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 100%;
}
.hero .hero-media img,
.hero .hero-media video {
    position: absolute;
    inset: 0;
    display: block;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: fill;
    object-position: center center;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(12,23,23,.78) 10%, rgba(12,23,23,.28) 70%);
    pointer-events: none;
}
.hero-content { position: relative; z-index: 2; padding: 90px 0 100px; max-width: 860px; }
.hero h1 { font-size: clamp(38px, 6vw, 84px); line-height: 1.2; font-weight: 700; margin: 12px 0 20px; }
.lead { font-size: 1.15rem; max-width: 46rem; color: inherit; }
.eyebrow { letter-spacing: .12em; text-transform: uppercase; font-size: 13px; font-weight: 600; color: var(--color-primary); margin: 0 0 10px; }
.hero .eyebrow { color: #b7f3e6; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.hero-mobile-fallback { display: none; }
.hero-video { background: #0c1717; }
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.hero-slide.is-leaving { z-index: 1; }
.hero-slide.is-active {
    pointer-events: auto;
    z-index: 2;
}
.hero-slide .hero-media {
    opacity: 0;
    transition: none;
    transform: scale(1.035);
    will-change: opacity, filter;
}
.hero-slide.is-active .hero-media,
.hero-slide.is-leaving .hero-media {
    opacity: 1;
}
.hero-slide.is-active .hero-media {
    animation: heroIn 2.4s cubic-bezier(.38, .02, .2, 1) forwards;
}
.hero-slide.is-leaving .hero-media {
    animation: heroOut 2.4s cubic-bezier(.38, .02, .2, 1) forwards;
}
.hero-slide.is-active::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: #04090a;
    opacity: 0;
    animation: heroVeil 2.4s linear forwards;
}
@keyframes heroVeil {
    0% { opacity: 0; }
    38% { opacity: .94; }
    52% { opacity: .94; }
    100% { opacity: 0; }
}
@keyframes heroIn {
    0% { opacity: 0; filter: blur(14px) brightness(.5) saturate(.88); }
    36% { opacity: 0; }
    54% { opacity: 1; }
    100% { opacity: 1; filter: blur(0) brightness(1) saturate(1); }
}
@keyframes heroOut {
    0% { opacity: 1; filter: blur(0) brightness(1); }
    45% { filter: blur(8px) brightness(.34); }
    100% { opacity: 1; filter: blur(12px) brightness(.2); }
}
.hero-slide.is-entry::before { display: none; }
.hero-slide.is-entry .hero-media {
    animation: heroEntry 1.6s cubic-bezier(.22, .61, .36, 1) forwards;
}
@keyframes heroEntry {
    0% { opacity: 0; filter: blur(10px) brightness(.58); }
    100% { opacity: 1; filter: blur(0) brightness(1); }
}
.hero-slide.is-entry.is-animating .eyebrow { animation-delay: .3s; }
.hero-slide.is-entry.is-animating .eyebrow::after { animation-delay: .52s; }
.hero-slide.is-entry.is-animating .hero-word .hero-reveal__in { animation-delay: calc(var(--d, 0ms) - 1050ms); }
.hero-slide.is-entry.is-animating .lead .hero-reveal__in { animation-delay: calc(var(--lead-d, 1.6s) - 1050ms); }
.hero-slide.is-entry.is-animating .hero-actions { animation-delay: calc(var(--act-d, 2.3s) - 1050ms); }
.hero-slide.is-leaving .hero-content {
    animation: heroContentOut .5s cubic-bezier(.4, 0, .2, 1) forwards;
}
@keyframes heroContentOut {
    from { opacity: 1; transform: translate3d(0, 0, 0); }
    to { opacity: 0; transform: translate3d(0, -16px, 0); }
}
.hero[data-hero-slider] .hero-content { padding-bottom: 120px; }
.hero-slide .hero-content {
    height: 100%;
    display: grid;
    align-content: end;
}
.hero-slide .hero-title {
    font-size: clamp(38px, 6vw, 84px);
    line-height: 1.2;
    font-weight: 700;
    margin: 12px 0 20px;
}
.hero-reveal { overflow: visible; }
.lead {
    line-height: 1.55;
    padding-bottom: .2em;
}
.hero-word {
    display: inline-block;
    overflow: hidden;
    vertical-align: top;
    padding: .22em .04em .34em;
    margin: -.16em 0 -.14em;
}
.hero-reveal__in {
    display: block;
    transform: translate3d(0, 140%, 0);
}
.hero-word .hero-reveal__in { line-height: 1.12; }
.hero-slide .lead .hero-reveal__in {
    line-height: 1.55;
    padding-bottom: .15em;
    opacity: 0;
    transform: translate3d(0, 24px, 0);
}
.hero-slide.is-animating .hero-word .hero-reveal__in {
    animation: heroMask .9s cubic-bezier(.77, 0, .175, 1) var(--d, 0ms) forwards;
}
.hero-slide.is-animating .lead .hero-reveal__in {
    animation: heroLead .95s cubic-bezier(.16, 1, .3, 1) var(--lead-d, 1.6s) forwards;
}
.hero-slide .eyebrow {
    position: relative;
    padding-bottom: 10px;
    clip-path: inset(0 100% 0 0);
    letter-spacing: .28em;
}
.hero-slide.is-animating .eyebrow {
    animation: heroClip .7s cubic-bezier(.77, 0, .175, 1) 1.25s forwards;
}
.hero-slide .eyebrow::after {
    content: "";
    display: block;
    width: 42px;
    height: 1px;
    margin-top: 10px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left center;
}
.hero-slide.is-animating .eyebrow::after {
    animation: heroRule .4s cubic-bezier(.77, 0, .175, 1) 1.45s forwards;
}
.hero-slide .hero-actions {
    opacity: 0;
}
.hero-slide.is-animating .hero-actions {
    animation: heroFade .55s ease var(--act-d, 2.3s) forwards;
}
@keyframes heroMask {
    from { transform: translate3d(0, 140%, 0); }
    to { transform: translate3d(0, 0, 0); }
}
@keyframes heroLead {
    from { opacity: 0; transform: translate3d(0, 22px, 0); }
    to { opacity: 1; transform: translate3d(0, 0, 0); }
}
@keyframes heroClip {
    from { clip-path: inset(0 100% 0 0); letter-spacing: .28em; }
    to { clip-path: inset(0 0 0 0); letter-spacing: .12em; }
}
@keyframes heroRule {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}
@keyframes heroFade {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes heroKen {
    from { transform: scale(1.01); }
    to { transform: scale(1.14); }
}
.hero-slide .hero-media img {
    transform: scale(1.01);
    will-change: transform;
}
.hero-slide:nth-child(odd) .hero-media img { transform-origin: 56% 44%; }
.hero-slide:nth-child(even) .hero-media img { transform-origin: 44% 56%; }
.hero-slide.is-live .hero-media img {
    animation: heroKen 13s linear both;
}
@media (prefers-reduced-motion: reduce) {
    .hero-reveal__in { transform: none !important; opacity: 1 !important; }
    .hero-slide .lead .hero-reveal__in { opacity: 1 !important; }
    .hero-slide .eyebrow {
        clip-path: none !important;
        letter-spacing: .12em !important;
    }
    .hero-slide .eyebrow::after { transform: none !important; }
    .hero-slide .hero-actions { opacity: 1 !important; }
    .hero-slide .hero-media,
    .hero-slide .hero-media img {
        transform: none !important;
        animation: none !important;
        clip-path: none !important;
    }
    .hero-slide .hero-media { filter: none !important; }
    .hero-slide.is-active::before { display: none; }
    [data-reveal] { opacity: 1 !important; transform: none !important; }
    .hero-slide:not(.is-active) .hero-content { visibility: hidden; }
    .cta-band.is-on .cta-band__shot { animation: none !important; }
    .cta-band__shot { opacity: 0; transform: none !important; }
    .cta-band__shot:first-child { opacity: 1; }
    .cta-band__video { display: none; }
}
.hero-controls {
    position: absolute;
    z-index: 3;
    left: 0;
    right: 0;
    bottom: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    pointer-events: none;
}
.hero-controls > * { pointer-events: auto; }
.hero-dots { display: flex; gap: 8px; align-items: center; }
.hero-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 99px;
    background: rgba(255,255,255,.4);
    cursor: pointer;
}
.hero-dot.is-active { width: 28px; background: #fff; }
.hero-arrow {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,.45);
    border-radius: 50%;
    background: rgba(12,23,23,.35);
    color: #fff;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
}
.hero-arrow:hover { background: rgba(12,23,23,.6); }

.section { padding-block: 100px; }
.section-soft { background: var(--color-bg-soft); }
.section-heading { max-width: 100%; margin-bottom: 48px; }
.section-heading h2, .page-hero h1, .corp-hub h1, .contact-hub h1, h2, h3 { font-weight: 650; line-height: 1.2; }
.section-heading h2, .page-hero h1, .corp-hub h1, .contact-hub h1 { font-size: clamp(32px, 4vw, 52px); margin: 0 0 12px; }
.section-more { margin-top: 36px; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.media-frame {
    width: 100%;
    max-height: 520px;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--color-bg-soft);
    line-height: 0;
}
.media-frame img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: contain;
    object-position: center;
}
.card-grid { display: grid; gap: 24px; }
.card-grid.two { grid-template-columns: repeat(2, 1fr); }
.card-grid.three { grid-template-columns: repeat(3, 1fr); }
.card-grid.four { grid-template-columns: repeat(4, 1fr); }
.stat-card, .why-card, .text-card, .machine-card, .media-card {
    background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-md);
    overflow: hidden; transition: transform .25s ease, box-shadow .25s ease;
}
.stat-card, .why-card, .text-card { padding: 28px; }
.stat-card:hover, .media-card:hover, .machine-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.stat-card h3 { font-size: 1.35rem; margin-top: 0; color: var(--color-primary-dark); }
.media-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.media-card__image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 2;
    background: #0c1717;
    display: grid;
    place-items: center;
}
.media-card__image img {
    display: block;
    object-position: center;
}
.media-card__fill {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: cover;
    filter: blur(22px) saturate(1.05);
    transform: scale(1.16);
    pointer-events: none;
    z-index: 0;
}
.media-card__photo {
    position: relative;
    z-index: 1;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    background: transparent;
}
.machine-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.machine-card__image {
    overflow: hidden;
    aspect-ratio: 448 / 462;
    background: #f3f5f6;
    display: grid;
    place-items: center;
}
.machine-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: contain;
    object-position: center;
}
.media-card__body, .machine-card > div { padding: 22px; }
.media-card__body { flex: 1; }
.media-card__body span { color: var(--color-secondary); font-weight: 600; font-size: 14px; }
.process { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; counter-reset: step; }
.process li { border-top: 2px solid var(--color-primary); padding-top: 16px; }
.process li strong { display: block; margin-bottom: 8px; }
.gallery-strip, .gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.gallery-tile { padding: 0; border: 0; background: none; position: relative; overflow: hidden; cursor: pointer; }
.gallery-tile img { width: 100%; height: 220px; object-fit: cover; }
.gallery-tile .play {
    position: absolute; inset: auto 16px 16px auto; background: var(--color-secondary); color: #fff;
    padding: 6px 10px; border-radius: 99px; font-size: 12px; font-weight: 700;
}
.cta-band {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: var(--color-bg-dark);
    color: #fff;
    padding: 96px 0;
    text-align: center;
}
.cta-band__media {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}
.cta-band__shot,
.cta-band__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-size: cover;
    background-position: center;
}
.cta-band__shot {
    opacity: 0;
    transform: scale(1.06);
}
.cta-band__shot:first-child { opacity: 1; }
.cta-band.is-on .cta-band__shot {
    animation: ctaFilm 22s linear infinite;
    animation-delay: calc(var(--i, 0) * 7s);
}
.cta-band.is-on .cta-band__shot:only-child {
    opacity: 1;
    animation: ctaDrift 18s ease-in-out infinite alternate;
}
.cta-band__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(8, 17, 17, .42) 0%, rgba(8, 17, 17, .72) 48%, rgba(8, 17, 17, .82) 100%),
        radial-gradient(ellipse at 50% 40%, rgba(22, 191, 160, .16), transparent 58%);
}
.cta-band__body { position: relative; z-index: 2; }
.cta-band h2 { font-size: clamp(28px, 4vw, 48px); margin-bottom: 12px; }
.cta-band p { margin: 0 auto 28px; max-width: 36rem; color: #c9d8d4; }
.cta-band .btn:link, .cta-band .btn:visited, .cta-band .btn:hover, .cta-band .btn:focus, .cta-band .btn:active { color: #fff; }
.cta-band__shot--mobile { display: none; }
@keyframes ctaFilm {
    0% { opacity: 0; transform: scale(1.05); }
    8% { opacity: 1; }
    26% { opacity: 1; transform: scale(1.14); }
    34% { opacity: 0; transform: scale(1.16); }
    100% { opacity: 0; transform: scale(1.16); }
}
@keyframes ctaDrift {
    from { transform: scale(1.04); }
    to { transform: scale(1.12); }
}
.page-hero { padding: 40px 0 48px; background: linear-gradient(180deg, var(--color-bg-soft) 0%, #fff 100%); }
.page-hero--with-cover { padding-bottom: 48px; background: var(--color-bg-soft); }
.page-hero .lead, .corp-hub .lead, .contact-hub .lead { color: var(--color-text-soft); margin: 0; }
.page-hero--with-cover .lead { margin-bottom: 8px; }
.page-hero .breadcrumb, .corp-hub .breadcrumb, .contact-hub .breadcrumb { margin-bottom: 22px; }
.breadcrumb a:link, .breadcrumb a:visited { color: var(--color-text-soft); }
.breadcrumb a:hover, .breadcrumb a:focus, .breadcrumb a:active { color: var(--color-primary-dark); }
.corp-hub {
    padding: 40px 0 72px;
    background: linear-gradient(180deg, var(--color-bg-soft) 0%, var(--color-bg-soft) 38%, #fff 100%);
}
.corp-hub__intro { max-width: 40rem; margin-bottom: 36px; }
.corp-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; align-items: stretch; }
.corp-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    min-height: 100%;
    transition: transform .25s ease, box-shadow .25s ease;
}
.corp-card:link, .corp-card:visited { color: var(--color-text); }
.corp-card:hover, .corp-card:focus, .corp-card:active { color: var(--color-text); }
.corp-card:hover, .corp-card:focus-visible { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.corp-card:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 3px; }
.corp-card__media {
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #0c1717;
}
.corp-card__media img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .45s ease;
}
.corp-card:hover .corp-card__media img, .corp-card:focus-visible .corp-card__media img { transform: scale(1.04); }
.corp-card--brand .corp-card__media img { object-position: center bottom; }
.corp-card--contain .corp-card__media { background: #fff; }
.corp-card--contain .corp-card__media img {
    object-fit: cover;
    object-position: center;
    background: #fff;
}
.corp-card__body { display: flex; flex-direction: column; flex: 1; padding: 18px 16px 20px; }
.corp-card__index {
    display: block;
    margin: 0 0 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .14em;
}
.corp-card:link .corp-card__index,
.corp-card:visited .corp-card__index,
.corp-card:hover .corp-card__index,
.corp-card:focus .corp-card__index,
.corp-card:active .corp-card__index { color: var(--color-primary-dark); }
.corp-card__body h2 {
    margin: 0 0 10px;
    font-size: clamp(17px, 1.35vw, 20px);
    min-height: 2.6em;
    line-height: 1.25;
}
.corp-card__body p {
    margin: 0 0 20px;
    color: var(--color-text-soft);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.corp-card__more {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
}
.corp-card__more::after { content: "→"; transition: transform .2s ease; }
.corp-card:link .corp-card__more, .corp-card:visited .corp-card__more { color: var(--color-secondary); }
.corp-card:hover .corp-card__more, .corp-card:focus .corp-card__more, .corp-card:active .corp-card__more { color: var(--color-primary-dark); }
.corp-card:hover .corp-card__more::after, .corp-card:focus-visible .corp-card__more::after { transform: translateX(4px); }
.corp-highlights { padding-block: 72px; }
.corp-highlights .section-heading { margin-bottom: 36px; }
.corp-highlights .section-heading h2 { font-size: clamp(26px, 3vw, 36px); }
.corp-highlights .stat-card { height: 100%; }
.page-cover-section { padding: 0 0 8px; background: var(--color-bg-soft); }
.page-cover-section--bleed {
    padding: 0;
    background: #fff;
}
.page-cover {
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: var(--color-bg-dark);
    line-height: 0;
}
.page-cover-section--bleed .page-cover {
    border-radius: 0;
}
.page-cover img {
    display: block;
    width: 100%;
    height: 400px;
    max-width: none;
    object-fit: cover;
    object-position: center;
}
.page-cover--project img,
.page-cover--compact img { height: 300px; }
.page-cover--brand img { object-position: center bottom; }
.page-cover--contain {
    background: #fff;
}
.page-cover--contain img {
    height: 300px;
    object-fit: contain;
    object-position: center;
    background: #fff;
}
.page-article { padding-top: 100px; }
.page-cover-section--bleed + .page-article { padding-top: 100px; }
.doc-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.doc-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 20px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: #fff;
    font-weight: 600;
}
.doc-list a::after {
    content: "↓";
    color: var(--color-primary-dark);
    font-weight: 700;
}
.doc-list a:hover { color: var(--color-primary-dark); border-color: var(--color-primary); }
.full-media img { width: 100%; max-height: 620px; object-fit: cover; }
.prose :where(h2,h3) { margin-top: 1.6em; }
.prose ol { margin: 1.1em 0 0; padding-left: 1.35em; }
.prose li { margin: 0 0 0.9em; padding-left: 0.25em; }
.prose li:last-child { margin-bottom: 0; }
.prose a { color: var(--color-primary-dark); text-decoration: underline; }
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table th, .spec-table td { border-bottom: 1px solid var(--color-border); padding: 12px 8px; text-align: left; }
.spec-table-wrap {
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: #243836 #eef2f1;
}
.machine-detail-section { padding-top: 24px; }
.machine-detail {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    gap: 40px 56px;
    align-items: start;
}
.machine-detail--specs-only { grid-template-columns: 1fr; max-width: 720px; }
.machine-detail__media {
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: #fff;
    border: 1px solid var(--color-border);
    line-height: 0;
}
.machine-detail__media img {
    display: block;
    width: 100%;
    height: 100%;
    max-height: 460px;
    object-fit: contain;
    object-position: center;
    background: #fff;
}
.machine-detail .spec-table-wrap h2 { margin-top: 0; font-size: 1.45rem; }
.machine-detail__copy { margin-top: 48px; max-width: 760px; }
.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.filters a { border: 1px solid var(--color-border); padding: 8px 14px; border-radius: 99px; }
.filters .is-active { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }
.contact-hub {
    padding: 40px 0 72px;
    background: linear-gradient(180deg, var(--color-bg-soft) 0%, var(--color-bg-soft) 32%, #fff 100%);
}
.contact-hub__intro { max-width: 40rem; margin-bottom: 36px; }
.contact-layout {
    display: grid;
    grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.25fr);
    gap: 28px;
    align-items: start;
}
.contact-facts { display: grid; gap: 12px; }
.contact-fact {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 18px 22px;
}
.contact-fact__label {
    margin: 0 0 6px;
    color: var(--color-primary-dark);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.contact-fact__value { margin: 0; color: var(--color-text); }
.contact-fact__more { display: inline-flex; align-items: center; gap: 6px; margin-top: 10px; font-size: 14px; font-weight: 600; }
.contact-fact__more::after { content: "→"; }
.contact-fact a:link, .contact-fact a:visited { color: var(--color-primary-dark); }
.contact-fact a:hover, .contact-fact a:focus, .contact-fact a:active { color: var(--color-secondary); }
.contact-fact a.contact-fact__more:link, .contact-fact a.contact-fact__more:visited { color: var(--color-secondary); }
.contact-fact a.contact-fact__more:hover, .contact-fact a.contact-fact__more:focus, .contact-fact a.contact-fact__more:active { color: var(--color-primary-dark); }
.contact-actions { margin-top: 16px; }
.contact-actions .btn-line:link, .contact-actions .btn-line:visited {
    color: var(--color-primary-dark);
    background: transparent;
}
.contact-actions .btn-line:hover, .contact-actions .btn-line:focus, .contact-actions .btn-line:active {
    color: #fff;
    background: var(--color-primary);
}
.contact-panel {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 32px;
}
.contact-panel h2 { margin: 0 0 22px; font-size: clamp(22px, 2.2vw, 28px); }
.contact-form { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form .full { grid-column: 1 / -1; }
.contact-form label { display: grid; gap: 6px; font-size: 14px; font-weight: 600; }
.contact-form input, .contact-form textarea {
    width: 100%; border: 1px solid var(--color-border); border-radius: var(--radius-sm); padding: 12px 14px; font: inherit; font-weight: 400; background: #fff;
}
.contact-form input:focus, .contact-form textarea:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 1px;
    border-color: var(--color-primary);
}
.contact-form input[type="file"] { padding: 10px; background: var(--color-bg-soft); }
.contact-form input[type="checkbox"] { width: auto; min-width: 18px; height: 18px; margin-top: 3px; accent-color: var(--color-primary); }
.contact-form .hp { position: absolute; left: -9999px; }
.contact-form__actions { display: flex; }
.contact-form__actions .btn { width: auto; min-width: 180px; }
.contact-form .check { display: flex; gap: 10px; align-items: flex-start; font-weight: 400; }
.contact-form .check span { font-weight: 400; line-height: 1.5; }
.contact-map { padding: 0 0 72px; }
.map-frame {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: var(--color-bg-soft);
    border: 1px solid var(--color-border);
    line-height: 0;
    min-height: 420px;
}
.map-frame__fallback {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: grid;
    place-content: center;
    justify-items: center;
    gap: 8px;
    padding: 24px;
    text-align: center;
    line-height: 1.6;
    color: var(--color-text-soft);
}
.map-frame__fallback .contact-fact__more:link, .map-frame__fallback .contact-fact__more:visited { color: var(--color-secondary); }
.map-frame__fallback .contact-fact__more:hover, .map-frame__fallback .contact-fact__more:focus, .map-frame__fallback .contact-fact__more:active { color: var(--color-primary-dark); }
.map-frame iframe { position: relative; z-index: 1; display: block; width: 100%; height: 420px; border: 0; background: #e8eeec; }
.alert { padding: 12px 14px; border-radius: var(--radius-sm); margin-bottom: 16px; }
.alert.success { background: #e8f8f4; }
.alert.error { background: #fdecee; }
.video-frame { position: relative; padding-top: 56.25%; }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; padding: 0; color: var(--color-text-soft); font-size: 14px; }
.breadcrumb li:not(:last-child)::after { content: "/"; margin-left: 8px; }
.site-footer { background: #081111; color: #d7e7e3; padding: 72px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 32px; }
.footer-logo { height: 56px; width: auto; margin-bottom: 16px; }
.site-footer h2 { color: #fff; font-size: 16px; }
.site-footer a:hover { color: var(--color-primary); }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; border-top: 1px solid #1d2c2c; margin-top: 40px; padding-top: 18px; font-size: 14px; }
.footer-bottom a { margin-right: 12px; }
.footer-bottom { padding-bottom: 18px; padding-right: 76px; }
.social { display: flex; gap: 12px; margin-top: 12px; }
.lightbox { position: fixed; inset: 0; background: rgba(8,12,12,.88); z-index: 80; display: grid; place-items: center; padding: 24px; }
.lightbox[hidden] { display: none; }
.lightbox__body { max-width: min(1100px, 100%); }
.lightbox__body img, .lightbox__body video, .lightbox__body iframe { max-height: 82vh; width: min(1100px, 100%); }
.lightbox__close { position: absolute; top: 16px; right: 20px; font-size: 36px; background: none; border: 0; color: #fff; }
.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 90;
    padding: 16px 16px calc(16px + env(safe-area-inset-bottom, 0px));
    background: #0b1414;
    color: #d7e7e3;
    border-top: 1px solid #1d2c2c;
    box-shadow: 0 -12px 32px rgba(0, 0, 0, .28);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner__inner {
    width: min(100%, 1180px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px 28px;
    align-items: center;
}
.cookie-banner__title { margin: 0 0 6px; font-weight: 700; color: #fff; }
.cookie-banner__copy p { margin: 0; font-size: 14px; line-height: 1.55; color: #c5d6d2; }
.cookie-banner__copy a { color: var(--color-primary); text-decoration: underline; }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: flex-end; }
.cookie-banner__actions .btn { min-width: 148px; width: auto; }
.cookie-banner .btn-line { color: #fff; border-color: rgba(255,255,255,.35); background: #122020; }
.cookie-banner .btn-line:hover { background: #1a2c2c; }
.cookie-settings {
    appearance: none;
    background: none;
    border: 0;
    padding: 0;
    margin-right: 12px;
    font: inherit;
    color: inherit;
    cursor: pointer;
}
.cookie-settings:hover { color: var(--color-primary); }

[data-reveal] {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
    transition: opacity .85s cubic-bezier(.22, .61, .36, 1) var(--rv, 0ms),
                transform .95s cubic-bezier(.22, .61, .36, 1) var(--rv, 0ms);
    will-change: opacity, transform;
}
[data-reveal].is-in {
    opacity: 1;
    transform: none;
    will-change: auto;
}
:target { scroll-margin-top: calc(var(--header-h) + 20px); }
.site-header.is-scrolled { background: rgba(255, 255, 255, .97); }
.scroll-progress {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 2px;
    overflow: hidden;
    pointer-events: none;
    background: rgba(12, 23, 23, .08);
}
.scroll-progress span {
    display: block;
    height: 100%;
    transform: scaleX(0);
    transform-origin: left center;
    background: linear-gradient(90deg, #0c1717 0%, #0e8f78 62%, #16bfa0 100%);
}
.to-top {
    position: fixed;
    right: 28px;
    bottom: 28px;
    z-index: 40;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(12, 23, 23, .12);
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-soft);
    cursor: pointer;
    display: grid;
    place-items: center;
    animation: toTopIn .4s cubic-bezier(.22, .61, .36, 1);
}
.to-top[hidden] { display: none; }
.to-top span {
    width: 10px;
    height: 10px;
    border-top: 2px solid var(--color-primary-dark);
    border-right: 2px solid var(--color-primary-dark);
    transform: rotate(-45deg) translate(1px, 1px);
    transition: transform .25s ease;
}
.to-top:hover {
    background: #fff;
    border-color: var(--color-primary);
}
.to-top:hover span { transform: rotate(-45deg) translate(1px, -2px); }
@keyframes toTopIn {
    from { opacity: 0; transform: translate3d(0, 12px, 0); }
    to { opacity: 1; transform: none; }
}
body.has-cookie-banner .to-top { bottom: 150px; }

@media (max-width: 1600px) {
    .hero-content { padding: 64px 0 72px; }
}

@media (max-width: 1024px) {
    .nav { display: none; }
    .menu-toggle, .mobile-menu:not([hidden]) { display: block; }
    .mobile-menu { background: #fff; border-top: 1px solid var(--color-border); padding: 16px 24px 28px; }
    .mobile-menu a { display: block; padding: 10px 0; font-weight: 600; }
    .card-grid.four, .process, .gallery-strip, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .corp-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .split, .footer-grid, .contact-layout, .machine-detail { grid-template-columns: 1fr; }
    .section { padding-block: 72px; }
    .corp-highlights { padding-block: 56px; }
    .hero-video { display: none; }
    .hero-mobile-fallback { display: block; }
    .hero-content { padding: 56px 0 64px; }
    .hero-media { background-size: cover; }
    .hero .hero-media img,
    .hero .hero-media video { object-fit: cover !important; }
    .hero-overlay {
        background: linear-gradient(180deg, rgba(12, 23, 23, .34) 0%, rgba(12, 23, 23, .62) 55%, rgba(12, 23, 23, .86) 100%);
    }
    .split { gap: 40px; }
    .split > *,
    .card-grid > *,
    .contact-layout > * { min-width: 0; }
    .site-footer { padding: 56px 0 24px; }
    .footer-grid { gap: 28px; }
    .header-inner { gap: 16px; }
    .mobile-menu a { overflow-wrap: break-word; }
    .mobile-menu:not([hidden]) {
        max-height: calc(100vh - var(--header-h));
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: #243836 #eef2f1;
    }
    .mobile-menu .mobile-menu__sub {
        display: block;
        padding: 8px 0 8px 16px;
        font-weight: 500;
        font-size: 15px;
        color: var(--color-text-soft);
    }
}
@media (max-width: 768px) {
    :root { --header-h: 76px; }
    .container { width: min(100% - 32px, var(--container)); }
    .card-grid.three, .card-grid.two, .card-grid.four, .corp-grid, .process { grid-template-columns: 1fr; }
    .card-grid { gap: 16px; }
    .process { gap: 14px; }
    h1, h2, h3, p, li, a, .lead { overflow-wrap: break-word; }
    .header-inner { gap: 12px; }
    .logo img { height: 50px; }
    .to-top {
        right: 16px;
        bottom: 16px;
        width: 44px;
        height: 44px;
    }
    body.has-cookie-banner .to-top { bottom: 210px; }
    .header-tools { gap: 10px; }
    .header-tools .lang { width: 48px; }
    .header-tools .btn-sm {
        min-width: 0;
        width: auto;
        padding: 0 12px;
        font-size: 13px;
    }
    .mobile-menu { padding: 14px 16px 24px; }
    .hero h1,
    .hero-slide .hero-title { font-size: 32px; }
    .hero-content { max-width: 100%; }
    .hero-slide.is-active .hero-media { animation: heroInLite 1.8s cubic-bezier(.38, .02, .2, 1) forwards; }
    .hero-slide.is-leaving .hero-media { animation: heroOutLite 1.8s cubic-bezier(.38, .02, .2, 1) forwards; }
    .hero-slide.is-active::before { animation-duration: 1.8s; }
    .hero-slide.is-entry .hero-media {
        animation-name: heroEntry;
        animation-duration: 1.2s;
    }
    .hero-slide.is-live .hero-media img { animation-duration: 11s; }
    @keyframes heroInLite {
        0% { opacity: 0; }
        34% { opacity: 0; }
        56% { opacity: 1; }
        100% { opacity: 1; }
    }
    @keyframes heroOutLite {
        0% { opacity: 1; filter: brightness(1); }
        100% { opacity: 1; filter: brightness(.25); }
    }
    .lead { font-size: 1.02rem; }
    .hero-controls { bottom: 14px; gap: 10px; }
    .hero-arrow { width: 36px; height: 36px; font-size: 19px; }
    .page-hero { padding: 28px 0 36px; }
    .page-hero--with-cover { padding-bottom: 36px; }
    .page-article { padding-top: 72px; }
    .page-cover-section--bleed + .page-article { padding-top: 72px; }
    .split { gap: 28px; }
    .machine-detail { gap: 28px; }
    .machine-detail__media img { max-height: 320px; }
    .machine-detail__copy { margin-top: 32px; }
    .machine-detail-section { padding-top: 8px; }
    .section-heading { margin-bottom: 32px; }
    .section-more { margin-top: 24px; }
    .media-frame img { max-height: 320px; }
    .full-media img { max-height: 260px; }
    .media-card__image { aspect-ratio: 4 / 3; }
    .machine-card__image { aspect-ratio: 4 / 3; }
    .gallery-tile img { height: 180px; }
    .filters { gap: 8px; margin-bottom: 20px; }
    .filters a { padding: 7px 12px; font-size: 14px; }
    .spec-table th, .spec-table td { padding: 10px 6px; font-size: 15px; }
    .prose table { display: block; width: 100%; overflow-x: auto; }
    .prose img, .prose video { max-width: 100%; height: auto; }
    .prose iframe { width: 100%; max-width: 100%; }
    .contact-fact { padding: 16px 18px; }
    .contact-fact__value { overflow-wrap: anywhere; }
    .breadcrumb ol { font-size: 13px; }
    .footer-bottom { flex-direction: column; gap: 8px; margin-top: 28px; padding-right: 60px; }
    .footer-bottom p { margin: 0; }
    .social { flex-wrap: wrap; }
    .lightbox { padding: 16px; }
    .lightbox__close { top: 8px; right: 12px; }
    .lightbox__body img, .lightbox__body video, .lightbox__body iframe { max-height: 72vh; }
    .section { padding-block: 56px; }
    .corp-hub { padding: 28px 0 48px; }
    .corp-hub__intro { margin-bottom: 28px; }
    .contact-hub { padding: 28px 0 48px; }
    .contact-hub__intro { margin-bottom: 28px; }
    .contact-panel { padding: 24px; }
    .contact-form { grid-template-columns: 1fr; }
    .contact-form__actions .btn { width: 100%; }
    .contact-map { padding-bottom: 48px; }
    .map-frame { min-height: 280px; }
    .map-frame iframe { height: 280px; }
    .corp-card__body h2 { min-height: 0; }
    .corp-highlights { padding-block: 48px; }
    .page-cover img { height: 220px; }
    .page-cover--contain img { height: 220px; }
    .page-cover--project img,
    .page-cover--compact img { height: 220px; }
    .hero {
        height: 78vh;
        min-height: 480px;
        max-height: 820px;
    }
    .hero-content { padding: 48px 0 56px; }
    .btn { width: 100%; }
    .hero-actions .btn { width: auto; }
    .cta-band {
        padding: 56px 0;
        overflow: hidden;
    }
    .cta-band__media {
        overflow: hidden;
    }
    .cta-band.is-on .cta-band__shot,
    .cta-band.is-on .cta-band__shot:only-child {
        animation: none;
        transform: none;
    }
    .cta-band__shot {
        opacity: 0;
        transform: none;
    }
    .cta-band__shot:first-child {
        opacity: 1;
    }
    .cta-band__video {
        max-width: none;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .cta-band--has-mobile .cta-band__video,
    .cta-band--has-mobile .cta-band__shot:not(.cta-band__shot--mobile) {
        display: none;
    }
    .cta-band--has-mobile .cta-band__shot--mobile {
        display: block;
        opacity: 1;
        transform: none;
        animation: none;
    }
    .cta-band h2 {
        font-size: 26px;
        line-height: 1.28;
        overflow-wrap: break-word;
    }
    .cta-band p {
        font-size: 15px;
        margin-bottom: 20px;
    }
}
@media (max-width: 560px) {
    .logo img { height: 46px; }
    .header-tools .btn-sm { padding: 0 10px; font-size: 12px; }
    .hero { height: 74vh; min-height: 440px; }
    .hero h1,
    .hero-slide .hero-title { font-size: 28px; margin: 10px 0 16px; }
    .hero-actions { flex-direction: column; align-items: stretch; margin-top: 22px; }
    .hero-actions .btn { width: 100%; }
    .section { padding-block: 48px; }
    .section-heading { margin-bottom: 26px; }
    .stat-card, .why-card, .text-card { padding: 22px; }
    .media-card__body, .machine-card > div { padding: 18px; }
    .media-frame img { max-height: 260px; }
    .full-media img { max-height: 220px; }
    .page-cover img { height: 180px; }
    .page-cover--contain img { height: 180px; }
    .page-cover--project img,
    .page-cover--compact img { height: 180px; }
    .contact-panel { padding: 18px; }
    .contact-panel h2 { margin-bottom: 16px; }
    .map-frame { min-height: 240px; }
    .map-frame iframe { height: 240px; }
    .cta-band { padding: 48px 0; }
    .cta-band h2 { font-size: 23px; }
    .site-footer { padding: 44px 0 20px; }
}
@media (max-width: 430px) {
    .gallery-strip, .gallery-grid, .process { grid-template-columns: 1fr; }
    .logo img { height: 44px; }
    .header-tools .btn-sm { display: none; }
    .gallery-tile img { height: 200px; }
    .hero h1,
    .hero-slide .hero-title { font-size: 26px; }
}
@media (max-width: 768px) {
    .cookie-banner__inner { grid-template-columns: 1fr; }
    .cookie-banner__actions { justify-content: stretch; }
    .cookie-banner__actions .btn { flex: 1 1 140px; min-width: 0; }
}
