:root {
  --navy: #16243D;
  --navy-light: #233A5E;
  --steel: #3A5C82;
  --teal: #2F7D6B;
  --teal-dark: #235E52;
  --bg: #F4F5F7;
  --bg-alt: #FAFAF9;
  --white: #FFFFFF;
  --line: #DCDFE4;
  --text: #2B2F38;
  --text-muted: #5B6371;
  --radius: 4px;
  --shadow: 0 2px 14px rgba(22, 36, 61, 0.07);
  --font-display: "Source Serif 4", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --maxw: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a {
  color: var(--teal-dark);
  text-decoration: none;
}
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.2;
  margin: 0 0 .6em;
  font-weight: 600;
}

h1 { font-size: clamp(2.1rem, 4vw, 3.1rem); }
h2 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; color: var(--text); }
.lead { font-size: 1.15rem; color: var(--text-muted); }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .75rem;
  font-weight: 600;
  color: var(--teal-dark);
  margin-bottom: .8em;
  display: block;
}

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy);
  color: var(--white);
  padding: 10px 18px;
  z-index: 999;
}
.skip-link:focus { left: 10px; top: 10px; }

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
}
.brand:hover { text-decoration: none; }
.brand img {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.brand-text strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: .02em;
}
.brand-text span {
  font-size: .72rem;
  color: var(--text-muted);
  letter-spacing: .03em;
}

.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 26px;
  margin: 0;
  padding: 0;
}
.main-nav a {
  color: var(--navy);
  font-weight: 500;
  font-size: .95rem;
}
.main-nav a:hover { color: var(--teal-dark); text-decoration: none; }
.main-nav a.active { color: var(--teal-dark); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 8px;
  cursor: pointer;
  color: var(--navy);
  font-size: 1.4rem;
  line-height: 1;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: var(--font-body);
}
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--teal); color: var(--white); }
.btn-primary:hover { background: var(--teal-dark); }
.btn-ghost { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-ghost:hover { background: var(--navy); color: var(--white); }
.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.55); }
.btn-outline-light:hover { background: rgba(255,255,255,.12); }

.hero {
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.hero-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 90px 24px 70px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 50px;
  align-items: center;
}
.hero h1 { color: var(--white); }
.hero .eyebrow { color: #8FD8C4; }
.hero p.lead { color: #C7D0DD; }
.hero-actions { display: flex; gap: 16px; margin-top: 32px; flex-wrap: wrap; }
.hero-figure {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.12);
}
.hero-figure img { width: 100%; height: 360px; object-fit: cover; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.14);
  margin-top: 56px;
  border-radius: var(--radius);
  overflow: hidden;
}
.hero-stats div {
  background: var(--navy-light);
  padding: 22px 20px;
}
.hero-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--white);
}
.hero-stats span { font-size: .82rem; color: #B9C3D2; }

.section { padding: 80px 0; }
.section-tight { padding: 56px 0; }
.section-alt { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { max-width: 680px; margin-bottom: 46px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
}
.card .ph {
  font-size: 1.8rem;
  color: var(--teal-dark);
  margin-bottom: 16px;
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  background: #EAF4F1;
  border-radius: var(--radius);
}
.card h3 { margin-bottom: .5em; }
.card p { color: var(--text-muted); margin-bottom: 0; font-size: .95rem; }

.service-row {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.service-row:last-child { border-bottom: none; }
.service-row .ph {
  font-size: 1.6rem;
  color: var(--teal-dark);
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #EAF4F1;
  border-radius: 50%;
}
.service-row h3 { margin-bottom: .35em; }
.service-row p { color: var(--text-muted); margin: 0; }

.process-list { counter-reset: step; list-style: none; margin: 0; padding: 0; }
.process-list li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px dashed var(--line);
}
.process-list li:last-child { border-bottom: none; }
.process-list li::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--teal-dark);
  font-weight: 600;
}
.process-list h3 { margin-bottom: .3em; font-size: 1.05rem; }
.process-list p { margin: 0; color: var(--text-muted); }

