:root {
  color-scheme: light;
  --bg: #fff9ea;
  --bg-soft: #eef8df;
  --panel: #ffffff;
  --panel-2: #fff3cf;
  --line: #ead9af;
  --text: #24190b;
  --muted: #68583f;
  --gold: #ffbe2e;
  --gold-2: #ffe07a;
  --orange: #ff7a1a;
  --red: #f04438;
  --green: #2fbf61;
  --green-soft: #dff6cf;
  --asphalt: #1b1b18;
  --shadow: 0 18px 48px rgba(93, 64, 20, .14);
  --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(234, 217, 175, .9);
  background: rgba(255, 249, 234, .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: #ffbe2e;
  box-shadow: 0 10px 24px rgba(255, 122, 26, .22);
}

.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 var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 10px 28px rgba(93, 64, 20, .08);
  font-size: 15px;
}

.nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 7px;
  color: #614a28;
  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, #ffbe2e, #ff7a1a);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .22s ease;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: #241200;
  background: rgba(255, 243, 207, .45);
}

.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 #ff8a1f;
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff 0%, #fff4bb 52%, #ffd23c 100%);
  color: #241200;
  font-family: inherit;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .4px;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(255, 122, 26, .22), inset 0 0 0 2px rgba(255, 255, 255, .42);
}

.header-promo-copy:hover {
  border-color: #ff6f00;
  background: linear-gradient(135deg, #fffdf5 0%, #ffe783 48%, #ffbe2e 100%);
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(255, 122, 26, .3), inset 0 0 0 2px rgba(255, 255, 255, .5);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  margin-left: 0;
  padding: 0 28px;
  border: 2px solid #ff8a1f;
  border-radius: 8px;
  background: linear-gradient(135deg, #ffe66d 0%, #ffbe2e 42%, #ff7a1a 100%);
  color: #241200;
  font-size: 16px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 16px 30px rgba(255, 122, 26, .34), inset 0 0 0 2px rgba(255, 255, 255, .28);
}

.header-cta:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #fff176 0%, #ffc233 38%, #ff681a 100%);
  box-shadow: 0 20px 38px rgba(255, 122, 26, .42), 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 #ff8a1f;
  border-radius: 8px;
  background: linear-gradient(135deg, #ffe07a, #ffbe2e 52%, #ff8a1f);
  color: #241200;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  box-shadow: 0 12px 24px rgba(255, 122, 26, .28), 0 0 0 4px rgba(255, 190, 46, .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 {
  background: linear-gradient(135deg, var(--gold-2), var(--gold) 48%, var(--orange));
  color: #241200;
  box-shadow: 0 14px 28px rgba(255, 122, 26, .28);
}

.button-secondary {
  border-color: var(--line);
  background: #fffdf5;
  color: var(--text);
}

.scroll-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 45;
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 2px solid #ff8a1f;
  border-radius: 8px;
  background: linear-gradient(135deg, #ffe07a, #ffbe2e 52%, #ff8a1f);
  color: #241200;
  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(255, 122, 26, .28);
  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, 190, 46, .8);
  border-radius: 18px;
  background: linear-gradient(135deg, #ec3308 0%, #ff6f00 50%, #ff9800 100%);
  color: #ffffff;
  box-shadow: 0 24px 52px rgba(36, 25, 11, .28);
  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: #fff9ea;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .5);
}

.promo-pop-media img {
  width: 170px;
  max-width: none;
  transform: translateX(-10px);
}

.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(36, 25, 11, .28);
}

.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;
  background: linear-gradient(135deg, #fff176, #ffd23c 52%, #ffbd2e);
  color: #ffffff;
  font-size: 24px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  text-shadow: 0 2px 5px rgba(36, 25, 11, .25);
  box-shadow: inset 0 -3px 0 rgba(224, 131, 0, .2), 0 12px 24px rgba(36, 25, 11, .18);
}

.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: #ffd23c;
  color: #ffffff;
  font-size: 38px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(36, 25, 11, .22);
  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(255, 190, 46, .34), transparent 30%),
    radial-gradient(circle at 15% 88%, rgba(47, 191, 97, .18), transparent 28%),
    linear-gradient(180deg, #fff2a8 0%, #fff9ea 50%, #eef8df 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(0deg, var(--bg), rgba(255, 249, 234, 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: #b85013;
  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: 1px solid rgba(234, 217, 175, .95);
  border-radius: 8px;
  background: #fff3cf;
  box-shadow: 0 24px 56px rgba(126, 78, 16, .18);
  filter: saturate(1.05);
}

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

.article-media img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(234, 217, 175, .95);
  border-radius: 8px;
  background: #fff3cf;
  box-shadow: 0 18px 42px rgba(93, 64, 20, .14);
}

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

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

.section {
  padding: 76px 0;
}

.section.alt {
  background:
    linear-gradient(180deg, rgba(255, 190, 46, .12), 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: #fff0b8;
  color: #9b3f0d;
  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: #a34610;
  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: #b85013;
  font-weight: 800;
}

.summary-box {
  padding: 24px;
  background: linear-gradient(135deg, #fff1b8, #fffdf5 48%, #e7f8d8);
}

.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, #ffe07a, #ffbe2e 46%, #ff7a1a);
  color: #241200;
}

.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: var(--asphalt);
  border-color: var(--asphalt);
  color: #fff;
}

.page-hero {
  padding: 70px 0 46px;
  background:
    radial-gradient(circle at 80% 0%, rgba(255, 190, 46, .26), transparent 28%),
    linear-gradient(180deg, #fff2a8, var(--bg));
}

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

.breadcrumbs a {
  color: #b85013;
  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 #2f2b21;
  background: var(--asphalt);
  padding: 36px 0;
  color: #e7d8bb;
  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: #f3dfb7;
  text-decoration: none;
}

.footer-inner-legal {
  grid-template-columns: 1fr;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(231, 216, 187, .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(243, 223, 183, .18);
  border-radius: 8px;
  color: #f3dfb7;
  text-decoration: none;
  background: rgba(255, 255, 255, .04);
}

.footer-legal a:hover {
  border-color: rgba(255, 190, 46, .55);
  color: #ffe07a;
}

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

@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: #24190b;
    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;
  }

  .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: #fffdf5;
    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: #ffffff;
    border: 1px solid #f0dfb5;
  }

  .hero {
    min-height: auto;
  }

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

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