/* =========================================================
   Last Light Landscapes - app.css
   ========================================================= */

/* ---------- Variables ---------- */

:root {
    --bg: #101010;
    --panel: #1a1a1a;
    --panel-soft: #181818;
    --text: rgba(255, 255, 255, 0.84);
    --text-strong: #f4f2ec;
    --text-warm: #e8dfd1;
    --text-muted: rgba(255, 255, 255, 0.68);
    --text-soft: rgba(255, 255, 255, 0.48);
    --accent: #b98a52;
    --border: rgba(255, 255, 255, 0.08);
    --button-border: rgba(255, 255, 255, 0.22);
    --shadow-card: 0 14px 38px rgba(0, 0, 0, 0.28);
    --shadow-image: 0 22px 58px rgba(0, 0, 0, 0.38);
    --radius-card: 24px;
    --radius-image: 24px;
    --max-page: 1240px;
    --max-content: 1120px;
}

/* ---------- Base ---------- */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 1.22rem;
    line-height: 1.82;
}

main {
    min-height: 100vh;
}

img {
    max-width: 100%;
}

a {
    color: inherit;
}

/* ---------- Shared Layout ---------- */

.section {
    width: min(var(--max-page), calc(100% - 64px));
    margin: 15px auto 0;
    padding-top: 84px;
    padding-bottom: 84px;
}

.home-page,
.about-page,
.contact-page {
    padding-top: 140px;
    padding-bottom: 100px;
}

.page-title {
    color: var(--text-strong);
    font-size: clamp(2.4rem, 4.4vw, 4.6rem);
    line-height: 1;
    letter-spacing: -0.05em;
    margin-top: 10px;
}

.page-description {
    color: var(--text);
    font-size: 1.22rem;
    line-height: 1.82;
}

/* ---------- Navigation ---------- */

.site-nav {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 58px;
    padding: 0 32px;
    background: rgba(18, 18, 18, 0.82);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    font-size: 1rem;
    line-height: 1.4;
}

.site-nav-inner {
    width: min(var(--max-page), 100%);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    color: white;
    text-decoration: none;
    font-size: 1.05rem;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.nav-links {
    display: flex;
    gap: 28px;
}

    .nav-links a {
        color: rgba(255, 255, 255, 0.78);
        text-decoration: none;
        font-size: 0.95rem;
        line-height: 1.2;
        font-weight: 500;
    }

        .nav-links a.active,
        .nav-links a:hover {
            color: white;
        }

/* ---------- Buttons ---------- */

.button-row,
.hero-actions,
.photo-detail-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 34px;
}

.button,
.primary-button,
.secondary-button,
.dark-button,
.outline-button,
.contact-email {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 1rem;
    line-height: 1.2;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

    .button:hover,
    .primary-button:hover,
    .secondary-button:hover,
    .dark-button:hover,
    .outline-button:hover,
    .contact-email:hover {
        transform: translateY(-2px);
    }

.primary-button,
.button-light {
    background: white;
    color: #111;
}

.secondary-button,
.button-ghost {
    color: white;
    border-color: rgba(255, 255, 255, 0.65);
}

.dark-button,
.button-dark {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-strong);
    border-color: var(--button-border);
}

    .dark-button:hover,
    .button-dark:hover,
    .outline-button:hover {
        background: rgba(255, 255, 255, 0.14);
        border-color: rgba(255, 255, 255, 0.38);
    }

.outline-button {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-strong);
    border-color: var(--button-border);
}

/* ---------- Home Page ---------- */

.home-intro-block {
    max-width: 900px;
    margin: 0 auto 64px;
    text-align: center;
}

    .home-intro-block .page-title {
        margin: 0 0 28px;
    }

    .home-intro-block .page-description {
        max-width: 720px;
        margin: 0 auto;
    }

    .home-intro-block .hero-actions {
        justify-content: center;
        margin-top: 34px;
    }

.home-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 44px;
}

.home-info-card,
.about-note,
.contact-card {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
}

