:root {
    --blue-950: #061936;
    --blue-900: #082653;
    --blue-800: #0b3c88;
    --blue-700: #0b55c7;
    --blue-600: #1177ee;
    --blue-100: #dcecff;
    --blue-50: #f4f9ff;
    --cyan: #53d5ff;
    --ink: #0a1628;
    --muted: #5d6b80;
    --line: rgba(12, 52, 96, .13);
    --white: #fff;
    --shadow: 0 24px 70px rgba(8, 38, 83, .14);
    --radius-xl: 34px;
    --radius-lg: 24px;
    --radius-md: 16px;
    --shell: min(1180px, calc(100vw - 40px));
    --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: var(--font);
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(83, 213, 255, .18), transparent 32rem),
        linear-gradient(180deg, #f7fbff 0%, #ffffff 36%, #f5f9ff 100%);
    line-height: 1.65;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

.skip-link {
    position: fixed;
    left: 16px;
    top: 12px;
    z-index: 1000;
    transform: translateY(-140%);
    padding: 10px 14px;
    border-radius: 999px;
    background: var(--blue-900);
    color: var(--white);
    transition: transform .2s ease;
}

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

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

.top-ribbon {
    background: var(--blue-950);
    color: rgba(255, 255, 255, .86);
    font-size: .88rem;
}

.ribbon-inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

.ribbon-inner span:first-child {
    margin-right: auto;
    color: var(--cyan);
    font-weight: 700;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, .82);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
}

.nav-shell {
    min-height: 78px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.brand img {
    width: 188px;
    height: auto;
}

.primary-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 7px;
}

.primary-nav a {
    position: relative;
    padding: 10px 12px;
    border-radius: 999px;
    color: #253651;
    font-size: .94rem;
    font-weight: 700;
    transition: background .2s ease, color .2s ease;
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
    color: var(--blue-800);
    background: rgba(17, 119, 238, .09);
}

.nav-cta,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 46px;
    padding: 12px 18px;
    border: 0;
    border-radius: 999px;
    font-weight: 800;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.nav-cta,
.btn-primary {
    color: var(--white);
    background: linear-gradient(135deg, var(--blue-700), var(--blue-600));
    box-shadow: 0 14px 34px rgba(11, 85, 199, .26);
}

.btn-ghost {
    color: var(--blue-900);
    background: rgba(255, 255, 255, .78);
    border: 1px solid rgba(255, 255, 255, .55);
}

.btn:hover,
.nav-cta:hover {
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 18px;
    background: var(--blue-950);
    color: var(--white);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 4px auto;
    background: currentColor;
    border-radius: 999px;
}

.menu-toggle b {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
}

.hero {
    position: relative;
    min-height: 620px;
    display: grid;
    place-items: center;
    overflow: hidden;
    isolation: isolate;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(6, 25, 54, .93) 0%, rgba(8, 38, 83, .72) 42%, rgba(8, 38, 83, .18) 100%),
        radial-gradient(circle at 20% 20%, rgba(83, 213, 255, .34), transparent 32rem);
}

.hero-content {
    color: var(--white);
    padding: 84px 0 112px;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--blue-600);
    font-size: .82rem;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.hero .eyebrow,
.cta-card .eyebrow {
    color: var(--cyan);
}

.hero h1,
.page-hero h1,
.detail-hero h1 {
    max-width: 820px;
    margin: 0;
    font-size: clamp(2.25rem, 4.8vw, 4.65rem);
    line-height: .98;
    letter-spacing: -.06em;
}

.hero p:not(.eyebrow),
.page-hero p:not(.eyebrow),
.detail-hero p:not(.eyebrow) {
    max-width: 710px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, .84);
    font-size: clamp(1rem, 1.7vw, 1.18rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.hero-meter {
    position: absolute;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    width: min(720px, calc(100vw - 40px));
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
    color: rgba(255, 255, 255, .9);
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(14px);
}

.hero-meter span {
    padding: 12px 16px;
    text-align: center;
    font-weight: 800;
}

.hero-meter span + span {
    border-left: 1px solid rgba(255, 255, 255, .18);
}

.section {
    padding: clamp(58px, 8vw, 104px) 0;
}

.section-head {
    margin-bottom: 30px;
}

.split-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 28px;
}

.section-head h2,
.process-copy h2,
.cta-card h2,
.about-panels h2 {
    max-width: 760px;
    margin: 0;
    color: var(--blue-950);
    font-size: clamp(1.75rem, 3vw, 3rem);
    line-height: 1.07;
    letter-spacing: -.045em;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blue-700);
    font-weight: 900;
}

