:root {
    --bg: #f4f0e6;
    --surface: #fffdf7;
    --ink: #1d2731;
    --ink-soft: #495767;
    --primary: #005a7a;
    --primary-strong: #003a50;
    --accent: #e58f2b;
    --line: #d9d1c1;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at 10% 10%, #fff7d6 0%, transparent 38%),
        radial-gradient(circle at 85% 0%, #dff4ff 0%, transparent 30%),
        var(--bg);
    line-height: 1.6;
}

.container {
    width: 95%;
    max-width: none;
    padding-left: 2rem;
    padding-right: 2rem;
    margin: 0 auto;
}

.top-strip {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    background: var(--primary-strong);
    color: #f2f8fc;
    padding: 0.45rem 4%;
    font-size: 0.85rem;
}

.site-header {
    border-bottom: 1px solid var(--line);
    background: rgba(255, 253, 247, 0.96);
    backdrop-filter: blur(6px);
    position: sticky;
    top: 0;
    z-index: 50;
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.9rem 0;
}

.header-inner {
    position: relative;
}

.menu-toggle {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.menu-toggle-label {
    display: none;
}

.brand {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand strong {
    display: block;
    font-size: 1.1rem;
}

.brand small {
    color: var(--ink-soft);
}

.brand-mark {
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 0.45rem;
    display: grid;
    place-items: center;
    background: linear-gradient(145deg, var(--primary), #127b9f);
    color: #fff;
    font-weight: 700;
}

.brand-logo {
    width: 2.45rem;
    height: 2.45rem;
    border-radius: 0.45rem;
    object-fit: cover;
    border: 1px solid #c3d8e3;
    background: #fff;
}

.main-nav {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.main-nav a {
    text-decoration: none;
    padding: 0.4rem 0.7rem;
    border-radius: 0.4rem;
    color: var(--ink);
}

.main-nav a.active,
.main-nav a:hover {
    background: #d8ebf4;
    color: var(--primary-strong);
}

.content {
    padding: 2rem 0 3rem;
}

.hero {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1.4fr 1fr;
    align-items: start;
    background: linear-gradient(170deg, #fffdf7, #f3fbff);
    border: 1px solid var(--line);
    border-radius: 1rem;
    padding: 2rem;
    animation: reveal 0.7s ease;
}

.hero-modern {
    position: relative;
    overflow: hidden;
    border-radius: 1.1rem;
    background:
        linear-gradient(140deg, #fffef9 0%, #f5f9ff 60%, #ecfbff 100%);
}

.hero-modern::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    right: -90px;
    top: -90px;
    background: radial-gradient(circle, rgba(0, 122, 168, 0.16), rgba(0, 122, 168, 0));
    pointer-events: none;
}

.hero h1 {
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    margin: 0.4rem 0 0.7rem;
    line-height: 1.2;
    max-width: 16ch;
}

.hero-main p {
    max-width: 56ch;
}

.hero-side {
    display: grid;
    gap: 0.9rem;
}

.hero-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 0.8rem;
    padding: 1.1rem 1.2rem;
}

.hero-card ul {
    margin: 0;
    padding-left: 1.1rem;
}

.hero-focus li {
    margin-bottom: 0.35rem;
}

.hero-note {
    background: linear-gradient(155deg, #09364a, #14526c);
    color: #f0f7fb;
    border: 0;
}

.hero-note p {
    margin: 0;
    color: #d2e8f3;
}

.hero-note h4 {
    margin: 0.35rem 0;
    color: #fff;
}

.hero-actions {
    margin-top: 1rem;
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.hero-strip {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.hero-strip span {
    font-size: 0.8rem;
    font-weight: 600;
    color: #114d66;
    background: #dff3fb;
    padding: 0.3rem 0.6rem;
    border-radius: 999px;
    border: 1px solid #bce4f3;
}

.section {
    margin-top: 2rem;
    animation: reveal 0.6s ease;
}

.section h1,
.section h2 {
    margin: 0.35rem 0 0.8rem;
    line-height: 1.25;
}

.eyebrow {
    margin: 0;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    font-size: 0.78rem;
}

.stat-grid,
.card-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.stat-card,
.panel {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 0.8rem;
    padding: 1rem 1.1rem;
}

.stat-card h3 {
    margin: 0;
    color: var(--primary);
    font-size: 1.5rem;
}

.section-title-row {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
}

.home-trust-ribbon {
    display: grid;
    gap: 0.85rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trust-pill {
    background: linear-gradient(155deg, #ffffff, #eef7fd);
    border: 1px solid #cfe0ea;
    border-radius: 0.85rem;
    padding: 0.85rem 0.95rem;
}

.trust-pill h4 {
    margin: 0 0 0.25rem;
    color: #0f4661;
}

.trust-pill p {
    margin: 0;
    color: #4e6272;
}

.home-story-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1.3fr 0.7fr;
    align-items: stretch;
}

.home-media-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.media-card {
    background: #fff;
    border: 1px solid #d6e3ea;
    border-radius: 0.9rem;
    overflow: hidden;
    min-height: 180px;
}

.media-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.media-card-wide {
    grid-column: span 2;
}

.home-vision-card {
    border: 1px solid #d6e5ec;
    border-radius: 0.95rem;
    background: linear-gradient(170deg, #f7fcff, #eef6fb);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.home-vision-card h3 {
    margin: 0.3rem 0 0.55rem;
    color: #123f56;
}

.home-vision-card p {
    margin: 0 0 0.9rem;
    color: #425b6b;
}

.stat-grid-modern {
    gap: 1.1rem;
}

.stat-card-modern {
    position: relative;
    overflow: hidden;
    background: linear-gradient(165deg, #ffffff, #f2f9fd);
    border-color: #cfe1eb;
    padding-top: 1.5rem;
}

.stat-order {
    position: absolute;
    top: 0.6rem;
    right: 0.7rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: #7894a7;
    letter-spacing: 0.06em;
}

.about-hero {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1.25fr 0.75fr;
    border: 1px solid #d6e4ec;
    border-radius: 1rem;
    background: linear-gradient(145deg, #fffefb, #edf7fc);
    padding: 1.25rem;
}

.about-hero-tags {
    margin-top: 0.9rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.about-hero-tags span {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: #14516a;
    background: #dbf1fa;
    border: 1px solid #b8deee;
    border-radius: 999px;
    padding: 0.28rem 0.6rem;
}

.about-profile-card {
    border: 1px solid #d3e2ea;
    border-radius: 0.9rem;
    background: #fff;
    padding: 0.95rem;
}

.about-profile-card h3 {
    margin: 0 0 0.6rem;
    color: #103f56;
}

.about-profile-card p {
    margin: 0 0 0.42rem;
    color: #455d6c;
}

.about-stat-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.about-mission-image-card {
    border: 1px solid #d2e3eb;
    border-radius: 1rem;
    overflow: hidden;
    background: #f4fafe;
    padding: 0.35rem;
}

.about-mission-image-card img {
    width: 100%;
    max-height: 560px;
    object-fit: cover;
    border-radius: 0.75rem;
    display: block;
}

.about-stat-card {
    border: 1px solid #cfe0ea;
    border-radius: 0.85rem;
    background: linear-gradient(165deg, #fff, #f1f9fd);
    padding: 1rem;
}

.about-stat-card h3 {
    margin: 0;
    color: #0f4b67;
    font-size: 1.45rem;
}

.about-stat-card p {
    margin: 0.25rem 0 0;
    color: #546a79;
    font-size: 0.93rem;
}

.about-mv-grid {
    gap: 1rem;
}

.about-mv-card {
    border-color: #d0e1ea;
    background: linear-gradient(170deg, #fff, #f5fbff);
}

.about-capability-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-capability-card {
    border: 1px solid #d4e3eb;
    border-radius: 0.85rem;
    background: #fff;
    padding: 1rem;
}

.about-capability-card h3 {
    margin: 0 0 0.4rem;
    color: #144860;
}

.about-capability-card p {
    margin: 0;
    color: #4f6575;
}

.about-pillar-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.about-principles-panel,
.about-pillars-panel {
    border-color: #d2e1e9;
    background: linear-gradient(175deg, #fff, #f8fcff);
}

.about-governance {
    border-color: #cddfe9;
    background: linear-gradient(165deg, #f7fcff, #eef7fb);
}

.about-governance-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-governance-grid h4 {
    margin: 0 0 0.35rem;
    color: #123f56;
}

.about-governance-grid p {
    margin: 0;
    color: #4d6474;
}

.initiative-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.project-card {
    display: flex;
    flex-direction: column;
}

.project-name-top {
    margin-top: 0.4rem;
}

.project-name-banner {
    border: 1px solid #d7e7ef;
    border-radius: 1rem;
    overflow: hidden;
    background: linear-gradient(165deg, #f7fcff, #edf6fb);
    box-shadow: 0 14px 30px -24px rgba(0, 0, 0, 0.5);
    padding: 0.35rem;
}

.project-name-banner-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #2d6078;
    margin: 0.15rem 0.5rem 0.4rem;
}

.project-name-banner img {
    width: 100%;
    height: auto;
    max-height: 360px;
    object-fit: contain;
    background: #fff;
    border-radius: 0.75rem;
    display: block;
}

.project-modern-hero {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 1.2rem;
    border: 1px solid #d9e6ec;
    border-radius: 1rem;
    background: linear-gradient(130deg, #fffefa 0%, #eef7fb 100%);
    padding: 1.3rem;
}

.project-intro-text {
    max-width: 65ch;
    color: var(--ink-soft);
}

.project-meta-grid {
    margin-top: 0.9rem;
    display: grid;
    gap: 0.7rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.project-inline-horizontal {
    margin-top: 2rem;
    border: 1px solid #cfe0e8;
    border-radius: 0.8rem;
    background: #f5fafe;
    overflow: hidden;
    min-height: 380px;
    display: grid;
    place-items: center;
    padding: 0.2rem;
}

.project-inline-horizontal img {
    width: 100%;
    height: 100%;
    max-height: 520px;
    object-fit: cover;
    display: block;
    background: #fff;
    border-radius: 0.5rem;
}

.project-meta-card {
    border: 1px solid #d8e6ee;
    border-radius: 0.75rem;
    background: #fff;
    padding: 0.75rem;
}

.project-meta-card span {
    display: block;
    font-size: 0.78rem;
    color: #617485;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.18rem;
}

.project-meta-card strong {
    color: #15384a;
}

.project-poster-focus {
    border: 1px solid #cfe0e8;
    border-radius: 0.9rem;
    background: #f4fafc;
    min-height: 420px;
    overflow: hidden;
    display: grid;
    place-items: center;
}

.project-poster-focus img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.project-gallery-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1.2fr 1fr 1.2fr;
}

.project-gallery-card {
    background: #fff;
    border: 1px solid #d7e6ee;
    border-radius: 0.8rem;
    overflow: hidden;
}

.project-gallery-card img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    background: #f5f9fc;
    display: block;
}

.project-gallery-card p {
    margin: 0;
    padding: 0.6rem 0.75rem;
    font-weight: 600;
    color: #20475c;
}

.project-gallery-card--project_name {
    grid-column: span 2;
}

.project-gallery-card--project_name img,
.project-gallery-card--horizontal img {
    height: 180px;
}

.project-gallery-card--vertical img {
    height: 340px;
}

.project-interest-panel {
    border: 1px solid #d2e1e9;
    border-radius: 1rem;
    background: linear-gradient(180deg, #ffffff, #f8fcff);
}

.project-interest-layout {
    display: grid;
    grid-template-columns: 1.4fr 0.9fr;
    gap: 1rem;
    align-items: start;
}

.project-form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.project-form-grid label:nth-of-type(4),
.project-form-grid button {
    grid-column: span 2;
}

.machine-image-card {
    border: 1px solid #d3e2ea;
    border-radius: 0.85rem;
    padding: 0.75rem;
    background: #f3f9fc;
}

.machine-image-title {
    margin: 0 0 0.55rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #325f75;
    font-weight: 700;
}

.machine-image-card img {
    width: 100%;
    max-height: 460px;
    border-radius: 0.65rem;
    object-fit: contain;
    display: block;
    background: #fff;
}

.project-card-media {
    margin: -1rem -1.1rem 0.9rem;
    border-bottom: 1px solid #d8e8f0;
    height: 360px;
    background: #f2f7fa;
    overflow: hidden;
}

.project-card-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.initiative-card {
    background: #fff;
    border: 1px solid #d9e8f1;
    border-radius: 0.9rem;
    padding: 1.1rem;
    box-shadow: 0 10px 22px -18px rgba(0, 0, 0, 0.5);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.initiative-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 26px -20px rgba(0, 0, 0, 0.6);
}

.initiative-card h3 {
    margin: 0 0 0.35rem;
    font-size: 1.08rem;
}

.initiative-card p {
    margin: 0;
    color: var(--ink-soft);
}

.section-panel {
    border: 1px solid #dce5ea;
    border-radius: 1rem;
    background: #f9fcfe;
    padding: 1.4rem;
}

.timeline-grid {
    margin-top: 0.8rem;
    display: grid;
    gap: 0.9rem;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.timeline-card {
    position: relative;
    background: #fff;
    border: 1px solid #dce8ef;
    border-radius: 0.8rem;
    padding: 0.95rem 0.95rem 0.95rem 1.15rem;
}

.timeline-card .dot {
    position: absolute;
    left: -0.38rem;
    top: 1rem;
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: var(--accent);
    border: 2px solid #fff;
    box-shadow: 0 0 0 1px #f1c58f;
}

.timeline-card h3 {
    margin: 0 0 0.3rem;
}

.timeline-card p {
    margin: 0;
    color: var(--ink-soft);
}

.cta-banner {
    margin-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    border: 1px solid #bfd6e0;
    border-radius: 1rem;
    padding: 1.35rem 1.4rem;
    background: linear-gradient(120deg, #0f394d, #12546d);
    color: #eff8fc;
}

.cta-banner h2 {
    margin: 0.35rem 0 0.45rem;
    color: #fff;
}

.cta-banner p {
    margin: 0;
    color: #d4eaf4;
}

.cta-banner .eyebrow {
    color: #89d2ef;
}

.cta-banner .btn-primary {
    background: #f39a33;
    color: #fff;
}

.cta-banner .btn-primary:hover {
    background: #e48617;
}

.tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #fff;
    background: var(--accent);
    padding: 0.16rem 0.48rem;
    border-radius: 0.25rem;
    margin-bottom: 0.5rem;
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table th,
.table td {
    border-bottom: 1px solid var(--line);
    padding: 0.72rem 0.4rem;
    text-align: left;
}

.list {
    margin: 0.4rem 0 0;
    padding-left: 1.1rem;
}

.form-grid {
    display: grid;
    gap: 0.8rem;
}

label {
    display: grid;
    gap: 0.35rem;
    font-weight: 600;
    color: var(--ink-soft);
}

input,
textarea {
    width: 100%;
    border: 1px solid #bfc8d1;
    border-radius: 0.45rem;
    padding: 0.58rem 0.72rem;
    font: inherit;
    color: var(--ink);
    background: #fff;
}

input:focus,
textarea:focus {
    outline: 2px solid #95d5ee;
    border-color: var(--primary);
}

.btn {
    text-decoration: none;
    display: inline-block;
    border-radius: 0.45rem;
    padding: 0.56rem 0.95rem;
    border: 1px solid transparent;
    font-weight: 600;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
}

.btn-primary:hover {
    background: #014e6a;
}

.btn-fire-register {
    background: linear-gradient(135deg, #ff5a00 0%, #ff8c00 45%, #ff2d00 100%);
    border-color: #ff6b00;
    color: #fff;
    box-shadow: 0 8px 18px -10px rgba(255, 79, 0, 0.9);
}

.btn-fire-register:hover {
    background: linear-gradient(135deg, #ff3f00 0%, #ff7600 45%, #e62500 100%);
}

.btn-outline {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: #e5f4fb;
}

.alert {
    border-radius: 0.55rem;
    padding: 0.7rem 0.85rem;
    margin-bottom: 0.85rem;
}

.alert.success {
    background: #e6f8ee;
    color: #145934;
    border: 1px solid #b4e0c4;
}

.alert.error {
    background: #fff0ef;
    color: #7f2920;
    border: 1px solid #f2c4bf;
}

.alert.error ul {
    margin: 0;
    padding-left: 1rem;
}

.site-footer {
    background: #102537;
    color: #c9e2f0;
    padding: 1.8rem 0;
}

.footer-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.footer-grid h4 {
    margin: 0 0 0.45rem;
    color: #fff;
}

.footer-modern {
    background: linear-gradient(165deg, #0d2231, #12364d);
    color: #d8e9f3;
    padding: 0;
    margin-top: 3rem;
}

.footer-modern-top {
    display: grid;
    grid-template-columns: 1.4fr 0.9fr 1fr 0.9fr;
    gap: 1.2rem;
    padding-top: 2rem;
    padding-bottom: 1.8rem;
}

.footer-modern-top > div {
    min-width: 0;
}

.footer-modern h3,
.footer-modern h4 {
    margin: 0 0 0.7rem;
    color: #ffffff;
}

.footer-modern p {
    margin: 0 0 0.45rem;
    color: #c7deeb;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.footer-tagline {
    color: #8fd0ea;
    font-weight: 600;
}

.footer-nav-block ul,
.footer-social-block ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.4rem;
}

.footer-nav-block a,
.footer-social-block a {
    color: #d8e9f3;
    text-decoration: none;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.footer-nav-block a:hover,
.footer-social-block a:hover {
    color: #8fd0ea;
}

.footer-modern-bottom {
    border-top: 1px solid #2a4960;
    background: #0a1a26;
}

.footer-bottom-row {
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-bottom-row p {
    margin: 0;
    font-size: 0.88rem;
    color: #aac8d8;
    overflow-wrap: anywhere;
    word-break: break-word;
}

@keyframes reveal {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1024px) {
    .container {
        width: 96%;
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .hero,
    .project-modern-hero,
    .about-hero,
    .project-interest-panel,
    .section-panel {
        padding: 1.2rem;
    }

    .project-poster-focus {
        min-height: 360px;
    }
}

@media (max-width: 860px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .project-modern-hero {
        grid-template-columns: 1fr;
    }

    .header-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 0.8rem;
    }

    .menu-toggle-label {
        display: inline-flex;
        width: 2.5rem;
        height: 2.5rem;
        border: 1px solid #bdd3df;
        border-radius: 0.55rem;
        align-items: center;
        justify-content: center;
        gap: 0.22rem;
        flex-direction: column;
        cursor: pointer;
        background: #f5fbff;
    }

    .menu-toggle-label span {
        width: 1.2rem;
        height: 2px;
        background: #1b4c64;
        border-radius: 2px;
    }

    .main-nav {
        width: 100%;
        order: 3;
        display: none;
        grid-template-columns: 1fr 1fr;
        gap: 0.45rem;
        padding-top: 0.35rem;
    }

    .menu-toggle:checked ~ .main-nav {
        display: grid;
    }

    .main-nav a {
        text-align: center;
        padding: 0.6rem 0.5rem;
        background: #f7fbfe;
        border: 1px solid #d6e5ed;
    }

    .home-trust-ribbon {
        grid-template-columns: 1fr;
    }

    .home-story-grid {
        grid-template-columns: 1fr;
    }

    .about-hero {
        grid-template-columns: 1fr;
    }

    .about-stat-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-capability-grid,
    .about-pillar-wrap {
        grid-template-columns: 1fr;
    }

    .about-governance-grid {
        grid-template-columns: 1fr;
    }

    .project-meta-grid {
        grid-template-columns: 1fr;
    }

    .project-inline-horizontal {
        min-height: 260px;
        margin-top: 1rem;
    }

    .project-inline-horizontal img {
        max-height: 360px;
        object-fit: contain;
    }

    .project-interest-layout {
        grid-template-columns: 1fr;
    }

    .project-form-grid {
        grid-template-columns: 1fr;
    }

    .project-form-grid label:nth-of-type(4),
    .project-form-grid button {
        grid-column: span 1;
    }

    .home-media-grid {
        grid-template-columns: 1fr 1fr;
    }

    .media-card-wide {
        grid-column: span 2;
    }

    .cta-banner {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-modern-top {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
}

@media (max-width: 760px) {
    .footer-modern-top {
        grid-template-columns: 1fr;
        gap: 0.9rem;
    }

    .footer-modern {
        margin-top: 2rem;
    }
}

@media (max-width: 620px) {
    .container {
        width: 98%;
        padding-left: 0.85rem;
        padding-right: 0.85rem;
    }

    .top-strip {
        flex-direction: column;
        padding: 0.5rem 4%;
        gap: 0.2rem;
    }

    .top-strip p {
        margin: 0;
    }

    .nav-wrap {
        align-items: center;
        flex-direction: row;
    }

    .brand {
        align-items: center;
        gap: 0.55rem;
        min-width: 0;
    }

    .brand strong {
        font-size: 0.98rem;
        line-height: 1.2;
    }

    .brand small {
        font-size: 0.85rem;
        line-height: 1.2;
    }

    .brand > span:last-child {
        min-width: 0;
    }

    .content {
        padding: 1rem 0 2rem;
    }

    .hero,
    .project-modern-hero,
    .about-hero,
    .project-interest-panel,
    .section-panel {
        padding: 1rem;
    }

    .home-media-grid {
        grid-template-columns: 1fr;
    }

    .about-stat-grid {
        grid-template-columns: 1fr;
    }

    .media-card-wide {
        grid-column: span 1;
    }

    .project-name-banner img {
        max-height: 220px;
    }

    .project-poster-focus {
        min-height: 300px;
    }

    .project-poster-focus img {
        object-fit: contain;
    }

    .machine-image-card img {
        max-height: 320px;
    }

    .table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .footer-bottom-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.35rem;
    }
}

@media (max-width: 420px) {
    .main-nav {
        grid-template-columns: 1fr;
    }

    .brand-logo,
    .brand-mark {
        width: 2.2rem;
        height: 2.2rem;
    }

    .hero-strip span {
        font-size: 0.72rem;
        padding: 0.25rem 0.5rem;
    }

    .hero-actions {
        width: 100%;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .stat-grid,
    .initiative-grid,
    .timeline-grid,
    .card-grid {
        grid-template-columns: 1fr;
    }
}
