:root {
  color-scheme: light;
  --bg: #fff0c8;
  --bg-soft: #d8efd1;
  --panel: #fff8e8;
  --panel-2: #ffdf7e;
  --line: #d4a93f;
  --text: #24130a;
  --muted: #614b31;
  --gold: #ffc21c;
  --gold-2: #fff15f;
  --orange: #f05a24;
  --red: #c91f17;
  --green: #14965f;
  --green-soft: #cdebbf;
  --asphalt: #151a1d;
  --button-ink: #221008;
  --button-hot: #e5331e;
  --button-fire: #f05a24;
  --button-sun: #ffc21c;
  --button-lime: #8edb4f;
  --shadow: 0 18px 48px rgba(74, 43, 11, .18);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(212, 169, 63, .9);
  background: rgba(255, 240, 200, .94);
  backdrop-filter: blur(14px);
}

.header-inner,
.section-inner,
.footer-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.header-inner {
  position: relative;
  display: grid;
  grid-template-columns: auto auto auto auto;
  align-items: center;
  justify-content: center;
  width: min(1440px, calc(100% - 32px));
  min-height: 72px;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
  transform: translateX(-48px);
}

.brand-name {
  display: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  overflow: hidden;
  background: #ffc21c;
  box-shadow: 0 10px 24px rgba(240, 90, 36, .28);
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 0;
  padding: 8px;
  border: 1px solid rgba(255, 194, 28, .78);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 248, 232, .92) 0%, rgba(255, 224, 124, .72) 48%, rgba(205, 235, 191, .78) 100%);
  box-shadow: 0 12px 30px rgba(74, 43, 11, .16), inset 0 0 0 1px rgba(255, 255, 255, .42);
  font-size: 15px;
}

