:root {
    --red: #ec2028;
    --red-dark: #c9121a;
    --ink: #11171d;
    --ink-2: #1b242c;
    --muted: #687078;
    --line: #dfe2e4;
    --soft: #f3f4f4;
    --white: #ffffff;
    --container: 1280px;
    --pad: clamp(20px, 4vw, 64px);
    --display: "Montserrat", sans-serif;
    --body: "Manrope", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: var(--body);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

svg {
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

::selection { color: var(--white); background: var(--red); }

.container {
    width: min(calc(100% - (var(--pad) * 2)), var(--container));
    margin-inline: auto;
}

.section { padding-block: clamp(88px, 10vw, 150px); }
.section--soft { background: var(--soft); }
.section--dark { color: var(--white); background: var(--ink); }

.skip-link {
    position: fixed;
    z-index: 9999;
    top: 12px;
    left: 12px;
    padding: 12px 18px;
    color: var(--white);
    background: var(--red);
    transform: translateY(-140%);
    transition: transform .2s ease;
}

.skip-link:focus { transform: translateY(0); }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #555f67;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .15em;
    line-height: 1.2;
    text-transform: uppercase;
}

.eyebrow i {
    width: 23px;
    height: 2px;
    background: var(--red);
}

.eyebrow--light { color: rgba(255, 255, 255, .72); }

.button {
    position: relative;
    display: inline-flex;
    min-height: 58px;
    align-items: center;
    justify-content: center;
    gap: 22px;
    padding: 0 26px;
    overflow: hidden;
    border: 0;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .02em;
    transition: color .3s ease, background-color .3s ease, transform .3s ease;
}

.button svg { width: 18px; }
.button:hover { transform: translateY(-2px); }
.button--primary { color: var(--white); background: var(--red); }
.button--primary:hover { background: var(--red-dark); }
.button--dark { color: var(--white); background: var(--ink); }
.button--dark:hover { background: var(--red); }

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid currentColor;
    font-size: 13px;
    font-weight: 700;
    padding-block: 7px;
}

.text-link--light { color: var(--white); }
.text-link span { color: var(--red); }

.topbar {
    position: relative;
    z-index: 60;
    color: rgba(255, 255, 255, .78);
    background: #11171d;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.topbar__inner {
    display: flex;
    min-height: 42px;
    align-items: center;
    justify-content: space-between;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .02em;
}

.topbar__contacts { display: flex; gap: 30px; }
.topbar a { display: inline-flex; align-items: center; gap: 9px; transition: color .2s ease; }
.topbar a:hover { color: var(--white); }
.topbar svg { width: 14px; height: 14px; color: var(--red); }
.topbar__location { text-transform: uppercase; letter-spacing: .08em; }

.site-header {
    position: sticky;
    z-index: 50;
    top: 0;
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid rgba(17, 23, 29, .09);
    backdrop-filter: blur(18px);
    transition: box-shadow .3s ease;
}

.site-header.is-scrolled { box-shadow: 0 10px 35px rgba(17, 23, 29, .08); }

.site-header__inner {
    display: flex;
    min-height: 88px;
    align-items: center;
}

.brand { flex: 0 0 auto; }
.brand img { width: clamp(220px, 19vw, 300px); height: auto; }

.desktop-nav {
    display: flex;
    align-self: stretch;
    align-items: stretch;
    gap: clamp(22px, 2.4vw, 40px);
    margin-left: auto;
}

.desktop-nav a {
    position: relative;
    display: flex;
    align-items: center;
    color: #46505a;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .03em;
}

.desktop-nav a::after {
    position: absolute;
    right: 50%;
    bottom: 0;
    left: 50%;
    height: 3px;
    content: "";
    background: var(--red);
    transition: inset .3s ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active { color: var(--ink); }
.desktop-nav a:hover::after,
.desktop-nav a.is-active::after { right: 0; left: 0; }

.header-cta {
    display: inline-flex;
    height: 46px;
    align-items: center;
    gap: 13px;
    margin-left: clamp(22px, 2.5vw, 42px);
    padding-inline: 18px;
    color: var(--white);
    background: var(--ink);
    font-size: 11px;
    font-weight: 800;
    transition: background .3s ease;
}

.header-cta:hover { background: var(--red); }
.header-cta svg { width: 16px; }

.menu-toggle,
.mobile-menu { display: none; }

.hero {
    position: relative;
    display: flex;
    min-height: calc(100svh - 130px);
    align-items: center;
    isolation: isolate;
    overflow: hidden;
    color: var(--white);
    background: var(--ink);
}

.hero__media,
.hero__veil,
.hero__grid { position: absolute; z-index: -3; inset: 0; }

.hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: heroZoom 16s ease-out both;
}

