:root {
    --ink: #171713;
    --paper: #f4f1e8;
    --paper-deep: #e8e2d4;
    --white: #fffdf8;
    --muted: #6f6c63;
    --line: rgba(23, 23, 19, .16);
    --lime: #d9ff43;
    --orange: #ff6b35;
    --shell: min(1380px, calc(100vw - 64px));
    --radius: 10px;
    --ease: cubic-bezier(.22, 1, .36, 1);
}

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

html { scroll-behavior: smooth; }

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

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

.shell { width: var(--shell); margin-inline: auto; }

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 1000;
    transform: translateY(-150%);
    padding: 10px 16px;
    background: var(--ink);
    color: #fff;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(244, 241, 232, .9);
    border-bottom: 1px solid transparent;
    backdrop-filter: blur(18px);
    transition: border-color .25s ease, background .25s ease;
}

.site-header.is-scrolled { border-color: var(--line); background: rgba(244, 241, 232, .97); }

.header-inner {
    min-height: 84px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 40px;
}

.brand { display: inline-flex; align-items: center; gap: 12px; width: max-content; }

.brand-logo { width: 190px; height: auto; }

.brand-mark {
    width: 38px;
    height: 38px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px;
    transform: rotate(-7deg);
}

.brand-mark span { background: var(--ink); border-radius: 2px 8px 2px 8px; }
.brand-mark span:last-child { background: var(--orange); transform: translateY(5px); }

.brand-copy { display: flex; flex-direction: column; line-height: 1.1; }
.brand-copy strong { font-size: 15px; letter-spacing: -.02em; }
.brand-copy small { margin-top: 5px; color: var(--muted); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }

.desktop-nav { display: flex; align-items: center; gap: 34px; font-size: 13px; font-weight: 650; }
.desktop-nav a, .header-cta { transition: opacity .2s ease; }
.desktop-nav a:hover, .header-cta:hover { opacity: .55; }

.header-cta {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-size: 13px;
    font-weight: 750;
}

.header-cta span { font-size: 17px; }
.menu-toggle, .mobile-nav { display: none; }

