:root {
    --ink: #0f172a;
    --muted: #64748b;
    --line: #e2e8f0;
    --brand: #172554;
    --brand-2: #9f1239;
    --gold: #facc15;
    --paper: #f8fafc;
    --white: #ffffff;
}
* { box-sizing: border-box; }
body { margin: 0; font-family: Arial, Helvetica, sans-serif; color: var(--ink); background: var(--paper); line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.wrap { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.topbar { background: var(--brand); color: white; font-size: 14px; }
.topbar__inner { display: flex; justify-content: space-between; gap: 16px; padding: 8px 0; }
.site-nav { position: sticky; top: 0; z-index: 10; background: white; border-bottom: 1px solid var(--line); box-shadow: 0 8px 24px rgba(15, 23, 42, .06); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; min-height: 78px; gap: 18px; }
.brand { display: flex; align-items: center; gap: 12px; min-width: 260px; }
.brand img { width: 52px; height: 52px; }
.brand strong { display: block; font-size: 20px; letter-spacing: .2px; color: var(--brand); }
.brand small { display: block; color: var(--muted); font-size: 12px; }
.nav-links { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; justify-content: flex-end; }
.nav-links a { padding: 10px 11px; border-radius: 6px; font-size: 15px; font-weight: 700; color: #334155; }
.nav-links a:hover, .lang-btn { background: #fee2e2; color: var(--brand-2) !important; }
.nav-dropdown { position: relative; }
.dropdown-menu { display: none; position: absolute; top: calc(100% + 6px); left: 0; min-width: 245px; background: white; border: 1px solid var(--line); border-radius: 8px; padding: 8px; box-shadow: 0 18px 42px rgba(15,23,42,.14); }
.nav-dropdown:hover .dropdown-menu, .nav-dropdown:focus-within .dropdown-menu { display: grid; }
.dropdown-menu a { border-radius: 6px; padding: 9px 10px; font-size: 14px; white-space: normal; }
.nav-toggle { display: none; border: 1px solid var(--line); background: white; border-radius: 6px; width: 42px; height: 42px; font-size: 22px; }
.hero { background: linear-gradient(90deg, rgba(15,23,42,.88), rgba(15,23,42,.66)), url('../brochure_pages/page-01.jpg') center 18% / cover; color: white; min-height: 560px; display: flex; align-items: center; }
.hero h1 { font-size: clamp(34px, 6vw, 66px); line-height: 1.02; margin: 0 0 18px; max-width: 850px; }
.hero p { max-width: 720px; font-size: 19px; color: #e2e8f0; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 11px 18px; border-radius: 6px; border: 1px solid transparent; font-weight: 800; cursor: pointer; }
.btn-primary { background: var(--gold); color: #3b2200; }
.btn-light { background: white; color: var(--brand); }
.section { padding: 72px 0; }
.section--white { background: white; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 28px; }
.eyebrow { color: var(--brand-2); font-weight: 900; text-transform: uppercase; letter-spacing: .08em; font-size: 13px; }
h2 { font-size: clamp(28px, 4vw, 42px); line-height: 1.12; margin: 6px 0 0; color: var(--brand); }
.lead { color: var(--muted); max-width: 780px; font-size: 18px; }
.muted { color: var(--muted); }
.about-split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 38px; align-items: center; }
.home-about { padding-top: 64px; }
.info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 26px 0; }
.info-grid div { border: 1px solid var(--line); border-radius: 8px; padding: 16px; background: #f8fafc; }
.info-grid strong { display: block; color: var(--brand); font-size: 16px; margin-bottom: 4px; }
.info-grid span { color: var(--muted); font-size: 14px; }
.photo-collage { display: grid; grid-template-columns: 1.2fr .8fr; grid-template-rows: 190px 190px; gap: 14px; }
.photo-collage img { width: 100%; height: 100%; object-fit: cover; border-radius: 8px; border: 1px solid var(--line); box-shadow: 0 14px 34px rgba(15,23,42,.12); }
.photo-collage .photo-main { grid-row: span 2; }
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.card { background: white; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; box-shadow: 0 12px 36px rgba(15,23,42,.06); }
.card-body { padding: 22px; }
.message-card { display: grid; grid-template-columns: 190px 1fr; gap: 22px; padding: 20px; align-items: start; }
.message-card img { width: 190px; height: 210px; object-fit: cover; border-radius: 8px; border: 1px solid var(--line); }
.message-card h3, .card h3 { margin: 0 0 4px; color: var(--brand); font-size: 22px; }
.role { color: var(--brand-2); font-weight: 800; margin-bottom: 12px; }
.message-card p { white-space: pre-line; }
.notice-list { display: grid; gap: 14px; }
.notice { display: grid; grid-template-columns: 92px 1fr; gap: 18px; background: white; border: 1px solid var(--line); border-left: 5px solid var(--brand-2); padding: 18px; border-radius: 8px; }
.datebox { color: var(--brand); font-weight: 900; text-align: center; border-right: 1px solid var(--line); }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.gallery-item img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.doc-row, .video-row { display: flex; justify-content: space-between; gap: 16px; align-items: center; padding: 18px; border: 1px solid var(--line); background: white; border-radius: 8px; margin-bottom: 12px; }
.content-page { display: grid; grid-template-columns: 2fr 1fr; gap: 22px; align-items: start; }
.content-card { overflow: visible; }
.page-copy { white-space: pre-line; color: #334155; font-size: 17px; margin-top: 18px; }
.updated { color: var(--muted); font-size: 14px; margin: 8px 0 0; }
.note-card { border-top: 5px solid var(--brand-2); }
.link-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 12px; margin-top: 24px; }
.link-list div { border: 1px solid var(--line); border-left: 4px solid var(--brand-2); border-radius: 8px; padding: 13px 14px; font-weight: 800; color: var(--brand); background: #f8fafc; }
.stat-band { background: var(--brand); color: white; padding: 32px 0; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; text-align: center; }
.stat strong { display: block; font-size: 34px; color: var(--gold); }
.footer { background: #020617; color: #cbd5e1; padding-top: 48px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 28px; }
.footer h3 { color: white; margin-top: 0; }
.copyright { border-top: 1px solid #1e293b; text-align: center; padding: 18px; margin-top: 32px; color: #94a3b8; }
.page-hero { background: var(--brand); color: white; padding: 54px 0; }
.page-hero h1 { margin: 0; font-size: 44px; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.form-card { padding: 22px; }
input, textarea, select { width: 100%; padding: 12px 13px; border: 1px solid var(--line); border-radius: 6px; font: inherit; background: white; }
textarea { min-height: 110px; resize: vertical; }
label { display: grid; gap: 7px; font-weight: 800; color: #334155; }
.admin-layout { display: grid; grid-template-columns: 250px 1fr; min-height: 100vh; }
.admin-side { background: var(--brand); color: white; padding: 24px; }
.admin-side a { display: block; padding: 10px 0; color: #dbeafe; }
.admin-main { padding: 28px; }
.table { width: 100%; border-collapse: collapse; background: white; }
.table th, .table td { padding: 12px; border-bottom: 1px solid var(--line); text-align: left; }
@media (max-width: 900px) {
    .nav-toggle { display: inline-block; }
    .nav-links { display: none; width: 100%; padding-bottom: 14px; }
    .nav-links.is-open { display: grid; }
    .nav-dropdown, .dropdown-menu { position: static; display: grid; box-shadow: none; border: 0; padding: 0 0 0 12px; }
    .nav-inner { flex-wrap: wrap; }
    .grid-3, .grid-4, .stats, .footer-grid, .form-grid, .admin-layout, .content-page { grid-template-columns: 1fr; }
    .about-split, .info-grid { grid-template-columns: 1fr; }
    .photo-collage { grid-template-columns: 1fr 1fr; grid-template-rows: 220px 160px; }
    .photo-collage .photo-main { grid-column: span 2; grid-row: auto; }
    .message-card { grid-template-columns: 1fr; }
    .message-card img { width: 100%; height: 300px; }
    .hero { min-height: 520px; }
    .section-head { display: block; }
}