@keyframes heroZoom { from { transform: scale(1.06); } to { transform: scale(1); } }

.hero__veil {
    z-index: -2;
    background: linear-gradient(90deg, rgba(7, 12, 17, .94) 0%, rgba(7, 12, 17, .72) 48%, rgba(7, 12, 17, .2) 100%), linear-gradient(0deg, rgba(7, 12, 17, .46), transparent 65%);
}

.hero__grid {
    z-index: -1;
    opacity: .36;
    background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: linear-gradient(90deg, black, transparent 82%);
}

.hero__content {
    display: grid;
    align-items: end;
    padding-block: clamp(90px, 12vw, 165px);
    grid-template-columns: minmax(0, 1fr) 230px;
    gap: 80px;
}

.hero__copy { max-width: 860px; }

.hero h1 {
    max-width: 900px;
    margin: 25px 0 28px;
    font-family: var(--display);
    font-size: clamp(50px, 6.5vw, 94px);
    font-weight: 800;
    letter-spacing: -.065em;
    line-height: .98;
}

.hero h1 span { color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.72); }

.hero__copy > p {
    max-width: 630px;
    margin: 0;
    color: rgba(255,255,255,.7);
    font-size: clamp(16px, 1.35vw, 19px);
}

.hero__actions { display: flex; align-items: center; gap: 30px; margin-top: 38px; }

.hero__side { padding-bottom: 6px; }
.hero__metric { display: flex; align-items: center; gap: 15px; }

.hero__metric strong {
    color: var(--red);
    font-family: var(--display);
    font-size: 52px;
    letter-spacing: -.06em;
    line-height: 1;
}

.hero__metric span { color: rgba(255,255,255,.78); font-size: 12px; font-weight: 700; line-height: 1.5; text-transform: uppercase; }
.hero__line { height: 1px; margin-block: 24px; background: rgba(255,255,255,.25); }
.hero__side p { margin: 0; color: rgba(255,255,255,.58); font-size: 13px; }

.hero__scroll {
    position: absolute;
    right: var(--pad);
    bottom: 34px;
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255,255,255,.65);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .22em;
    text-transform: uppercase;
    transform: rotate(90deg) translateX(-100%);
    transform-origin: right bottom;
}

.hero__scroll i { width: 46px; height: 1px; background: rgba(255,255,255,.4); }

.section-heading {
    display: grid;
    align-items: end;
    margin-bottom: clamp(50px, 6vw, 82px);
    grid-template-columns: minmax(0, 1.3fr) minmax(320px, .7fr);
    gap: 70px;
}

.section-heading h2,
.design-story h2,
.contact-strip h2,
.about-intro h2,
.vm-card h2,
.career-intro h2,
.career-mail h2,
.social-band h2 {
    margin: 18px 0 0;
    font-family: var(--display);
    font-size: clamp(38px, 4.3vw, 64px);
    font-weight: 800;
    letter-spacing: -.055em;
    line-height: 1.06;
}

.section-heading > p {
    max-width: 520px;
    margin: 0 0 6px;
    color: var(--muted);
    font-size: 15px;
}

.section-heading--compact { grid-template-columns: 1fr; }

.portal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }

.portal-card {
    position: relative;
    display: flex;
    min-height: 610px;
    align-items: flex-end;
    isolation: isolate;
    overflow: hidden;
    color: var(--white);
    background: #20272d;
}

.portal-card__background,
.portal-card__shade,
.portal-card__accent { position: absolute; z-index: -2; inset: 0; width: 100%; height: 100%; }

.portal-card__background {
    object-fit: cover;
    transition: transform .8s cubic-bezier(.2,.7,.2,1), filter .5s ease;
}

.portal-card__shade {
    z-index: -1;
    background: linear-gradient(0deg, rgba(8,13,17,.98) 0%, rgba(8,13,17,.6) 54%, rgba(8,13,17,.08) 100%);
}

