:root {
  color-scheme: light;
  --bg: #fff0bf;
  --bg-soft: #e6f1cd;
  --panel: #fffaf0;
  --panel-2: #ffdf75;
  --line: #cba34e;
  --text: #271507;
  --muted: #675238;
  --gold: #f2aa00;
  --gold-2: #ffdf3f;
  --orange: #ff5a14;
  --red: #cf2418;
  --green: #269d55;
  --green-soft: #d9efc5;
  --asphalt: #11150f;
  --shadow: 0 18px 48px rgba(86, 54, 12, .16);
  --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(203, 163, 78, .95);
  background: rgba(255, 240, 191, .96);
  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: #f2aa00;
  box-shadow: 0 10px 24px rgba(207, 36, 24, .24);
}

.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(203, 163, 78, .86);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 250, 240, .94) 0%, rgba(255, 223, 117, .44) 52%, rgba(230, 241, 205, .72) 100%);
  box-shadow: 0 12px 30px rgba(86, 54, 12, .13), inset 0 0 0 1px rgba(255, 255, 255, .42);
  font-size: 15px;
}

.nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 7px;
  color: #4f3413;
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
  transition: color .22s ease, background-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

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

.nav a:nth-child(1) {
  --nav-start: #f2aa00;
  --nav-end: #ff5a14;
}

.nav a:nth-child(2) {
  --nav-start: #ffdf3f;
  --nav-end: #cf2418;
}

.nav a:nth-child(3) {
  --nav-start: #269d55;
  --nav-end: #f2aa00;
}

.nav a:nth-child(4) {
  --nav-start: #cf2418;
  --nav-end: #ff5a14;
}

.nav a:nth-child(5) {
  --nav-start: #60451e;
  --nav-end: #269d55;
}

.nav a:nth-child(6) {
  --nav-start: #11150f;
  --nav-end: #f2aa00;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: #271507;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .72), rgba(255, 223, 63, .34)),
    linear-gradient(90deg, rgba(242, 170, 0, .18), rgba(207, 36, 24, .12));
  box-shadow: inset 0 0 0 1px rgba(203, 163, 78, .48), 0 8px 18px rgba(86, 54, 12, .1);
  transform: translateY(-1px);
}

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

.header-promo-copy {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 146px;
  min-height: 54px;
  padding: 0 22px;
  border: 2px solid transparent;
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, .8), transparent 22%),
    linear-gradient(135deg, #fffaf0 0%, #ffdf75 48%, #f2aa00 100%),
    repeating-linear-gradient(90deg, rgba(207, 36, 24, .16) 0 8px, transparent 8px 16px);
  color: #271507;
  font-family: inherit;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .4px;
  white-space: nowrap;
  cursor: pointer;
  overflow: hidden;
  text-shadow: 0 1px 0 rgba(255, 255, 255, .48);
  box-shadow: 0 14px 28px rgba(240, 122, 24, .24), inset 0 0 0 2px rgba(255, 255, 255, .5);
}