.home-info-card {
    min-height: 220px;
    padding: 30px;
    text-align: left;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

    .home-info-card:hover {
        transform: translateY(-3px);
        border-color: rgba(255, 255, 255, 0.18);
    }

    .home-info-card.active {
        border-color: rgba(185, 138, 82, 0.65);
        background: rgba(185, 138, 82, 0.1);
    }

    .home-info-card span,
    .about-note span,
    .contact-card span {
        display: block;
        color: var(--accent);
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: 0.18em;
    }

    .home-info-card.active span {
        color: var(--text-warm);
    }

    .home-info-card span {
        margin-bottom: 36px;
        font-size: 0.72rem;
    }

    .home-info-card h2,
    .contact-card h2 {
        margin: 0 0 12px;
        color: var(--text-strong);
        font-size: 1.55rem;
        line-height: 1.12;
        letter-spacing: -0.035em;
    }

    .home-info-card p,
    .home-print-callout p,
    .contact-card p {
        margin: 0;
        color: var(--text-muted);
        font-size: 1rem;
        line-height: 1.7;
    }

.home-selected-photo {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
    gap: 36px;
    align-items: center;
    margin: 0 0 72px;
    padding: 28px;
    background: var(--panel-soft);
    border: 1px solid var(--border);
    border-radius: 28px;
    box-shadow: var(--shadow-card);
}

    .home-selected-photo img {
        width: 100%;
        object-fit: contain;
        border-radius: 22px;
        display: block;
        background: #111;
        box-shadow: var(--shadow-image);
    }

/* Orientation sizing */
.home-selected-photo-landscape img {
    max-height: 640px;
}

.home-selected-photo-portrait {
    grid-template-columns: minmax(320px, 520px) minmax(320px, 420px);
    justify-content: center;
}

    .home-selected-photo-portrait img {
        max-height: 760px;
    }

.home-selected-photo-square {
    grid-template-columns: minmax(320px, 620px) minmax(320px, 420px);
    justify-content: center;
}

    .home-selected-photo-square img {
        max-height: 620px;
    }
    }

.photo-detail-image img {
    width: 100%;
    display: block;
    object-fit: contain;
    border-radius: var(--radius-image);
    background: #111;
    box-shadow: var(--shadow-image);
}

.home-selected-photo-text span {
    display: block;
    margin-bottom: 14px;
    color: var(--accent);
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.home-selected-photo-text h2 {
    margin: 0 0 16px;
    color: var(--text-strong);
    font-size: clamp(2rem, 3vw, 3.4rem);
    line-height: 1;
    letter-spacing: -0.045em;
}

.home-selected-photo-text p {
    margin: 0;
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

.home-print-callout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 48px;
    padding: 36px;
    background: #151515;
    border: 1px solid var(--border);
    border-radius: 28px;
}

    .home-print-callout h2 {
        max-width: 760px;
        margin: 0 0 12px;
        color: var(--text-warm);
        font-size: clamp(1.8rem, 3vw, 3rem);
        line-height: 1.05;
        letter-spacing: -0.045em;
    }

.home-view-photo-button {
    margin-top: 28px;
    margin-left: 2px;
    margin-bottom: 10px;
    min-height: 46px;
    padding: 0 24px;
    font-size: 0.95rem;
    font-weight: 800;
    border-radius: 999px;
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.04);
}

    .home-view-photo-button:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.36);
    }

.home-selected-photo-text h2 {
    font-size: clamp(2rem, 4vw, 4.2rem);
}

.home-feature-image {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 32px;
    align-items: center;
    margin: 0 0 34px;
    padding: 26px;
    background: #181818;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.28);
}

    .home-feature-image img {
        width: 100%;
        aspect-ratio: 16 / 10;
        object-fit: cover;
        border-radius: 22px;
        display: block;
    }

    .home-feature-image span {
        display: block;
        margin-bottom: 14px;
        color: #b98a52;
        font-size: 0.72rem;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: 0.18em;
    }

    .home-feature-image h2 {
        margin: 0 0 16px;
        color: #f4f2ec;
        font-size: clamp(2rem, 3vw, 3.4rem);
        line-height: 1;
        letter-spacing: -0.045em;
    }

    .home-feature-image p {
        margin: 0;
        color: rgba(255, 255, 255, 0.72);
        font-size: 1.05rem;
        line-height: 1.7;
    }

