/* ==========================================================================
   タルイサザンビーチ海水浴場 公式サイト
   Design Concept: Resort & Pop / Sunset × Ocean
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
    color: var(--c-text);
    background: var(--c-bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-primary); text-decoration: none; transition: opacity .2s; }
a:hover { opacity: .75; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

:root {
    --c-primary:   #FF6B35;
    --c-primary-d: #E85420;
    --c-secondary: #06A6CB;
    --c-secondary-d: #047EA0;
    --c-accent:    #FFD23F;
    --c-coral:     #FF8FA3;
    --c-sand:      #FFF6E9;
    --c-deep:      #0B3954;
    --c-text:      #2A2A2A;
    --c-muted:     #6E7A82;
    --c-line:      #E6E1D7;
    --c-bg:        #FFFDF8;
    --c-white:     #FFFFFF;
    --container: 1180px;
    --radius:    18px;
    --radius-lg: 28px;
    --shadow-sm: 0 4px 14px rgba(11,57,84,.08);
    --shadow:    0 12px 32px rgba(11,57,84,.12);
    --shadow-lg: 0 24px 60px rgba(11,57,84,.18);
    --ff-display: "M PLUS Rounded 1c", "Noto Sans JP", sans-serif;
    --ff-en:      "Pacifico", cursive;
}

h1, h2, h3, h4 { font-family: var(--ff-display); font-weight: 800; line-height: 1.3; color: var(--c-deep); }
.en-script { font-family: var(--ff-en); font-weight: 400; color: var(--c-primary); letter-spacing: .02em; }

.section-title { text-align: center; margin-bottom: 48px; }
.section-title .en-script { display: block; font-size: 1.75rem; margin-bottom: 4px; }
.section-title h2 {
    font-size: clamp(1.6rem, 3vw, 2.25rem);
    position: relative; display: inline-block; padding: 0 18px;
}
.section-title h2::before, .section-title h2::after {
    content: ""; position: absolute; top: 50%;
    width: 36px; height: 4px;
    background: var(--c-accent); border-radius: 999px;
    transform: translateY(-50%);
}
.section-title h2::before { right: 100%; }
.section-title h2::after { left: 100%; }

.container { width: min(100% - 40px, var(--container)); margin-inline: auto; }

/* ====== HEADER ====== */
.site-header {
    position: fixed; top: 0; left: 0; right: 0;
    background: rgba(255,253,248,.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}
.site-header .container {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 0;
}
.site-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.site-logo .logo-mark {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-coral) 50%, var(--c-secondary) 100%);
    border-radius: 50%;
    display: grid; place-items: center;
    box-shadow: var(--shadow-sm);
    color: white; font-family: var(--ff-display); font-weight: 900; font-size: 1.1rem;
}
.site-logo .logo-text { line-height: 1.15; }
.site-logo .logo-text .ja { font-family: var(--ff-display); font-weight: 800; color: var(--c-deep); font-size: 1.05rem; }
.site-logo .logo-text .en { font-family: var(--ff-en); color: var(--c-primary); font-size: .85rem; }

.global-nav { display: flex; align-items: center; gap: 28px; }
.global-nav a {
    color: var(--c-deep); font-weight: 600; font-size: .95rem;
    position: relative;
}
.global-nav a::after {
    content: ""; position: absolute; left: 50%; bottom: -6px;
    width: 0; height: 3px;
    background: var(--c-primary); border-radius: 2px;
    transition: all .25s; transform: translateX(-50%);
}
.global-nav a:hover { opacity: 1; }
.global-nav a:hover::after, .global-nav a.active::after { width: 100%; }
.nav-cta {
    background: var(--c-primary); color: white !important;
    padding: 10px 20px; border-radius: 999px;
    box-shadow: 0 4px 12px rgba(255,107,53,.35);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--c-primary-d); }
.nav-toggle { display: none; }