.header-promo-copy::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: 8px;
  background:
    linear-gradient(90deg, #cf2418 0 22%, #ffdf3f 22% 42%, transparent 42% 58%, #269d55 58% 78%, #ff5a14 78% 100%) top left / 34px 4px repeat-x,
    linear-gradient(90deg, #269d55 0 22%, #ffdf3f 22% 42%, transparent 42% 58%, #cf2418 58% 78%, #ff5a14 78% 100%) bottom right / 34px 4px repeat-x,
    linear-gradient(0deg, #ffdf3f 0 22%, #cf2418 22% 42%, transparent 42% 58%, #ff5a14 58% 78%, #269d55 78% 100%) left bottom / 4px 34px repeat-y,
    linear-gradient(0deg, #ff5a14 0 22%, #269d55 22% 42%, transparent 42% 58%, #ffdf3f 58% 78%, #cf2418 78% 100%) right top / 4px 34px repeat-y,
    radial-gradient(circle at top left, #fffaf0 0 3px, transparent 4px) top left / 10px 10px no-repeat,
    radial-gradient(circle at top right, #fffaf0 0 3px, transparent 4px) top right / 10px 10px no-repeat,
    radial-gradient(circle at bottom left, #fffaf0 0 3px, transparent 4px) bottom left / 10px 10px no-repeat,
    radial-gradient(circle at bottom right, #fffaf0 0 3px, transparent 4px) bottom right / 10px 10px no-repeat;
  filter: drop-shadow(0 0 6px rgba(255, 223, 63, .7)) drop-shadow(0 0 10px rgba(207, 36, 24, .32));
  pointer-events: none;
  animation: promo-border-move 1.15s linear infinite;
}

.header-promo-copy::after {
  content: "";
  position: absolute;
  inset: 3px;
  z-index: 1;
  border-radius: 6px;
  background:
    linear-gradient(115deg, transparent 0 28%, rgba(255, 255, 255, .72) 38%, transparent 48% 100%);
  background-size: 240% 100%;
  opacity: .65;
  pointer-events: none;
  animation: promo-inner-shine 2.8s ease-in-out infinite;
}

.header-promo-copy:hover {
  background:
    linear-gradient(135deg, #fff2bc 0%, #ffdf3f 44%, #ff5a14 100%);
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(207, 36, 24, .32), inset 0 0 0 2px rgba(255, 255, 255, .54);
}

.header-promo-copy:hover::before {
  animation-duration: .68s;
}

@keyframes promo-border-move {
  to {
    background-position:
      top left 34px,
      bottom right 34px,
      left bottom 34px,
      right top 34px,
      top left,
      top right,
      bottom left,
      bottom right;
  }
}

@keyframes promo-inner-shine {
  0%,
  30% {
    background-position: 140% 0;
  }

  68%,
  100% {
    background-position: -80% 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .header-promo-copy::before,
  .header-promo-copy::after {
    animation: none;
  }
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  min-width: 190px;
  margin-left: 0;
  padding: 0 38px;
  border: 2px solid #054727;
  border-radius: 8px;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, .92), transparent 24%),
    linear-gradient(135deg, #eaff2f 0%, #7dff42 38%, #00c86b 70%, #008d55 100%);
  color: #082513;
  font-size: 16px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 16px 30px rgba(0, 141, 85, .36), 0 0 0 4px rgba(255, 90, 20, .18), inset 0 0 0 2px rgba(255, 255, 255, .34);
}

.header-cta:hover {
  transform: translateY(-2px);
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, .96), transparent 24%),
    linear-gradient(135deg, #f7ff6a 0%, #9cff54 34%, #19df78 68%, #007c4b 100%);
  box-shadow: 0 20px 38px rgba(0, 124, 75, .42), 0 0 0 4px rgba(255, 223, 63, .34), inset 0 0 0 2px rgba(255, 255, 255, .42);
}

.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 #8f1b12;
  border-radius: 8px;
  background:
    linear-gradient(135deg, #fff380, #f2aa00 48%, #cf2418);
  color: #271507;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  box-shadow: 0 12px 24px rgba(207, 36, 24, .25), 0 0 0 4px rgba(242, 170, 0, .22);
}

.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;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease;
}

.button {
  border-color: #054727;
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, .82), transparent 23%),
    linear-gradient(135deg, #eaff2f 0%, #7dff42 38%, #00c86b 72%, #008d55 100%);
  color: #082513;
  box-shadow: 0 14px 28px rgba(0, 141, 85, .3), 0 0 0 3px rgba(255, 90, 20, .14), inset 0 0 0 2px rgba(255, 255, 255, .24);
}

.button:hover {
  transform: translateY(-2px);
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, .9), transparent 24%),
    linear-gradient(135deg, #f7ff6a 0%, #9cff54 34%, #19df78 68%, #007c4b 100%);
  box-shadow: 0 18px 34px rgba(0, 124, 75, .38), 0 0 0 3px rgba(255, 223, 63, .28), inset 0 0 0 2px rgba(255, 255, 255, .3);
}

.button-secondary {
  border-color: #269d55;
  background:
    linear-gradient(135deg, #fffaf0 0%, #e6f1cd 52%, #cfe9b6 100%);
  color: var(--text);
  box-shadow: 0 10px 22px rgba(38, 157, 85, .13), inset 0 0 0 1px rgba(255, 255, 255, .5);
}

.button-secondary:hover {
  transform: translateY(-2px);
  border-color: #1e7e43;
  background:
    linear-gradient(135deg, #ffffff 0%, #d9efc5 48%, #f2aa00 100%);
  box-shadow: 0 15px 28px rgba(38, 157, 85, .18), inset 0 0 0 1px rgba(255, 255, 255, .52);
}

.scroll-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 45;
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 2px solid #8f1b12;
  border-radius: 8px;
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 255, 255, .7), transparent 20%),
    linear-gradient(135deg, #fff380, #f2aa00 45%, #cf2418);
  color: #271507;
  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(207, 36, 24, .3);
  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: 112px minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  width: min(520px, calc(100% - 56px));
  min-height: 150px;
  padding: 22px 58px 22px 24px;
  border: 2px solid rgba(255, 227, 108, .82);
  border-radius: 18px;
  background: linear-gradient(135deg, #b91f15 0%, #cf2418 44%, #ff5a14 100%);
  color: #ffffff;
  box-shadow: 0 24px 52px rgba(39, 21, 7, .3);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
}

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

.promo-pop-media {
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  overflow: hidden;
  border-radius: 18px;
  background: #fff0bf;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .5);
}

.promo-pop-media img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  transform: scale(1.1);
}

.promo-pop-body {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.promo-pop-body strong {
  font-size: 24px;
  line-height: 1.1;
  text-shadow: 0 2px 8px rgba(39, 21, 7, .3);
}

.promo-pop-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 280px);
  min-height: 54px;
  padding: 10px 22px;
  border-radius: 999px;
  border: 2px solid rgba(255, 223, 63, .84);
  background:
    linear-gradient(135deg, #11150f 0%, #26351b 52%, #269d55 100%);
  color: #ffdf3f;
  font-size: 24px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  text-shadow: none;
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, .24), 0 12px 24px rgba(39, 21, 7, .2);
}

.promo-pop-button:hover {
  background:
    linear-gradient(135deg, #182016 0%, #1f7d43 52%, #f2aa00 100%);
  color: #fffaf0;
  transform: translateY(-2px);
}

.promo-pop-close {
  position: absolute;
  top: -18px;
  right: -18px;
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffdf3f, #ff5a14);
  color: #1f1005;
  font-size: 38px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(39, 21, 7, .24);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 660px;
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 76% 15%, rgba(242, 170, 0, .42), transparent 30%),
    radial-gradient(circle at 8% 12%, rgba(207, 36, 24, .16), transparent 24%),
    radial-gradient(circle at 15% 88%, rgba(38, 157, 85, .18), transparent 28%),
    linear-gradient(180deg, #ffe45a 0%, #fff0bf 48%, #e6f1cd 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(0deg, var(--bg), rgba(255, 240, 191, 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: 72px 0 92px;
}

.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: #a33b14;
  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: 34px;
}

.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;
}

.proof-copy {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.proof-copy:hover {
  color: var(--accent-strong);
}

.hero-art {
  display: block;
  width: 100%;
  border: 1px solid rgba(223, 197, 125, .95);
  border-radius: 8px;
  background: #ffdf75;
  box-shadow: 0 24px 56px rgba(121, 71, 10, .2);
  filter: saturate(1.05);
}

.article-media {
  margin: 30px 0;
}

.article-media img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(223, 197, 125, .95);
  border-radius: 8px;
  background: #ffdf75;
  box-shadow: 0 18px 42px rgba(86, 54, 12, .16);
}

.article-media--wide {
  max-width: 100%;
}

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

.media-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 520px);
  align-items: center;
  gap: 42px;
}

