:root {
  --bg: #f1f5f0;
  --ink: #10231f;
  --muted: #56645f;
  --panel: #fffdf6;
  --line: #d9e1d8;
  --pink: #ff7a45;
  --gold: #f2b84b;
  --mint: #00a98f;
  --deep: #0d2b25;
  --shadow: 0 18px 44px rgba(13, 43, 37, .15);
}
* { box-sizing: border-box; }
html { color-scheme: light; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.62;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
a:focus-visible, button:focus-visible { outline: 3px solid var(--mint); outline-offset: 3px; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 12px clamp(16px, 4vw, 48px);
  background: rgba(13, 43, 37, .97);
  color: #fff;
  box-shadow: 0 4px 24px rgba(0, 0, 0, .2);
}
.brand img { width: 148px; height: auto; object-fit: contain; }
.site-nav { display: flex; align-items: center; gap: 18px; justify-content: center; font-weight: 700; }
.site-nav a { text-decoration: none; color: #f3fff9; }
.site-nav a:hover { color: var(--gold); }
.header-cta, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 6px;
  background: var(--gold);
  color: #10231f;
  font-weight: 800;
  text-decoration: none;
  border: 0;
  box-shadow: 0 8px 0 rgba(255, 122, 69, .32);
}
.btn.secondary { background: #fff; box-shadow: inset 0 0 0 2px var(--line); }
.menu-toggle { display: none; width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.25); background: transparent; border-radius: 6px; }
.menu-toggle span { display: block; width: 22px; height: 2px; margin: 5px auto; background: #fff; }
main { overflow: hidden; }
.hero {
  position: relative;
  min-height: 670px;
  display: grid;
  align-items: end;
  color: #fff;
  background: var(--deep);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13,43,37,.92), rgba(13,43,37,.46));
}
.hero-picture { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-inner { position: relative; z-index: 1; width: min(1180px, calc(100% - 32px)); margin: 0 auto; padding: 96px 0 54px; }
.eyebrow { color: var(--mint); font-weight: 800; text-transform: uppercase; letter-spacing: 0; margin: 0 0 12px; }
h1 { max-width: 820px; margin: 0 0 18px; font-size: clamp(36px, 6vw, 72px); line-height: 1.02; letter-spacing: 0; }
.lead { max-width: 760px; font-size: 20px; margin: 0 0 26px; color: #eefaf5; }
.hero-actions, .action-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(1180px, calc(100% - 32px));
  margin: -28px auto 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.trust-strip div { background: #fff; padding: 18px; }
.trust-strip strong { display: block; font-size: 22px; }
.wrap { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
section { padding: 72px 0; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 22px; margin-bottom: 28px; }
h2 { margin: 0 0 14px; font-size: clamp(28px, 4vw, 42px); line-height: 1.12; letter-spacing: 0; }
h3 { margin: 0 0 10px; font-size: 22px; line-height: 1.25; }
p { margin: 0 0 16px; }
.grid { display: grid; gap: 18px; }
.cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  box-shadow: 0 8px 22px rgba(13, 43, 37, .07);
}
.media-card { padding: 0; overflow: hidden; }
.media-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.media-card div { padding: 18px; }
.feature-band {
  background: var(--deep);
  color: #fff;
}
.feature-band .card { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.16); box-shadow: none; }
.banner-split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 26px; align-items: center; }
.banner-split img { border-radius: 8px; box-shadow: var(--shadow); width: 100%; }
table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 8px; overflow: hidden; }
th, td { padding: 14px 16px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
th { background: #e7efe7; }
.notice { border-left: 5px solid var(--pink); background: #fff; padding: 18px; border-radius: 8px; }
.related { display: flex; flex-wrap: wrap; gap: 10px; }
.related a { padding: 8px 12px; border: 1px solid var(--line); border-radius: 6px; background: #fff; text-decoration: none; font-weight: 700; }
.faq-item { border: 1px solid var(--line); border-radius: 8px; background: #fff; margin-bottom: 10px; overflow: hidden; }
.faq-item button { width: 100%; padding: 16px; text-align: left; border: 0; background: #fff; color: var(--ink); font-weight: 800; cursor: pointer; }
.faq-item div { padding: 0 16px 16px; }
.site-footer { background: #0b201c; color: #f3fff9; padding: 46px clamp(16px, 4vw, 48px); }
.footer-grid { width: min(1180px, 100%); margin: 0 auto; display: grid; grid-template-columns: 1.4fr .8fr 1fr; gap: 28px; }
.footer-logo { width: 150px; height: auto; margin-bottom: 14px; }
.site-footer h2 { font-size: 18px; margin-bottom: 12px; }
.site-footer a { display: block; color: #fff; margin: 6px 0; text-decoration: none; }
.site-footer p { color: #d5e3df; }
@media (max-width: 900px) {
  .site-header { grid-template-columns: auto auto 1fr; gap: 12px; }
  .menu-toggle { display: block; order: 2; }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px 16px 18px;
    background: #0d2b25;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 10px 0; }
  .header-cta { justify-self: end; padding: 10px 12px; min-height: 42px; }
  .hero { min-height: 610px; }
  .trust-strip, .cols-4, .cols-3, .cols-2, .banner-split, .footer-grid { grid-template-columns: 1fr; }
  .section-head { display: block; }
}
@media (max-width: 520px) {
  body { font-size: 16px; }
  .site-header { padding: 10px 12px; }
  .brand img { width: 124px; height: auto; }
  .header-cta { font-size: 13px; max-width: 132px; text-align: center; }
  .hero-inner { padding: 72px 0 42px; }
  h1 { font-size: 38px; }
  .lead { font-size: 17px; }
  section { padding: 52px 0; }
  th, td { padding: 12px 10px; }
}
