:root {
  --navy: #071422;
  --navy-mid: #123047;
  --accent: #e09b3d;
  --accent-dark: #c4842c;
  --paper: #f3f5f7;
  --white: #ffffff;
  --ink: #101820;
  --muted: #5a6570;
  --line: #dde3ea;
  --shadow: 0 18px 50px rgba(7, 20, 34, 0.12);
  --font: "Outfit", "Segoe UI", sans-serif;
  --max: 1180px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 1.02rem;
}

img {
  max-width: 100%;
  display: block;
}

a { color: var(--navy-mid); }
a:hover { color: var(--accent-dark); }

.skip {
  position: absolute;
  left: -999px;
  background: var(--navy);
  color: #fff;
  padding: 0.6rem 1rem;
  z-index: 80;
}
.skip:focus { left: 0.8rem; top: 0.8rem; }

.wrap {
  width: min(var(--max), calc(100% - 2.4rem));
  margin-inline: auto;
}

header.site {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--navy);
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--navy);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: -0.04em;
  font-size: 0.92rem;
}

.brand strong {
  display: block;
  font-size: 1.05rem;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.brand em {
  display: block;
  font-style: normal;
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
}

.nav-links a[aria-current="page"] { color: var(--accent-dark); }

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 8px;
  padding: 0.45rem 0.7rem;
  font-weight: 700;
  font-family: inherit;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: 999px;
  padding: 0.78rem 1.25rem;
  font-weight: 700;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.95rem;
}

.btn-primary {
  background: var(--accent);
  color: var(--navy);
}
.btn-primary:hover { background: var(--accent-dark); color: var(--navy); }

.btn-navy {
  background: var(--navy);
  color: #fff;
}
.btn-navy:hover { color: #fff; background: var(--navy-mid); }

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.45);
}
.btn-ghost.dark {
  color: var(--navy);
  border-color: var(--line);
}

.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  align-items: end;
  color: #fff;
  background: #071422 center/cover no-repeat;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,20,34,.88) 0%, rgba(7,20,34,.45) 55%, rgba(7,20,34,.2) 100%);
  z-index: -1;
}

.hero-inner {
  padding: 7rem 0 3.4rem;
  max-width: 40rem;
}

.kicker {
  display: inline-block;
  background: rgba(224, 155, 61, 0.18);
  color: var(--accent);
  border: 1px solid rgba(224, 155, 61, 0.35);
  border-radius: 999px;
  padding: 0.28rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 1rem;
}

h1, h2, h3 {
  letter-spacing: -0.035em;
  line-height: 1.12;
  margin: 0 0 0.8rem;
}

h1 { font-size: clamp(2.4rem, 5vw, 4.1rem); font-weight: 750; }
h2 { font-size: clamp(1.7rem, 3vw, 2.35rem); color: var(--navy); }
h3 { font-size: 1.2rem; color: var(--navy); }

.lede {
  font-size: 1.15rem;
  color: var(--muted);
  margin: 0 0 1.4rem;
}

.hero .lede,
.page-hero .lede,
.cta-band .lede {
  color: rgba(255,255,255,.86);
}

.lead-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 18px;
  margin: 0 0 1.6rem;
  box-shadow: var(--shadow);
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 0.7rem; }

.hero-meta {
  display: flex;
  gap: 1.6rem;
  margin-top: 2.2rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255,255,255,.18);
  font-size: 0.88rem;
  color: rgba(255,255,255,.78);
}

.hero-meta b { display: block; color: #fff; font-size: 1rem; }

.section { padding: 4.2rem 0; }

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: end;
  margin-bottom: 1.8rem;
}

.muted { color: var(--muted); }

.cards-3, .cards-2 {
  display: grid;
  gap: 1.15rem;
}

.cards-3 { grid-template-columns: repeat(3, 1fr); }
.cards-2 { grid-template-columns: 1fr 1fr; }

.photo-card {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.photo-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.photo-card .body { padding: 1.15rem 1.2rem 1.3rem; }
.photo-card p { margin: 0.35rem 0 0; color: var(--muted); }

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.4rem;
  align-items: center;
}