.portal-card--door .portal-card__background { object-position: 57% center; }
.portal-card--door .portal-card__shade { background: linear-gradient(0deg, rgba(8,13,17,.98) 0%, rgba(8,13,17,.56) 58%, rgba(8,13,17,.05) 100%); }

.portal-card__number {
    position: absolute;
    top: 28px;
    right: 30px;
    color: rgba(255,255,255,.75);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
}

.portal-card__content { display: flex; width: 100%; min-height: 355px; flex-direction: column; align-items: flex-start; padding: 34px; }

.portal-card__logo {
    display: flex;
    width: 195px;
    height: 58px;
    align-items: center;
    justify-content: center;
    margin-bottom: auto;
    padding: 12px 16px;
    background: rgba(255,255,255,.96);
}

.portal-card__logo img { max-width: 100%; max-height: 34px; object-fit: contain; }
.portal-card__logo--dark img { max-height: 40px; }

.portal-card__category {
    margin-bottom: 10px;
    color: var(--red);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.portal-card__title {
    min-height: 64px;
    font-family: var(--display);
    font-size: clamp(19px, 1.45vw, 24px);
    font-weight: 700;
    letter-spacing: -.035em;
    line-height: 1.3;
}

.portal-card__button {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    margin-top: 28px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,.26);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.portal-card__button i {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    background: var(--red);
    font-size: 16px;
    font-style: normal;
    transition: transform .3s ease;
}

.portal-card:hover .portal-card__background { transform: scale(1.06); filter: saturate(1.1); }
.portal-card:hover .portal-card__button i { transform: rotate(45deg); }

.portal-card--silenest {
    color: var(--ink);
    background: #ecefed;
}

.portal-card__accent {
    z-index: -1;
    background: radial-gradient(circle at 74% 25%, rgba(107,125,91,.34), transparent 28%), linear-gradient(145deg, #f8f8f5, #dfe4df);
}

.portal-card--silenest::before {
    position: absolute;
    z-index: -1;
    top: -8%;
    right: -30%;
    width: 88%;
    aspect-ratio: 1;
    border: 1px solid rgba(17,23,29,.15);
    border-radius: 50%;
    content: "";
}

.portal-card__product {
    position: absolute;
    z-index: -1;
    top: 32px;
    right: -15px;
    width: 76%;
    height: 335px;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: transform .8s cubic-bezier(.2,.7,.2,1);
}

.portal-card--silenest:hover .portal-card__product { transform: translateY(-8px) scale(1.03); }
.portal-card--silenest .portal-card__number { color: rgba(17,23,29,.55); }
.portal-card--silenest .portal-card__logo { background: var(--ink); }
.portal-card--silenest .portal-card__logo img { filter: brightness(0) invert(1); }
.portal-card--silenest .portal-card__content { background: linear-gradient(0deg, #edf0ed 75%, transparent); }
.portal-card--silenest .portal-card__button { border-color: rgba(17,23,29,.23); }

.design-story { padding-top: 10px; }

.design-story__grid { display: grid; align-items: center; grid-template-columns: minmax(0, 1.12fr) minmax(360px, .88fr); gap: clamp(55px, 8vw, 120px); }
.design-story__visual { position: relative; min-height: 620px; }
.design-story__visual > img { width: 100%; height: 100%; min-height: 620px; object-fit: cover; }

.design-story__badge {
    position: absolute;
    right: -35px;
    bottom: -35px;
    display: flex;
    width: 165px;
    height: 165px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--red);
}

.design-story__badge strong { font-family: var(--display); font-size: 25px; }
.design-story__badge span { font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }

.design-story__content .lead { margin: 28px 0 35px; color: var(--muted); font-size: 17px; }
.feature-list { margin-bottom: 38px; }

.feature-list > div {
    display: grid;
    align-items: start;
    padding-block: 22px;
    border-top: 1px solid var(--line);
    grid-template-columns: 48px 140px 1fr;
    gap: 12px;
}

.feature-list > div:last-child { border-bottom: 1px solid var(--line); }
.feature-list span { color: var(--red); font-size: 10px; font-weight: 800; }
.feature-list h3 { margin: 0; font-family: var(--display); font-size: 17px; letter-spacing: -.02em; }
.feature-list p { margin: 0; color: var(--muted); font-size: 13px; }

.statement {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    isolation: isolate;
    overflow: hidden;
    color: var(--white);
}

.statement__image,
.statement__overlay { position: absolute; z-index: -2; inset: 0; }
.statement__image img { width: 100%; height: 100%; object-fit: cover; }
.statement__overlay { z-index: -1; background: linear-gradient(90deg, rgba(8,13,17,.94), rgba(8,13,17,.72) 58%, rgba(8,13,17,.26)); }
.statement__content { max-width: var(--container); }

.statement blockquote {
    max-width: 960px;
    margin: 28px 0 30px;
    font-family: var(--display);
    font-size: clamp(42px, 5.8vw, 80px);
    font-weight: 700;
    letter-spacing: -.06em;
    line-height: 1.06;
}

.statement blockquote em { color: var(--red); font-style: normal; }
.statement p { max-width: 580px; margin: 0; color: rgba(255,255,255,.68); }

.contact-strip { padding-block: clamp(80px, 8vw, 120px); }
.contact-strip__inner { display: flex; align-items: flex-end; justify-content: space-between; gap: 60px; }
.contact-strip h2 { font-size: clamp(38px, 4.5vw, 62px); }
.contact-strip__actions { display: flex; align-items: center; gap: 36px; }
.contact-strip__phone { display: flex; flex-direction: column; font-family: var(--display); font-size: 17px; font-weight: 700; }
.contact-strip__phone small { color: var(--muted); font-family: var(--body); font-size: 9px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }

.site-footer { color: rgba(255,255,255,.7); background: var(--ink); }

.footer-main {
    display: grid;
    padding-block: 80px 70px;
    grid-template-columns: 1.6fr .65fr .65fr 1fr;
    gap: clamp(35px, 6vw, 85px);
}

.footer-brand img { width: 255px; filter: brightness(0) invert(1); }
.footer-brand p { max-width: 350px; margin: 28px 0 0; color: rgba(255,255,255,.46); font-size: 13px; }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.footer-label { margin-bottom: 10px; color: var(--white); font-size: 10px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.footer-column a { font-size: 12px; transition: color .2s ease; }
.footer-column a:hover { color: var(--red); }
.footer-contact a:last-child { max-width: 230px; }

.footer-bottom {
    display: flex;
    min-height: 75px;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255,255,255,.1);
    color: rgba(255,255,255,.38);
    font-size: 10px;
}

.footer-socials { display: flex; gap: 24px; }

.floating-contact {
    position: fixed;
    z-index: 40;
    right: 22px;
    bottom: 22px;
    display: grid;
    width: 50px;
    height: 50px;
    place-items: center;
    color: var(--white);
    background: var(--red);
    border-radius: 50%;
    box-shadow: 0 12px 30px rgba(236,32,40,.28);
    transition: transform .25s ease;
}

.floating-contact:hover { transform: translateY(-4px); }
.floating-contact svg { width: 20px; }

.page-hero {
    position: relative;
    display: flex;
    min-height: 670px;
    align-items: flex-end;
    isolation: isolate;
    overflow: hidden;
    color: var(--white);
}

.page-hero__media,
.page-hero__overlay { position: absolute; z-index: -2; inset: 0; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__overlay { z-index: -1; background: linear-gradient(90deg, rgba(8,13,17,.92), rgba(8,13,17,.57) 55%, rgba(8,13,17,.14)), linear-gradient(0deg, rgba(8,13,17,.64), transparent 55%); }
.page-hero--career .page-hero__media img { object-position: center; }
.page-hero__content { padding-bottom: clamp(70px, 8vw, 115px); }

.page-hero h1,
.contact-hero h1 {
    margin: 22px 0 24px;
    font-family: var(--display);
    font-size: clamp(52px, 6.8vw, 94px);
    font-weight: 800;
    letter-spacing: -.065em;
    line-height: .98;
}

.page-hero h1 span,
.contact-hero h1 span { color: var(--red); }
.page-hero p { max-width: 610px; margin: 0; color: rgba(255,255,255,.69); font-size: 17px; }

.about-intro__grid { display: grid; align-items: start; grid-template-columns: .4fr 1fr; gap: clamp(60px, 10vw, 150px); }
.about-intro__index { display: flex; align-items: center; gap: 24px; padding-top: 8px; }
.about-intro__index span { color: var(--red); font-family: var(--display); font-size: clamp(70px, 8vw, 112px); font-weight: 800; letter-spacing: -.08em; line-height: .8; }
.about-intro__index p { margin: 0; color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: .08em; line-height: 1.5; text-transform: uppercase; }
.about-intro__copy p { max-width: 790px; margin: 32px 0 0; color: var(--muted); font-size: 17px; }

.vision-mission__grid { display: grid; grid-template-columns: 1fr 1fr; }
.vm-card { position: relative; min-height: 590px; padding: clamp(45px, 6vw, 82px); overflow: hidden; background: var(--white); }
.vm-card--dark { color: var(--white); background: var(--ink); }
.vm-card__number { position: absolute; top: 30px; right: 36px; color: var(--red); font-size: 11px; font-weight: 800; letter-spacing: .12em; }
.vm-card h2 { max-width: 520px; margin-top: 100px; font-size: clamp(36px, 3.5vw, 52px); }
.vm-card p { max-width: 570px; margin: 30px 0 0; color: var(--muted); font-size: 15px; }
.vm-card--dark p { color: rgba(255,255,255,.62); }

.values__grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.value-card { min-height: 270px; padding: 40px 42px; border-right: 1px solid var(--line); }
.value-card:last-child { border-right: 0; }
.value-card > span { color: var(--red); font-size: 10px; font-weight: 800; }
.value-card h3 { margin: 75px 0 12px; font-family: var(--display); font-size: 19px; letter-spacing: -.03em; }
.value-card p { margin: 0; color: var(--muted); font-size: 13px; }

.career-intro__grid { display: grid; align-items: start; grid-template-columns: 1fr .9fr; gap: clamp(70px, 10vw, 150px); }
.career-intro__copy > p { max-width: 690px; margin: 30px 0 35px; color: var(--muted); font-size: 16px; }

.career-principles article { display: grid; padding-block: 28px; border-top: 1px solid var(--line); grid-template-columns: 55px 1fr; gap: 20px; }
.career-principles article:last-child { border-bottom: 1px solid var(--line); }
.career-principles article > span { color: var(--red); font-size: 10px; font-weight: 800; }
.career-principles h3 { margin: 0 0 7px; font-family: var(--display); font-size: 18px; }
.career-principles p { margin: 0; color: var(--muted); font-size: 13px; }

.career-mail__inner { display: grid; align-items: end; grid-template-columns: 1fr .7fr; gap: 90px; }
.career-mail__inner > div:last-child p { max-width: 550px; margin: 0 0 24px; color: rgba(255,255,255,.6); }
.career-mail__inner > div:last-child a { display: inline-flex; align-items: center; gap: 14px; padding-bottom: 7px; border-bottom: 1px solid var(--red); font-family: var(--display); font-size: 17px; font-weight: 700; }
.career-mail__inner > div:last-child a span { color: var(--red); }

.contact-hero { position: relative; overflow: hidden; padding-block: clamp(110px, 12vw, 175px); background: var(--soft); }
.contact-hero::before { position: absolute; top: -300px; right: -180px; width: 740px; height: 740px; border: 1px solid #d9dddf; border-radius: 50%; content: ""; }
.contact-hero__grid { display: grid; align-items: center; grid-template-columns: 1fr .35fr; gap: 40px; }
.contact-hero__copy p { max-width: 600px; margin: 0; color: var(--muted); font-size: 17px; }
.contact-hero__mark { position: relative; z-index: 1; color: var(--red); font-family: var(--display); font-size: clamp(180px, 23vw, 350px); font-weight: 400; line-height: .6; text-align: center; }

.contact-details__grid { display: grid; align-items: stretch; grid-template-columns: .9fr 1.1fr; gap: clamp(50px, 8vw, 100px); }
.contact-list article { position: relative; display: grid; align-items: start; padding: 30px 0; border-top: 1px solid var(--line); grid-template-columns: 55px 1fr 40px; gap: 15px; }
.contact-list article:last-child { border-bottom: 1px solid var(--line); }
.contact-list__number { color: var(--red); font-size: 10px; font-weight: 800; }
.contact-list small { display: block; margin-bottom: 6px; color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.contact-list div > a { display: block; font-family: var(--display); font-size: clamp(17px, 1.5vw, 21px); font-weight: 700; letter-spacing: -.02em; }
.contact-list .contact-list__sub { margin-top: 3px; color: var(--muted); font-family: var(--body); font-size: 12px; font-weight: 600; }
.contact-list p { margin: 5px 0 0; color: var(--muted); font-size: 12px; }
.contact-list__arrow { display: grid; width: 36px; height: 36px; place-items: center; color: var(--white); background: var(--ink); font-size: 15px; transition: background .2s ease, transform .2s ease; }
.contact-list__arrow:hover { background: var(--red); transform: rotate(45deg); }

.contact-map { position: relative; min-height: 570px; overflow: hidden; background: #dfe2e2; }
.contact-map iframe { width: 100%; height: 100%; min-height: 570px; border: 0; filter: grayscale(1) contrast(.93); }
.contact-map > a { position: absolute; right: 20px; bottom: 20px; display: flex; align-items: center; gap: 20px; padding: 16px 19px; color: var(--white); background: var(--red); font-size: 11px; font-weight: 800; }

.social-band__inner { display: grid; align-items: end; grid-template-columns: 1fr .8fr; gap: 100px; }
.social-band__links { border-top: 1px solid #cfd3d5; }
.social-band__links a { display: flex; min-height: 68px; align-items: center; justify-content: space-between; border-bottom: 1px solid #cfd3d5; font-family: var(--display); font-size: 15px; font-weight: 700; transition: color .2s ease, padding .2s ease; }
.social-band__links a:hover { padding-inline: 10px; color: var(--red); }
.social-band__links i { color: var(--red); font-style: normal; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .85s ease, transform .85s cubic-bezier(.2,.7,.2,1); }
.reveal--delay { transition-delay: .12s; }
.reveal--delay-2 { transition-delay: .24s; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

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

@media (max-width: 1120px) {
    .desktop-nav { gap: 20px; }
    .header-cta { display: none; }
    .portal-card { min-height: 560px; }
    .portal-card__content { padding: 25px; }
    .design-story__grid { gap: 65px; }
    .footer-main { grid-template-columns: 1.3fr .7fr .7fr 1fr; gap: 35px; }
}

@media (max-width: 900px) {
    :root { --pad: 24px; }
    .topbar .topbar__location { display: none; }
    .site-header__inner { min-height: 78px; }
    .desktop-nav { display: none; }
    .menu-toggle {
        display: flex;
        width: 48px;
        height: 48px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 7px;
        margin-left: auto;
        padding: 0;
        border: 0;
        color: var(--ink);
        background: transparent;
        cursor: pointer;
    }
    .menu-toggle span { display: block; width: 24px; height: 2px; background: currentColor; transition: transform .25s ease; }
    .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4.5px) rotate(45deg); }
    .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4.5px) rotate(-45deg); }
    .mobile-menu {
        position: fixed;
        z-index: -1;
        top: 0;
        right: 0;
        left: 0;
        display: flex;
        height: 100svh;
        flex-direction: column;
        justify-content: center;
        padding: 120px var(--pad) 40px;
        color: var(--white);
        background: var(--ink);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-15px);
        transition: opacity .3s ease, transform .3s ease;
    }
    .mobile-menu.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
    .mobile-menu nav { display: flex; flex-direction: column; }
    .mobile-menu nav a { display: flex; align-items: center; justify-content: space-between; padding-block: 15px; border-bottom: 1px solid rgba(255,255,255,.14); font-family: var(--display); font-size: clamp(25px, 7vw, 42px); font-weight: 700; letter-spacing: -.04em; }
    .mobile-menu nav a.is-active { color: var(--red); }
    .mobile-menu nav a span:last-child { font-size: 17px; }
    .mobile-menu__contact { display: flex; flex-wrap: wrap; gap: 12px 25px; margin-top: 40px; color: rgba(255,255,255,.6); font-size: 12px; }
    .menu-open .site-header { background: var(--ink); border-color: rgba(255,255,255,.1); }
    .menu-open .brand img { filter: brightness(0) invert(1); }
    .menu-open .menu-toggle { color: var(--white); }

    .hero { min-height: calc(100svh - 120px); }
    .hero__content { grid-template-columns: 1fr; gap: 55px; }
    .hero__side { display: none; }
    .hero__veil { background: linear-gradient(90deg, rgba(7,12,17,.92), rgba(7,12,17,.49)), linear-gradient(0deg, rgba(7,12,17,.63), transparent 68%); }
    .hero__scroll { display: none; }
    .section-heading { grid-template-columns: 1fr; gap: 24px; }
    .portal-grid { grid-template-columns: 1fr; }
    .portal-card { min-height: 620px; }
    .portal-card__content { min-height: 360px; padding: 34px; }
    .portal-card__title { font-size: 26px; }
    .portal-card__product { right: 0; width: 60%; }
    .design-story__grid { grid-template-columns: 1fr; }
    .design-story__visual { min-height: 540px; margin-right: 35px; }
    .design-story__visual > img { min-height: 540px; }
    .statement { min-height: 610px; }
    .contact-strip__inner { align-items: flex-start; flex-direction: column; }
    .footer-main { grid-template-columns: 1.4fr 1fr 1fr; }
    .footer-contact { grid-column: 1 / -1; }
    .about-intro__grid { grid-template-columns: 1fr; gap: 60px; }
    .vision-mission__grid { grid-template-columns: 1fr; }
    .vm-card { min-height: 520px; }
    .values__grid { grid-template-columns: 1fr; }
    .value-card { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line); }
    .value-card:last-child { border-bottom: 0; }
    .value-card h3 { margin-top: 35px; }
    .career-intro__grid,
    .career-mail__inner,
    .contact-details__grid,
    .social-band__inner { grid-template-columns: 1fr; gap: 65px; }
    .contact-hero__grid { grid-template-columns: 1fr .2fr; }
    .contact-hero__mark { font-size: 190px; }
}

@media (max-width: 620px) {
    :root { --pad: 20px; }
    .section { padding-block: 78px; }
    .topbar__inner { justify-content: center; min-height: 38px; }
    .topbar__contacts a:nth-child(2) { display: none; }
    .topbar__contacts { gap: 0; }
    .site-header__inner { min-height: 72px; }
    .brand img { width: 208px; }
    .hero { min-height: calc(100svh - 110px); }
    .hero__content { padding-block: 80px; }
    .hero h1 { font-size: clamp(43px, 13.7vw, 66px); }
    .hero__copy > p { font-size: 15px; }
    .hero__actions { align-items: flex-start; flex-direction: column; gap: 18px; }
    .button { width: 100%; }
    .section-heading { margin-bottom: 42px; }
    .section-heading h2,
    .design-story h2,
    .contact-strip h2,
    .about-intro h2,
    .vm-card h2,
    .career-intro h2,
    .career-mail h2,
    .social-band h2 { font-size: 36px; }
    .portal-card { min-height: 540px; }
    .portal-card__content { min-height: 335px; padding: 26px; }
    .portal-card__logo { width: 175px; }
    .portal-card__title { font-size: 22px; }
    .portal-card__product { top: 20px; right: -28px; width: 83%; height: 290px; }
    .design-story { padding-top: 0; }
    .design-story__visual { min-height: 430px; margin-right: 20px; }
    .design-story__visual > img { min-height: 430px; }
    .design-story__badge { right: -20px; bottom: -20px; width: 125px; height: 125px; }
    .feature-list > div { grid-template-columns: 35px 1fr; }
    .feature-list p { grid-column: 2; }
    .statement { min-height: 580px; }
    .statement blockquote { font-size: 39px; }
    .contact-strip__actions { width: 100%; align-items: stretch; flex-direction: column; }
    .footer-main { padding-block: 60px 50px; grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; margin-bottom: 15px; }
    .footer-contact { grid-column: 1 / -1; }
    .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; gap: 8px; padding-block: 18px; }
    .footer-socials { gap: 16px; }
    .floating-contact { right: 16px; bottom: 16px; }
    .page-hero { min-height: 590px; }
    .page-hero h1,
    .contact-hero h1 { font-size: clamp(46px, 14vw, 66px); }
    .page-hero p { font-size: 15px; }
    .about-intro__index { align-items: flex-end; }
    .about-intro__index span { font-size: 88px; }
    .vm-card { min-height: auto; padding: 45px 26px; }
    .vm-card h2 { margin-top: 75px; }
    .value-card { padding: 34px 0; }
    .career-mail__inner { gap: 50px; }
    .contact-hero { padding-block: 95px; }
    .contact-hero__grid { grid-template-columns: 1fr; }
    .contact-hero__mark { display: none; }
    .contact-list article { grid-template-columns: 32px 1fr 36px; }
    .contact-list div > a { overflow-wrap: anywhere; font-size: 16px; }
    .contact-map,
    .contact-map iframe { min-height: 430px; }
}
