:root {
  --ink: #102a32;
  --petrol: #0b3340;
  --petrol-2: #155566;
  --green: #123f3b;
  --copper: #c47b57;
  --copper-light: #e8b899;
  --ice: #eaf4f5;
  --paper: #f7faf9;
  --white: #ffffff;
  --muted: #587078;
  --line: #cbdadd;
  --shadow: 0 24px 64px rgba(10, 43, 52, .14);
  --radius: 24px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 999;
  transform: translateY(-160%);
  padding: .7rem 1rem;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
}
.skip-link:focus { transform: none; }
.keep { white-space: nowrap; }
.topline {
  padding: .5rem max(1.25rem, calc((100vw - 1240px) / 2));
  color: #e8f4f0;
  background: var(--green);
  font-size: .86rem;
  letter-spacing: .02em;
}
.topline-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.topline a { text-decoration: none; }
.topline a:hover { text-decoration: underline; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(247, 250, 249, .94);
  border-bottom: 1px solid rgba(16, 42, 50, .12);
  backdrop-filter: blur(16px);
}
.nav-wrap {
  max-width: 1240px;
  min-height: 84px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: grid;
  gap: .05rem;
  text-decoration: none;
  line-height: 1.15;
}
.brand-domain {
  color: var(--petrol);
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 700;
}
.brand-name {
  color: var(--copper);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  color: var(--petrol);
  font-size: 1.25rem;
  cursor: pointer;
}
.main-nav { display: flex; align-items: center; gap: .15rem; }
.main-nav a {
  padding: .6rem .7rem;
  border-radius: 10px;
  color: #294750;
  font-size: .87rem;
  font-weight: 700;
  text-decoration: none;
}
.main-nav a:hover,
.main-nav a[aria-current="page"] { color: var(--white); background: var(--petrol); }
.nav-more { position: relative; }
.nav-more summary {
  padding: .6rem .7rem;
  list-style: none;
  border-radius: 10px;
  color: #294750;
  font-size: .87rem;
  font-weight: 700;
  cursor: pointer;
}
.nav-more summary::-webkit-details-marker { display: none; }
.nav-more summary::after { content: " +"; color: var(--copper); }
.nav-more[open] summary { color: var(--white); background: var(--petrol); }
.nav-dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + .5rem);
  width: 245px;
  padding: .55rem;
  display: grid;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
}
.nav-dropdown a { font-size: .85rem; }
.breadcrumb {
  max-width: 1240px;
  margin: 0 auto;
  padding: 1.2rem 1.25rem 0;
  color: var(--muted);
  font-size: .85rem;
}
.breadcrumb a { color: var(--petrol-2); text-decoration: none; }
.breadcrumb span { margin: 0 .45rem; color: var(--copper); }
.masthead {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4.75rem) 1.25rem clamp(2.8rem, 6vw, 5.8rem);
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5.5rem);
}
.masthead-copy { position: relative; z-index: 2; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin: 0 0 1rem;
  color: var(--copper);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 34px; height: 2px; background: currentColor; }
