:root {
  color-scheme: light;
  --bg: #fff0d2;
  --bg-soft: #dfeeb9;
  --panel: #fff9ea;
  --panel-2: #ffd98b;
  --line: #c7892e;
  --text: #201208;
  --muted: #59462d;
  --gold: #ffd018;
  --gold-2: #fff36a;
  --orange: #e85d12;
  --red: #bd2416;
  --green: #268f42;
  --green-soft: #d8f0b4;
  --asphalt: #10140f;
  --button-ink: #211005;
  --play-glow: rgba(255, 91, 0, .38);
  --coupon-glow: rgba(108, 184, 51, .34);
  --signal-glow: rgba(38, 143, 66, .35);
  --shadow: 0 20px 52px rgba(69, 39, 9, .2);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, #fff0d2 0%, #fff7e5 42%, #dfeeb9 100%);
  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(255, 208, 24, .38);
  background: rgba(16, 20, 15, .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;
  color: #fff36a;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.05;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .45);
}

.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: #ffd018;
  box-shadow: 0 10px 24px rgba(232, 93, 18, .34);
}

.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, 208, 24, .28);
  border-radius: 8px;
  background: rgba(255, 240, 210, .08);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .22);
  font-size: 15px;
}

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

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

.nav a:hover,
.nav a[aria-current="page"] {
  color: #fff36a;
  background: rgba(255, 208, 24, .14);
}

.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 #74aa20;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .7), transparent 36%),
    linear-gradient(135deg, #dfff70 0%, #ffd018 52%, #ff8c17 100%);
  color: var(--button-ink);
  font-family: inherit;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .4px;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 14px 28px var(--coupon-glow), inset 0 0 0 2px rgba(255, 255, 255, .45);
}

.header-promo-copy::after {
  content: "PROMO";
  position: absolute;
  top: -11px;
  right: 10px;
  padding: 2px 7px;
  border: 1px solid rgba(255, 243, 106, .68);
  border-radius: 999px;
  background: #10140f;
  color: #fff36a;
  font-size: 9px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: .08em;
  pointer-events: none;
  box-shadow: 0 5px 12px rgba(0, 0, 0, .28);
}