/* ====== HERO ====== */
.hero {
    position: relative;
    height: 100vh; min-height: 580px;
    overflow: hidden; color: white;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: 0;
    transition: opacity 1.4s ease-in-out, transform 7s ease-out;
    transform: scale(1.05);
}
.hero-slide.is-active { opacity: 1; transform: scale(1.12); }
.hero-slide::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(11,57,84,.25) 0%, rgba(11,57,84,.5) 100%);
}
.hero-content {
    position: relative; height: 100%;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    text-align: center; padding: 0 20px; z-index: 2;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,210,63,.95);
    color: var(--c-deep);
    padding: 8px 18px; border-radius: 999px;
    font-weight: 700; font-size: .9rem;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
}
.hero-badge::before {
    content: ""; width: 8px; height: 8px; border-radius: 50%;
    background: var(--c-primary);
    animation: pulse 1.6s infinite;
}
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: .6; }
}
.hero h1 {
    font-size: clamp(2rem, 5.5vw, 4rem);
    color: white;
    text-shadow: 0 4px 20px rgba(0,0,0,.3);
    letter-spacing: .04em;
    margin-bottom: 14px;
}
.hero h1 .en-script {
    display: block; color: var(--c-accent);
    font-size: clamp(1.6rem, 4vw, 2.6rem);
    margin-bottom: 6px;
    text-shadow: 0 2px 12px rgba(0,0,0,.25);
}
.hero p.lead {
    font-size: clamp(.95rem, 1.6vw, 1.15rem);
    max-width: 640px; margin: 0 auto 36px;
    text-shadow: 0 2px 8px rgba(0,0,0,.4);
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

.btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 700; font-size: 1rem;
    text-decoration: none;
    transition: all .25s;
    box-shadow: var(--shadow-sm);
}
.btn-primary { background: var(--c-primary); color: white; }
.btn-primary:hover { background: var(--c-primary-d); transform: translateY(-2px); box-shadow: var(--shadow); opacity: 1; }
.btn-secondary { background: white; color: var(--c-deep); }
.btn-secondary:hover { transform: translateY(-2px); box-shadow: var(--shadow); opacity: 1; }
.btn-outline { background: transparent; color: white; border: 2px solid white; box-shadow: none; }
.btn-outline:hover { background: white; color: var(--c-deep); opacity: 1; }

.hero-dots {
    position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
    display: flex; gap: 10px; z-index: 3;
}
.hero-dots button {
    width: 12px; height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,.4);
    transition: all .25s;
}
.hero-dots button.is-active { background: white; width: 36px; border-radius: 6px; }

.hero-scroll {
    position: absolute; bottom: 28px; right: 28px; z-index: 3;
    color: white; font-size: .8rem;
    writing-mode: vertical-rl;
    display: flex; align-items: center; gap: 10px;
    letter-spacing: .15em;
}
.hero-scroll::after {
    content: ""; width: 1px; height: 50px;
    background: white;
    animation: scrollLine 1.6s ease-in-out infinite;
}
@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ====== PAGE HEADER ====== */
.page-header {
    position: relative;
    padding: 160px 0 80px;
    background:
        linear-gradient(135deg, rgba(255,107,53,.85) 0%, rgba(6,166,203,.85) 100%),
        url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1600&q=80') center/cover;
    color: white;
    text-align: center;
}
.page-header .en-script {
    color: var(--c-accent); font-size: 1.6rem;
    display: block; margin-bottom: 6px;
    text-shadow: 0 2px 8px rgba(0,0,0,.2);
}
.page-header h1 {
    color: white; font-size: clamp(1.8rem, 4vw, 2.6rem);
    text-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.breadcrumb {
    margin-top: 20px;
    font-size: .85rem;
    color: rgba(255,255,255,.9);
}
.breadcrumb a { color: white; }
.breadcrumb span { margin: 0 8px; opacity: .7; }

/* ====== SECTIONS ====== */
section { padding: 90px 0; }
section.alt-bg { background: var(--c-sand); }
.section-lead {
    text-align: center; max-width: 720px;
    margin: 0 auto 56px;
    color: var(--c-muted); font-size: 1rem;
}

/* ====== STATUS BAR ====== */
.status-bar {
    background: linear-gradient(135deg, var(--c-secondary), var(--c-primary));
    color: white;
    padding: 26px 0;
    text-align: center;
}
.status-bar .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px; align-items: center;
}
.status-item .label {
    display: block; font-size: .8rem; opacity: .85;
    margin-bottom: 4px; letter-spacing: .1em;
}
.status-item .value {
    font-family: var(--ff-display); font-weight: 800; font-size: 1.15rem;
}
.status-item .value strong { color: var(--c-accent); font-size: 1.4em; margin-right: 2px; }

