:root {
  --blue: #2f8ed8;
  --blue-dark: #1f5f9f;
  --blue-soft: #f1f8fe;
  --blue-ink: #12395f;
  --sky: #dff2ff;
  --sky-mid: #9ed7f6;
  --gold: #e8b75d;
  --ink: #223044;
  --muted: #68798d;
  --line: #d8ebf8;
  --surface: #ffffff;
  --shadow: 0 14px 34px rgba(31, 95, 159, .10);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: Arial, Helvetica, sans-serif; color: var(--ink); line-height: 1.65; background: #fbfdff; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.wrap { width: min(1140px, calc(100% - 32px)); margin: 0 auto; }
.topbar { background: #eaf6fe; color: var(--blue-ink); font-size: 13px; border-bottom: 1px solid var(--line); }
.topbar .wrap { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.site-header { position: sticky; top: 0; z-index: 20; background: rgba(255,255,255,.97); border-bottom: 1px solid var(--line); box-shadow: 0 4px 16px rgba(0,0,0,.04); }
.header-wrap { min-height: 88px; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 14px 20px; padding: 10px 0; }
.brand { display: flex; align-items: center; gap: 14px; min-width: 280px; }
.brand img { width: 76px; height: 60px; object-fit: contain; }
.brand strong { display: block; color: var(--blue-dark); font-size: 20px; line-height: 1.15; letter-spacing: 0; }
.brand small { display: block; color: var(--muted); font-size: 12px; margin-top: 3px; }
.menu-toggle { display: none; border: 1px solid var(--blue); background: var(--blue); color: #fff; min-height: 40px; padding: 0 14px; font-weight: 700; }
.site-nav { grid-column: 1 / -1; width: 100%; border-top: 1px solid var(--line); padding-top: 8px; }
.site-nav > ul { display: flex; align-items: center; justify-content: center; list-style: none; margin: 0; padding: 0; gap: 6px; flex-wrap: wrap; }
.site-nav li { position: relative; }
.site-nav a, .site-nav button { display: inline-flex; align-items: center; min-height: 38px; padding: 0 11px; border: 0; border-radius: 6px; background: transparent; color: var(--blue-ink); font: inherit; font-size: 12px; font-weight: 800; text-transform: uppercase; cursor: pointer; letter-spacing: 0; white-space: nowrap; }
.site-nav a:hover, .site-nav button:hover, .site-nav a[aria-current="page"] { background: var(--sky); color: var(--blue-ink); }
.has-menu ul { position: absolute; top: 100%; left: 0; min-width: 250px; display: none; list-style: none; margin: 0; padding: 8px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow); border-radius: 8px; }
.has-menu:nth-last-child(-n+3) ul { left: auto; right: 0; }
.has-menu:hover ul, .has-menu:focus-within ul { display: block; }
.has-menu ul a { width: 100%; justify-content: flex-start; text-transform: none; font-weight: 700; min-height: 36px; }
.hero { position: relative; min-height: 590px; display: flex; align-items: center; overflow: hidden; background: var(--sky); }
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; opacity: .72; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(18,57,95,.78), rgba(47,142,216,.34) 58%, rgba(223,242,255,.18)); }
.hero-content { position: relative; z-index: 1; color: #fff; padding: 84px 0; }
.kicker { margin: 0 0 10px; color: #d79a32; font-size: 13px; font-weight: 900; text-transform: uppercase; letter-spacing: 0; }
h1, h2, h3 { line-height: 1.18; letter-spacing: 0; }
h1 { max-width: 820px; margin: 0 0 18px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(38px, 6vw, 70px); }
h2 { margin: 0 0 14px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(28px, 4vw, 44px); color: var(--blue-ink); }
h3 { margin: 0 0 10px; color: var(--blue-dark); font-size: 21px; }
.hero p { max-width: 710px; font-size: 18px; color: rgba(255,255,255,.94); }
.button-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 46px; padding: 0 18px; background: var(--blue); color: #fff; border: 2px solid var(--blue); font-weight: 900; text-transform: uppercase; font-size: 13px; cursor: pointer; }
.button.ghost { background: transparent; border-color: rgba(255,255,255,.78); color: #fff; }
.button.light { background: #fff; color: var(--blue); border-color: #fff; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: -42px; position: relative; z-index: 2; }
.stats article { padding: 24px; background: #fff; border-top: 5px solid var(--sky-mid); box-shadow: var(--shadow); border-radius: 8px; text-align: center; }
.stats strong { display: block; color: var(--blue-dark); font-size: 28px; line-height: 1; }
.stats span { color: var(--muted); font-size: 13px; font-weight: 800; text-transform: uppercase; }
.content-section { padding: 72px 0; }
.soft { background: var(--blue-soft); }
.intro-grid, .split, .page-hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 42px; align-items: center; }
.intro-grid img, .page-hero-grid img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; border-radius: 8px; box-shadow: var(--shadow); }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 24px; box-shadow: var(--shadow); }
.lead { font-size: 19px; color: #384255; }
.prose p { max-width: 920px; }
.check-list { display: grid; gap: 12px; padding: 0; margin: 18px 0; list-style: none; }
.check-list li { position: relative; padding-left: 28px; }
.check-list li::before { content: ""; position: absolute; left: 0; top: 9px; width: 10px; height: 10px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 4px rgba(47,142,216,.14); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gallery-grid img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 8px; box-shadow: var(--shadow); background: var(--blue-soft); }
.gallery-grid.mini { grid-template-columns: 1fr 1fr; }
.cta { padding: 64px 0; background: linear-gradient(135deg, #e5f5ff, var(--sky)); color: var(--blue-ink); text-align: center; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.cta h2 { color: var(--blue-ink); }
.page-hero { padding: 58px 0; background: linear-gradient(135deg, var(--blue-soft), #fff); border-bottom: 1px solid var(--line); }
.page-hero h1 { color: var(--blue-ink); font-size: clamp(34px, 5vw, 56px); }
.page-hero p:not(.kicker) { color: var(--muted); max-width: 720px; }
.notice { padding: 18px 20px; border-left: 5px solid var(--gold); background: #fff8e8; color: #53401a; border-radius: 6px; }
.table-wrap { width: 100%; overflow-x: auto; margin: 22px 0 30px; }
.data-table { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; box-shadow: var(--shadow); }
.data-table th, .data-table td { padding: 12px 14px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.data-table th { background: var(--blue-soft); color: var(--blue-ink); font-size: 13px; text-transform: uppercase; }
.data-table tbody tr:last-child td { border-bottom: 0; }
.blank-page { min-height: 320px; display: grid; place-items: center; text-align: center; border: 1px dashed var(--line); border-radius: 10px; background: var(--blue-soft); }
.blank-page h2 { margin-bottom: 4px; }
.prose code { background: var(--blue-soft); padding: 2px 6px; border-radius: 4px; }
.contact-box { padding: 24px; border: 1px solid var(--line); border-radius: 8px; background: var(--blue-soft); }
.inquiry-form { display: grid; gap: 14px; max-width: 760px; margin-top: 20px; }
.inquiry-form label { display: grid; gap: 6px; font-weight: 800; color: var(--blue-ink); }
.inquiry-form input, .inquiry-form textarea { width: 100%; border: 1px solid var(--line); border-radius: 6px; padding: 12px; font: inherit; }
.form-note { color: var(--muted); font-size: 14px; }
.image-missing::after { content: "Image will be added here"; display: grid; place-items: center; min-height: 240px; border: 1px dashed var(--line); border-radius: 8px; color: var(--muted); background: var(--blue-soft); }
.site-footer { background: #173a5f; color: #e9f6ff; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .9fr .8fr; gap: 34px; padding: 52px 0; }
.site-footer h2, .site-footer h3 { color: #fff; margin-top: 0; }
.site-footer a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.footer-bottom { padding: 16px; text-align: center; background: #102b47; font-size: 13px; }
@media (max-width: 980px) {
  .header-wrap { display: flex; align-items: flex-start; flex-direction: column; padding: 14px 0; }
  .menu-toggle { display: inline-flex; align-items: center; }
  .site-nav { display: none; width: 100%; border-top: 0; padding-top: 0; }
  .site-nav.open { display: block; }
  .site-nav > ul { display: grid; gap: 4px; justify-content: stretch; }
  .has-menu ul { position: static; display: block; box-shadow: none; border: 0; padding-left: 14px; }
  .intro-grid, .split, .page-hero-grid, .footer-grid { grid-template-columns: 1fr; }
  .card-grid, .stats, .gallery-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .topbar .wrap { align-items: flex-start; flex-direction: column; padding: 8px 0; }
  .brand { min-width: 0; }
  .brand strong { font-size: 17px; }
  .hero { min-height: 650px; }
  .card-grid, .stats, .gallery-grid { grid-template-columns: 1fr; }
}
