:root {
  --bg: #0f2018;
  --bg-soft: #173126;
  --surface: rgba(248, 244, 232, 0.9);
  --surface-strong: #fffaf0;
  --text: #132018;
  --text-inverse: #f7f2e7;
  --muted: #506154;
  --line: rgba(19, 32, 24, 0.12);
  --brand: #0f7a4e;
  --brand-strong: #0a5b3a;
  --accent: #f1b84b;
  --accent-soft: #ffe2a1;
  --danger: #a23d2d;
  --shadow: 0 24px 60px rgba(6, 18, 12, 0.22);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --content-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(241, 184, 75, 0.15), transparent 32%),
    radial-gradient(circle at top right, rgba(15, 122, 78, 0.22), transparent 26%),
    linear-gradient(180deg, #10251b 0%, #173126 4%, #f3eddf 4%, #f3eddf 100%);
  line-height: 1.65;
}

a {
  color: inherit;
}

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

.site-shell {
  width: min(100%, var(--content-width));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  z-index: 10;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--surface-strong);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(11, 27, 19, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar__inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  min-height: 80px;
}

.topbar__row {
  display: flex;
  width: auto;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text-inverse);
  text-decoration: none;
}

.brand-lockup__mark {
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.18));
}

.brand-lockup__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-lockup strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
}

.brand-lockup span {
  color: rgba(247, 242, 231, 0.72);
  font-size: 0.92rem;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  min-height: 46px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-inverse);
  cursor: pointer;
}

.nav-toggle__box {
  display: grid;
  gap: 5px;
}

.nav-toggle__box span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__box span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__box span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__box span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav a {
  color: var(--text-inverse);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 10px 12px;
  border-radius: 999px;
  white-space: nowrap;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.nav a:hover,
.nav a:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.hero {
  padding: 56px 0 28px;
}

.hero__panel {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: 24px;
  padding: 28px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top left, rgba(255, 219, 145, 0.26), transparent 34%),
    linear-gradient(135deg, rgba(255, 251, 242, 0.98), rgba(247, 238, 217, 0.96));
  box-shadow: var(--shadow);
}

.hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(15, 122, 78, 0.1);
  color: var(--brand-strong);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h1,
h2,
h3 {
  margin: 0 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.15;
  color: #112117;
}

h1 {
  max-width: 9ch;
  font-size: clamp(2.6rem, 4.5vw, 4.9rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

h3 {
  font-size: 1.2rem;
}

p {
  margin: 0 0 16px;
}

.lead {
  font-size: 1.08rem;
  color: #27392d;
  max-width: 58ch;
}

.hero__copy ul,
.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero__copy ul li,
.check-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
}

.hero__copy ul li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--accent), #d7991d);
}

.hero__card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(255, 213, 132, 0.08), transparent 28%),
    linear-gradient(180deg, #153825, #1a4730);
  color: var(--text-inverse);
  display: grid;
  gap: 20px;
  align-content: start;
  min-height: 100%;
}

.hero__card h2,
.hero__card h3 {
  color: var(--text-inverse);
}

.hero__card p {
  color: rgba(247, 242, 231, 0.88);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.btn,
.btn-secondary,
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.btn,
.cta-btn {
  background: linear-gradient(180deg, var(--accent), #da9f30);
  color: #241a07;
  box-shadow: 0 16px 30px rgba(173, 118, 13, 0.22);
}

.btn-secondary {
  background: transparent;
  color: inherit;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn:hover,
.btn:focus-visible,
.btn-secondary:hover,
.btn-secondary:focus-visible,
.cta-btn:hover,
.cta-btn:focus-visible {
  transform: translateY(-2px);
}

.section {
  padding: 24px 0 40px;
}

.section__head {
  max-width: 720px;
  margin-bottom: 22px;
}

.grid {
  display: grid;
  gap: 20px;
}

.grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card,
.fact-card,
.promo-card,
.legal__card {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid rgba(19, 32, 24, 0.08);
  box-shadow: 0 14px 40px rgba(15, 32, 22, 0.08);
}

.fact-card strong,
.stat strong {
  display: block;
  font-size: 1.75rem;
  color: var(--brand-strong);
}

.quick-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.stat {
  min-height: 126px;
  padding: 18px 16px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(248, 244, 232, 0.9), rgba(227, 232, 226, 0.82));
  border: 1px solid rgba(255, 255, 255, 0.22);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-lg);
  background: var(--surface-strong);
  box-shadow: 0 14px 36px rgba(15, 32, 22, 0.08);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

th,
td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  background: rgba(15, 122, 78, 0.08);
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(15, 122, 78, 0.08);
  color: var(--brand-strong);
  font-weight: 700;
  font-size: 0.92rem;
}

.media-card {
  overflow: hidden;
  padding: 0;
}

.media-card__image-link {
  display: block;
  overflow: hidden;
}

.media-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #d9dfd8;
  transition: transform 0.28s ease, filter 0.28s ease;
}