.home-info-card {
    text-align: left;
    cursor: pointer;
}

    .home-info-card.active {
        border-color: rgba(185, 138, 82, 0.65);
        background: rgba(185, 138, 82, 0.1);
    }

        .home-info-card.active span {
            color: #e8dfd1;
        }

    .home-info-card:hover {
        transform: translateY(-3px);
        border-color: rgba(255, 255, 255, 0.18);
    }

/* ---------- Gallery Page ---------- */

.gallery-section {
    padding-top: 78px;
    padding-bottom: 84px;
}

.gallery-filters {
    position: sticky;
    top: 58px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
    width: fit-content;
    margin: 0 0 36px;
    padding: 10px;
    background: rgba(28, 28, 28, 0.86);
    border: 1px solid var(--border);
    border-radius: 999px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(12px);
}

    .gallery-filters select {
        appearance: none;
        min-width: 150px;
        padding: 12px 42px 12px 18px;
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 999px;
        background-color: #f7f7f4;
        color: #111;
        font-size: 0.95rem;
        font-weight: 700;
        cursor: pointer;
        background-image: linear-gradient(45deg, transparent 50%, #8a6335 50%), linear-gradient(135deg, #8a6335 50%, transparent 50%);
        background-position: calc(100% - 22px) 50%, calc(100% - 16px) 50%;
        background-size: 6px 6px, 6px 6px;
        background-repeat: no-repeat;
    }

        .gallery-filters select:hover {
            background-color: white;
            border-color: rgba(138, 99, 53, 0.34);
        }

        .gallery-filters select:focus {
            outline: none;
            border-color: rgba(138, 99, 53, 0.55);
            box-shadow: 0 0 0 4px rgba(138, 99, 53, 0.12);
        }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 28px;
    align-items: start;
}

.gallery-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    margin-top: 48px;
}

    .gallery-pagination button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 44px;
        padding: 0 20px;
        border-radius: 999px;
        border: 1px solid rgba(255, 255, 255, 0.22);
        background: rgba(255, 255, 255, 0.08);
        color: #f4f2ec;
        font-size: 0.95rem;
        font-weight: 700;
        cursor: pointer;
        transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
    }

        .gallery-pagination button:hover:not(:disabled) {
            transform: translateY(-2px);
            background: rgba(255, 255, 255, 0.14);
            border-color: rgba(255, 255, 255, 0.38);
        }

        .gallery-pagination button:disabled {
            opacity: 0.35;
            cursor: not-allowed;
        }

    .gallery-pagination span {
        color: rgba(255, 255, 255, 0.68);
        font-size: 0.95rem;
        font-weight: 700;
    }

.mobile-gallery {
    display: none;
}

.desktop-gallery {
    display: block;
}

.photo-card {
    height: 580px;
    display: grid;
    grid-template-rows: 128px 1fr;
    overflow: hidden;
    background: var(--panel);
    color: #f4f4f2;
    border-radius: var(--radius-card);
    text-decoration: none;
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.32);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .photo-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 22px 54px rgba(0, 0, 0, 0.48);
    }

