:root {
    --navy: #0f2a44;
    --navy-soft: #173b5a;
    --green: #2f8f5b;
    --green-dark: #1f6f47;
    --leaf: #6fa640;
    --mint: #e7f5ed;
    --sky: #e8f2f8;
    --gold: #f2b84b;
    --cream: #fff7e7;
    --ink: #1d2935;
    --muted: #5d6d7d;
    --line: #dbe5ec;
    --paper: #ffffff;
    --off: #f7faf8;
    --shadow: 0 18px 48px rgba(15, 42, 68, 0.13);
    --soft-shadow: 0 12px 28px rgba(15, 42, 68, 0.09);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    background:
        linear-gradient(180deg, rgba(232, 242, 248, 0.6), rgba(247, 250, 248, 0) 440px),
        var(--off);
}

body.menu-open {
    overflow: hidden;
}

body.lightbox-open {
    overflow: hidden;
}

a {
    color: inherit;
}

img {
    max-width: 100%;
}

.skip-link,
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.skip-link:focus {
    width: auto;
    height: auto;
    clip: auto;
    z-index: 100;
    padding: 10px 14px;
    background: var(--paper);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(219, 229, 236, 0.85);
    backdrop-filter: blur(16px);
    transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 12px 30px rgba(15, 42, 68, 0.08);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: min(1180px, calc(100% - 32px));
    min-height: 76px;
    margin: 0 auto;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    color: var(--navy);
    text-decoration: none;
}

.brand strong,
.brand small {
    display: block;
}

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

.brand small {
    color: var(--green-dark);
    font-size: 0.82rem;
}

.brand-logo {
    display: grid;
    place-items: center;
    flex: 0 0 64px;
    width: 64px;
    height: 54px;
    overflow: hidden;
    border-radius: 8px;
    background: white;
    box-shadow: 0 10px 24px rgba(15, 42, 68, 0.12);
}

.brand-logo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 4px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-menu a {
    position: relative;
    padding: 10px 12px;
    border-radius: 8px;
    color: var(--navy);
    text-decoration: none;
    font-weight: 800;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-menu a:hover,
.nav-menu a[aria-current="page"] {
    background: var(--sky);
}

.nav-menu a:hover {
    transform: translateY(-1px);
}

.nav-menu .nav-cta {
    color: white;
    background: var(--green);
    box-shadow: 0 10px 22px rgba(47, 143, 91, 0.22);
}

.nav-menu .nav-cta:hover {
    background: var(--green-dark);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    background: var(--navy);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.hero {
    position: relative;
    display: grid;
    align-items: center;
    min-height: min(780px, calc(100vh - 76px));
    overflow: hidden;
    color: white;
    background: var(--navy);
    isolation: isolate;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 120px;
    background: linear-gradient(180deg, rgba(247, 250, 248, 0), var(--off));
    z-index: 1;
}

.hero-media {
    background-image: url("../images/hero-cmsa.png");
    background-size: cover;
    background-position: center right;
}

.hero-media {
    position: absolute;
    inset: -8% 0;
    z-index: -1;
    transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.04);
}

.hero-media::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(15, 42, 68, 0.96) 0%, rgba(15, 42, 68, 0.78) 45%, rgba(15, 42, 68, 0.2) 100%),
        radial-gradient(circle at 72% 22%, rgba(242, 184, 75, 0.22), transparent 24%),
        radial-gradient(circle at 24% 82%, rgba(47, 143, 91, 0.24), transparent 30%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 90px 0 130px;
}

.hero-panel {
    position: absolute;
    right: max(16px, calc((100% - 1180px) / 2));
    bottom: 58px;
    z-index: 3;
    display: grid;
    gap: 6px;
    width: min(360px, calc(100% - 32px));
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
}

.hero-panel span,
.hero-panel small {
    color: #eaf4f7;
}

.hero-panel strong {
    font-size: 1.1rem;
    line-height: 1.25;
}