.nav a {
  --nav-accent: #f05a24;
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 7px;
  color: #3b2612;
  text-decoration: none;
  font-weight: 800;
  white-space: nowrap;
  background: rgba(255, 250, 240, .42);
  transition: color .22s ease, background-color .22s ease, border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.nav a:nth-child(1) {
  --nav-accent: #e5331e;
}

.nav a:nth-child(2) {
  --nav-accent: #ffc21c;
}

.nav a:nth-child(3) {
  --nav-accent: #14965f;
}

.nav a:nth-child(4) {
  --nav-accent: #f05a24;
}

.nav a:nth-child(5) {
  --nav-accent: #27b7a4;
}

.nav a:nth-child(6) {
  --nav-accent: #8edb4f;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 7px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #fff15f, var(--nav-accent));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .22s ease;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: #151a1d;
  border-color: var(--nav-accent);
  background: rgba(255, 250, 240, .92);
  box-shadow: inset 0 -5px 0 var(--nav-accent), 0 8px 18px rgba(74, 43, 11, .12);
  transform: translateY(-1px);
}

.nav a:hover::after,
.nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-promo-copy {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 146px;
  min-height: 54px;
  padding: 0 22px;
  border: 2px solid #0e8f7a;
  border-radius: 8px;
  background: linear-gradient(135deg, #efff9a 0%, #32d08f 48%, #0e8f7a 100%);
  color: #071b16;
  font-family: inherit;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .4px;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(14, 143, 122, .28), inset 0 0 0 2px rgba(255, 255, 255, .42);
}

.header-promo-copy:hover {
  border-color: #ffc21c;
  background: linear-gradient(135deg, #fff15f 0%, #42e29d 48%, #087c68 100%);
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(14, 143, 122, .36), inset 0 0 0 2px rgba(255, 255, 255, .52);
}

.header-promo-copy.is-copied {
  border-color: #151a1d;
  background: linear-gradient(135deg, #fff15f 0%, #ffc21c 48%, #f05a24 100%);
  color: #151a1d;
  box-shadow: 0 18px 34px rgba(240, 90, 36, .34), inset 0 0 0 3px rgba(255, 255, 255, .58);
  transform: translateY(-2px);
}

.header-cta {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 188px;
  min-height: 56px;
  margin-left: 0;
  padding: 0 34px;
  border: 2px solid #d9ff66;
  border-radius: 8px;
  background:
    linear-gradient(135deg, #f4ff70 0%, #8eea44 30%, #23c35d 68%, #087c43 100%);
  color: var(--button-ink);
  font-size: 18px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
  box-shadow:
    0 0 0 3px rgba(142, 219, 79, .22),
    0 18px 36px rgba(20, 150, 95, .38),
    inset 0 0 0 2px rgba(255, 255, 255, .36),
    inset 0 -5px 0 rgba(5, 82, 44, .24);
  isolation: isolate;
}

.header-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, transparent 0%, transparent 32%, rgba(255, 255, 255, .48) 46%, transparent 60%, transparent 100%);
  transform: translateX(-130%);
  transition: transform .55s ease;
  z-index: -1;
}

.header-cta:hover {
  transform: translateY(-3px);
  background:
    linear-gradient(135deg, #fbff8a 0%, #9bf04f 34%, #19b95b 70%, #056b3d 100%);
  box-shadow:
    0 0 0 4px rgba(217, 255, 102, .26),
    0 22px 42px rgba(20, 150, 95, .48),
    inset 0 0 0 2px rgba(255, 255, 255, .42),
    inset 0 -5px 0 rgba(5, 82, 44, .26);
}

.header-cta:hover::before {
  transform: translateX(130%);
}

.nav-toggle {
  position: relative;
  z-index: 40;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex: 0 0 50px;
  gap: 6px;
  width: 50px;
  height: 50px;
  border: 2px solid #14965f;
  border-radius: 8px;
  background: linear-gradient(135deg, #fff15f 0%, #8edb4f 50%, #14965f 100%);
  color: #132014;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  box-shadow: 0 12px 24px rgba(20, 150, 95, .28), 0 0 0 4px rgba(255, 194, 28, .2);
}

.nav-toggle span {
  width: 24px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

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

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

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

.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.button {
  border-color: rgba(185, 31, 24, .82);
  background:
    linear-gradient(135deg, #fff36a 0%, var(--button-sun) 38%, var(--button-fire) 72%, var(--button-hot) 100%);
  color: var(--button-ink);
  box-shadow: 0 14px 28px rgba(201, 31, 23, .26), inset 0 -2px 0 rgba(118, 35, 0, .16);
}

.button:hover {
  background:
    linear-gradient(135deg, #fff15f 0%, #ffae20 40%, #e5331e 100%);
  transform: translateY(-1px);
}

.button-secondary {
  border-color: rgba(20, 150, 95, .72);
  background: linear-gradient(135deg, #fffaf0 0%, #dff4b4 100%);
  color: #162116;
  box-shadow: inset 0 -1px 0 rgba(20, 150, 95, .14);
}

.button-secondary:hover {
  border-color: #f05a24;
  background: linear-gradient(135deg, #fff15f 0%, #ffc21c 48%, #8edb4f 100%);
  transform: translateY(-1px);
}

.scroll-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 45;
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 2px solid #151a1d;
  border-radius: 8px;
  background: linear-gradient(135deg, #8edb4f 0%, #ffc21c 52%, #f05a24 100%);
  color: #151a1d;
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  box-shadow: 0 14px 28px rgba(20, 150, 95, .22), 0 0 0 4px rgba(255, 194, 28, .16);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.promo-pop {
  position: fixed;
  left: 28px;
  bottom: 28px;
  z-index: 56;
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  align-items: center;
  gap: 22px;
  width: min(560px, calc(100% - 56px));
  min-height: 162px;
  padding: 24px 62px 24px 24px;
  overflow: hidden;
  border: 2px solid rgba(255, 241, 95, .88);
  border-radius: 22px;
  background:
    linear-gradient(115deg, rgba(21, 26, 29, .24) 0 16%, transparent 16% 100%),
    linear-gradient(135deg, #8b160f 0%, #c91f17 34%, #f05a24 66%, #ffc21c 100%);
  color: #ffffff;
  box-shadow: 0 26px 58px rgba(36, 19, 10, .38), inset 0 0 0 1px rgba(255, 255, 255, .18);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
}

.promo-pop::before,
.promo-pop::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.promo-pop::before {
  inset: 12px 12px auto;
  height: 8px;
  border-radius: 999px;
  background: repeating-linear-gradient(90deg, #fff15f 0 28px, #151a1d 28px 42px);
  opacity: .88;
}

.promo-pop::after {
  right: -70px;
  bottom: -92px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(142, 219, 79, .42) 0 34%, rgba(255, 194, 28, .24) 35% 54%, transparent 55%);
}

.promo-pop.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.promo-pop-media {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 120px;
  height: 120px;
  overflow: hidden;
  border: 3px solid rgba(255, 241, 95, .9);
  border-radius: 20px;
  background: #fff0c8;
  transform: none;
  box-shadow: 0 16px 28px rgba(36, 19, 10, .24), inset 0 0 0 1px rgba(255, 255, 255, .5);
}

.promo-pop-media img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
}

.promo-pop-body {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  min-width: 0;
}

.promo-pop-body strong {
  width: fit-content;
  padding: 4px 10px 5px;
  border: 1px solid rgba(255, 241, 95, .58);
  border-radius: 999px;
  background: rgba(21, 26, 29, .32);
  font-size: 23px;
  line-height: 1.1;
  text-shadow: 0 2px 8px rgba(36, 19, 10, .38);
}

.promo-pop-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 280px);
  min-height: 56px;
  padding: 10px 22px;
  border: 2px solid rgba(21, 26, 29, .85);
  border-radius: 14px;
  background:
    linear-gradient(135deg, #8edb4f 0%, #fff15f 36%, #ffc21c 64%, #f05a24 100%);
  color: #151a1d;
  font-size: 21px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  text-shadow: 0 2px 5px rgba(36, 19, 10, .28);
  box-shadow: inset 0 -4px 0 rgba(185, 93, 0, .24), 0 14px 26px rgba(36, 19, 10, .28), 0 0 0 4px rgba(255, 255, 255, .18);
  transform: skewX(-4deg);
}

.promo-pop-close {
  position: absolute;
  z-index: 2;
  top: 10px;
  right: 10px;
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 2px solid rgba(21, 26, 29, .78);
  border-radius: 12px;
  background: linear-gradient(135deg, #fff15f 0%, #ffc21c 58%, #8edb4f 100%);
  color: #151a1d;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(36, 19, 10, .28);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 0;
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 76% 15%, rgba(255, 194, 28, .38), transparent 30%),
    radial-gradient(circle at 14% 82%, rgba(20, 150, 95, .22), transparent 28%),
    radial-gradient(circle at 52% 38%, rgba(201, 31, 23, .10), transparent 34%),
    linear-gradient(180deg, #ffe07c 0%, #fff0c8 48%, #d8efd1 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(0deg, var(--bg), rgba(255, 240, 200, 0));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  align-items: center;
  gap: 48px;
  padding: 42px 0 20px;
}

.hero-home .hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(480px, 600px);
  gap: 48px;
}

.hero-home .hero-art {
  align-self: center;
}

.hero-grid > *,
.grid-2 > *,
.grid-3 > * {
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #9d3512;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.hero h1,
.page-hero h1 {
  width: min(100%, 780px);
  margin: 16px 0 18px;
  font-size: clamp(32px, 3.2vw, 46px);
  line-height: 1.08;
  letter-spacing: 0;
  overflow-wrap: normal;
  text-wrap: normal;
}

.hero h1 span {
  display: inline;
}

.hero h1 span + span::before {
  content: " ";
}

.hero-copy {
  width: min(100%, 640px);
  color: var(--muted);
  font-size: 18px;
  overflow-wrap: break-word;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.proof-item,
.card,
.summary-box,
.table-wrap,
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.proof-item {
  padding: 14px;
}

.proof-label {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.proof-value {
  display: block;
  margin-top: 4px;
  font-weight: 800;
}

.hero-art {
  display: block;
  width: 100%;
  height: auto;
  border: 0;
  outline: 0;
  border-radius: 22px;
  background: transparent;
  box-shadow: 0 10px 22px rgba(105, 56, 8, .14);
  filter: saturate(1.05);
}

.hero-home .hero-art {
  height: auto;
}

.article-media {
  margin: 34px auto 0;
  border: 0;
  border-radius: 20px;
  background: transparent;
  box-shadow: none;
}

.article-media img {
  display: block;
  width: 100%;
  height: auto;
  border: 0;
  outline: 0;
  border-radius: 20px;
  background: transparent;
  box-shadow: 0 10px 22px rgba(74, 43, 11, .12);
}

.article-media figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.article-media--wide {
  width: min(100%, 920px);
}

.article-media--square {
  width: min(100%, 560px);
}

.article-media--wide img {
  height: auto;
}

.article-media--square img {
  height: auto;
}

.section {
  position: relative;
  padding: 28px 0;
}

.section:nth-of-type(odd) {
  background:
    linear-gradient(90deg, rgba(216, 239, 209, .34), rgba(255, 240, 200, 0) 42%),
    linear-gradient(180deg, rgba(255, 248, 232, .36), rgba(255, 240, 200, 0));
}

.section:nth-of-type(even) {
  background:
    linear-gradient(90deg, rgba(255, 194, 28, .16), rgba(255, 240, 200, 0) 38%),
    linear-gradient(180deg, rgba(255, 248, 232, .42), rgba(255, 240, 200, .18));
}

.section:nth-of-type(3n) {
  background:
    linear-gradient(90deg, rgba(255, 194, 28, .18), rgba(255, 240, 200, 0) 46%),
    linear-gradient(180deg, rgba(255, 248, 232, .24), rgba(216, 239, 209, .28));
}

.section.alt {
  background:
    linear-gradient(180deg, rgba(255, 194, 28, .15), transparent 44%),
    var(--bg-soft);
}

.section-title {
  max-width: 760px;
  margin: 0 0 28px;
}

.section-title h2,
.page-content h2 {
  margin: 0 0 10px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
}

.section-title p,
.page-content p {
  color: var(--muted);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

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

.card {
  padding: 22px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.card h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 9px;
  border-radius: 999px;
  background: #ffdc79;
  color: #88300d;
  font-size: 12px;
  font-weight: 800;
}

.table-wrap {
  overflow-x: auto;
  background: var(--panel);
}

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

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

th {
  color: #8f340d;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

td {
  color: var(--muted);
}

td strong {
  color: var(--text);
}

.status {
  color: var(--green);
  font-weight: 800;
}

.warning {
  color: #9d3512;
  font-weight: 800;
}

.summary-box {
  padding: 24px;
  background: linear-gradient(135deg, #ffdc79, #fff8e8 48%, #cdebbf);
}

.summary-box p {
  margin: 0;
  color: var(--muted);
}

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

.faq-item {
  padding: 20px;
  background: var(--panel);
}

.faq-item h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
}

.cta-band {
  padding: 44px 0;
  background: linear-gradient(135deg, #fff15f, #ffc21c 46%, #f05a24);
  color: #241000;
}

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

.cta-grid h2 {
  margin: 0 0 8px;
  font-size: clamp(26px, 4vw, 40px);
}

.cta-grid p {
  margin: 0;
  max-width: 720px;
}

.cta-band .button-secondary {
  background: linear-gradient(135deg, #151a1d 0%, #24301f 48%, #8b160f 100%);
  border-color: rgba(255, 194, 28, .7);
  color: #fff;
  box-shadow: 0 14px 30px rgba(21, 26, 29, .28), inset 0 0 0 1px rgba(255, 194, 28, .22);
}

.cta-band .button-secondary:hover {
  background: linear-gradient(135deg, #24130a 0%, #c91f17 46%, #f05a24 100%);
  border-color: #fff15f;
}

.page-hero {
  padding: 70px 0 46px;
  background:
    radial-gradient(circle at 80% 0%, rgba(245, 189, 22, .28), transparent 28%),
    linear-gradient(180deg, #ffe07c 0%, #fff0c8 58%, var(--bg) 100%);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumbs a {
  color: #9d3512;
  text-decoration: none;
}

.page-content {
  padding: 58px 0 78px;
}

.content-narrow {
  position: relative;
  max-width: 900px;
  padding: 8px 0 8px 30px;
}

.content-narrow::before {
  content: "";
  position: absolute;
  top: 14px;
  bottom: 14px;
  left: 0;
  width: 5px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--orange), var(--gold), var(--green));
  box-shadow: 0 8px 18px rgba(240, 90, 36, .18);
}

.section:nth-of-type(3n) .content-narrow::before {
  background: linear-gradient(180deg, var(--green), var(--gold), var(--orange));
}

.content-narrow .tag {
  margin-bottom: 14px;
  border: 1px solid rgba(240, 90, 36, .22);
  background: rgba(255, 220, 121, .78);
  box-shadow: none;
}

.content-narrow h2 {
  position: relative;
  margin: 0 0 18px;
  padding-bottom: 14px;
  border-bottom: 0;
  font-size: clamp(28px, 3.2vw, 38px);
  line-height: 1.08;
}

.content-narrow h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: min(180px, 44%);
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--gold));
}

.content-narrow p {
  margin: 0;
  color: #321a0d;
  font-size: 18px;
  line-height: 1.68;
}

.content-narrow p + p {
  margin-top: 16px;
}

.content-narrow a {
  color: #0c785f;
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.content-narrow ul,
.content-narrow ol {
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid #242a2d;
  background: var(--asphalt);
  padding: 36px 0;
  color: #ead8ad;
  font-size: 14px;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
}

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

.footer-links a {
  color: #f6df9e;
  text-decoration: none;
}

.footer-inner-legal {
  grid-template-columns: 1fr;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(234, 216, 173, .18);
}

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

.footer-legal a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(246, 223, 158, .2);
  border-radius: 8px;
  color: #f6df9e;
  text-decoration: none;
  background: rgba(255, 255, 255, .04);
}

.footer-legal a:hover {
  border-color: rgba(255, 194, 28, .62);
  color: #fff15f;
}

.disclaimer {
  margin-top: 16px;
  max-width: 920px;
  color: #d0b985;
}

@media (max-width: 880px) {
  body {
    padding-top: calc(env(safe-area-inset-top) + 152px);
  }

  .site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    padding-top: calc(env(safe-area-inset-top) + 10px);
    overflow: visible;
    background: rgba(255, 240, 200, .96);
    backdrop-filter: blur(14px);
    transform: none;
    z-index: 1000;
  }

  .site-header::before {
    content: none;
  }

  .header-inner {
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 14px 0;
    gap: 12px;
  }

  .nav-toggle {
    order: 2;
    position: relative;
    top: auto;
    right: auto;
    z-index: 1;
    display: inline-flex;
    margin-left: auto;
  }

  .brand {
    order: 1;
    position: static;
    top: auto;
    left: auto;
    z-index: 1;
    flex: 1 1 calc(100% - 62px);
    width: auto;
    min-width: 0;
    gap: 10px;
    transform: none;
  }

  .brand-name {
    display: inline-block;
    min-width: 0;
    overflow: hidden;
    color: #24130a;
    font-size: clamp(15px, 3.7vw, 19px);
    font-weight: 900;
    line-height: 1.05;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .header-promo-copy,
  .header-cta {
    order: 3;
    display: inline-flex;
    flex: 1 1 calc(50% - 6px);
    min-width: 0;
    min-height: 48px;
    padding: 0 14px;
    font-size: clamp(13px, 2.6vw, 15px);
    line-height: 1.12;
    text-align: center;
    white-space: normal;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .header-promo-copy {
    letter-spacing: .2px;
  }

  .header-cta {
    margin-left: 0;
    font-size: clamp(15px, 3.5vw, 17px);
  }

  .nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 30;
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 8px;
    margin-left: 0;
    width: 100%;
    max-height: 0;
    padding: 0 10px;
    overflow: hidden;
    border-color: transparent;
    background:
      linear-gradient(135deg, rgba(255, 248, 232, .98) 0%, rgba(255, 224, 124, .92) 54%, rgba(205, 235, 191, .94) 100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: max-height .22s ease, padding .22s ease, opacity .18s ease, transform .18s ease, border-color .18s ease, visibility .18s ease;
    font-size: 14px;
  }

  .nav.is-open {
    max-height: 420px;
    padding: 10px;
    border-color: var(--line);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav a {
    min-height: 44px;
    justify-content: space-between;
    padding: 0 14px;
    background: rgba(255, 250, 240, .78);
    border: 1px solid rgba(212, 169, 63, .72);
  }

  .hero {
    min-height: auto;
  }

  .hero-grid,
  .grid-3,
  .grid-2,
  .cta-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 28px;
    padding: 34px 0 24px;
  }

  .hero-home .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    width: 100%;
    max-width: none;
  }

  .hero-actions,
  .hero-proof {
    width: 100%;
    max-width: none;
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .cta-grid {
    align-items: start;
  }
}

@media (max-width: 520px) {
  body {
    padding-top: calc(env(safe-area-inset-top) + 142px);
  }

  .header-inner,
  .section-inner,
  .footer-inner {
    width: min(1120px, calc(100% - 24px));
  }

  .hero h1,
  .page-hero h1 {
    width: 100%;
    font-size: clamp(27px, 7.2vw, 30px);
    line-height: 1.12;
  }

  .header-inner {
    gap: 10px;
    padding: 12px 0;
  }

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

  .nav-toggle {
    flex-basis: 48px;
    width: 48px;
    height: 48px;
  }

  .header-promo-copy,
  .header-cta {
    min-height: 46px;
    padding: 0 10px;
    border-width: 2px;
    font-size: clamp(12px, 3.35vw, 14px);
  }

  .header-cta {
    font-size: clamp(15px, 4vw, 16px);
  }

  .hero-copy {
    font-size: 16px;
  }

  .button,
  .button-secondary {
    width: 100%;
  }

  .section {
    padding: 30px 0;
  }

  .content-narrow {
    padding: 4px 0 4px 18px;
  }

  .content-narrow h2 {
    margin-bottom: 14px;
    padding-bottom: 10px;
    font-size: clamp(26px, 7vw, 31px);
  }

  .content-narrow p {
    font-size: 16.5px;
    line-height: 1.66;
  }

  .content-narrow::before {
    top: 10px;
    bottom: 10px;
    width: 4px;
  }

  .scroll-top {
    right: 14px;
    bottom: 29px;
    width: 50px;
    height: 50px;
    font-size: 27px;
  }

  .promo-pop {
    left: 12px;
    right: 12px;
    bottom: 24px;
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 14px;
    width: auto;
    min-height: 116px;
    padding: 20px 54px 16px 16px;
    border-radius: 16px;
  }

  .promo-pop::before {
    inset: 8px 8px auto;
    height: 5px;
    background: repeating-linear-gradient(90deg, #fff15f 0 18px, #151a1d 18px 28px);
  }

  .promo-pop::after {
    right: -96px;
    bottom: -112px;
    width: 220px;
    height: 220px;
  }

  .promo-pop-media {
    width: 82px;
    height: 82px;
    border-width: 2px;
    border-radius: 15px;
  }

  .promo-pop-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    transform: none;
  }

  .promo-pop-body {
    gap: 10px;
  }

  .promo-pop-body strong {
    padding: 3px 8px 4px;
    font-size: 17px;
    line-height: 1.1;
  }

  .promo-pop-button {
    width: min(100%, 230px);
    min-height: 42px;
    padding: 8px 10px;
    border-radius: 11px;
    font-size: 14px;
  }

  .promo-pop-close {
    top: 8px;
    right: 8px;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    font-size: 32px;
  }
}

@media (max-width: 360px) {
  body {
    padding-top: calc(env(safe-area-inset-top) + 138px);
  }

  .header-inner {
    width: min(1120px, calc(100% - 20px));
    gap: 8px;
  }

  .header-promo-copy,
  .header-cta {
    min-height: 44px;
    padding: 0 8px;
    font-size: 12px;
  }

  .header-cta {
    font-size: 14px;
  }
}