/* WEATHER — 大きく目立たせる */
#weather-widget .label {
    font-size: 1rem;
    opacity: 1;
    font-weight: 700;
    margin-bottom: 10px;
}
#weather-widget .value {
    font-size: 2rem;
    line-height: 1.1;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
#weather-widget #weather-icon {
    font-size: 2.4em;
    line-height: 1;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,.25));
}
#weather-widget #weather-text {
    font-weight: 800;
    letter-spacing: .02em;
}
#weather-widget #weather-temp {
    font-size: 1.4em;
    font-weight: 900;
    color: var(--c-accent);
    text-shadow: 0 2px 6px rgba(0,0,0,.18);
}
@media (max-width: 768px) {
    #weather-widget .value { font-size: 1.6rem; gap: 8px; }
    #weather-widget #weather-icon { font-size: 2em; }
}

/* ====== INFO CARDS ====== */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}
.info-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all .25s;
    border: 2px solid transparent;
}
.info-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: var(--c-accent);
}
.info-card .icon {
    width: 72px; height: 72px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--c-primary), var(--c-coral));
    display: grid; place-items: center;
    color: white; font-size: 1.8rem;
}
.info-card:nth-child(2) .icon { background: linear-gradient(135deg, var(--c-secondary), var(--c-secondary-d)); }
.info-card:nth-child(3) .icon { background: linear-gradient(135deg, var(--c-accent), var(--c-primary)); color: var(--c-deep); }
.info-card:nth-child(4) .icon { background: linear-gradient(135deg, var(--c-coral), var(--c-primary)); }
.info-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.info-card p { color: var(--c-muted); font-size: .92rem; }
.info-card .big-value {
    font-family: var(--ff-display);
    font-weight: 800;
    color: var(--c-deep);
    font-size: 1.4rem;
    margin: 8px 0 4px;
}

/* ====== NEWS LIST ====== */
.news-list { display: grid; gap: 16px; max-width: 820px; margin: 0 auto; }
.news-item {
    display: grid;
    grid-template-columns: 110px 110px 1fr;
    align-items: center;
    gap: 20px;
    padding: 22px 28px;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: all .2s;
    text-decoration: none;
    color: inherit;
}
.news-item:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow);
    opacity: 1;
}
.news-date {
    font-family: var(--ff-display); font-weight: 700;
    color: var(--c-muted); font-size: .95rem;
}
.news-cat {
    font-size: .78rem; font-weight: 700;
    background: var(--c-primary); color: white;
    padding: 5px 10px;
    border-radius: 999px; text-align: center;
    letter-spacing: .04em;
}
.news-cat.cat-event { background: var(--c-coral); }
.news-cat.cat-info  { background: var(--c-secondary); }
.news-cat.cat-alert { background: var(--c-deep); }
.news-title { font-weight: 600; color: var(--c-deep); }

/* ====== EVENT GRID ====== */
.event-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}
.event-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all .25s;
    text-decoration: none; color: inherit;
}
.event-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); opacity: 1; }
.event-thumb {
    aspect-ratio: 16 / 10;
    background-size: cover; background-position: center;
    position: relative;
}
.event-thumb .event-date {
    position: absolute; top: 16px; left: 16px;
    background: white;
    padding: 8px 14px;
    border-radius: 12px;
    font-family: var(--ff-display);
    font-weight: 800;
    color: var(--c-primary);
    box-shadow: var(--shadow-sm);
    text-align: center;
    line-height: 1.1;
}
.event-thumb .event-date .day { font-size: 1.4rem; display: block; }
.event-thumb .event-date .mon { font-size: .7rem; color: var(--c-muted); }
.event-body { padding: 22px 24px; }
.event-body h3 { font-size: 1.1rem; margin-bottom: 10px; }
.event-body p { color: var(--c-muted); font-size: .92rem; }
.event-meta {
    display: flex; flex-wrap: wrap; gap: 10px;
    margin-top: 12px;
    font-size: .82rem; color: var(--c-muted);
}
/* 動的レンダリング用 */
.event-card .event-img {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(135deg, var(--c-primary), var(--c-coral));
}
.event-card .event-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}
.event-body .event-date {
    display: inline-block;
    font-family: var(--ff-display);
    font-weight: 800;
    color: var(--c-primary);
    font-size: .85rem;
    background: var(--c-bg);
    padding: 4px 12px;
    border-radius: 999px;
    margin-bottom: 8px;
}