.text-link::after {
    content: "→";
    transition: transform .2s ease;
}

.text-link:hover::after { transform: translateX(4px); }

.card-stream {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: -70px;
    position: relative;
    z-index: 4;
}

.intro-card,
.service-tile,
.service-row,
.detail-block,
.contact-cards article,
.hours-card,
.contact-form,
.news-card,
.project-card,
.about-panels article {
    background: rgba(255, 255, 255, .92);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.intro-card {
    min-height: 292px;
    padding: 28px;
    border-radius: var(--radius-xl);
}

.card-index {
    display: inline-flex;
    margin-bottom: 36px;
    color: rgba(11, 85, 199, .22);
    font-size: 2.2rem;
    font-weight: 950;
    line-height: 1;
}

.intro-card h2 {
    margin: 0 0 12px;
    font-size: 1.25rem;
    color: var(--blue-950);
    text-transform: uppercase;
}

.intro-card p,
.service-tile p,
.service-row p,
.detail-block p,
.about-panels p,
.news-card p,
.contact-section p,
.process-copy p,
.steps p,
.article-body p {
    color: var(--muted);
}

.service-river {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.service-tile {
    position: relative;
    min-height: 310px;
    padding: 14px;
    border-radius: 28px;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
}

.service-tile:hover {
    transform: translateY(-7px);
    box-shadow: 0 30px 80px rgba(8, 38, 83, .2);
}

.service-tile img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 20px;
}

.service-icon {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    margin-top: -22px;
    margin-left: 12px;
    position: relative;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--blue-700), var(--cyan));
    color: var(--white);
    font-size: 1.35rem;
    font-weight: 900;
    box-shadow: 0 12px 24px rgba(11, 85, 199, .24);
}

.service-tile h3,
.service-row h2,
.news-card h2,
.news-card h3,
.detail-block h2,
.steps h3,
.contact-cards h2,
.hours-card h2,
.contact-form h2,
.article-cta h2 {
    margin: 14px 12px 8px;
    color: var(--blue-950);
    line-height: 1.15;
    letter-spacing: -.03em;
}

.service-tile p {
    margin: 0 12px 14px;
    font-size: .94rem;
}

.process-panel {
    background:
        linear-gradient(135deg, rgba(8, 38, 83, .96), rgba(11, 85, 199, .9)),
        url("../img/hero-cam.jpg") center / cover;
    color: var(--white);
}

.process-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 28px;
    align-items: start;
}

.process-copy {
    position: sticky;
    top: 112px;
}

.process-copy h2,
.process-copy p {
    color: var(--white);
}

.process-copy p {
    color: rgba(255, 255, 255, .78);
}

.steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.steps article {
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 28px;
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(14px);
}

.steps b {
    color: var(--cyan);
    font-size: 2.3rem;
    line-height: 1;
}

.steps h3 {
    margin-left: 0;
    color: var(--white);
}

.steps p {
    margin: 0;
    color: rgba(255, 255, 255, .75);
}

.preview-strip {
    display: grid;
    grid-template-columns: 1.35fr .8fr .8fr;
    grid-auto-rows: 190px;
    gap: 14px;
}

.preview-strip img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.preview-strip img:first-child {
    grid-row: span 2;
}

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

.news-card {
    overflow: hidden;
    border-radius: 30px;
}

.news-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.news-card div {
    padding: 22px;
}

.news-card time {
    color: var(--blue-700);
    font-weight: 900;
    font-size: .86rem;
}

.news-card h2,
.news-card h3 {
    margin-left: 0;
}

.news-card p {
    margin-bottom: 0;
}

.cta-section {
    padding: 34px 0 92px;
}

.cta-card {
    position: relative;
    overflow: hidden;
    padding: clamp(32px, 6vw, 62px);
    border-radius: 38px;
    color: var(--white);
    background:
        radial-gradient(circle at 85% 20%, rgba(83, 213, 255, .36), transparent 24rem),
        linear-gradient(135deg, var(--blue-950), var(--blue-700));
    box-shadow: var(--shadow);
}

.cta-card h2 {
    color: var(--white);
}

.cta-card .btn {
    margin-top: 24px;
    background: var(--white);
    color: var(--blue-900);
}

.page-hero,
.detail-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 16% 20%, rgba(83, 213, 255, .24), transparent 28rem),
        linear-gradient(135deg, var(--blue-950), var(--blue-800));
    color: var(--white);
}

.compact-hero .shell,
.page-hero .shell {
    padding: clamp(62px, 9vw, 110px) 0;
}

.page-hero p:not(.eyebrow),
.detail-hero p:not(.eyebrow) {
    color: rgba(255, 255, 255, .78);
}