.eyebrow,
.label {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 8px;
    color: var(--green-dark);
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.eyebrow {
    padding: 7px 10px;
    color: var(--navy);
    background: var(--gold);
    border-radius: 8px;
    box-shadow: 0 12px 28px rgba(242, 184, 75, 0.25);
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    max-width: 780px;
    margin-bottom: 10px;
    font-size: clamp(2.55rem, 7vw, 5.4rem);
    line-height: 0.98;
    letter-spacing: 0;
}

h2 {
    color: var(--navy);
    font-size: clamp(1.75rem, 4vw, 3rem);
    line-height: 1.08;
    letter-spacing: 0;
}

h3 {
    color: var(--navy);
    font-size: 1.22rem;
    line-height: 1.25;
}

.hero-slogan {
    margin-bottom: 12px;
    color: #dff3e7;
    font-size: clamp(1.25rem, 3vw, 2rem);
    font-weight: 900;
}

.hero-copy {
    max-width: 610px;
    color: #edf6fa;
    font-size: 1.16rem;
}

.audience {
    color: #f7d88f;
    font-weight: 900;
}

.hero-actions,
.cta-band,
.intro-band {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 18px;
    border: 0;
    border-radius: 8px;
    font-weight: 900;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
    color: white;
    background: var(--green);
    box-shadow: 0 12px 26px rgba(47, 143, 91, 0.25);
}

.btn-primary:hover {
    background: var(--green-dark);
}

.btn-secondary {
    color: var(--navy);
    background: white;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
}

.section {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 76px 0;
}

.intro-band {
    justify-content: space-between;
    padding: 36px 0 28px;
}

.intro-band h2 {
    margin-bottom: 0;
    font-size: clamp(1.45rem, 3vw, 2.35rem);
}

.tax-pill,
.tax {
    display: inline-flex;
    width: fit-content;
    padding: 10px 12px;
    border-radius: 8px;
    color: var(--navy);
    background: #fff1cf;
    border: 1px solid #f5d791;
    font-weight: 900;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 28px;
}

.section-heading p,
.page-hero p,
.split-section p,
.service-detail-heading p,
.cta-band p,
.form-heading p {
    color: var(--muted);
}

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

.service-card,
.contact-card,
.contact-form {
    border: 1px solid rgba(219, 229, 236, 0.9);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
}

.service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 330px;
    overflow: hidden;
    padding: 26px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 92px;
    background: linear-gradient(135deg, rgba(47, 143, 91, 0.13), rgba(242, 184, 75, 0.12));
    opacity: 0.9;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(47, 143, 91, 0.32);
    box-shadow: 0 24px 58px rgba(15, 42, 68, 0.16);
}

.service-card h3,
.service-card p,
.service-card a,
.service-icon {
    position: relative;
    z-index: 1;
}

.service-card p {
    color: var(--muted);
}

.service-card a {
    margin-top: auto;
    color: var(--green-dark);
    font-weight: 900;
    text-decoration: none;
}

.service-card a::after {
    content: " →";
}

.service-icon {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    margin-bottom: 18px;
    border-radius: 8px;
    color: white;
    background: var(--navy);
    box-shadow: 0 12px 22px rgba(15, 42, 68, 0.2);
    font-size: 0.95rem;
    font-weight: 900;
}

.visual-band {
    position: relative;
    display: grid;
    min-height: 430px;
    overflow: hidden;
    align-items: center;
    border-radius: 8px;
    color: white;
    background: var(--navy);
    box-shadow: var(--shadow);
}

.visual-band-media {
    position: absolute;
    inset: -10% 0;
    background-image: url("../images/gallery/gallery-06.jpg");
    background-size: cover;
    background-position: center;
    transform: translate3d(0, calc(var(--parallax-y, 0) * 0.65), 0) scale(1.04);
}