.split img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.notice {
  background: #fff7ea;
  border-left: 4px solid var(--accent);
  padding: 1rem 1.1rem;
  border-radius: 0 12px 12px 0;
  color: #3d3426;
  margin: 1.2rem 0 0;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.step {
  background: #fff;
  border-radius: 16px;
  padding: 1.2rem;
  border: 1px solid var(--line);
}

.step span {
  display: inline-block;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--accent);
  font-weight: 800;
  text-align: center;
  line-height: 32px;
  margin-bottom: 0.7rem;
}

.cta-band {
  position: relative;
  color: #fff;
  background: #071422 center/cover no-repeat;
  min-height: 320px;
  display: grid;
  align-items: center;
  isolation: isolate;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(7, 20, 34, 0.72);
  z-index: -1;
}

.cta-band h2 { color: #fff; }

.page-hero {
  position: relative;
  min-height: 320px;
  display: grid;
  align-items: end;
  color: #fff;
  background: #071422 center/cover no-repeat;
  isolation: isolate;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,20,34,.35), rgba(7,20,34,.82));
  z-index: -1;
}

.page-hero .wrap { padding: 6.5rem 0 2.2rem; }
.page-hero h1 { max-width: 18ch; }
.page-hero .lede { max-width: 40rem; }

.breadcrumb { color: var(--muted); font-size: 0.9rem; margin-bottom: 0.6rem; }
.breadcrumb a { color: var(--muted); }
.page-hero .breadcrumb,
.page-hero .breadcrumb a { color: rgba(255,255,255,.75); }

.prose { max-width: 46rem; }
.prose h2 { margin-top: 2rem; }
.prose ul, .prose ol { padding-left: 1.15rem; }
.prose li { margin: 0.35rem 0; }

.checklist { list-style: none; padding-left: 0; }
.checklist li::before { content: "✓ "; color: #1f6b4a; font-weight: 800; }
.dont li::before { content: "✕ "; color: #9a2f2f; }

form.contact {
  display: grid;
  gap: 0.85rem;
  background: #fff;
  padding: 1.4rem;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

label { display: grid; gap: 0.3rem; font-weight: 650; font-size: 0.92rem; }

input, textarea {
  font: inherit;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
}

.consent { display: flex; gap: 0.6rem; align-items: flex-start; font-weight: 500; }
.consent input { margin-top: 0.25rem; }

.form-status { min-height: 1.3rem; font-weight: 650; color: #1f6b4a; }

.info-panel {
  background: var(--navy);
  color: #e8eef4;
  border-radius: 18px;
  padding: 1.5rem;
}

.info-panel a { color: var(--accent); }
.info-panel h2 { color: #fff; }

footer.site {
  background: var(--navy);
  color: #c5ced6;
  padding: 3rem 0 1.4rem;
}

footer.site a { color: #f0f3f6; text-decoration: none; }
footer.site a:hover { color: var(--accent); }

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 1.8rem;
}

.subfooter {
  margin-top: 2rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: 0.82rem;
}

.cookie {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  background: var(--navy);
  color: #e8eef4;
  border-radius: 16px;
  padding: 1rem 1.15rem;
  display: none;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow);
}

.cookie.show { display: flex; }
.cookie p { margin: 0; font-size: 0.9rem; max-width: 46rem; }
.cookie a { color: var(--accent); }
.cookie-actions { display: flex; gap: 0.5rem; flex-shrink: 0; }
.cookie .btn { padding: 0.5rem 0.9rem; }

@media (max-width: 900px) {
  .cards-3, .cards-2, .split, .steps, .footer-grid { grid-template-columns: 1fr; }
  .split img, .photo-card img { height: 240px; }
  .menu-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    inset: 74px 0 auto;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 1rem 1.2rem 1.2rem;
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-links.open { display: flex; }
  .hero-meta, .cookie { flex-direction: column; align-items: stretch; }
  .hero { min-height: 92vh; }
}