.media-card__image-link:hover img,
.media-card__image-link:focus-visible img {
  transform: scale(1.03);
  filter: saturate(1.04);
}

.media-card__body {
  padding: 18px 18px 22px;
}

.note,
.warning {
  color: var(--muted);
  font-size: 0.95rem;
}

.warning {
  color: var(--danger);
}

.hero__card .warning {
  margin-top: 2px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #ff9f8e;
}

.faq {
  display: grid;
  gap: 14px;
}

.faq details {
  padding: 18px 20px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid rgba(19, 32, 24, 0.08);
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
}

.footer {
  margin-top: 24px;
  padding: 34px 0 56px;
  color: var(--text-inverse);
  background: #112117;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: start;
}

.footer a {
  color: var(--accent-soft);
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.mobile-cta {
  display: none;
}

.mobile-cta__btn {
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 14px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  background: linear-gradient(180deg, var(--accent), #da9f30);
  color: #241a07;
  box-shadow: 0 18px 36px rgba(24, 19, 8, 0.28);
}

.breadcrumbs {
  margin: 18px 0 0;
  color: rgba(247, 242, 231, 0.8);
  font-size: 0.95rem;
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.92);
}

.legal {
  min-height: 72vh;
  display: grid;
  place-items: center;
}

.legal__card {
  max-width: 760px;
  width: 100%;
}

.cta-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #11402d, #0f7a4e);
  color: var(--text-inverse);
  box-shadow: var(--shadow);
}

.cta-strip h2,
.cta-strip p {
  color: var(--text-inverse);
}

.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.page-intro {
  padding: 24px 0 18px;
}

.page-intro__box {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  max-width: 1040px;
  margin: 0 auto;
  padding: 36px 48px 30px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top center, rgba(255, 216, 137, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(255, 250, 240, 0.98), rgba(248, 244, 232, 0.94));
  box-shadow: var(--shadow);
  border: 1px solid rgba(19, 32, 24, 0.06);
}

.page-intro__box::after {
  content: "";
  position: absolute;
  left: 50%;
  top: auto;
  bottom: -56px;
  transform: translateX(-50%);
  width: clamp(220px, 34vw, 420px);
  height: 160px;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(255, 214, 128, 0.22), rgba(255, 214, 128, 0.04) 55%, transparent 72%);
  opacity: 0.9;
}

.page-intro__box > * {
  position: relative;
  z-index: 1;
  max-width: 100%;
}