.header-promo-copy:hover {
  border-color: #4f8f24;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .78), transparent 36%),
    linear-gradient(135deg, #f3ffc2 0%, #ffe15a 48%, #ff7b10 100%);
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(108, 184, 51, .44), inset 0 0 0 2px rgba(255, 255, 255, .58);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  margin-left: 0;
  padding: 0 28px;
  border: 2px solid #ff7b10;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .55), transparent 32%),
    linear-gradient(135deg, #fff36a 0%, #ffd018 36%, #ff7b10 68%, #bd2416 100%);
  color: var(--button-ink);
  font-size: 16px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 16px 30px var(--play-glow), inset 0 0 0 2px rgba(255, 255, 255, .28);
}

@media (min-width: 1121px) {
  .header-cta {
    min-width: 174px;
    padding: 0 34px;
  }
}

.header-cta:hover {
  transform: translateY(-2px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .62), transparent 32%),
    linear-gradient(135deg, #fff9a5 0%, #ffdd2d 34%, #ff6813 66%, #a91d12 100%);
  box-shadow: 0 20px 38px rgba(255, 91, 0, .48), inset 0 0 0 2px rgba(255, 255, 255, .34);
}

.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 #ff7b10;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .5), transparent 34%),
    linear-gradient(135deg, #fff36a, #ffd018 48%, #ff7b10);
  color: var(--button-ink);
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  box-shadow: 0 12px 24px var(--play-glow), 0 0 0 4px rgba(255, 208, 24, .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 {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  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: border-color .18s ease, box-shadow .18s ease, transform .18s ease, background-color .18s ease;
}

.button {
  border-color: #ff7b10;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .55), transparent 30%),
    linear-gradient(135deg, #fff36a 0%, #ffd018 38%, #ff7b10 72%, #bd2416 100%);
  color: var(--button-ink);
  box-shadow: 0 14px 28px var(--play-glow), inset 0 0 0 1px rgba(255, 255, 255, .24);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(255, 91, 0, .46), inset 0 0 0 1px rgba(255, 255, 255, .34);
}

.button-secondary {
  border-color: #268f42;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .7), transparent 42%),
    linear-gradient(135deg, #fff9ea 0%, #d8f0b4 56%, #9fd257 100%);
  color: #153612;
  box-shadow: 0 10px 24px rgba(38, 143, 66, .18);
}

.button-secondary:hover {
  transform: translateY(-2px);
  border-color: #1f7338;
  box-shadow: 0 15px 30px rgba(38, 143, 66, .28);
}

.scroll-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 45;
  display: inline-grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border: 1px solid rgba(255, 208, 24, .9);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .42), transparent 40%),
    linear-gradient(135deg, #fff36a 0%, #ffd018 42%, #e85d12 100%);
  color: #1c1407;
  font-size: 0;
  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 .18s ease;
  box-shadow:
    0 14px 28px rgba(16, 20, 15, .28),
    inset 0 0 0 1px rgba(255, 255, 255, .38);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.scroll-top span {
  display: block;
  width: 17px;
  height: 17px;
  margin-top: 7px;
  border-top: 4px solid currentColor;
  border-left: 4px solid currentColor;
  transform: rotate(45deg);
}

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

.scroll-top.is-visible:hover {
  transform: translateY(-3px);
  box-shadow:
    0 18px 34px rgba(232, 93, 18, .34),
    inset 0 0 0 1px rgba(255, 255, 255, .48);
}

.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, 201, 40, .86);
  border-radius: 18px;
  background: linear-gradient(135deg, #b81f12 0%, #d92818 38%, #f36b16 100%);
  color: #ffffff;
  box-shadow: 0 24px 52px rgba(35, 23, 12, .32);
  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: transparent;
  box-shadow: none;
}

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

.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(35, 23, 12, .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 #fff36a;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .52), transparent 32%),
    linear-gradient(135deg, #d8f0b4 0%, #56b948 42%, #ffd018 100%);
  color: #102b0f;
  font-size: 24px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  text-shadow: none;
  box-shadow: inset 0 -3px 0 rgba(28, 97, 40, .22), 0 12px 24px var(--signal-glow);
}

.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, #fff36a, #ffd018 54%, #ff7b10);
  color: var(--button-ink);
  font-size: 38px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(35, 23, 12, .24);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 660px;
  display: grid;
  align-items: center;
  background:
    linear-gradient(118deg, rgba(16, 20, 15, .12) 0 13%, transparent 13% 87%, rgba(16, 20, 15, .1) 87% 100%),
    repeating-linear-gradient(90deg, rgba(255, 208, 24, .18) 0 2px, transparent 2px 116px),
    linear-gradient(180deg, #ffe27a 0%, #fff0d2 52%, #dfeeb9 100%);
}

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

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(480px, 600px);
  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: #b53c16;
  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;
}

.hero-art {
  display: block;
  width: 100%;
  border: 0;
  border-radius: 8px;
  background: transparent;
  box-shadow: none;
  filter: saturate(1.05) drop-shadow(0 20px 34px rgba(91, 55, 16, .18));
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 500px);
  align-items: center;
  gap: 42px;
}

.page-hero-copy {
  min-width: 0;
}

.page-hero-art {
  display: block;
  width: 100%;
  height: auto;
  border: 0;
  border-radius: 8px;
  background: transparent;
  box-shadow: none;
  filter: drop-shadow(0 18px 30px rgba(91, 55, 16, .16));
}

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

.article-media img {
  display: block;
  width: 100%;
  height: auto;
  border: 0;
  border-radius: 8px;
  background: transparent;
  box-shadow: none;
  filter: drop-shadow(0 16px 28px rgba(91, 55, 16, .14));
}

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

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

.section {
  padding: 76px 0;
}

.section.alt {
  background:
    repeating-linear-gradient(90deg, rgba(32, 18, 8, .035) 0 1px, transparent 1px 96px),
    linear-gradient(180deg, rgba(255, 208, 24, .16), 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: #ffe69a;
  color: #873111;
  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: #9d3512;
  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: #b53c16;
  font-weight: 800;
}

.summary-box {
  padding: 24px;
  background: linear-gradient(135deg, #ffe082, #fff9ea 48%, #d8f0b4);
}

.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:
    repeating-linear-gradient(90deg, rgba(32, 18, 8, .12) 0 1px, transparent 1px 76px),
    linear-gradient(135deg, #fff36a, #ffd018 46%, #e85d12);
  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 {
  border-color: #10140f;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .12), transparent 40%),
    linear-gradient(135deg, #10140f 0%, #26351d 54%, #268f42 100%);
  color: #fff9ea;
  box-shadow: 0 14px 30px rgba(16, 20, 15, .35);
}

.cta-band .button-secondary:hover {
  border-color: #fff36a;
  box-shadow: 0 18px 36px rgba(16, 20, 15, .45);
}

.page-hero {
  padding: 70px 0 46px;
  background:
    linear-gradient(118deg, rgba(16, 20, 15, .1) 0 12%, transparent 12% 88%, rgba(16, 20, 15, .08) 88% 100%),
    linear-gradient(180deg, #ffe27a, var(--bg));
}

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

.breadcrumbs a {
  color: #b53c16;
  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 #2a2f22;
  background: var(--asphalt);
  padding: 36px 0;
  color: #ead8af;
  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: #ffe6ad;
  text-decoration: none;
}

.footer-inner-legal {
  grid-template-columns: 1fr;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(234, 216, 175, .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(255, 230, 173, .2);
  border-radius: 8px;
  color: #ffe6ad;
  text-decoration: none;
  background: rgba(255, 246, 223, .05);
}

.footer-legal a:hover {
  border-color: rgba(255, 201, 40, .62);
  color: #fff176;
}

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

@media (max-width: 1120px) {
  .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: #fff36a;
    font-size: clamp(15px, 3.7vw, 19px);
    font-weight: 900;
    line-height: 1.05;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .45);
    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;
  }

  .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: rgba(16, 20, 15, .98);
    box-shadow: 0 18px 36px rgba(0, 0, 0, .32);
    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: 560px;
    padding: 10px;
    border-color: rgba(255, 208, 24, .42);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav a {
    min-height: 44px;
    justify-content: space-between;
    padding: 0 14px;
    border: 1px solid rgba(255, 208, 24, .28);
    background: rgba(255, 240, 210, .08);
    color: #ffe8a3;
  }

  .nav a:hover,
  .nav a[aria-current="page"] {
    background: rgba(255, 208, 24, .16);
    color: #fff36a;
    border-color: rgba(255, 208, 24, .55);
  }

  .hero {
    min-height: auto;
  }

  .hero-grid,
  .page-hero-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;
  }

  .page-hero-grid {
    gap: 24px;
  }

  .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: 56px;
    height: 56px;
    border-radius: 14px;
  }

  .scroll-top span {
    width: 15px;
    height: 15px;
    border-width: 4px 0 0 4px;
  }

  .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: 124px;
    transform: translateX(-8px);
  }

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

}