.media-grid .content-image {
  display: block;
  width: 100%;
  border: 1px solid rgba(223, 197, 125, .95);
  border-radius: 8px;
  background: #ffdf75;
  box-shadow: 0 18px 42px rgba(86, 54, 12, .16);
  filter: saturate(1.04);
}

.media-grid p {
  color: var(--muted);
}

.section {
  padding: 76px 0;
}

.section.alt {
  background:
    linear-gradient(180deg, rgba(242, 170, 0, .18), 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: #ffdf75;
  color: #8d3211;
  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: #9b3512;
  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: #a33b14;
  font-weight: 800;
}

.summary-box {
  padding: 24px;
  background: linear-gradient(135deg, #ffdf75, #fffaf0 48%, #d9efc5);
}

.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, #ffdf3f, #f2aa00 42%, #ff5a14 72%, #cf2418);
  color: #271507;
}

.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, #11150f 0%, #26351b 50%, #1e7e43 100%);
  border-color: #ffdf3f;
  color: #ffdf3f;
  box-shadow: 0 16px 30px rgba(17, 21, 15, .24), inset 0 0 0 1px rgba(255, 223, 63, .2);
}

.cta-band .button-secondary:hover {
  background:
    linear-gradient(135deg, #26351b 0%, #269d55 48%, #11150f 100%);
  color: #fffaf0;
}

.page-hero {
  padding: 70px 0 46px;
  background:
    radial-gradient(circle at 80% 0%, rgba(242, 170, 0, .34), transparent 28%),
    radial-gradient(circle at 8% 18%, rgba(207, 36, 24, .12), transparent 22%),
    linear-gradient(180deg, #ffe45a, var(--bg));
}

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

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

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

.content-narrow {
  max-width: 860px;
}

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

.site-footer {
  border-top: 1px solid #2d2f25;
  background: var(--asphalt);
  padding: 36px 0;
  color: #eadab7;
  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: #f6dfaa;
  text-decoration: none;
}

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

.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, 170, .18);
  border-radius: 8px;
  color: #f6dfaa;
  text-decoration: none;
  background: rgba(255, 255, 255, .04);
}