.callout {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.callout h2 { color: var(--white); margin-bottom: .3em; }
.callout p { color: #C7D0DD; margin: 0; }

.notice-box {
  background: #FFF8E8;
  border: 1px solid #EBD8A1;
  border-radius: var(--radius);
  padding: 22px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.notice-box .ph { color: #9A7212; font-size: 1.4rem; flex-shrink: 0; }
.notice-box p { margin: 0; color: #6B560F; font-size: .92rem; }

.page-hero {
  background: var(--navy);
  color: var(--white);
  padding: 64px 0 56px;
}
.page-hero h1 { color: var(--white); margin-bottom: .3em; }
.page-hero p { color: #C7D0DD; max-width: 640px; margin: 0; }
.breadcrumb {
  font-size: .82rem;
  color: #9FAEC4;
  margin-bottom: 18px;
}
.breadcrumb a { color: #C7D0DD; }

.legal {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 48px;
  max-width: 880px;
}
.legal h2 { margin-top: 2em; border-top: 1px solid var(--line); padding-top: 1.1em; }
.legal h2:first-child { margin-top: 0; border-top: none; padding-top: 0; }
.legal ul { padding-left: 1.2em; color: var(--text); }
.legal li { margin-bottom: .5em; }
.legal table { width: 100%; border-collapse: collapse; margin: 1.2em 0; }
.legal th, .legal td {
  text-align: left;
  padding: 10px 12px;
  border: 1px solid var(--line);
  font-size: .92rem;
  vertical-align: top;
}
.legal th { background: var(--bg); color: var(--navy); }

.toc {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
  margin-bottom: 36px;
  max-width: 880px;
}
.toc strong { display: block; margin-bottom: 10px; color: var(--navy); }
.toc ol { margin: 0; padding-left: 1.2em; columns: 2; gap: 24px; }
.toc a { font-size: .9rem; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  align-items: start;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
}
.contact-card .info-row {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.contact-card .info-row:last-child { border-bottom: none; }
.contact-card .ph {
  color: var(--teal-dark);
  font-size: 1.3rem;
  flex-shrink: 0;
  width: 26px;
  text-align: center;
}
.contact-card h3 { font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); margin: 0 0 4px; }
.contact-card p { margin: 0; }

.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  margin-top: 22px;
}
.map-frame iframe { width: 100%; height: 240px; border: 0; display: block; }

form.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .95rem;
  background: var(--bg-alt);
  color: var(--text);
}
.field textarea { resize: vertical; min-height: 130px; }
.field-checkbox { display: flex; align-items: flex-start; gap: 10px; }
.field-checkbox input { width: auto; margin-top: 4px; }
.field-checkbox label { font-weight: 400; font-size: .88rem; color: var(--text-muted); }
.form-note { font-size: .82rem; color: var(--text-muted); margin-top: 14px; }
.form-success {
  display: none;
  background: #EAF4F1;
  border: 1px solid #BCE0D4;
  color: var(--teal-dark);
  padding: 16px 18px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  align-items: center;
  gap: 10px;
}
.form-success.visible { display: flex; }

.site-footer {
  background: var(--navy);
  color: #C7D0DD;
  padding: 60px 0 28px;
  margin-top: 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-brand { display: flex; gap: 12px; align-items: center; margin-bottom: 14px; }
.footer-brand img { width: 36px; height: 36px; }
.footer-brand strong { color: var(--white); font-family: var(--font-display); }
.site-footer p { color: #9FAEC4; font-size: .9rem; }
.site-footer h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 16px;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 10px; }
.site-footer a { color: #C7D0DD; font-size: .92rem; }
.site-footer a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: .82rem;
  color: #8294AC;
  flex-wrap: wrap;
  gap: 10px;
}
.disclaimer-bar {
  background: var(--navy-light);
  color: #C7D0DD;
  font-size: .82rem;
  text-align: center;
  padding: 10px 16px;
}
.disclaimer-bar .ph { vertical-align: -2px; margin-right: 6px; color: #8FD8C4; }

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 18px;
  right: 18px;
  max-width: 560px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 8px 30px rgba(22,36,61,.18);
  border-radius: var(--radius);
  padding: 22px 24px;
  z-index: 999;
  display: none;
}
.cookie-banner.visible { display: block; }
.cookie-banner h3 { font-size: 1rem; margin-bottom: 6px; display: flex; align-items: center; gap: 8px; }
.cookie-banner p { font-size: .87rem; color: var(--text-muted); margin-bottom: 16px; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-actions .btn { padding: 10px 18px; font-size: .85rem; }
.cookie-actions a { font-size: .85rem; align-self: center; color: var(--text-muted); }

@media (max-width: 920px) {
  .hero-inner { grid-template-columns: 1fr; padding-top: 50px; }
  .hero-figure img { height: 260px; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .main-nav { position: fixed; top: 73px; left: 0; right: 0; bottom: 0; background: var(--white); flex-direction: column; align-items: stretch; padding: 24px; transform: translateX(100%); transition: transform .25s ease; overflow-y: auto; }
  .main-nav.open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; gap: 4px; }
  .main-nav ul a { display: block; padding: 14px 6px; border-bottom: 1px solid var(--line); }
  .main-nav .btn { margin-top: 18px; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .grid-3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .legal { padding: 28px; }
  .toc ol { columns: 1; }
  .callout { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