.section-label {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 18px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.section-label span + span::before { content: "•"; margin-right: 18px; }

.home-hero { padding-top: 64px; overflow: hidden; }

.hero-grid {
    min-height: 720px;
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(520px, 1.08fr);
    align-items: center;
    gap: clamp(40px, 7vw, 116px);
    padding-bottom: 82px;
}

.hero-copy h1 {
    margin: 28px 0 28px;
    font-size: clamp(58px, 6.4vw, 106px);
    font-weight: 760;
    letter-spacing: -.072em;
    line-height: .91;
}

h1 em, h2 em { font-family: Georgia, "Times New Roman", serif; font-weight: 400; }

.hero-lead {
    max-width: 630px;
    margin: 0;
    color: #45443f;
    font-size: clamp(17px, 1.45vw, 21px);
    line-height: 1.58;
}

.hero-actions { margin-top: 42px; display: flex; align-items: center; gap: 30px; }

.button {
    min-height: 54px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    border: 1px solid currentColor;
    font-size: 13px;
    font-weight: 780;
    transition: transform .25s var(--ease), background .25s ease, color .25s ease;
}

.button:hover { transform: translateY(-3px); }
.button-dark { background: var(--ink); color: #fff; border-color: var(--ink); }
.button-dark:hover { background: var(--orange); border-color: var(--orange); }

.text-link { display: inline-flex; align-items: center; gap: 18px; font-size: 13px; font-weight: 780; }
.text-link span { font-size: 17px; transition: transform .25s var(--ease); }
.text-link:hover span { transform: translateX(5px); }

.hero-stage {
    min-height: 610px;
    position: relative;
    background: #242620;
}

.hero-stage::before {
    content: "";
    position: absolute;
    inset: 34px;
    border: 1px solid rgba(255,255,255,.15);
}

.stage-card { position: absolute; overflow: hidden; box-shadow: 0 34px 70px rgba(0,0,0,.32); }
.stage-card img { width: 100%; height: 100%; object-fit: cover; }

.stage-card-main {
    width: 72%;
    aspect-ratio: 16 / 10;
    top: 80px;
    left: 50%;
    transform: translateX(-50%) rotate(-3deg);
    border: 8px solid #0e0e0c;
}

.stage-card-phone {
    width: 23%;
    aspect-ratio: 9 / 18.5;
    right: 8%;
    bottom: 66px;
    transform: rotate(5deg);
    border: 7px solid #171713;
    border-radius: 22px;
}

.stage-card-phone img { object-position: top; }

.stage-note {
    position: absolute;
    left: 28px;
    bottom: 46px;
    width: 150px;
    height: 150px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: var(--lime);
    transform: rotate(-5deg);
}

.stage-note strong { font-size: 56px; line-height: .8; letter-spacing: -.07em; }
.stage-note span { font-size: 12px; font-weight: 800; line-height: 1.2; text-transform: uppercase; }

.stage-caption {
    position: absolute;
    top: 16px;
    right: 22px;
    color: rgba(255,255,255,.58);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.portfolio-ticker { border-block: 1px solid var(--line); overflow: hidden; }
.portfolio-ticker > div { width: max-content; display: flex; align-items: center; animation: ticker 36s linear infinite; }
.portfolio-ticker span { padding: 22px 30px; font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; white-space: nowrap; }
.portfolio-ticker i { width: 5px; height: 5px; background: var(--orange); border-radius: 50%; }

@keyframes ticker { to { transform: translateX(-50%); } }

.portfolio-section { padding: 150px 0 170px; }

.section-heading {
    margin-bottom: 90px;
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 70px;
    align-items: end;
}

.section-heading h2, .approach-intro h2, .studio-heading h2, .company-copy h2, .story-copy h2,
.feature-heading h2, .gallery-heading h2, .technology-grid h2, .faq-grid h2, .related-heading h2 {
    margin: 24px 0 0;
    font-size: clamp(42px, 5vw, 76px);
    line-height: 1.02;
    letter-spacing: -.055em;
}

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

.featured-list { display: grid; gap: 130px; }

.featured-project {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(320px, .7fr);
    gap: clamp(42px, 7vw, 110px);
    align-items: center;
}

.featured-project:nth-child(even) { grid-template-columns: minmax(320px, .7fr) minmax(0, 1.3fr); }
.featured-project:nth-child(even) .project-media { order: 2; }

.project-media {
    min-height: 560px;
    position: relative;
    display: block;
    overflow: hidden;
    background: var(--accent-soft);
}

.project-media::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(0,0,0,.08);
    pointer-events: none;
}

.project-media img { width: 100%; height: 100%; min-height: 560px; object-fit: cover; transition: transform .8s var(--ease); }
.featured-project:nth-child(1) .project-media img,
.featured-project:nth-child(6) .project-media img { object-position: center 14%; }
.project-media:hover img { transform: scale(1.025); }

.media-index, .media-action {
    position: absolute;
    z-index: 2;
    background: var(--paper);
    color: var(--ink);
}

.media-index { top: 18px; left: 18px; padding: 8px 12px; font-size: 11px; font-weight: 800; }
.media-action { right: 18px; bottom: 18px; width: 52px; height: 52px; display: grid; place-items: center; font-size: 20px; transition: background .2s ease, color .2s ease; }
.project-media:hover .media-action { background: var(--accent); color: #fff; }

.project-meta { display: flex; justify-content: space-between; gap: 20px; padding-bottom: 18px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.project-info h3 { margin: 36px 0 8px; font-size: clamp(48px, 5.5vw, 82px); letter-spacing: -.065em; line-height: .95; }
.project-tagline { margin: 20px 0; color: var(--accent); font-family: Georgia, "Times New Roman", serif; font-size: 24px; line-height: 1.25; }
.project-summary { margin: 0 0 28px; color: var(--muted); font-size: 15px; }

.approach-section { padding: 150px 0; background: var(--ink); color: #fff; }
.approach-section .section-label { color: rgba(255,255,255,.5); }
.approach-intro { max-width: 1020px; }
.approach-intro h2 { font-size: clamp(48px, 6vw, 88px); }
.approach-intro h2 em { color: var(--lime); }

.approach-grid { margin-top: 100px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.2); }
.approach-grid article { padding: 28px 48px 0 0; }
.approach-grid article + article { border-left: 1px solid rgba(255,255,255,.2); padding-left: 48px; }
.approach-grid span { color: var(--lime); font-size: 12px; font-weight: 800; }
.approach-grid h3 { margin: 52px 0 20px; font-size: 26px; line-height: 1.15; letter-spacing: -.035em; }
.approach-grid p { margin: 0; color: rgba(255,255,255,.6); font-size: 14px; }

.studio-section { padding: 150px 0 180px; background: var(--white); }
.studio-heading { margin-bottom: 72px; }
.studio-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }

.studio-card {
    min-height: 470px;
    padding: 22px;
    position: relative;
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    transition: background .3s ease;
}

.studio-card:hover { background: var(--accent-soft); }
.studio-number { font-size: 11px; font-weight: 800; color: var(--muted); }

.studio-poster {
    margin: 34px 0 30px;
    min-height: 215px;
    padding: 18px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    background: var(--accent-soft);
    overflow: hidden;
}

.studio-poster span { align-self: center; color: var(--accent); font-size: 158px; font-weight: 850; line-height: .7; letter-spacing: -.12em; transition: transform .55s var(--ease); }
.studio-card:hover .studio-poster span { transform: rotate(-7deg) scale(1.12); }
.studio-poster i { max-width: 92px; color: var(--accent); font-size: 9px; font-style: normal; font-weight: 800; line-height: 1.2; text-align: right; text-transform: uppercase; }
.studio-card-copy p { margin: 0 0 8px; color: var(--muted); font-size: 10px; font-weight: 800; text-transform: uppercase; }
.studio-card-copy h3 { margin: 0 0 8px; font-size: 31px; line-height: 1; letter-spacing: -.05em; }
.studio-card-copy > span { color: var(--muted); font-family: Georgia, "Times New Roman", serif; font-size: 16px; }
.studio-arrow { position: absolute; right: 22px; bottom: 22px; font-size: 18px; }

.company-section { padding: 160px 0; background: #e4ff70; }
.company-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; align-items: center; }
.company-mark { min-height: 560px; padding: 38px; position: relative; display: grid; place-items: center; background: var(--ink); color: #fff; overflow: hidden; }
.company-mark > img { width: min(70%, 340px); height: auto; filter: drop-shadow(0 30px 40px rgba(0,0,0,.35)); }
.company-mark small { position: absolute; left: 38px; bottom: 24px; color: rgba(255,255,255,.55); font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.company-copy h2 { font-size: clamp(48px, 5vw, 72px); }
.company-lead { margin: 44px 0 20px; font-size: 23px; line-height: 1.45; letter-spacing: -.02em; }
.company-copy > p:last-of-type { color: #46483a; }
.company-facts { margin: 48px 0 0; border-top: 1px solid rgba(23,23,19,.25); }
.company-facts div { padding: 15px 0; display: grid; grid-template-columns: 150px 1fr; border-bottom: 1px solid rgba(23,23,19,.25); }
.company-facts dt { color: #62654d; font-size: 11px; font-weight: 800; text-transform: uppercase; }
.company-facts dd { margin: 0; font-weight: 750; }

.site-footer { padding: 110px 0 30px; background: #11110f; color: #fff; }
.footer-top { display: flex; align-items: center; justify-content: space-between; gap: 60px; padding-bottom: 95px; }
.footer-kicker { margin: 0 0 24px; color: rgba(255,255,255,.45); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.footer-top h2 { margin: 0; font-size: clamp(44px, 5vw, 72px); line-height: 1.02; letter-spacing: -.055em; }
.circle-link { flex: 0 0 180px; width: 180px; height: 180px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; background: var(--orange); border-radius: 50%; font-size: 14px; font-weight: 800; transition: transform .3s var(--ease), background .2s ease, color .2s ease; }
.circle-link span { font-size: 24px; }
.circle-link:hover { transform: rotate(-8deg) scale(1.05); background: var(--lime); color: var(--ink); }
.footer-bottom { padding-top: 24px; display: flex; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.16); color: rgba(255,255,255,.5); font-size: 11px; }
.footer-bottom p { margin: 0; }
.footer-bottom div { display: flex; gap: 26px; }

/* Product detail */
.product-hero { padding: 38px 0 90px; background: var(--product-soft); overflow: hidden; }
.breadcrumbs { display: flex; gap: 10px; color: var(--muted); font-size: 11px; font-weight: 700; }
.breadcrumbs strong { color: var(--ink); }
.product-hero-grid { min-height: 670px; margin-top: 58px; display: grid; grid-template-columns: minmax(0, .82fr) minmax(500px, 1.18fr); align-items: center; gap: clamp(50px, 8vw, 130px); }
.product-hero-copy h1 { margin: 32px 0 14px; font-size: clamp(72px, 9vw, 142px); line-height: .84; letter-spacing: -.085em; }
.product-hero-tagline { max-width: 660px; margin: 34px 0 20px; color: var(--product-accent); font-family: Georgia, "Times New Roman", serif; font-size: clamp(26px, 2.4vw, 38px); line-height: 1.2; }
.product-hero-summary { max-width: 620px; margin: 0; color: #55534e; font-size: 17px; line-height: 1.65; }
.product-actions { margin-top: 38px; display: flex; align-items: center; gap: 30px; }
.button-product { background: var(--product-accent); border-color: var(--product-accent); color: #fff; }

.product-hero-media { min-height: 610px; position: relative; display: grid; place-items: center; background: var(--ink); overflow: hidden; }
.product-hero-media > img { width: 100%; height: 610px; padding: 34px; object-fit: contain; }
.official-badge { position: absolute; right: 20px; bottom: 20px; padding: 12px 15px; display: flex; flex-direction: column; background: var(--lime); color: var(--ink); font-size: 9px; line-height: 1.25; text-transform: uppercase; }
.official-badge strong { font-size: 10px; letter-spacing: .04em; }

.generated-poster { width: calc(100% - 68px); height: 540px; padding: 34px; position: relative; display: flex; flex-direction: column; justify-content: flex-end; background: var(--product-soft); color: var(--product-accent); }
.generated-poster::before { content: ""; position: absolute; inset: 20px; border: 1px solid currentColor; opacity: .3; }
.generated-poster strong { max-width: 90%; position: relative; z-index: 1; font-size: clamp(60px, 8vw, 110px); line-height: .8; letter-spacing: -.08em; }
.generated-poster p { max-width: 360px; position: relative; z-index: 1; margin: 24px 0 0; color: var(--ink); font-family: Georgia, serif; font-size: 20px; }
.poster-index { position: absolute; z-index: 1; top: 34px; left: 34px; color: var(--ink); font-size: 11px; font-weight: 800; }
.poster-lines { position: absolute; top: 34px; right: 34px; display: flex; gap: 5px; }
.poster-lines i { width: 7px; height: 70px; display: block; background: var(--product-accent); }
.poster-lines i:nth-child(2) { height: 48px; opacity: .65; }
.poster-lines i:nth-child(3) { height: 27px; opacity: .35; }

.product-facts { background: var(--white); border-bottom: 1px solid var(--line); }
.facts-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.facts-grid div { min-height: 148px; padding: 30px; display: flex; flex-direction: column; justify-content: space-between; border-left: 1px solid var(--line); }
.facts-grid div:last-child { border-right: 1px solid var(--line); }
.facts-grid span { color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.facts-grid strong { max-width: 270px; font-size: 16px; line-height: 1.35; }

.product-story { padding: 160px 0; }
.story-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 120px; }
.story-label > span { max-width: 300px; margin-top: 90px; display: block; color: var(--muted); font-size: 13px; }
.story-copy h2 { max-width: 870px; margin-top: 0; }
.story-copy > p { max-width: 880px; margin: 42px 0 0; color: #55534d; font-size: clamp(19px, 1.8vw, 25px); line-height: 1.55; }

.feature-section { padding: 150px 0; background: var(--ink); color: #fff; }
.feature-section .section-label { color: rgba(255,255,255,.45); }
.feature-heading h2 em { color: var(--product-accent); }
.feature-grid { margin-top: 90px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.17); border-left: 1px solid rgba(255,255,255,.17); }
.feature-card { min-height: 310px; padding: 28px; border-right: 1px solid rgba(255,255,255,.17); border-bottom: 1px solid rgba(255,255,255,.17); }
.feature-card > span { color: var(--product-accent); font-size: 11px; font-weight: 800; }
.feature-card h3 { margin: 78px 0 16px; font-size: 25px; line-height: 1.15; letter-spacing: -.035em; }
.feature-card p { margin: 0; color: rgba(255,255,255,.58); font-size: 14px; }

.gallery-section { padding: 150px 0; background: var(--white); }
.gallery-heading { margin-bottom: 70px; }
.product-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.gallery-count-2 { grid-template-columns: 1.5fr .5fr; }
.gallery-count-1 { grid-template-columns: 1fr; }
.gallery-item { margin: 0; min-height: 650px; display: flex; flex-direction: column; background: var(--product-soft); }
.gallery-item img { width: 100%; height: 610px; padding: 26px; object-fit: contain; }
.gallery-item figcaption { margin-top: auto; padding: 16px 18px; display: flex; gap: 14px; border-top: 1px solid var(--line); font-size: 11px; font-weight: 700; }
.gallery-item figcaption span { color: var(--muted); }

.technology-section { padding: 150px 0; background: var(--product-soft); }
.technology-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.technology-grid h2 { max-width: 680px; }
.technology-list { display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.technology-list span { padding: 20px 0; border-bottom: 1px solid var(--line); font-size: 22px; font-weight: 760; letter-spacing: -.025em; }
.ownership-note { grid-column: 2; padding: 26px; background: var(--ink); color: #fff; }
.ownership-note span { color: var(--product-accent); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.ownership-note p { margin: 45px 0 0; color: rgba(255,255,255,.72); }

.faq-section { padding: 150px 0; }
.faq-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 100px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { padding: 24px 0; display: flex; align-items: center; justify-content: space-between; gap: 30px; cursor: pointer; font-size: 17px; font-weight: 750; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { font-size: 24px; font-weight: 400; transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { margin: -4px 0 24px; padding-right: 60px; color: var(--muted); }

.related-section { padding: 140px 0; background: var(--white); }
.related-heading { margin-bottom: 60px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.related-card { min-height: 280px; padding: 24px; position: relative; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background .25s ease; }
.related-card:hover { background: var(--accent-soft); }
.related-card > span, .related-card p { color: var(--muted); font-size: 10px; font-weight: 800; text-transform: uppercase; }
.related-card p { margin-top: 72px; }
.related-card h3 { margin: 8px 0 0; font-size: 34px; line-height: 1; letter-spacing: -.05em; }
.related-card strong { position: absolute; right: 24px; bottom: 24px; font-size: 20px; }

.not-found { min-height: 75vh; display: grid; place-items: center; text-align: center; }
.not-found span { color: var(--orange); font-size: 13px; font-weight: 900; }
.not-found h1 { margin: 20px 0; font-size: clamp(52px, 8vw, 110px); letter-spacing: -.07em; line-height: .9; }
.not-found p { margin: 0 auto 34px; max-width: 520px; color: var(--muted); }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1120px) {
    :root { --shell: min(100% - 42px, 1100px); }
    .hero-grid { grid-template-columns: 1fr 1fr; gap: 42px; }
    .hero-stage { min-height: 520px; }
    .stage-note { width: 125px; height: 125px; }
    .featured-project, .featured-project:nth-child(even) { grid-template-columns: 1.15fr .85fr; gap: 48px; }
    .project-media, .project-media img { min-height: 480px; }
    .studio-grid { grid-template-columns: repeat(2, 1fr); }
    .company-grid { gap: 60px; }
    .product-hero-grid { grid-template-columns: .9fr 1.1fr; gap: 52px; }
    .product-hero-copy h1 { font-size: clamp(68px, 9vw, 106px); }
}

@media (max-width: 860px) {
    :root { --shell: calc(100vw - 36px); }
    .desktop-nav, .header-cta { display: none; }
    .header-inner { min-height: 72px; grid-template-columns: 1fr auto; }
    .menu-toggle { width: 42px; height: 42px; padding: 11px; display: flex; flex-direction: column; justify-content: center; gap: 6px; border: 1px solid var(--line); background: transparent; cursor: pointer; }
    .menu-toggle span { height: 1px; background: var(--ink); transition: transform .2s ease; }
    .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
    .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
    .mobile-nav { position: fixed; inset: 72px 0 auto; padding: 30px 18px 42px; background: var(--paper); border-bottom: 1px solid var(--line); }
    .mobile-nav:not([hidden]) { display: flex; flex-direction: column; }
    .mobile-nav a { padding: 15px 0; border-bottom: 1px solid var(--line); font-size: 20px; font-weight: 760; }

    .home-hero { padding-top: 34px; }
    .hero-grid { grid-template-columns: 1fr; min-height: auto; }
    .hero-copy h1 { font-size: clamp(55px, 14vw, 88px); }
    .hero-stage { min-height: 570px; }
    .section-heading { grid-template-columns: 1fr; gap: 28px; }
    .featured-project, .featured-project:nth-child(even) { grid-template-columns: 1fr; gap: 34px; }
    .featured-project:nth-child(even) .project-media { order: initial; }
    .project-media, .project-media img { min-height: 520px; }
    .project-info { max-width: 680px; }
    .approach-grid { grid-template-columns: 1fr; }
    .approach-grid article { padding: 34px 0; }
    .approach-grid article + article { padding-left: 0; border-left: 0; border-top: 1px solid rgba(255,255,255,.2); }
    .approach-grid h3 { margin-top: 34px; }
    .company-grid { grid-template-columns: 1fr; }
    .company-mark { min-height: 460px; }
    .footer-top { align-items: flex-start; }

    .product-hero-grid { grid-template-columns: 1fr; min-height: auto; }
    .product-hero-media { min-height: 560px; }
    .product-hero-media > img { height: 560px; }
    .facts-grid { grid-template-columns: repeat(2, 1fr); }
    .story-grid, .technology-grid, .faq-grid { grid-template-columns: 1fr; gap: 56px; }
    .story-label > span { margin-top: 32px; }
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
    .ownership-note { grid-column: 1; }
    .product-gallery { grid-template-columns: 1fr 1fr; }
    .gallery-item-main { grid-column: span 2; }
    .gallery-count-2 .gallery-item-main { grid-column: auto; }
}

@media (max-width: 600px) {
    :root { --shell: calc(100vw - 28px); }
    .brand-logo { width: 162px; }
    .home-hero { padding-top: 24px; }
    .hero-grid { gap: 22px; padding-bottom: 56px; }
    .section-label { flex-wrap: wrap; gap: 8px; }
    .section-label span + span::before { margin-right: 8px; }
    .hero-copy h1 { margin-top: 22px; font-size: clamp(51px, 16vw, 72px); }
    .hero-lead { font-size: 16px; }
    .hero-actions { align-items: flex-start; flex-direction: column; gap: 22px; }
    .hero-stage { min-height: 430px; }
    .hero-stage::before { inset: 18px; }
    .stage-card-main { width: 82%; top: 52px; border-width: 5px; }
    .stage-card-phone { width: 28%; right: 5%; bottom: 38px; border-width: 5px; border-radius: 14px; }
    .stage-note { left: 14px; bottom: 25px; width: 105px; height: 105px; padding: 14px; }
    .stage-note strong { font-size: 42px; }
    .stage-note span { font-size: 9px; }
    .stage-caption { display: none; }

    .portfolio-section, .approach-section, .studio-section, .company-section,
    .product-story, .feature-section, .gallery-section, .technology-section, .faq-section, .related-section { padding-block: 90px; }
    .section-heading { margin-bottom: 54px; }
    .section-heading h2, .approach-intro h2, .studio-heading h2, .company-copy h2,
    .story-copy h2, .feature-heading h2, .gallery-heading h2, .technology-grid h2, .faq-grid h2, .related-heading h2 { font-size: 42px; }
    .featured-list { gap: 82px; }
    .project-media, .project-media img { min-height: 400px; }
    .project-meta { align-items: flex-start; flex-direction: column; gap: 6px; }
    .project-info h3 { margin-top: 26px; font-size: 51px; }
    .project-tagline { font-size: 21px; }
    .approach-grid { margin-top: 60px; }
    .studio-grid { grid-template-columns: 1fr; }
    .studio-card { min-height: 430px; }
    .company-mark { min-height: 340px; padding: 22px; }
    .company-mark small { left: 22px; }
    .company-facts div { grid-template-columns: 105px 1fr; }
    .footer-top { align-items: flex-start; flex-direction: column; padding-bottom: 65px; }
    .circle-link { flex-basis: 140px; width: 140px; height: 140px; }
    .footer-bottom { align-items: flex-start; flex-direction: column; gap: 18px; }
    .footer-bottom div { flex-direction: column; gap: 8px; }

    .product-hero { padding-top: 24px; padding-bottom: 50px; }
    .breadcrumbs { overflow-x: auto; white-space: nowrap; }
    .product-hero-grid { margin-top: 40px; gap: 42px; }
    .product-hero-copy h1 { margin-top: 26px; font-size: clamp(60px, 19vw, 90px); overflow-wrap: anywhere; }
    .product-hero-tagline { margin-top: 28px; font-size: 25px; }
    .product-hero-summary { font-size: 15px; }
    .product-actions { align-items: flex-start; flex-direction: column; gap: 22px; }
    .product-hero-media { min-height: 430px; }
    .product-hero-media > img { height: 430px; padding: 18px; }
    .generated-poster { width: calc(100% - 30px); height: 400px; padding: 25px; }
    .generated-poster strong { font-size: 59px; }
    .poster-lines { top: 25px; right: 25px; }
    .facts-grid { grid-template-columns: 1fr; }
    .facts-grid div { min-height: 118px; padding: 22px 16px; border-right: 1px solid var(--line); }
    .story-grid { gap: 45px; }
    .story-copy > p { margin-top: 30px; font-size: 18px; }
    .feature-grid { margin-top: 60px; grid-template-columns: 1fr; }
    .feature-card { min-height: 260px; }
    .feature-card h3 { margin-top: 54px; }
    .product-gallery, .gallery-count-2 { grid-template-columns: 1fr; }
    .gallery-item-main { grid-column: auto; }
    .gallery-item { min-height: 540px; }
    .gallery-item img { height: 500px; padding: 16px; }
    .related-grid { grid-template-columns: 1fr; }
    .related-card { min-height: 230px; }
}

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

/* --------------------------------------------------------------------------
   MG Work Studio — light glass design system
   -------------------------------------------------------------------------- */

:root {
    --ink: #172033;
    --paper: #edf3f9;
    --paper-deep: #dfe9f4;
    --white: #ffffff;
    --muted: #66738a;
    --line: rgba(116, 138, 169, .2);
    --lime: #d9ff43;
    --orange: #ff7a45;
    --violet: #7b61ff;
    --cyan: #49c8ff;
    --glass: rgba(255, 255, 255, .58);
    --glass-strong: rgba(255, 255, 255, .78);
    --glass-line: rgba(255, 255, 255, .88);
    --glass-shadow: 0 24px 70px rgba(73, 93, 126, .14), inset 0 1px 0 rgba(255, 255, 255, .88);
    --glass-shadow-hover: 0 34px 90px rgba(73, 93, 126, .22), inset 0 1px 0 rgba(255, 255, 255, .95);
    --glass-radius: 28px;
}

body {
    min-height: 100vh;
    background:
        radial-gradient(circle at 8% 10%, rgba(90, 196, 255, .28), transparent 28%),
        radial-gradient(circle at 92% 18%, rgba(141, 105, 255, .22), transparent 27%),
        radial-gradient(circle at 50% 63%, rgba(219, 255, 91, .18), transparent 30%),
        linear-gradient(145deg, #f8fbff 0%, #eaf2f9 47%, #f7f3ff 100%);
    background-attachment: fixed;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    opacity: .35;
    background-image:
        linear-gradient(rgba(255,255,255,.5) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.5) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, #000, transparent 82%);
}

.site-header {
    padding: 12px 0;
    background: transparent;
    border: 0;
    backdrop-filter: none;
}

.site-header.is-scrolled { background: transparent; border: 0; }

.header-inner {
    min-height: 70px;
    padding: 0 22px;
    background: rgba(255, 255, 255, .7);
    border: 1px solid var(--glass-line);
    border-radius: 22px;
    box-shadow: 0 14px 42px rgba(73, 93, 126, .12), inset 0 1px 0 #fff;
    backdrop-filter: blur(24px) saturate(145%);
    -webkit-backdrop-filter: blur(24px) saturate(145%);
}

.brand-logo { width: 178px; }
.header-cta { padding: 11px 16px; background: rgba(255,255,255,.7); border: 1px solid var(--glass-line); border-radius: 14px; }

.mobile-nav {
    inset: 94px 18px auto;
    padding: 20px;
    background: rgba(255,255,255,.9);
    border: 1px solid var(--glass-line);
    border-radius: 22px;
    box-shadow: var(--glass-shadow);
    backdrop-filter: blur(24px);
}

.home-hero { padding: 38px 0 0; }

.hero-grid {
    min-height: 650px;
    padding: 48px;
    background: var(--glass);
    border: 1px solid var(--glass-line);
    border-radius: 36px;
    box-shadow: var(--glass-shadow);
    backdrop-filter: blur(26px) saturate(145%);
    -webkit-backdrop-filter: blur(26px) saturate(145%);
}

.hero-copy h1 { color: #131b2c; }
.hero-lead { color: var(--muted); }
.button { border-radius: 15px; }
.button-dark { background: #1d2840; border-color: #1d2840; box-shadow: 0 12px 28px rgba(29,40,64,.2); }
.button-dark:hover { background: var(--violet); border-color: var(--violet); }

.hero-stage {
    min-height: 520px;
    background: linear-gradient(145deg, rgba(255,255,255,.82), rgba(221,233,248,.54));
    border: 1px solid var(--glass-line);
    border-radius: 28px;
    box-shadow: inset 0 1px 0 #fff, 0 24px 60px rgba(54, 76, 112, .15);
    backdrop-filter: blur(20px);
}

.hero-stage::before { inset: 18px; border-color: rgba(114,137,170,.16); border-radius: 20px; }
.stage-card { border-color: rgba(255,255,255,.9); border-radius: 18px; box-shadow: 0 24px 55px rgba(38,55,88,.2); }
.stage-card-main { top: 64px; }
.stage-card-phone { border-radius: 22px; }
.stage-caption { color: var(--muted); }
.stage-note { border-radius: 22px; box-shadow: 0 18px 40px rgba(94,114,52,.2); }

.portfolio-ticker { width: var(--shell); margin: 22px auto 0; background: rgba(255,255,255,.48); border: 1px solid var(--glass-line); border-radius: 18px; box-shadow: 0 12px 36px rgba(73,93,126,.08); backdrop-filter: blur(18px); }

.portfolio-section, .studio-section, .company-section,
.product-story, .feature-section, .gallery-section,
.technology-section, .faq-section, .related-section {
    background: transparent;
}

.portfolio-section { padding: 128px 0 145px; }
.section-heading { margin-bottom: 60px; }

.featured-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.featured-project,
.featured-project:nth-child(even) {
    height: 720px;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(255,255,255,.8), rgba(255,255,255,.46));
    border: 1px solid var(--glass-line);
    border-radius: var(--glass-radius);
    box-shadow: var(--glass-shadow);
    backdrop-filter: blur(26px) saturate(145%);
    -webkit-backdrop-filter: blur(26px) saturate(145%);
    transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s ease;
}

.featured-project:hover {
    transform: translateY(-8px);
    border-color: rgba(255,255,255,1);
    box-shadow: var(--glass-shadow-hover);
}

.featured-project:nth-child(even) .project-media { order: initial; }

.project-media {
    width: calc(100% - 24px);
    height: 342px;
    min-height: 342px;
    margin: 12px;
    border-radius: 20px;
    background: linear-gradient(145deg, var(--accent-soft), rgba(255,255,255,.74));
}

.project-media::after { border-color: rgba(255,255,255,.64); border-radius: 20px; }
.project-media img { width: 100%; height: 342px; min-height: 342px; object-fit: cover; object-position: center; }
.featured-project:nth-child(1) .project-media img,
.featured-project:nth-child(2) .project-media img { padding: 14px; object-fit: contain; object-position: center top; }

.media-index { top: 12px; left: 12px; border-radius: 11px; background: rgba(255,255,255,.86); backdrop-filter: blur(12px); }
.media-action { right: 12px; bottom: 12px; border-radius: 14px; background: rgba(255,255,255,.88); backdrop-filter: blur(12px); }

.project-info {
    min-height: 0;
    flex: 1;
    padding: 20px 24px 24px;
    display: flex;
    flex-direction: column;
}

.project-meta { min-height: 34px; padding-bottom: 12px; gap: 10px; }
.project-meta span:last-child { overflow: hidden; text-align: right; text-overflow: ellipsis; white-space: nowrap; }
.project-info h3 { margin: 20px 0 6px; font-size: 42px; line-height: .95; }
.project-tagline { min-height: 48px; margin: 12px 0 10px; font-size: 19px; }
.project-summary {
    margin: 0;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    color: var(--muted);
    font-size: 14px;
}
.project-info > .text-link { margin-top: auto; padding-top: 16px; }

.approach-section { padding: 125px 0; background: transparent; color: var(--ink); }
.approach-section .section-label { color: var(--muted); }
.approach-intro h2 em { color: var(--violet); }
.approach-grid { margin-top: 64px; gap: 22px; border: 0; }
.approach-grid article,
.approach-grid article + article {
    min-height: 320px;
    padding: 28px;
    background: var(--glass);
    border: 1px solid var(--glass-line);
    border-radius: 24px;
    box-shadow: var(--glass-shadow);
    backdrop-filter: blur(22px);
}
.approach-grid span { color: var(--violet); }
.approach-grid h3 { margin-top: 68px; }
.approach-grid p { color: var(--muted); }

.studio-section { padding: 125px 0 145px; }
.studio-heading { margin-bottom: 58px; }
.studio-grid { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 24px; border: 0; }
.studio-card {
    height: 440px;
    min-height: 440px;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(255,255,255,.8), rgba(255,255,255,.46));
    border: 1px solid var(--glass-line);
    border-radius: 26px;
    box-shadow: var(--glass-shadow);
    backdrop-filter: blur(24px);
    transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.studio-card:hover { transform: translateY(-7px); background: rgba(255,255,255,.8); box-shadow: var(--glass-shadow-hover); }
.studio-poster { min-height: 212px; border: 1px solid rgba(255,255,255,.75); border-radius: 19px; }
.studio-card-copy h3 { font-size: 29px; }
.studio-card-copy > span { display: -webkit-box; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }

.company-section { padding: 125px 0; }
.company-grid {
    padding: 32px;
    background: var(--glass);
    border: 1px solid var(--glass-line);
    border-radius: 34px;
    box-shadow: var(--glass-shadow);
    backdrop-filter: blur(26px);
}
.company-mark { min-height: 500px; background: linear-gradient(145deg, rgba(255,255,255,.86), rgba(231,238,249,.58)); border: 1px solid var(--glass-line); border-radius: 27px; color: var(--ink); box-shadow: inset 0 1px 0 #fff; }
.company-mark small { color: var(--muted); }
.company-facts { border-color: var(--line); }

.site-footer {
    width: var(--shell);
    margin: 0 auto 24px;
    padding: 70px 44px 28px;
    background: rgba(255,255,255,.68);
    color: var(--ink);
    border: 1px solid var(--glass-line);
    border-radius: 32px;
    box-shadow: var(--glass-shadow);
    backdrop-filter: blur(28px);
}
.footer-kicker, .footer-bottom { color: var(--muted); }
.footer-bottom { border-color: var(--line); }
.circle-link { background: rgba(255,255,255,.68); color: var(--ink); border: 1px solid var(--glass-line); box-shadow: 0 18px 50px rgba(73,93,126,.16), inset 0 1px 0 #fff; }
.circle-link:hover { background: var(--lime); }

/* Product detail — glass surfaces throughout */
.product-page { position: relative; }
.product-hero { padding: 34px 0 70px; background: transparent; }
.breadcrumbs { width: max-content; max-width: 100%; padding: 10px 15px; background: rgba(255,255,255,.58); border: 1px solid var(--glass-line); border-radius: 13px; backdrop-filter: blur(18px); }
.product-hero-grid {
    min-height: 640px;
    margin-top: 24px;
    padding: 32px;
    background: var(--glass);
    border: 1px solid var(--glass-line);
    border-radius: 34px;
    box-shadow: var(--glass-shadow);
    backdrop-filter: blur(28px) saturate(145%);
}
.product-hero-copy { padding: 18px; }
.product-hero-media {
    height: 550px;
    min-height: 550px;
    background: linear-gradient(145deg, var(--product-soft), rgba(255,255,255,.72));
    border: 1px solid var(--glass-line);
    border-radius: 25px;
    box-shadow: inset 0 1px 0 #fff, 0 20px 55px rgba(73,93,126,.12);
}
.product-hero-media > img { height: 550px; }
.generated-poster { height: 490px; border-radius: 20px; }
.official-badge { border-radius: 13px; box-shadow: 0 12px 30px rgba(73,93,126,.16); }

.product-facts { background: transparent; border: 0; }
.facts-grid {
    overflow: hidden;
    background: var(--glass);
    border: 1px solid var(--glass-line);
    border-radius: 24px;
    box-shadow: var(--glass-shadow);
    backdrop-filter: blur(22px);
}
.facts-grid div, .facts-grid div:last-child { height: 148px; min-height: 148px; border-color: var(--line); }

.product-story { padding: 100px 0; }
.story-grid {
    padding: 42px;
    background: var(--glass);
    border: 1px solid var(--glass-line);
    border-radius: 30px;
    box-shadow: var(--glass-shadow);
    backdrop-filter: blur(24px);
}

.feature-section { padding: 110px 0; color: var(--ink); }
.feature-section .section-label { color: var(--muted); }
.feature-heading h2 em { color: var(--product-accent); }
.feature-grid { margin-top: 58px; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 22px; border: 0; }
.feature-card {
    height: 280px;
    min-height: 280px;
    padding: 26px;
    background: linear-gradient(145deg, rgba(255,255,255,.8), rgba(255,255,255,.46));
    border: 1px solid var(--glass-line);
    border-radius: 24px;
    box-shadow: var(--glass-shadow);
    backdrop-filter: blur(24px);
}
.feature-card > span { color: var(--product-accent); }
.feature-card h3 { margin: 56px 0 14px; }
.feature-card p { color: var(--muted); }

.gallery-section { padding: 110px 0; }
.product-gallery { gap: 22px; }
.gallery-item {
    height: 620px;
    min-height: 620px;
    overflow: hidden;
    background: var(--glass);
    border: 1px solid var(--glass-line);
    border-radius: 25px;
    box-shadow: var(--glass-shadow);
    backdrop-filter: blur(24px);
}
.gallery-item img { height: 565px; }
.gallery-item figcaption { background: rgba(255,255,255,.42); border-color: var(--line); }

.technology-section { padding: 110px 0; }
.technology-grid {
    padding: 38px;
    background: var(--glass);
    border: 1px solid var(--glass-line);
    border-radius: 30px;
    box-shadow: var(--glass-shadow);
    backdrop-filter: blur(24px);
}
.technology-list { gap: 10px; border: 0; }
.technology-list span { padding: 15px 18px; background: rgba(255,255,255,.6); border: 1px solid var(--glass-line); border-radius: 14px; }
.ownership-note { background: rgba(255,255,255,.64); color: var(--ink); border: 1px solid var(--glass-line); border-radius: 18px; box-shadow: inset 0 1px 0 #fff; }
.ownership-note p { color: var(--muted); }

.faq-section { padding: 110px 0; }
.faq-grid {
    padding: 38px;
    background: var(--glass);
    border: 1px solid var(--glass-line);
    border-radius: 30px;
    box-shadow: var(--glass-shadow);
    backdrop-filter: blur(24px);
}
.faq-list { border-color: var(--line); }
.faq-list details { border-color: var(--line); }

.related-section { padding: 110px 0 135px; }
.related-grid { gap: 22px; border: 0; }
.related-card {
    height: 270px;
    min-height: 270px;
    background: linear-gradient(145deg, rgba(255,255,255,.8), rgba(255,255,255,.46));
    border: 1px solid var(--glass-line);
    border-radius: 24px;
    box-shadow: var(--glass-shadow);
    backdrop-filter: blur(22px);
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.related-card:hover { transform: translateY(-6px); background: rgba(255,255,255,.82); box-shadow: var(--glass-shadow-hover); }

.not-found .shell { padding: 70px 30px; background: var(--glass); border: 1px solid var(--glass-line); border-radius: 30px; box-shadow: var(--glass-shadow); backdrop-filter: blur(24px); }

@media (max-width: 1180px) {
    .featured-list, .studio-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .featured-project, .featured-project:nth-child(even) { height: 700px; }
    .hero-grid { padding: 34px; }
}

@media (max-width: 860px) {
    .site-header { padding: 9px 0; }
    .header-inner { min-height: 66px; }
    .hero-grid { grid-template-columns: 1fr; padding: 28px; }
    .hero-stage { min-height: 520px; }
    .featured-list { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .featured-project, .featured-project:nth-child(even) { height: 680px; }
    .project-media, .project-media img { height: 310px; min-height: 310px; }
    .project-info h3 { font-size: 36px; }
    .studio-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .approach-grid { gap: 18px; }
    .approach-grid article + article { border: 1px solid var(--glass-line); }
    .company-grid { padding: 22px; }
    .site-footer { padding: 54px 26px 26px; }

    .product-hero-grid { grid-template-columns: 1fr; padding: 22px; }
    .product-hero-media, .product-hero-media > img { height: 520px; min-height: 520px; }
    .story-grid, .technology-grid, .faq-grid { padding: 28px; }
    .feature-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .product-gallery { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .related-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
}

@media (max-width: 620px) {
    .header-inner { padding: 0 14px; border-radius: 18px; }
    .brand-logo { width: 150px; }
    .mobile-nav { inset: 86px 14px auto; }
    .home-hero { padding-top: 18px; }
    .hero-grid { padding: 20px; border-radius: 26px; }
    .hero-stage { min-height: 410px; border-radius: 21px; }
    .portfolio-ticker { border-radius: 14px; }
    .portfolio-section, .approach-section, .studio-section, .company-section,
    .product-story, .feature-section, .gallery-section, .technology-section,
    .faq-section, .related-section { padding-block: 78px; }

    .featured-list, .studio-grid { grid-template-columns: 1fr; gap: 20px; }
    .featured-project, .featured-project:nth-child(even) { height: 660px; border-radius: 24px; }
    .project-media, .project-media img { height: 295px; min-height: 295px; }
    .project-info { padding: 18px 20px 22px; }
    .project-info h3 { font-size: 38px; }
    .project-tagline { min-height: auto; font-size: 18px; }
    .studio-card { height: 420px; min-height: 420px; }
    .approach-grid { grid-template-columns: 1fr; }
    .approach-grid article, .approach-grid article + article { min-height: 280px; }
    .company-grid { padding: 16px; border-radius: 26px; }
    .company-mark { min-height: 330px; border-radius: 21px; }
    .site-footer { width: var(--shell); padding: 46px 20px 22px; border-radius: 25px; }

    .product-hero-grid { padding: 16px; border-radius: 26px; }
    .product-hero-copy { padding: 8px; }
    .product-hero-media, .product-hero-media > img { height: 420px; min-height: 420px; }
    .facts-grid div { height: 118px; min-height: 118px; }
    .story-grid, .technology-grid, .faq-grid { padding: 22px; border-radius: 24px; }
    .feature-grid { grid-template-columns: 1fr; gap: 18px; }
    .feature-card { height: 255px; min-height: 255px; }
    .product-gallery, .gallery-count-2 { grid-template-columns: 1fr; }
    .gallery-item { height: 540px; min-height: 540px; }
    .gallery-item img { height: 490px; }
    .related-grid { grid-template-columns: 1fr; }
    .related-card { height: 235px; min-height: 235px; }
}
