:root {
  --bg: #fbf0d7;
  --paper: #ffffff;
  --panel: #f6f7f8;
  --ink: #1f2a22;
  --muted: #667076;
  --line: #cfd6dc;
  --accent: #004a60;
  --accent-soft: #e3f3f3;
  --warn: #56215e;
  --shadow: 0 12px 28px rgba(34, 42, 49, 0.08);
  --radius: 0.4rem;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

body {
  min-height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  font-family: "Plus Jakarta Sans", "Helvetica Neue", Arial, sans-serif;
  background: #ffffff;
  color: var(--ink);
}

.page-shell {
  flex: 1 0 auto;
  width: min(1180px, calc(100% - 32px));
  margin: 32px auto 56px;
}

.hero {
  display: block;
  margin-bottom: 24px;
}

.hero-card,
.panel,
.summary-card {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(207, 214, 220, 0.95);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 34px 42px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(251, 240, 215, 0.9) 72%, rgba(227, 243, 243, 0.72) 100%);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 12px;
  background: linear-gradient(180deg, #004a60 0%, #54b4b7 100%);
}

.hero-card h1 {
  margin: 0 0 12px;
  font-size: clamp(3.4rem, 7vw, 5.8rem);
  line-height: 0.9;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.hero-card p {
  margin: 0;
  color: #6c757d;
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  line-height: 1.45;
  font-weight: 500;
}

.layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.panel {
  padding: 24px;
}

.panel h2 {
  margin: 0 0 8px;
  font-size: 1.5rem;
  font-weight: 800;
}

.panel-intro {
  margin: 0 0 20px;
  color: var(--muted);
  line-height: 1.5;
}

.section-banner {
  padding: 14px 18px;
  background: #004a60;
  color: #fff;
  font-size: 1.88rem;
  font-family: "Outfit", "Plus Jakarta Sans", "Helvetica Neue", Arial, sans-serif;
  font-weight: 200;
  line-height: 1.15;
}

.site-header {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 8px 24px rgba(34, 42, 49, 0.06);
}

.site-header__inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  padding: 14px 0 12px;
}

.site-header__brand {
  min-width: 0;
}

.site-header__brand-lockup {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.site-header__logo {
  width: auto;
  height: 60px;
  max-height: 60px;
  object-fit: contain;
}

.site-header__menu-row {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #004a60;
  box-shadow: 0 8px 24px rgba(34, 42, 49, 0.08);
}

.site-header__menu-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 16px;
}

.site-header__brand-text {
  color: rgba(255, 255, 255, 0.94);
  font-family: "Outfit", "Plus Jakarta Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.9rem;
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.site-header__menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  min-width: 0;
  padding: 10px 0;
  justify-self: end;
}

.site-header__menu-item,
.header-icon-button {
  border: 0;
  background: transparent;
  color: #1f2a22;
  font: inherit;
}

.site-header__menu-item {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 0.35rem;
  font-size: 0.94rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  transition: background-color 160ms ease, color 160ms ease;
}

.site-header__menu-item:hover,
.site-header__menu-item:focus-visible,
.header-icon-button:hover,
.header-icon-button:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  outline: none;
}

.site-header__menu-item--active {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.header-icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 0.35rem;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease;
}

.site-header__mobile-toggle {
  display: none;
  padding: 10px;
  flex-direction: column;
  gap: 4px;
}

.site-header__mobile-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
}

.site-header__mobile-toggle:hover,
.site-header__mobile-toggle:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.site-footer {
  margin: auto 0 0;
  padding: 10px 16px;
  background: #004a60;
  text-align: center;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.72rem;
  font-family: "Outfit", "Plus Jakarta Sans", "Helvetica Neue", Arial, sans-serif;
  font-weight: 200;
  line-height: 1.25;
  letter-spacing: 0.02em;
}

@media (max-width: 900px) {
  .site-header__inner {
    grid-template-columns: 1fr;
    padding: 12px 0 10px;
  }

  .site-header__menu-shell {
    width: min(100% - 32px, 100%);
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
  }

  .site-header__logo {
    height: 48px;
    max-height: 48px;
  }

  .site-header__brand-text {
    font-size: 1rem;
    white-space: normal;
  }

  .site-header__mobile-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .site-header__menu {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    width: 100%;
    grid-column: 1 / -1;
    padding: 12px 16px 16px;
    justify-self: stretch;
  }

  .site-header__menu--open {
    display: flex;
  }

  .site-header__menu-item {
    width: 100%;
    border-radius: 0.45rem;
    text-align: left;
  }
}

@media (max-width: 640px) {
  .site-header__inner {
    width: min(100% - 20px, 100%);
    grid-template-columns: 1fr;
  }

  .site-header__menu-shell,
  .page-shell {
    width: min(100% - 20px, 100%);
  }

  .site-header__menu {
    padding: 12px 10px 14px;
  }

  .site-header__logo {
    height: 42px;
    max-height: 42px;
  }

  .site-header__brand-text {
    font-size: 0.92rem;
  }

  .page-shell {
    margin: 18px auto 30px;
  }
}