.service-list {
    display: grid;
    gap: 18px;
}

.service-row {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 24px;
    align-items: center;
    padding: 16px;
    border-radius: var(--radius-xl);
}

.service-row img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 24px;
}

.service-row .service-icon {
    margin: 0;
}

.service-row h2,
.service-row p {
    margin-left: 0;
}

.detail-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 430px;
    gap: 42px;
    align-items: center;
    padding: clamp(56px, 8vw, 94px) 0;
}

.detail-hero figure {
    margin: 0;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 34px;
    background: rgba(255, 255, 255, .12);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .24);
}

.detail-hero img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 26px;
}

.content-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 28px;
    align-items: start;
}

.side-card {
    position: sticky;
    top: 112px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.side-card h2 {
    margin: 4px 8px 12px;
    color: var(--blue-950);
    font-size: 1.1rem;
}

.side-card a {
    display: block;
    padding: 11px 12px;
    border-radius: 16px;
    color: #33445d;
    font-weight: 800;
}

.side-card a:hover,
.side-card a[aria-current="page"] {
    color: var(--blue-800);
    background: var(--blue-50);
}

.detail-content {
    display: grid;
    gap: 16px;
}

.detail-block {
    padding: clamp(24px, 4vw, 38px);
    border-radius: var(--radius-xl);
}

.detail-block h2 {
    margin: 0 0 12px;
    font-size: clamp(1.35rem, 2.2vw, 2rem);
}

.detail-block p {
    margin: 0;
}

.check-list {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 30px;
    color: var(--muted);
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    display: inline-grid;
    place-items: center;
    width: 20px;
    height: 20px;
    border-radius: 7px;
    color: var(--white);
    background: var(--blue-700);
    font-size: .78rem;
    font-weight: 900;
}

.two-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 42px;
    align-items: center;
}

.about-hero img {
    width: 100%;
    max-height: 440px;
    object-fit: cover;
    object-position: center;
    border-radius: 34px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .24);
}

.about-panels {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.about-panels article {
    padding: clamp(24px, 4vw, 34px);
    border-radius: var(--radius-xl);
}

.about-panels .wide {
    grid-column: 1 / -1;
}

.project-grid {
    columns: 3 280px;
    column-gap: 18px;
}

.project-card {
    break-inside: avoid;
    margin: 0 0 18px;
    overflow: hidden;
    border-radius: 28px;
}

.project-card img {
    width: 100%;
    object-fit: cover;
}

.project-card figcaption {
    padding: 12px 16px 16px;
    color: var(--muted);
    font-weight: 800;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 18px;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column: 1 / -1;
    gap: 16px;
}

.contact-cards article,
.hours-card,
.contact-form {
    padding: 24px;
    border-radius: 30px;
}

.contact-cards span {
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 18px;
    color: var(--white);
    background: linear-gradient(135deg, var(--blue-700), var(--cyan));
    font-weight: 900;
}

.contact-cards h2,
.hours-card h2,
.contact-form h2 {
    margin-left: 0;
    font-size: 1.15rem;
}

.hours-card dl {
    display: grid;
    gap: 10px;
    margin: 0;
}

.hours-card dl div {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--line);
}

.hours-card dt {
    color: var(--blue-950);
    font-weight: 900;
}

.hours-card dd {
    margin: 0;
    color: var(--muted);
}

.contact-form {
    display: grid;
    gap: 14px;
}

.contact-form label {
    display: grid;
    gap: 7px;
    color: var(--blue-950);
    font-weight: 850;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 13px 14px;
    color: var(--ink);
    background: #fafdff;
    outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: rgba(11, 85, 199, .55);
    box-shadow: 0 0 0 4px rgba(17, 119, 238, .11);
}

.contact-form .btn {
    justify-self: start;
}

.form-note {
    margin: 0;
    font-size: .9rem;
}

.large-news {
    grid-template-columns: 1fr;
}

.large-news .news-card {
    display: grid;
    grid-template-columns: 360px 1fr;
}

.large-news .news-card img {
    height: 100%;
    aspect-ratio: auto;
}

.article-body {
    max-width: 820px;
}

.article-body p {
    font-size: 1.08rem;
}

.article-cta {
    margin-top: 34px;
    padding: 28px;
    border-radius: 28px;
    background: var(--blue-50);
    border: 1px solid var(--line);
}

.article-cta h2 {
    margin: 0 0 8px;
}

.site-footer {
    background: var(--blue-950);
    color: rgba(255, 255, 255, .78);
    padding: 58px 0 26px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr .8fr 1fr;
    gap: 34px;
}