.visual-band-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(15, 42, 68, 0.9), rgba(15, 42, 68, 0.48)),
        linear-gradient(135deg, rgba(47, 143, 91, 0.25), rgba(242, 184, 75, 0.14));
}

.visual-band-content {
    position: relative;
    z-index: 1;
    max-width: 620px;
    padding: 46px;
}

.visual-band .label,
.visual-band h2,
.visual-band p {
    color: white;
}

.split-section {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 42px;
    align-items: center;
}

.strength-list {
    display: grid;
    gap: 12px;
}

.strength-item {
    display: grid;
    gap: 4px;
    min-height: 78px;
    margin: 0;
    padding: 16px 18px;
    border-left: 5px solid var(--green);
    border-radius: 8px;
    background: white;
    box-shadow: var(--soft-shadow);
}

.strength-item strong {
    color: var(--navy);
    font-weight: 900;
}

.strength-item span {
    color: var(--muted);
}

.page-hero {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 76px 0 30px;
}

.page-hero h1 {
    max-width: 860px;
    color: var(--navy);
    font-size: clamp(2.15rem, 5vw, 4rem);
}

.page-hero-visual {
    position: relative;
    display: grid;
    min-height: 360px;
    overflow: hidden;
    align-items: end;
    width: 100%;
    padding: 0;
    color: white;
    background: var(--navy);
}

.page-hero-media {
    position: absolute;
    inset: -10% 0;
    background:
        radial-gradient(circle at 78% 18%, rgba(242, 184, 75, 0.24), transparent 28%),
        radial-gradient(circle at 18% 78%, rgba(47, 143, 91, 0.28), transparent 30%),
        linear-gradient(135deg, #0f2a44 0%, #173b5a 52%, #1f6f47 100%);
    transform: translate3d(0, calc(var(--parallax-y, 0) * 0.45), 0) scale(1.04);
}

.page-hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(15, 42, 68, 0.95), rgba(15, 42, 68, 0.48)),
        linear-gradient(180deg, rgba(15, 42, 68, 0.1), rgba(15, 42, 68, 0.7));
}

.page-hero-content {
    position: relative;
    z-index: 1;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 72px 0 58px;
}

.page-hero-visual .label,
.page-hero-visual h1,
.page-hero-visual p {
    color: white;
}

.page-hero-visual p {
    max-width: 650px;
}

.service-detail {
    position: relative;
    overflow: hidden;
    padding: 40px;
    margin-top: 28px;
    border-radius: 8px;
    background: white;
    border: 1px solid var(--line);
    box-shadow: var(--soft-shadow);
}

.service-detail::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 8px;
    background: var(--green);
}

.service-detail.blue::before { background: var(--navy-soft); }
.service-detail.leaf::before { background: var(--leaf); }
.service-detail.gold::before { background: var(--gold); }

.service-detail-visual {
    position: absolute;
    top: 0;
    right: 0;
    width: min(34%, 360px);
    height: 100%;
    background-image: url("../images/gallery/gallery-02.jpg");
    background-size: cover;
    background-position: center;
    opacity: 0.16;
    clip-path: polygon(26% 0, 100% 0, 100% 100%, 0 100%);
}

.service-detail-heading {
    position: relative;
    display: flex;
    gap: 16px;
    max-width: 820px;
    margin-bottom: 24px;
}

.service-kicker {
    display: block;
    margin-bottom: 4px;
    color: var(--green-dark);
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
}

.dot {
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    margin-top: 9px;
    border-radius: 999px;
    background: var(--green);
    box-shadow: 0 0 0 8px rgba(47, 143, 91, 0.12);
}

.blue .dot { background: var(--navy-soft); box-shadow: 0 0 0 8px rgba(23, 59, 90, 0.12); }
.leaf .dot { background: var(--leaf); box-shadow: 0 0 0 8px rgba(111, 166, 64, 0.12); }
.gold .dot { background: var(--gold); box-shadow: 0 0 0 8px rgba(242, 184, 75, 0.18); }