.footer-legal a:hover {
  border-color: rgba(247, 182, 31, .58);
  color: #ffe36c;
}

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

@media (max-width: 880px) {
  .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;
    display: inline-flex;
    margin-left: auto;
  }

  .brand {
    order: 1;
    flex: 1 1 calc(100% - 62px);
    min-width: 0;
    gap: 10px;
    transform: none;
  }

  .brand-name {
    display: inline-block;
    min-width: 0;
    overflow: hidden;
    color: #271507;
    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;
    min-width: 0;
  }

  .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, 250, 240, .98), rgba(255, 223, 117, .82) 54%, rgba(230, 241, 205, .92));
    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:
      linear-gradient(135deg, rgba(255, 255, 255, .8), rgba(255, 240, 191, .52));
    border: 1px solid #d8b665;
  }

  .hero {
    min-height: auto;
  }

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

  .hero-grid {
    gap: 28px;
    padding: 44px 0 70px;
  }

  .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) {
  .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);
  }

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

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

  .section {
    padding: 56px 0;
  }

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

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

  .promo-pop-media {
    width: 78px;
    height: 78px;
    border-radius: 14px;
  }

  .promo-pop-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.1);
  }

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

  .promo-pop-body strong {
    font-size: 18px;
    line-height: 1.1;
  }

  .promo-pop-button {
    width: min(100%, 210px);
    min-height: 42px;
    padding: 9px 18px;
    font-size: 18px;
  }

  .promo-pop-close {
    top: -13px;
    right: -8px;
    width: 40px;
    height: 40px;
    font-size: 32px;
  }
}

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

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