:root {
  --ink: #12344a;
  --muted: #557184;
  --paper: #f7fbfb;
  --white: #ffffff;
  --teal: #0f9ca8;
  --deep-teal: #08727f;
  --mint: #dff4ee;
  --coral: #f36a5d;
  --line: #d8e7e8;
  --shadow: 0 18px 45px rgba(18, 52, 74, .10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}
a { color: inherit; }
.site-header {
  position: sticky; top: 0; z-index: 10;
  background: rgba(247, 251, 251, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.nav {
  max-width: 1120px; margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; font-weight: 800; letter-spacing: .01em; }
.brand img { width: 42px; height: 42px; object-fit: contain; border-radius: 12px; }
.brand span { font-size: 1.05rem; }
.nav-links { display: flex; gap: 7px; align-items: center; flex-wrap: wrap; justify-content: flex-end; }
.nav-links a { color: var(--muted); font-size: .9rem; font-weight: 650; padding: 7px 10px; text-decoration: none; border-radius: 7px; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--deep-teal); background: var(--mint); }
.hero {
  min-height: 560px; display: grid; align-items: end;
  position: relative; overflow: hidden;
  background: #1c6070 url("assets/ocean_hero.png") center / cover no-repeat;
}
.hero::before { content: ""; position: absolute; inset: 0; background: rgba(8, 47, 69, .62); }
.hero-inner { position: relative; z-index: 1; max-width: 1120px; width: 100%; margin: 0 auto; padding: 92px 24px 78px; color: white; }
.eyebrow { margin: 0 0 14px; color: #b8f1e5; font-size: .76rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
h1, h2, h3 { line-height: 1.2; margin: 0 0 16px; letter-spacing: -.02em; }
h1 { max-width: 680px; font-size: clamp(2.65rem, 7vw, 5.3rem); }
.hero p { max-width: 590px; margin: 0; color: #e5f7f7; font-size: 1.15rem; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 10px 17px; border-radius: 7px; text-decoration: none; font-weight: 750; border: 1px solid transparent; }
.button.primary { color: #fff; background: var(--coral); }
.button.secondary { color: #fff; border-color: rgba(255,255,255,.65); background: rgba(255,255,255,.10); }
.button:hover { transform: translateY(-1px); }
.section { max-width: 1120px; margin: 0 auto; padding: 76px 24px; }
.section-intro { max-width: 680px; margin-bottom: 34px; }
.section-intro p, .muted { color: var(--muted); }
.grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.feature { padding: 24px; background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow); border-radius: 8px; }
.feature .icon { display: inline-grid; place-items: center; width: 38px; height: 38px; margin-bottom: 22px; color: var(--deep-teal); background: var(--mint); border-radius: 9px; font-weight: 800; }
.feature p { margin: 0; color: var(--muted); }
.band { background: #e7f5f1; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.split { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 48px; }
.callout { padding: 30px; background: var(--white); border-left: 4px solid var(--coral); box-shadow: var(--shadow); }
.callout p { margin: 0 0 8px; }
.page-hero { padding: 78px 24px 62px; background: #dff4ee; border-bottom: 1px solid var(--line); }
.page-hero-inner { max-width: 1120px; margin: 0 auto; }
.page-hero h1 { font-size: clamp(2.3rem, 5vw, 4rem); max-width: 760px; }
.page-hero p { max-width: 650px; margin: 0; color: var(--muted); font-size: 1.08rem; }
.legal-layout { max-width: 1120px; margin: 0 auto; padding: 56px 24px 84px; display: grid; grid-template-columns: 220px minmax(0, 1fr); gap: 46px; }
.toc { position: sticky; top: 92px; align-self: start; }
.toc strong { display: block; margin-bottom: 11px; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.toc a { display: block; padding: 5px 0; color: var(--deep-teal); font-size: .9rem; text-decoration: none; }
.legal article { min-width: 0; }
.legal article > p:first-of-type { color: var(--muted); }
.legal h2 { margin-top: 38px; font-size: 1.45rem; }
.legal h3 { margin-top: 24px; font-size: 1.05rem; }
.legal ul, .legal ol { padding-left: 22px; }
.legal li { margin: 7px 0; }
.meta { display: inline-flex; gap: 10px; flex-wrap: wrap; margin: 0 0 24px; color: var(--muted); font-size: .9rem; }
.meta span { padding: 5px 10px; border: 1px solid var(--line); border-radius: 999px; background: var(--white); }
.contact-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-top: 28px; }
.contact { padding: 22px; border: 1px solid var(--line); background: var(--white); border-radius: 8px; }
.contact small { display: block; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; font-size: .72rem; font-weight: 800; }
.contact a { display: inline-block; margin-top: 5px; color: var(--deep-teal); font-weight: 750; text-decoration: none; word-break: break-word; }
.notice { padding: 16px 18px; background: #fff4e9; border: 1px solid #f6d7b6; color: #6c4b2c; border-radius: 7px; }
.site-footer { padding: 30px 24px 42px; background: #0d3d52; color: #d7eef0; }
.footer-inner { max-width: 1120px; margin: 0 auto; display: flex; justify-content: space-between; align-items: flex-start; gap: 26px; }
.footer-inner p { margin: 4px 0 0; color: #a9ced2; font-size: .9rem; }
.footer-links { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-links a { color: #d7eef0; font-size: .9rem; text-decoration: none; }
.footer-links a:hover { color: #fff; text-decoration: underline; }
@media (max-width: 760px) {
  .nav { align-items: flex-start; flex-direction: column; gap: 10px; }
  .nav-links { justify-content: flex-start; }
  .hero { min-height: 590px; background-position: 64% center; }
  .hero-inner { padding-top: 110px; }
  .grid, .split, .contact-grid, .legal-layout { grid-template-columns: 1fr; }
  .section { padding: 56px 20px; }
  .page-hero { padding: 58px 20px 48px; }
  .legal-layout { padding: 40px 20px 64px; gap: 24px; }
  .toc { position: static; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
  .footer-inner { flex-direction: column; }
}