.gallery-teaser {
    display: grid;
    gap: 28px;
}

.gallery-copy p {
    max-width: 760px;
    color: var(--muted);
}

.gallery-preview {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-rows: 112px;
    gap: 14px;
}

.gallery-thumb {
    position: relative;
    overflow: hidden;
    min-height: 0;
    padding: 0;
    border: 1px solid rgba(219, 229, 236, 0.95);
    border-radius: 8px;
    background: white;
    box-shadow: var(--soft-shadow);
    cursor: pointer;
}

.gallery-thumb:nth-child(1),
.gallery-thumb:nth-child(8) {
    grid-column: span 6;
    grid-row: span 3;
}

.gallery-thumb:nth-child(2),
.gallery-thumb:nth-child(3),
.gallery-thumb:nth-child(5),
.gallery-thumb:nth-child(6),
.gallery-thumb:nth-child(9),
.gallery-thumb:nth-child(10) {
    grid-column: span 3;
    grid-row: span 2;
}

.gallery-thumb:nth-child(4),
.gallery-thumb:nth-child(7),
.gallery-thumb:nth-child(11) {
    grid-column: span 4;
    grid-row: span 2;
}

.gallery-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 0 solid rgba(47, 143, 91, 0);
    transition: border-width 0.2s ease, border-color 0.2s ease;
}

.gallery-thumb:focus-visible::after,
.gallery-thumb:hover::after {
    border-width: 5px;
    border-color: rgba(47, 143, 91, 0.82);
}

.gallery-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.01);
    transition: transform 0.35s ease, filter 0.35s ease;
}

.gallery-thumb:hover img,
.gallery-thumb:focus-visible img {
    transform: scale(1.06);
    filter: saturate(1.08);
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: grid;
    place-items: center;
    padding: 28px;
    background: rgba(9, 23, 35, 0.88);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.gallery-lightbox.is-open {
    opacity: 1;
    pointer-events: auto;
}

.gallery-lightbox figure {
    width: min(1120px, 100%);
    margin: 0;
}

.gallery-lightbox img {
    display: block;
    width: 100%;
    max-height: 78vh;
    object-fit: contain;
    border-radius: 8px;
    background: #071521;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
}

.gallery-lightbox-close {
    position: absolute;
    top: 18px;
    right: 18px;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 8px;
    color: white;
    background: rgba(255, 255, 255, 0.12);
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
}

.check-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.check-grid li {
    min-height: 52px;
    padding: 14px 14px 14px 40px;
    border-radius: 8px;
    background: var(--off);
    position: relative;
    font-weight: 800;
}

.check-grid li::before {
    content: "✓";
    position: absolute;
    left: 14px;
    color: var(--green-dark);
    font-weight: 900;
}

.cta-band {
    justify-content: space-between;
    margin-bottom: 32px;
    padding: 38px;
    border-radius: 8px;
    color: white;
    background:
        linear-gradient(135deg, rgba(47, 143, 91, 0.38), rgba(242, 184, 75, 0.14)),
        var(--navy);
    box-shadow: var(--shadow);
}

.cta-band h2,
.cta-band p {
    color: white;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 370px;
    gap: 28px;
    align-items: start;
}

.contact-form {
    display: grid;
    gap: 16px;
    padding: 30px;
}

.form-heading h2 {
    margin-bottom: 0;
    font-size: clamp(1.4rem, 3vw, 2rem);
}

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

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 13px 14px;
    color: var(--ink);
    font: inherit;
    background: white;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
    outline: 0;
    border-color: var(--green);
    box-shadow: 0 0 0 4px rgba(47, 143, 91, 0.14);
}

textarea {
    resize: vertical;
}

.hp {
    display: none !important;
}

.notice {
    padding: 13px 14px;
    border-radius: 8px;
    font-weight: 800;
}

.notice p {
    margin: 0;
}

.notice.success {
    color: #174c31;
    background: var(--mint);
}