.photo-card-body {
    padding: 26px 28px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

    .photo-card-body p {
        margin: 0;
    }

.photo-category {
    color: var(--accent);
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    line-height: 1;
}

.photo-card-body .photo-category {
    margin: 0 0 10px;
}

.photo-card h2 {
    margin: 0 0 4px;
    color: #f2f0ea;
    font-size: 1.22rem;
    line-height: 1.08;
    letter-spacing: -0.02em;
    max-width: 92%;
}

.photo-date {
    margin: 0;
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.9rem;
    line-height: 1.15;
}

.photo-card-image {
    height: 452px;
    padding: 16px 22px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

    .photo-card-image img {
        display: block;
        border-radius: 16px;
        overflow: hidden;
    }

.photo-card-image-landscape img {
    width: 450px;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}

.photo-card-image-portrait img {
    height: 400px;
    width: auto;
    max-width: 100%;
    max-height: 100%;
}

.photo-card-image-square img {
    width: 400px;
    height: 400px;
    object-fit: cover;
}

/* ---------- Photo Detail Page ---------- */

.photo-detail {
    width: min(var(--max-page), calc(100% - 64px));
    margin: 0 auto;
    padding: 110px 0 100px;
}

.photo-detail-info,
.photo-detail-bottom {
    width: min(var(--max-content), 100%);
    max-width: none;
    margin-left: auto;
    margin-right: auto;
}

.photo-detail-intro {
    margin-bottom: 42px;
}

.photo-detail-info .photo-category {
    color: var(--accent);
}

.photo-detail-info h1 {
    max-width: none;
    margin: 14px 0 20px;
    color: var(--text-warm);
    font-size: clamp(2.4rem, 4.4vw, 4.8rem);
    line-height: 1;
    letter-spacing: -0.05em;
}

.photo-description {
    width: 100%;
    max-width: none;
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.18rem;
    line-height: 1.82;
}

.photo-detail-image {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 52px;
}

.photo-detail-image-landscape {
    width: min(var(--max-content), 100%);
}

.photo-detail-image-portrait {
    width: min(720px, 100%);
}

.photo-detail-image-square {
    width: min(820px, 100%);
}

.photo-detail-bottom {
    padding-top: 8px;
}

.photo-meta {
    margin: 0 0 34px;
}

.photo-meta-inline {
    display: grid;
    grid-template-columns: minmax(260px, 360px) minmax(260px, 360px);
    justify-content: center;
    column-gap: 56px;
    row-gap: 20px;
    align-items: start;
}

.photo-meta div {
    padding: 0;
    border-bottom: none;
    text-align: center;
}

.photo-meta dt {
    margin-bottom: 8px;
    color: var(--text-soft);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.photo-meta dd {
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 700;
}

.photo-detail-actions {
    display: grid;
    grid-template-columns: minmax(260px, 360px) minmax(260px, 360px);
    justify-content: center;
    column-gap: 56px;
    margin-top: 0;
}

    .photo-detail-actions a {
        justify-self: center;
    }

/* ---------- About Page ---------- */

.about-page {
    min-height: 100vh;
}

.about-layout {
    max-width: 900px;
    margin: 0 auto;
}

.about-main h1 {
    max-width: 860px;
    margin: 0 0 36px;
}

.about-copy {
    max-width: 820px;
}

    .about-copy p {
        margin: 0 0 22px;
    }

        .about-copy p:last-child {
            margin-bottom: 0;
        }

.about-note {
    margin-top: 48px;
    padding: 30px;
    background: var(--panel-soft);
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.24);
}

    .about-note span {
        margin-bottom: 18px;
        font-size: 0.7rem;
    }

    .about-note ul {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px 28px;
        margin: 0;
        padding-left: 18px;
        color: rgba(255, 255, 255, 0.76);
        font-size: 1rem;
        line-height: 1.7;
    }

    .about-note li {
        padding-left: 4px;
    }

        .about-note li::marker {
            color: var(--accent);
        }

/* ---------- Contact Page ---------- */

.contact-page {
    min-height: 100vh;
}

.contact-main {
    width: min(980px, 100%);
    margin: 0 auto;
}

    .contact-main h1 {
        max-width: 820px;
        margin: 0 0 28px;
    }

.contact-intro {
    max-width: 820px;
    margin: 0 0 52px;
}

    .contact-intro strong {
        color: var(--text-strong);
        font-weight: 800;
    }

.contact-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 24px;
}

.contact-card {
    padding: 32px;
}

    .contact-card span {
        margin-bottom: 14px;
        font-size: 0.68rem;
    }

    .contact-card h2 {
        margin: 0 0 14px;
        color: var(--text-strong);
        font-size: 1.5rem;
        letter-spacing: -0.03em;
    }

    .contact-card p {
        margin-bottom: 24px;
    }

.contact-email {
    min-height: 50px;
    padding: 0 24px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-strong);
    border-color: var(--button-border);
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.22);
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
    .section {
        width: min(100% - 32px, var(--max-page));
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .page-title {
        font-size: clamp(2.2rem, 10vw, 3.8rem);
    }

    .page-description {
        font-size: 1.08rem;
    }

    .home-page,
    .about-page,
    .contact-page {
        padding-top: 120px;
        padding-bottom: 80px;
    }

    .site-nav {
        position: absolute;
        height: auto;
        align-items: flex-start;
        padding: 18px 6%;
    }

    .site-nav-inner {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .nav-links {
        gap: 18px;
        flex-wrap: wrap;
    }

    .home-intro-block {
        text-align: left;
        margin-bottom: 44px;
    }

        .home-intro-block .page-description {
            margin-left: 0;
        }

        .home-intro-block .hero-actions {
            justify-content: flex-start;
        }

    .home-selected-photo,
    .home-selected-photo-portrait,
    .home-selected-photo-square {
        grid-template-columns: 1fr;
    }

        .home-selected-photo img,
        .home-selected-photo-landscape img,
        .home-selected-photo-portrait img,
        .home-selected-photo-square img {
            width: 100%;
            max-height: none;
        }

    .home-selected-photo-link {
        display: block;
        text-decoration: none;
    }

        .home-selected-photo-link img {
            transition: transform 0.25s ease, opacity 0.25s ease;
        }

        .home-selected-photo-link:hover img {
            transform: scale(1.01);
            opacity: 0.92;
        }

    .home-feature-image {
        grid-template-columns: 1fr;
        padding: 20px;
    }

        .home-feature-image img {
            aspect-ratio: 4 / 3;
        }

    .home-info-card {
        width: 100%;
    }

    .home-info-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-bottom: 52px;
    }

    .home-info-card {
        min-height: auto;
        padding: 26px;
    }

        .home-info-card span {
            margin-bottom: 24px;
        }

    .home-print-callout {
        flex-direction: column;
        align-items: flex-start;
        padding: 28px;
    }

        .home-print-callout .dark-button {
            width: 100%;
        }

    .gallery-section {
        padding-top: 130px;
        padding-bottom: 72px;
    }

    .gallery-filters {
        width: 100%;
        border-radius: 24px;
        padding: 12px;
    }

        .gallery-filters select {
            flex: 1 1 100%;
            width: 100%;
        }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-pagination {
        flex-direction: column;
        gap: 12px;
    }

        .gallery-pagination button {
            width: 100%;
        }

    .desktop-gallery {
        display: none;
    }

    .mobile-gallery {
        display: block;
    }

    .gallery-pagination {
        display: none;
    }

    .photo-card {
        height: auto;
        grid-template-rows: auto auto;
    }

    .photo-card-body {
        padding: 24px 24px 14px;
    }

    .photo-card-image {
        height: 300px;
        padding: 16px 22px 24px;
    }

    .photo-card-image-landscape img {
        height: 215px;
        width: auto;
        max-width: 100%;
    }

    .photo-card-image-portrait img {
        width: 215px;
        height: auto;
        max-height: 100%;
    }

    .photo-card-image-square img {
        width: 215px;
        height: 215px;
        object-fit: cover;
    }

    .photo-detail {
        width: min(100% - 32px, var(--max-page));
        padding: 92px 0 72px;
    }

    .photo-detail-info,
    .photo-detail-bottom,
    .photo-detail-image,
    .photo-detail-image-landscape,
    .photo-detail-image-portrait,
    .photo-detail-image-square {
        width: 100%;
    }

    .photo-detail-intro {
        margin-bottom: 32px;
    }

    .photo-detail-info h1 {
        font-size: clamp(2.2rem, 10vw, 3.6rem);
    }

    .photo-description {
        font-size: 1.08rem;
    }

    .photo-detail-image {
        margin-bottom: 40px;
    }

        .photo-detail-image img {
            border-radius: 18px;
        }

    .photo-meta-inline,
    .photo-detail-actions {
        grid-template-columns: 1fr;
        justify-content: stretch;
        gap: 20px;
    }

    .photo-meta div {
        text-align: left;
    }

    .photo-detail-actions {
        justify-items: center;
    }

        .photo-detail-actions a {
            justify-self: center;
        }

    .about-layout {
        max-width: none;
    }

    .about-note {
        margin-top: 36px;
        padding: 26px;
    }

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

    .contact-intro {
        font-size: 1.12rem;
    }

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

    .contact-card {
        padding: 26px;
    }

    .contact-email {
        width: 100%;
    }
}

/* ---------- Blazor Default Error UI - Keep This ---------- */

#blazor-error-ui {
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 2000;
    display: none;
    width: 100%;
    padding: 0.6rem 1.25rem 0.7rem;
    background: lightyellow;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
}

    #blazor-error-ui .dismiss {
        position: absolute;
        top: 0.5rem;
        right: 0.75rem;
        cursor: pointer;
    }