h1, h2, h3 { margin-top: 0; line-height: 1.08; }
h1 {
  margin-bottom: 1.2rem;
  color: var(--petrol);
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5.4vw, 5.3rem);
  font-weight: 500;
  letter-spacing: -.035em;
}
h1 strong { color: var(--copper); font-weight: 500; }
.lede {
  max-width: 37rem;
  margin: 0 0 1.5rem;
  color: #36545c;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
}
.actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.5rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .75rem 1.1rem;
  border: 1px solid var(--petrol);
  border-radius: 999px;
  color: var(--white);
  background: var(--petrol);
  font-weight: 800;
  text-decoration: none;
}
.button:hover { background: var(--petrol-2); }
.button.secondary { color: var(--petrol); background: transparent; }
.button.secondary:hover { color: var(--white); background: var(--petrol); }
.hero-media {
  position: relative;
  min-width: 0;
}
.hero-media::before {
  content: "";
  position: absolute;
  inset: -18px 20% 22% -22px;
  z-index: -1;
  border-radius: 30px;
  background: var(--ice);
}
.hero-media img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.watermark {
  position: absolute;
  right: 14px;
  bottom: 14px;
  max-width: calc(100% - 28px);
  padding: .55rem .75rem;
  color: var(--white);
  background: rgba(7, 38, 47, .82);
  border-left: 3px solid var(--copper);
  border-radius: 8px;
  font-size: clamp(.67rem, 1.15vw, .82rem);
  line-height: 1.35;
  text-align: right;
  backdrop-filter: blur(6px);
}
.watermark strong { display: block; font-weight: 800; }
.microfacts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .7rem;
  margin-top: 2rem;
}
.microfact {
  padding: .85rem;
  border-top: 2px solid var(--copper);
  color: var(--muted);
  font-size: .82rem;
}
.microfact strong { display: block; color: var(--petrol); font-size: 1rem; }
.band {
  color: var(--white);
  background: var(--petrol);
}
.band-inner,
.section {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(3.5rem, 7vw, 7rem) 1.25rem;
}
.band h2, .band h3 { color: var(--white); }
.section-tag {
  margin-bottom: .8rem;
  color: var(--copper);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.section h2,
.band h2 {
  max-width: 850px;
  margin-bottom: 1.2rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 4.2vw, 4rem);
  font-weight: 500;
  letter-spacing: -.025em;
}
.section-intro { max-width: 760px; color: var(--muted); font-size: 1.12rem; }
.band .section-intro { color: #c4d9dc; }
.split {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.split.reverse { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); }
.split h2 { position: sticky; top: 118px; }
.prose { max-width: 760px; }
.prose p:first-child { margin-top: 0; }
.prose h3 { margin: 2rem 0 .7rem; color: var(--petrol); font-family: var(--serif); font-size: 1.65rem; }
.prose ul { padding-left: 1.2rem; }
.prose li { margin: .35rem 0; }
.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.card {
  min-height: 100%;
  padding: 1.4rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(10, 43, 52, .06);
}
.card-number { color: var(--copper); font-family: var(--serif); font-size: 1.35rem; }
.card h3 { margin: .8rem 0 .6rem; color: var(--petrol); font-size: 1.13rem; line-height: 1.25; }
.card p { margin: 0; color: var(--muted); font-size: .94rem; }
.card a { display: inline-block; margin-top: .8rem; color: var(--petrol-2); font-weight: 800; text-decoration-thickness: 1px; text-underline-offset: 4px; }
.path {
  margin-top: 2.2rem;
  border-left: 2px solid var(--copper);
}
.path-item {
  position: relative;
  padding: .2rem 0 1.8rem 2rem;
}
.path-item:last-child { padding-bottom: 0; }
.path-item::before {
  content: "";
  position: absolute;
  left: -7px;
  top: .35rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--copper);
  box-shadow: 0 0 0 6px var(--paper);
}
.band .path-item::before { box-shadow: 0 0 0 6px var(--petrol); }
.path-item h3 { margin: 0 0 .35rem; font-size: 1.1rem; }
.path-item p { margin: 0; color: var(--muted); }
.band .path-item p { color: #c4d9dc; }
.quote {
  margin: 2rem 0 0;
  padding: 1.5rem;
  border-left: 5px solid var(--copper);
  background: var(--ice);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.45;
}
.topic-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .65rem;
  margin-top: 1.6rem;
}
.topic {
  padding: .9rem 1rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,.68);
  font-weight: 750;
}
details.faq {
  border-top: 1px solid var(--line);
}
details.faq:last-child { border-bottom: 1px solid var(--line); }
details.faq summary {
  padding: 1.1rem .1rem;
  color: var(--petrol);
  font-weight: 850;
  cursor: pointer;
}
details.faq p { margin: 0; padding: 0 .1rem 1.2rem; color: var(--muted); }
.contact-strip {
  max-width: 1240px;
  margin: 0 auto clamp(2rem, 6vw, 5rem);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--white);
  background: linear-gradient(120deg, var(--green), var(--petrol-2));
  border-radius: 22px;
  box-shadow: var(--shadow);
}
.contact-strip h2 { margin: 0; font-family: var(--serif); font-size: clamp(1.4rem, 3vw, 2.3rem); }
.contact-strip p { margin: .35rem 0 0; color: #d8e7e8; }
.contact-strip .button { flex: 0 0 auto; color: var(--petrol); background: var(--white); border-color: var(--white); }
.legal-note { color: var(--muted); font-size: .9rem; }
.site-footer { color: #d7e7e6; background: #09262d; }
.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 3rem 1.25rem;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2rem;
}
.footer-title { margin: 0 0 .7rem; color: var(--white); font-family: var(--serif); font-size: 1.35rem; }
.site-footer p { margin: .3rem 0; }
.site-footer a { color: #d7e7e6; text-decoration-color: var(--copper); text-underline-offset: 4px; }
.footer-links { display: grid; gap: .4rem; }
.copyright {
  max-width: 1240px;
  margin: 0 auto;
  padding: 1.1rem 1.25rem;
  border-top: 1px solid rgba(255,255,255,.12);
  color: #9db5b8;
  font-size: .82rem;
}
.notice {
  padding: 1rem 1.1rem;
  border-left: 4px solid var(--copper);
  background: #fff7f1;
  color: #634739;
}

@media (max-width: 1040px) {
  .menu-toggle { display: inline-grid; place-items: center; }
  .main-nav {
    position: absolute;
    top: 84px;
    right: 1rem;
    left: 1rem;
    display: none;
    padding: .7rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }
  .main-nav.is-open { display: grid; }
  .main-nav a, .nav-more summary { padding: .8rem; }
  .nav-dropdown { position: static; width: auto; margin-top: .35rem; box-shadow: none; }
  .masthead { grid-template-columns: 1fr; gap: 2rem; }
  .masthead-copy { max-width: 760px; }
  .hero-media { max-width: 900px; }
  .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .topline-inner { justify-content: center; text-align: center; }
  .topline-inner span:first-child { display: none; }
  .nav-wrap { min-height: 74px; }
  .main-nav { top: 74px; }
  .brand-name { font-size: .64rem; letter-spacing: .07em; }
  .breadcrumb { padding-top: .9rem; }
  .masthead { padding-top: 1.8rem; }
  h1 { font-size: clamp(2.35rem, 13vw, 4rem); }
  .hero-media img { aspect-ratio: 4 / 3; }
  .watermark { right: 8px; bottom: 8px; left: 8px; text-align: left; }
  .microfacts { grid-template-columns: 1fr; }
  .split, .split.reverse { grid-template-columns: 1fr; }
  .split h2 { position: static; }
  .cards, .topic-list { grid-template-columns: 1fr; }
  .contact-strip { margin-right: 1rem; margin-left: 1rem; flex-direction: column; align-items: flex-start; border-radius: 18px; }
  .footer-inner { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