.page-intro__box h1 {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(2rem, 3.2vw, 2.85rem);
  line-height: 1.04;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.page-intro__box .lead {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1rem;
  line-height: 1.55;
}

.page-intro__box .hero__actions {
  justify-content: center;
  width: 100%;
  margin-top: 6px;
}

.page-intro__box .btn-secondary {
  border-color: rgba(19, 32, 24, 0.12);
  background: rgba(255, 255, 255, 0.42);
  color: var(--text);
}

.page-intro + .section {
  padding-top: 26px;
}

.muted-surface {
  background: rgba(15, 122, 78, 0.06);
}

@media (max-width: 980px) {
  .hero__panel,
  .footer__inner,
  .grid--three,
  .grid--two,
  .quick-stats {
    grid-template-columns: 1fr;
  }

  .topbar__inner {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 16px;
  }

  .brand-lockup strong {
    font-size: 1.18rem;
  }

  .brand-lockup span {
    font-size: 0.84rem;
  }

  .nav {
    gap: 8px;
  }

  .nav a {
    font-size: 0.84rem;
    padding: 9px 10px;
  }

  .page-intro__box::after {
    width: 300px;
    height: 140px;
  }

  .page-intro__box > * {
    max-width: 100%;
  }

  .page-intro__box h1 {
    max-width: 760px;
    font-size: clamp(1.95rem, 3.8vw, 2.55rem);
  }
}

@media (max-width: 720px) {
  body {
    background:
      radial-gradient(circle at top left, rgba(241, 184, 75, 0.18), transparent 28%),
      linear-gradient(180deg, #10251b 0%, #173126 3%, #f3eddf 3%, #f3eddf 100%);
  }

  .topbar {
    position: sticky;
  }

  .topbar__inner {
    display: flex;
    padding: 12px 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .brand-lockup {
    gap: 12px;
  }

  .brand-lockup__mark {
    width: 46px;
    height: 46px;
  }

  .brand-lockup strong {
    font-size: 1.18rem;
  }

  .brand-lockup span {
    font-size: 0.84rem;
  }

  .topbar__row {
    width: 100%;
    gap: 12px;
    justify-content: space-between;
  }

  .nav-toggle {
    display: inline-flex;
    flex: 0 0 auto;
  }

  .nav {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 8px;
    padding-top: 4px;
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    width: 100%;
    justify-content: flex-start;
    padding: 12px 14px;
    font-size: 0.94rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .hero {
    padding-top: 26px;
    padding-bottom: 12px;
  }

  .hero__panel,
  .page-intro__box,
  .card,
  .fact-card,
  .promo-card,
  .legal__card {
    padding: 20px;
  }

  .page-intro__box::after {
    bottom: -34px;
    width: 220px;
    height: 110px;
    border-radius: 999px;
    opacity: 0.82;
  }

  .page-intro__box > * {
    max-width: 100%;
  }

  .page-intro__box h1 {
    max-width: 100%;
    font-size: 1.92rem;
  }

  h1 {
    max-width: none;
    font-size: 2.3rem;
  }

  h2 {
    font-size: 1.55rem;
  }

  .lead {
    font-size: 1rem;
  }

  .eyebrow {
    font-size: 0.77rem;
    letter-spacing: 0.06em;
  }

  .hero__actions,
  .inline-links,
  .footer__nav {
    gap: 10px;
  }

  .page-intro__box .hero__actions {
    max-width: 100%;
  }

  .btn,
  .btn-secondary,
  .cta-btn {
    width: 100%;
    min-height: 50px;
    padding: 12px 16px;
  }

  .quick-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .stat {
    padding: 16px;
    min-height: 112px;
  }

  .section {
    padding: 18px 0 30px;
  }

  .section__head {
    margin-bottom: 18px;
  }

  th,
  td {
    padding: 14px 14px;
    font-size: 0.95rem;
  }

  table {
    min-width: 560px;
  }

  .media-card__body {
    padding: 16px 16px 18px;
  }

  .faq details {
    padding: 16px;
  }

  .cta-strip {
    padding: 20px;
  }

  .footer {
    padding: 28px 0 104px;
  }

  .mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 30;
    display: block;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0px));
    background: linear-gradient(180deg, rgba(17, 33, 23, 0), rgba(17, 33, 23, 0.92) 30%, rgba(17, 33, 23, 0.96) 100%);
  }
}

@media (max-width: 540px) {
  .topbar__inner {
    min-height: auto;
    gap: 12px;
  }

  .hero__panel,
  .page-intro__box,
  .card,
  .fact-card,
  .promo-card,
  .legal__card,
  .hero__card {
    padding: 16px;
    border-radius: 20px;
  }

  .page-intro__box::after {
    bottom: -24px;
    width: 170px;
    height: 80px;
    border-radius: 999px;
  }

  .page-intro__box > * {
    max-width: 100%;
  }

  .page-intro__box h1 {
    max-width: 100%;
    font-size: 1.68rem;
  }

  h1 {
    font-size: 1.95rem;
  }

  h2 {
    font-size: 1.38rem;
  }

  h3 {
    font-size: 1.08rem;
  }

  .hero__copy ul li,
  .check-list li {
    padding-left: 20px;
  }

  .hero__copy ul li::before,
  .check-list li::before {
    width: 8px;
    height: 8px;
    top: 0.7em;
  }

  .nav a {
    min-height: 40px;
    padding: 11px 12px;
    font-size: 0.86rem;
  }

  .brand-lockup__mark {
    width: 42px;
    height: 42px;
  }

  .table-wrap {
    margin: 0 -4px;
  }

  .quick-stats {
    grid-template-columns: 1fr 1fr;
  }

  table {
    min-width: 500px;
  }

  th,
  td {
    padding: 12px 12px;
    font-size: 0.9rem;
  }

  .cta-strip {
    gap: 14px;
    padding: 18px 16px;
  }

  .footer__nav {
    gap: 8px 12px;
  }

  .mobile-cta {
    padding-left: 10px;
    padding-right: 10px;
  }
}