/* ====== ACCESS ====== */
.access-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 40px; align-items: start;
}
.access-info dl {
    display: grid;
    grid-template-columns: 110px 1fr;
    row-gap: 18px; column-gap: 16px;
    align-items: start;
}
.access-info dt {
    font-weight: 700; color: var(--c-deep);
    background: var(--c-sand);
    border-left: 4px solid var(--c-primary);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: .9rem;
}
.access-info dd { color: var(--c-text); padding-top: 6px; }
.access-map {
    aspect-ratio: 4/3;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.access-map iframe { width: 100%; height: 100%; border: 0; }

/* ====== VENUE MAP ====== */
.venue-map {
    background: white;
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
}
.venue-svg-wrap {
    width: 100%;
    border-radius: var(--radius);
    overflow: hidden;
}
.venue-legend {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px dashed var(--c-line);
}
.legend-item {
    display: flex; align-items: center; gap: 10px;
    font-size: .88rem;
}
.legend-color {
    width: 16px; height: 16px;
    border-radius: 4px;
    flex-shrink: 0;
}

/* ====== FORMS ====== */
.form-card {
    background: white;
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    max-width: 720px;
    margin: 0 auto;
}
.form-row { margin-bottom: 22px; }
.form-row label {
    display: block;
    font-weight: 700;
    color: var(--c-deep);
    margin-bottom: 8px;
    font-size: .95rem;
}
.form-row label .req {
    background: var(--c-primary); color: white;
    font-size: .68rem;
    padding: 2px 8px; border-radius: 4px;
    margin-left: 8px; font-weight: 700;
    vertical-align: middle;
}
.form-row label .opt {
    background: var(--c-line); color: var(--c-muted);
    font-size: .68rem;
    padding: 2px 8px; border-radius: 4px;
    margin-left: 8px; font-weight: 700;
    vertical-align: middle;
}
.form-row input, .form-row select, .form-row textarea {
    width: 100%; padding: 14px 16px;
    border: 2px solid var(--c-line);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color .2s;
    background: var(--c-bg);
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
    outline: none;
    border-color: var(--c-secondary);
    background: white;
}
.form-row textarea { resize: vertical; min-height: 140px; }
.form-actions { text-align: center; margin-top: 32px; }
.form-actions .btn { padding: 16px 48px; font-size: 1.05rem; }
.form-note {
    background: var(--c-sand);
    border-left: 4px solid var(--c-accent);
    padding: 16px 20px;
    border-radius: 8px;
    font-size: .88rem;
    color: var(--c-muted);
    margin-bottom: 28px;
}

/* ====== CTA BLOCK ====== */
.cta-block {
    background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-coral) 50%, var(--c-secondary) 100%);
    border-radius: var(--radius-lg);
    padding: 56px 40px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}
.cta-block::before {
    content: ""; position: absolute;
    width: 220px; height: 220px;
    background: var(--c-accent);
    border-radius: 50%;
    top: -80px; right: -80px;
    opacity: .25;
}
.cta-block h2 { color: white; font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 12px; }
.cta-block p { margin-bottom: 26px; max-width: 540px; margin-inline: auto; opacity: .95; }
.cta-block .btn-secondary { color: var(--c-primary); }