.footer-logo {
    width: 190px;
    margin-bottom: 18px;
    filter: brightness(0) invert(1);
}

.site-footer h2 {
    margin: 0 0 14px;
    color: var(--white);
    font-size: 1.05rem;
}

.footer-links {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links a:hover {
    color: var(--cyan);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    font-size: .92rem;
}

.float-actions {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 90;
    display: flex;
    gap: 10px;
}

.float-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 72px;
    min-height: 48px;
    padding: 10px 14px;
    border-radius: 999px;
    color: var(--white);
    background: var(--blue-950);
    box-shadow: 0 16px 40px rgba(6, 25, 54, .28);
    font-weight: 900;
}

.float-actions a:last-child {
    background: linear-gradient(135deg, #0e9f6e, #11c786);
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .55s ease, transform .55s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1100px) {
    .service-river {
        grid-template-columns: repeat(3, 1fr);
    }

    .primary-nav {
        gap: 2px;
    }

    .primary-nav a {
        padding-inline: 9px;
        font-size: .88rem;
    }
}

@media (max-width: 880px) {
    :root {
        --shell: min(100vw - 28px, 720px);
    }

    .top-ribbon {
        display: none;
    }

    .nav-shell {
        min-height: 70px;
    }

    .brand img {
        width: 154px;
    }

    .menu-toggle {
        display: inline-block;
        margin-left: auto;
    }

    .nav-cta {
        display: none;
    }

    .primary-nav {
        position: fixed;
        left: 14px;
        right: 14px;
        top: 82px;
        z-index: 120;
        display: grid;
        gap: 8px;
        padding: 16px;
        border: 1px solid var(--line);
        border-radius: 26px;
        background: rgba(255, 255, 255, .97);
        box-shadow: var(--shadow);
        transform: translateY(-14px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity .2s ease, transform .2s ease;
    }

    body.nav-open .primary-nav,
    .nav-open .primary-nav {
        opacity: 1 !important;
        visibility: visible;
        transform: translateY(0) !important;
        pointer-events: auto !important;
    }

    .primary-nav a {
        padding: 13px 14px;
        font-size: 1rem;
    }

    .hero {
        min-height: auto;
        place-items: end;
    }

    .hero::before {
        background:
            linear-gradient(180deg, rgba(6, 25, 54, .78) 0%, rgba(6, 25, 54, .9) 72%, rgba(6, 25, 54, .95) 100%),
            radial-gradient(circle at 20% 20%, rgba(83, 213, 255, .28), transparent 26rem);
    }

    .hero-content {
        padding: 94px 0 94px;
    }

    .hero h1,
    .page-hero h1,
    .detail-hero h1 {
        font-size: clamp(2rem, 10vw, 3.25rem);
        line-height: 1.04;
    }

    .hero-meter {
        display: none;
    }

    .card-stream {
        grid-template-columns: 1fr;
        margin-top: -38px;
    }

    .intro-card {
        min-height: auto;
    }

    .split-head {
        align-items: start;
        flex-direction: column;
    }

    .service-river {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid,
    .detail-hero-grid,
    .content-grid,
    .about-hero-grid,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .process-copy,
    .side-card {
        position: static;
    }

    .contact-cards {
        grid-template-columns: 1fr;
    }

    .large-news .news-card {
        grid-template-columns: 1fr;
    }

    .about-hero img {
        max-height: 320px;
    }
}

@media (max-width: 620px) {
    body {
        line-height: 1.58;
        padding-bottom: 76px;
    }

    .hero-content {
        padding-top: 76px;
    }

    .hero-actions,
    .footer-bottom {
        flex-direction: column;
        align-items: stretch;
    }

    .btn,
    .nav-cta {
        width: 100%;
    }

    .service-river,
    .steps,
    .two-col,
    .preview-strip,
    .news-grid {
        grid-template-columns: 1fr;
    }

    .preview-strip {
        grid-auto-rows: auto;
    }

    .preview-strip img,
    .preview-strip img:first-child {
        grid-row: auto;
        aspect-ratio: 4 / 3;
    }

    .service-row {
        grid-template-columns: 1fr;
    }

    .compact-hero .shell,
    .page-hero .shell,
    .detail-hero-grid {
        padding: 48px 0;
    }

    .detail-hero figure {
        border-radius: 26px;
    }

    .detail-hero img {
        border-radius: 20px;
    }

    .project-grid {
        columns: 1;
    }

    .float-actions {
        left: 12px;
        right: 12px;
        bottom: 12px;
    }

    .float-actions a {
        flex: 1;
    }
}

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

    .reveal {
        opacity: 1;
        transform: none;
    }
}
