:root {
    --navy: #123c69;
    --navy-dark: #0b2949;
    --teal: #109c95;
    --teal-dark: #08746f;
    --orange: #f28c28;
    --yellow: #ffb703;
    --ink: #1c2b39;
    --muted: #667788;
    --soft: #f3f8fb;
    --line: #dce6ed;
    --white: #ffffff;
    --shadow: 0 18px 45px rgba(17, 58, 94, 0.13);
    --radius: 22px;
    --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background: var(--white);
    line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--navy); color: #fff; padding: 10px 14px; z-index: 1000; }
.skip-link:focus { left: 10px; top: 10px; }

.topbar { background: var(--navy-dark); color: #eaf4fa; font-size: 0.84rem; }
.topbar-inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.topbar p { margin: 0; }
.topbar-links { display: flex; gap: 24px; align-items: center; }
.topbar a { color: #fff; font-weight: 700; }
.pulse-dot { width: 8px; height: 8px; background: var(--yellow); border-radius: 50%; display: inline-block; margin-right: 7px; box-shadow: 0 0 0 0 rgba(255,183,3,.7); animation: pulse 2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 8px rgba(255,183,3,0); } 100% { box-shadow: 0 0 0 0 rgba(255,183,3,0); } }

.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.96); border-bottom: 1px solid rgba(18,60,105,.08); backdrop-filter: blur(14px); transition: box-shadow .25s ease; }
.site-header.scrolled { box-shadow: 0 12px 34px rgba(17, 58, 94, .11); }
.header-inner { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand img { width: 275px; height: auto; }
.main-nav { display: flex; align-items: center; gap: 7px; }
.main-nav > a { padding: 10px 11px; font-size: .94rem; font-weight: 700; color: #3d5265; border-radius: 10px; }
.main-nav > a:hover, .main-nav > a.active { color: var(--teal-dark); background: #eaf8f7; }
.main-nav .nav-cta { background: var(--orange); color: #fff; padding-inline: 17px; margin-left: 4px; }
.main-nav .nav-cta:hover { background: #df7618; color: #fff; }
.menu-toggle { display: none; border: 0; background: transparent; padding: 8px; cursor: pointer; }
.menu-toggle span { width: 26px; height: 2px; display: block; background: var(--navy); margin: 6px; transition: .2s; }

.hero { position: relative; overflow: hidden; background: #071c2d; }
.hero-slider { position: relative; width: 100%; aspect-ratio: 16 / 7; min-height: 480px; max-height: 700px; }
.hero-slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity .7s ease; }
.hero-slide.active { opacity: 1; visibility: visible; }
.hero-slide::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,26,47,.76) 0%, rgba(5,26,47,.42) 40%, rgba(5,26,47,.06) 72%); z-index: 1; pointer-events: none; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; object-position: center; image-rendering: auto; }
.hero-slide-banner { background: #fff; }
.hero-slide-banner::before { display: none; }
.hero-slide-banner img { object-fit: contain; }
.hero-content { position: absolute; inset: 0; z-index: 2; display: flex; align-items: center; }
.hero-copy { max-width: 670px; color: #fff; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; color: var(--teal-dark); font-size: .8rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; margin-bottom: 14px; }
.eyebrow::before { content: ""; width: 34px; height: 3px; border-radius: 5px; background: var(--orange); }
.hero .eyebrow { color: #7ce7e0; }
.hero-title { font-size: clamp(2.7rem, 6vw, 5rem); line-height: 1.04; margin: 0 0 20px; letter-spacing: -.04em; }
.hero-text { max-width: 600px; font-size: 1.14rem; color: #e4eef5; margin: 0 0 30px; }
.button-row { display: flex; flex-wrap: wrap; gap: 13px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 22px; border: 0; border-radius: 12px; background: var(--teal); color: #fff; font-weight: 800; cursor: pointer; transition: transform .2s, background .2s, box-shadow .2s; }
.button:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 12px 25px rgba(16,156,149,.25); }
.button-outline { background: transparent; border: 1px solid rgba(255,255,255,.65); }
.button-outline:hover { background: #fff; color: var(--navy); }
.button-orange { background: var(--orange); }
.button-orange:hover { background: #d87316; }
.button-light { background: #fff; color: var(--navy); }
.button-light:hover { background: #eaf7f7; }
.button-small { min-height: 40px; padding-inline: 16px; font-size: .9rem; }
.hero-controls { position: absolute; left: 0; right: 0; bottom: 34px; z-index: 4; }
.hero-control-inner { display: flex; align-items: center; justify-content: space-between; }
.hero-dots { display: flex; gap: 8px; }
.hero-dot { width: 32px; height: 4px; border: 0; border-radius: 10px; background: rgba(255,255,255,.45); cursor: pointer; }
.hero-dot.active { background: var(--yellow); }
.hero-arrows { display: flex; gap: 8px; }
.hero-arrow { width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255,255,255,.45); background: rgba(4,28,49,.35); color: #fff; font-size: 1.2rem; cursor: pointer; }
.hero-arrow:hover { background: var(--teal); }

.section { padding: 92px 0; }
.section-sm { padding: 68px 0; }
.section-soft { background: var(--soft); }
.section-dark { background: var(--navy-dark); color: #fff; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 25px; margin-bottom: 38px; }
.section-heading.center { display: block; text-align: center; max-width: 760px; margin-inline: auto; margin-bottom: 45px; }
.section-heading h2, .page-hero h1 { color: var(--navy); font-size: clamp(2rem, 4vw, 3.5rem); line-height: 1.12; margin: 0; letter-spacing: -.035em; }
.section-dark .section-heading h2 { color: #fff; }
.section-heading p { max-width: 600px; margin: 10px 0 0; color: var(--muted); }
.section-dark .section-heading p { color: #c6d5e1; }

.quick-features { position: relative; z-index: 10; margin-top: -52px; }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.feature-item { padding: 30px 25px; border-right: 1px solid var(--line); }
.feature-item:last-child { border-right: 0; }
.feature-icon { width: 48px; height: 48px; border-radius: 15px; display: grid; place-items: center; background: #eaf8f7; color: var(--teal-dark); font-size: 1.45rem; margin-bottom: 16px; }
.feature-item h3 { margin: 0 0 7px; color: var(--navy); font-size: 1.08rem; }
.feature-item p { margin: 0; color: var(--muted); font-size: .93rem; }

.split { display: grid; grid-template-columns: 1.02fr .98fr; gap: 65px; align-items: center; }
.image-stack { position: relative; min-height: 500px; }
.image-stack .main-image { width: 88%; height: 470px; object-fit: cover; border-radius: 28px; box-shadow: var(--shadow); }
.image-stack .float-card { position: absolute; right: 0; bottom: 0; width: 230px; padding: 24px; background: var(--navy); color: #fff; border-radius: 20px; box-shadow: var(--shadow); }
.image-stack .float-card strong { display: block; font-size: 1.45rem; color: var(--yellow); }
.lead { font-size: 1.11rem; color: #53687a; }
.check-list { list-style: none; padding: 0; margin: 25px 0 30px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 20px; }
.check-list li { position: relative; padding-left: 28px; font-weight: 700; color: #355065; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--teal); font-weight: 900; }

.principal-card { display: grid; grid-template-columns: minmax(0, 1fr) 390px; background: #fff; border-radius: 28px; box-shadow: var(--shadow); overflow: hidden; }
.principal-card img { width: 100%; height: 100%; min-height: 480px; object-fit: cover; object-position: center top; }
.principal-copy { padding: 55px; display: flex; flex-direction: column; justify-content: center; }
.quote-mark { color: var(--orange); font-family: Georgia, serif; font-size: 5rem; line-height: .5; }
.principal-copy blockquote { margin: 18px 0 20px; font-size: 1.14rem; color: #445c70; }
.principal-name { color: var(--navy); font-weight: 900; }
.principal-role { color: var(--muted); font-size: .92rem; }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.info-card, .event-card, .program-card { background: #fff; border: 1px solid var(--line); border-radius: 20px; overflow: hidden; transition: transform .25s, box-shadow .25s; }
.info-card:hover, .event-card:hover, .program-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.info-card { padding: 30px; }
.info-card .feature-icon { margin-bottom: 20px; }
.info-card h3, .program-card h3, .event-card h3 { color: var(--navy); margin: 0 0 10px; }
.info-card p, .program-card p, .event-card p { color: var(--muted); margin: 0; }
.event-card img { width: 100%; height: 230px; object-fit: cover; }
.event-card-body { padding: 24px; }
.event-meta { color: var(--teal-dark); font-size: .8rem; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 9px; }
.program-card { padding: 28px; position: relative; }
.program-number { font-size: 3.8rem; line-height: 1; font-weight: 900; color: #e8f2f6; position: absolute; right: 22px; top: 15px; }

.notice-board { display: grid; grid-template-columns: 1.05fr .95fr; gap: 28px; }
.notice-panel { background: #fff; border-radius: 22px; border: 1px solid var(--line); padding: 30px; }
.notice-panel h3 { color: var(--navy); margin-top: 0; }
.notice-list { list-style: none; padding: 0; margin: 0; }
.notice-list li { display: grid; grid-template-columns: 58px 1fr; gap: 16px; padding: 17px 0; border-bottom: 1px solid var(--line); }
.notice-list li:last-child { border-bottom: 0; }
.notice-date { background: #eaf8f7; color: var(--teal-dark); border-radius: 12px; text-align: center; padding: 7px 4px; font-weight: 900; line-height: 1.1; }
.notice-date small { display: block; font-size: .68rem; text-transform: uppercase; }
.notice-list a { font-weight: 800; color: #304b61; }
.notice-list p { margin: 3px 0 0; color: var(--muted); font-size: .9rem; }
.highlight-panel { border-radius: 22px; padding: 38px; background: linear-gradient(145deg, var(--teal), var(--navy)); color: #fff; min-height: 100%; display: flex; flex-direction: column; justify-content: center; }
.highlight-panel h3 { font-size: 2rem; margin: 0 0 15px; }
.highlight-panel p { color: #e5f2f4; }

.cta-banner { padding: 50px; border-radius: 28px; background: linear-gradient(120deg, var(--navy-dark), var(--navy) 55%, var(--teal)); color: #fff; display: flex; align-items: center; justify-content: space-between; gap: 30px; overflow: hidden; position: relative; }
.cta-banner::after { content: ""; position: absolute; width: 240px; height: 240px; border: 45px solid rgba(255,255,255,.06); border-radius: 50%; right: -70px; top: -90px; }
.cta-banner h2 { font-size: clamp(1.8rem, 4vw, 3rem); margin: 0 0 10px; }
.cta-banner p { margin: 0; color: #d7e5ee; }
.cta-banner .button { position: relative; z-index: 2; flex: 0 0 auto; }

.page-hero { padding: 90px 0 80px; background: linear-gradient(135deg, #ecf9f8, #eef4fa); position: relative; overflow: hidden; }
.page-hero::after { content: ""; position: absolute; width: 330px; height: 330px; border-radius: 50%; background: rgba(16,156,149,.08); right: -80px; top: -110px; }
.page-hero .container { position: relative; z-index: 2; }
.page-hero p { max-width: 700px; font-size: 1.08rem; color: var(--muted); margin-bottom: 0; }
.breadcrumb { color: var(--teal-dark); font-weight: 800; margin-bottom: 16px; }
.breadcrumb a { color: var(--navy); }

.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.value-card { padding: 26px; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.value-card h3 { color: var(--navy); margin-top: 0; }
.value-card p { margin-bottom: 0; color: var(--muted); }
.timeline { position: relative; max-width: 880px; margin: 0 auto; }
.timeline::before { content: ""; position: absolute; left: 25px; top: 0; bottom: 0; width: 2px; background: var(--line); }
.timeline-item { position: relative; padding: 0 0 34px 78px; }
.timeline-item::before { content: ""; position: absolute; left: 13px; top: 4px; width: 24px; height: 24px; border: 7px solid #dff4f2; background: var(--teal); border-radius: 50%; }
.timeline-item h3 { color: var(--navy); margin: 0 0 8px; }
.timeline-item p { color: var(--muted); margin: 0; }

.form-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 38px; align-items: start; }
.contact-card { padding: 34px; border-radius: 22px; background: var(--navy); color: #fff; }
.contact-card h2 { margin-top: 0; }
.contact-card p { color: #d5e2ec; }
.contact-block { padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.15); }
.contact-block:last-child { border-bottom: 0; }
.contact-block strong { color: var(--yellow); display: block; margin-bottom: 3px; }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 34px; box-shadow: 0 16px 40px rgba(18,60,105,.08); }
.form-card h2 { color: var(--navy); margin-top: 0; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: grid; gap: 7px; }
.form-group.full { grid-column: 1 / -1; }
label { font-weight: 800; color: #344f64; font-size: .92rem; }
input, select, textarea { width: 100%; border: 1px solid #cfdce5; border-radius: 11px; padding: 12px 13px; color: var(--ink); background: #fff; outline: none; }
input:focus, select:focus, textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(16,156,149,.12); }
textarea { min-height: 130px; resize: vertical; }
.alert { padding: 14px 16px; border-radius: 12px; margin-bottom: 18px; font-weight: 700; }
.alert-success { background: #e7f7ef; color: #11663e; border: 1px solid #b8e7ce; }
.alert-error { background: #fff0ef; color: #9b3029; border: 1px solid #efc2be; }
.error-list { margin: 0; padding-left: 20px; }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-flow: dense;
    gap: 18px;
}
.gallery-item {
    position: relative;
    margin: 0;
    aspect-ratio: 4 / 3;
    border-radius: 18px;
    overflow: hidden;
    background: #e8f0f5;
    cursor: zoom-in;
    box-shadow: 0 10px 26px rgba(17, 58, 94, .10);
    isolation: isolate;
}
.gallery-item.portrait { aspect-ratio: 3 / 4; }
.gallery-item:nth-child(1),
.gallery-item:nth-child(10),
.gallery-item:nth-child(15),
.gallery-item:nth-child(20) { grid-column: span 2; aspect-ratio: 16 / 8.5; }
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease, filter .4s ease;
}
.gallery-item figcaption {
    position: absolute;
    inset: auto 0 0;
    z-index: 2;
    padding: 40px 17px 16px;
    color: #fff;
    background: linear-gradient(transparent, rgba(5, 28, 49, .92));
    transform: translateY(24px);
    transition: transform .3s ease;
}
.gallery-item figcaption span {
    display: block;
    margin-bottom: 3px;
    color: #8ff0e9;
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.gallery-item figcaption strong {
    display: block;
    font-size: .94rem;
    line-height: 1.35;
}
.gallery-item:hover img,
.gallery-item:focus-visible img { transform: scale(1.045); filter: saturate(1.05); }
.gallery-item:hover figcaption,
.gallery-item:focus-visible figcaption { transform: translateY(0); }
.gallery-item:focus-visible { outline: 4px solid rgba(16,156,149,.35); outline-offset: 3px; }

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 32px 82px;
    background: rgba(1, 13, 23, .94);
}
.lightbox.open { display: flex; }
.lightbox-content { display: grid; justify-items: center; max-width: min(1260px, 88vw); }
.lightbox img {
    display: block;
    max-width: 100%;
    max-height: 82vh;
    width: auto;
    height: auto;
    border-radius: 14px;
    box-shadow: 0 22px 70px rgba(0,0,0,.4);
}
.lightbox-caption {
    margin: 13px 0 0;
    color: #fff;
    font-weight: 750;
    text-align: center;
}
.lightbox-close,
.lightbox-arrow {
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.96);
    color: var(--navy);
    cursor: pointer;
    box-shadow: 0 8px 28px rgba(0,0,0,.25);
}
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    width: 46px;
    height: 46px;
    font-size: 1.55rem;
}
.lightbox-arrow {
    flex: 0 0 auto;
    width: 52px;
    height: 52px;
    font-size: 2rem;
    line-height: 1;
}
.lightbox-close:hover,
.lightbox-arrow:hover { background: var(--teal); color: #fff; }

.faq { max-width: 880px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question { width: 100%; background: none; border: 0; text-align: left; padding: 21px 5px; font-weight: 900; color: var(--navy); display: flex; justify-content: space-between; gap: 20px; cursor: pointer; }
.faq-answer { display: none; padding: 0 5px 22px; color: var(--muted); }
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-question span { transform: rotate(45deg); }

.site-footer { background: #071f37; color: #d7e3ec; padding-top: 65px; }
.footer-grid { display: grid; grid-template-columns: 1.25fr .8fr 1.1fr .85fr; gap: 45px; padding-bottom: 50px; }
.footer-brand img { width: 270px; filter: brightness(0) invert(1); opacity: .96; }
.footer-brand p { max-width: 330px; }
.site-footer h3 { color: #fff; margin-top: 0; }
.footer-links, .contact-list { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin: 9px 0; }
.footer-links a:hover { color: #7ee0da; }
.contact-list li { margin-bottom: 10px; }
.social-links { display: flex; gap: 10px; margin-top: 20px; }
.social-links a { width: 37px; height: 37px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; font-weight: 900; }
.social-links a:hover { background: var(--teal); border-color: var(--teal); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom .container { min-height: 67px; display: flex; align-items: center; justify-content: space-between; gap: 20px; font-size: .86rem; }
.footer-bottom p { margin: 0; }
.footer-bottom .developer-credit a { color: #7ee0da; font-weight: 700; text-decoration: none; }
.footer-bottom .developer-credit a:hover { color: #fff; text-decoration: underline; }
.back-to-top { position: fixed; right: 22px; bottom: 22px; z-index: 80; width: 44px; height: 44px; border-radius: 50%; border: 0; background: var(--orange); color: #fff; font-size: 1.3rem; cursor: pointer; opacity: 0; transform: translateY(12px); pointer-events: none; transition: .25s; box-shadow: 0 10px 25px rgba(0,0,0,.18); }
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }

@media (max-width: 1060px) {
    .menu-toggle { display: block; }
    .main-nav { position: absolute; left: 20px; right: 20px; top: calc(100% + 8px); display: none; background: #fff; padding: 16px; box-shadow: var(--shadow); border-radius: 16px; flex-direction: column; align-items: stretch; }
    .main-nav.open { display: flex; }
    .main-nav .nav-cta { margin-left: 0; text-align: center; }
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
    .feature-item:nth-child(2) { border-right: 0; }
    .feature-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
    .split, .form-layout { grid-template-columns: 1fr; }
    .principal-card { grid-template-columns: minmax(0, 1fr) 330px; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
    .container { width: min(calc(100% - 28px), var(--container)); }
    .topbar-inner { justify-content: center; min-height: 42px; }
    .topbar-links { display: none; }
    .header-inner { min-height: 72px; }
    .brand img { width: 225px; }
    .hero-slider { aspect-ratio: auto; min-height: 500px; max-height: none; }
    .hero-slide img { height: 100%; }
    .hero-slide::before { background: linear-gradient(90deg, rgba(5,26,47,.80), rgba(5,26,47,.42)); }
    .hero-slide-banner img { object-fit: contain; background: #fff; }
    .hero-title { font-size: 2.65rem; }
    .hero-text { font-size: 1rem; }
    .hero-arrows { display: none; }
    .quick-features { margin-top: 0; padding-top: 20px; }
    .feature-grid, .card-grid, .values-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
    .gallery-item:nth-child(1),
    .gallery-item:nth-child(10),
    .gallery-item:nth-child(15),
    .gallery-item:nth-child(20) { grid-column: span 2; }
    .gallery-item figcaption { transform: translateY(0); padding: 30px 12px 12px; }
    .gallery-item figcaption strong { font-size: .82rem; }
    .lightbox { padding: 65px 14px 24px; gap: 8px; }
    .lightbox-content { max-width: calc(100vw - 98px); }
    .lightbox img { max-height: 78vh; }
    .lightbox-arrow { width: 40px; height: 40px; font-size: 1.55rem; }
    .lightbox-close { top: 12px; right: 14px; }
    .feature-item { border-right: 0; border-bottom: 1px solid var(--line); }
    .feature-item:last-child { border-bottom: 0; }
    .section { padding: 70px 0; }
    .section-sm { padding: 52px 0; }
    .section-heading { display: block; }
    .image-stack { min-height: 410px; }
    .image-stack .main-image { height: 380px; width: 94%; }
    .image-stack .float-card { width: 200px; }
    .check-list { grid-template-columns: 1fr; }
    .principal-card { grid-template-columns: 1fr; }
    .principal-card img { min-height: 380px; max-height: 520px; }
    .principal-copy { padding: 35px 25px; }
    .notice-board { grid-template-columns: 1fr; }
    .cta-banner { padding: 34px 25px; display: block; }
    .cta-banner .button { margin-top: 24px; }
    .page-hero { padding: 68px 0 58px; }
    .form-grid { grid-template-columns: 1fr; }
    .form-group.full { grid-column: auto; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom .container { padding: 16px 0; display: block; text-align: center; }
    .footer-bottom p + p { margin-top: 5px; }
}

@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item,
    .gallery-item.portrait,
    .gallery-item:nth-child(1),
    .gallery-item:nth-child(10),
    .gallery-item:nth-child(15),
    .gallery-item:nth-child(20) { grid-column: auto; aspect-ratio: 4 / 3; }
    .gallery-item.portrait { aspect-ratio: 3 / 4; }
    .lightbox { padding-inline: 8px; }
    .lightbox-content { max-width: calc(100vw - 74px); }
    .lightbox-arrow { width: 33px; height: 33px; font-size: 1.35rem; }
}

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