/* ====== NOTICE BOX ====== */
.notice-box {
    background: white;
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    border-top: 6px solid var(--c-primary);
    margin-bottom: 24px;
}
.notice-box h3 {
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 16px;
}
.notice-box h3 .num {
    width: 36px; height: 36px;
    background: var(--c-primary); color: white;
    border-radius: 50%;
    display: grid; place-items: center;
    font-size: .95rem;
    flex-shrink: 0;
}
.notice-box ul { margin-left: 0; padding-left: 0; }
.notice-box li {
    padding: 8px 0 8px 26px;
    position: relative;
    border-bottom: 1px dashed var(--c-line);
    font-size: .95rem;
}
.notice-box li:last-child { border-bottom: none; }
.notice-box li::before {
    content: "✓";
    position: absolute;
    left: 0; top: 8px;
    color: var(--c-secondary);
    font-weight: 700;
}

/* ====== FOOTER ====== */
.site-footer {
    background: var(--c-deep);
    color: rgba(255,255,255,.85);
    padding: 60px 0 30px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-grid h4 {
    color: var(--c-accent);
    font-size: .95rem;
    margin-bottom: 16px;
    letter-spacing: .05em;
}
.footer-grid a { color: rgba(255,255,255,.85); }
.footer-grid a:hover { color: var(--c-accent); opacity: 1; }
.footer-grid ul li { margin-bottom: 8px; font-size: .9rem; }
.footer-brand .logo-mark {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, var(--c-primary), var(--c-coral), var(--c-secondary));
    border-radius: 50%;
    display: grid; place-items: center;
    color: white; font-family: var(--ff-display); font-weight: 900;
    margin-bottom: 16px;
}
.footer-brand p { font-size: .88rem; line-height: 1.7; opacity: .8; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.15);
    padding-top: 24px;
    display: flex; justify-content: space-between; align-items: center;
    font-size: .82rem;
    color: rgba(255,255,255,.65);
}
.footer-bottom .social { display: flex; gap: 14px; }
.footer-bottom .social a {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    display: grid; place-items: center;
    color: white;
}
.footer-bottom .social a:hover { background: var(--c-primary); opacity: 1; }

/* ====== RESPONSIVE ====== */
@media (max-width: 900px) {
    .access-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .status-bar .container { grid-template-columns: 1fr 1fr; gap: 24px; }
}
@media (max-width: 720px) {
    .global-nav {
        position: fixed; top: 0; right: -100%;
        height: 100vh; width: 80%; max-width: 320px;
        background: white;
        flex-direction: column;
        padding: 100px 30px 30px;
        gap: 20px;
        box-shadow: var(--shadow-lg);
        transition: right .3s;
        align-items: flex-start;
    }
    .global-nav.is-open { right: 0; }
    .global-nav a { font-size: 1.05rem; width: 100%; padding: 8px 0; }
    .global-nav a::after { display: none; }
    .nav-toggle {
        display: grid; place-items: center;
        width: 44px; height: 44px;
        background: var(--c-primary);
        border-radius: 50%; color: white;
        z-index: 1100;
    }
    .nav-toggle .bar { width: 18px; height: 2px; background: white; position: relative; transition: .3s; }
    .nav-toggle .bar::before, .nav-toggle .bar::after {
        content: ""; position: absolute;
        width: 18px; height: 2px;
        background: white;
        transition: .3s;
    }
    .nav-toggle .bar::before { top: -6px; }
    .nav-toggle .bar::after  { top:  6px; }
    .nav-toggle.is-open .bar { background: transparent; }
    .nav-toggle.is-open .bar::before { top: 0; transform: rotate(45deg); }
    .nav-toggle.is-open .bar::after  { top: 0; transform: rotate(-45deg); }

    .hero { height: 88vh; min-height: 560px; }
    .news-item { grid-template-columns: 1fr; gap: 8px; padding: 18px 22px; }
    .news-item .news-cat { justify-self: start; }
    .form-card { padding: 30px 22px; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom { flex-direction: column; gap: 16px; }
    .access-info dl { grid-template-columns: 1fr; row-gap: 6px; }
    .access-info dt { margin-top: 12px; }
    section { padding: 60px 0; }
    .page-header { padding: 130px 0 50px; }
}