.notice.error {
    color: #7c1f1f;
    background: #fde8e8;
}

.contact-card {
    position: sticky;
    top: 100px;
    padding: 30px;
}

.contact-card h2 {
    margin-bottom: 18px;
    font-size: clamp(1.45rem, 3vw, 2rem);
}

.contact-card a {
    color: var(--green-dark);
    font-weight: 900;
}

.legal {
    max-width: 900px;
    padding-top: 36px;
}

.legal h2 {
    margin-top: 28px;
    font-size: 1.45rem;
}

.site-footer {
    color: white;
    background:
        linear-gradient(135deg, rgba(47, 143, 91, 0.18), rgba(242, 184, 75, 0.08)),
        var(--navy);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 26px;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 46px 0 24px;
}

.site-footer a {
    color: white;
}

.footer-short-name {
    display: block;
    margin-top: 2px;
    color: #bdd1de;
    font-weight: 800;
}

address {
    display: grid;
    gap: 8px;
    font-style: normal;
}

.footer-note {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 0 0 28px;
    color: #bdd1de;
    font-size: 0.9rem;
}

.js-enabled .reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

@media (max-width: 980px) {
    .hero-panel {
        position: relative;
        right: auto;
        bottom: auto;
        width: min(1180px, calc(100% - 32px));
        margin: -80px auto 42px;
    }

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

    .contact-card {
        position: static;
    }

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

@media (max-width: 860px) {
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 76px;
        left: 0;
        right: 0;
        display: grid;
        gap: 6px;
        padding: 14px 16px 18px;
        background: white;
        border-bottom: 1px solid var(--line);
        box-shadow: 0 20px 36px rgba(15, 42, 68, 0.12);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity 0.2s ease, transform 0.2s ease;
    }

    .nav-menu.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .hero {
        min-height: auto;
    }

    .hero-media::before {
        background:
            linear-gradient(180deg, rgba(15, 42, 68, 0.9) 0%, rgba(15, 42, 68, 0.78) 100%),
            radial-gradient(circle at 55% 24%, rgba(242, 184, 75, 0.18), transparent 26%);
    }

    .hero-content {
        padding: 72px 0 120px;
    }

    .split-section,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .gallery-preview {
        grid-template-columns: repeat(6, minmax(0, 1fr));
        grid-auto-rows: 118px;
    }

    .gallery-thumb:nth-child(n) {
        grid-column: span 3;
        grid-row: span 2;
    }

    .gallery-thumb:nth-child(1),
    .gallery-thumb:nth-child(8) {
        grid-column: span 6;
        grid-row: span 3;
    }

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

    .service-detail-visual {
        width: 46%;
        opacity: 0.1;
    }
}

@media (max-width: 560px) {
    .brand small {
        display: none;
    }

    .brand strong {
        font-size: 0.92rem;
    }

    .brand-logo {
        flex-basis: 54px;
        width: 54px;
        height: 46px;
    }

    h1 {
        font-size: 2.4rem;
    }

    .section {
        padding: 52px 0;
    }

    .hero-content {
        padding: 62px 0 108px;
    }

    .hero-panel {
        margin-top: -72px;
    }

    .page-hero-content {
        padding: 58px 0 48px;
    }

    .visual-band-content,
    .service-detail,
    .contact-form,
    .contact-card,
    .cta-band {
        padding: 22px;
    }

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

    .service-grid,
    .gallery-preview {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    .gallery-thumb:nth-child(n) {
        grid-column: auto;
        grid-row: auto;
    }

    .gallery-thumb {
        min-height: 210px;
    }

    .hero-actions .btn,
    .cta-band .btn,
    .contact-form .btn {
        width: 100%;
    }
}

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

    .js-enabled .reveal,
    .reveal {
        opacity: 1;
        transform: none;
    }

    .hero-media,
    .page-hero-media,
    .visual-band-media {
        transform: none !important;
    }
}
