/* =========================================================================
   Amonbet — amonbet1.de
   Bespoke stylesheet. Hybrid casino + sportsbook, DACH market.
   Palette: red #e54b4d, golden-yellow #ffc736, black/white base.
   Reused byte-identically across root / /at/ / /ch/.
   ========================================================================= */

:root{
  --red: #e54b4d;
  --red-dark: #b7393b;
  --red-deep: #7d2224;
  --gold: #ffc736;
  --gold-dark: #d9a015;
  --ink: #120d0e;
  --ink-soft: #1c1517;
  --surface: #221a1c;
  --surface-2: #2b2124;
  --line: #3a2d30;
  --paper: #fff9f0;
  --paper-dim: #f2e9da;
  --white: #ffffff;
  --muted: #c9b8ba;
  --muted-2: #a9989b;
  --success: #38b26a;

  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";

  --radius-s: 8px;
  --radius-m: 14px;
  --radius-l: 22px;
  --shadow-1: 0 2px 10px rgba(0,0,0,.28);
  --shadow-2: 0 12px 32px rgba(0,0,0,.38);
  --header-h: 72px;
}

/* ---------- Reset ---------- */
*, *::before, *::after{ box-sizing: border-box; }
html{ -webkit-text-size-adjust: 100%; }
body{
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font);
  font-display: swap;
  line-height: 1.55;
  overflow-x: hidden;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul, ol{ margin: 0; padding: 0; }
button{ font-family: inherit; }
p{ margin: 0 0 1em; }
.visually-hidden{
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0; padding: 0; margin: -1px;
}
main{ display: block; }

/* ---------- Skip link ---------- */
.skip-link{
  position: absolute; left: 8px; top: -60px;
  background: var(--gold); color: var(--ink); font-weight: 700;
  padding: 10px 16px; border-radius: var(--radius-s); z-index: 999;
  transition: top .15s ease;
}
.skip-link:focus{ top: 8px; }

/* =========================================================================
   HEADER
   ========================================================================= */
.site-header{
  position: sticky; top: 0; z-index: 300;
  height: var(--header-h);
  display: flex; align-items: center;
  background: linear-gradient(180deg, rgba(18,13,14,.98), rgba(18,13,14,.94));
  border-bottom: 1px solid var(--line);
  backdrop-filter: saturate(140%) blur(6px);
}
.site-header__inner{
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.brand{
  display: flex; align-items: center; gap: 10px;
  flex-shrink: 0;
  margin-right: auto;
}
.brand__mark{ width: 34px; height: 34px; flex-shrink: 0; }
.brand__word{
  font-weight: 800; font-size: 21px; letter-spacing: .01em;
  color: var(--white);
}
.brand__word em{
  font-style: normal; color: var(--gold);
}

.main-nav{ display: flex; align-items: center; gap: 4px; }
.main-nav__link{
  padding: 10px 14px;
  border-radius: var(--radius-s);
  font-weight: 600; font-size: 15px;
  color: var(--muted);
  transition: color .15s ease, background .15s ease;
  white-space: nowrap;
}
.main-nav__link:hover{ color: var(--white); background: rgba(255,255,255,.06); }
.main-nav__link.is-current{ color: var(--gold); }

.header-actions{ display: flex; align-items: center; gap: 10px; }

.locale-switch{
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
  gap: 2px;
  background: var(--surface);
}
.locale-switch__item{
  padding: 6px 11px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  color: var(--muted-2);
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color .15s ease, background .15s ease;
}
.locale-switch__item:hover{ color: var(--white); }
.locale-switch__item.is-active{
  background: var(--gold);
  color: var(--ink);
}

.btn{
  display: inline-flex; align-items: center; justify-content: center;
  padding: 11px 20px;
  border-radius: 999px;
  font-weight: 700; font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .12s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
}
.btn:active{ transform: translateY(1px); }
.btn--ghost{
  background: transparent;
  border-color: var(--line);
  color: var(--paper);
}
.btn--ghost:hover{ border-color: var(--gold); color: var(--gold); }
.btn--primary{
  background: linear-gradient(180deg, var(--gold), var(--gold-dark));
  color: var(--ink);
  box-shadow: 0 4px 14px rgba(255,199,54,.28);
}
.btn--primary:hover{ box-shadow: 0 6px 18px rgba(255,199,54,.4); }
.btn--block{ width: 100%; }
.btn--lg{ padding: 15px 30px; font-size: 17px; }
.btn--outline-light{
  background: transparent; border-color: rgba(255,255,255,.5); color: var(--white);
}
.btn--outline-light:hover{ border-color: var(--white); background: rgba(255,255,255,.08); }

.header-burger{
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  background: transparent; border: 1px solid var(--line); border-radius: var(--radius-s);
  color: var(--white);
  flex-shrink: 0;
}
.header-burger__bars{ position: relative; width: 20px; height: 14px; }
.header-burger__bars span{
  position: absolute; left: 0; width: 100%; height: 2px; background: currentColor; border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease, top .2s ease;
}
.header-burger__bars span:nth-child(1){ top: 0; }
.header-burger__bars span:nth-child(2){ top: 6px; }
.header-burger__bars span:nth-child(3){ top: 12px; }
.header-burger[aria-expanded="true"] .header-burger__bars span:nth-child(1){ top: 6px; transform: rotate(45deg); }
.header-burger[aria-expanded="true"] .header-burger__bars span:nth-child(2){ opacity: 0; }
.header-burger[aria-expanded="true"] .header-burger__bars span:nth-child(3){ top: 6px; transform: rotate(-45deg); }

/* ---------- Mobile nav ---------- */
.mobile-nav{
  position: fixed; inset: var(--header-h) 0 0 0;
  background: var(--ink-soft);
  z-index: 290;
  display: none;
  flex-direction: column;
  overflow-y: auto;
  padding: 18px 20px 32px;
  border-top: 1px solid var(--line);
}
.mobile-nav.is-open{ display: flex; }
.mobile-nav__links{ display: flex; flex-direction: column; gap: 2px; margin-bottom: 18px; }
.mobile-nav__link{
  padding: 14px 12px;
  min-height: 44px;
  display: flex; align-items: center;
  font-weight: 700; font-size: 17px;
  color: var(--paper);
  border-bottom: 1px solid var(--line);
}
.mobile-nav__link.is-current{ color: var(--gold); }
.mobile-nav__section-label{
  font-size: 12px; text-transform: uppercase; letter-spacing: .08em;
  color: var(--muted-2); font-weight: 800; margin: 10px 0 10px;
}
.mobile-nav .locale-switch{ align-self: flex-start; margin-bottom: 20px; }
.mobile-nav .locale-switch__item{ min-height: 44px; padding: 0 16px; font-size: 13px; }
.mobile-nav__actions{ display: flex; flex-direction: column; gap: 10px; }
.mobile-nav__actions .btn{ min-height: 48px; }

body.nav-open{ overflow: hidden; }

@media (max-width: 860px){
  .main-nav, .header-actions{ display: none; }
  .header-burger{ display: inline-flex; }
  .site-header__inner{ justify-content: space-between; padding: 0 16px; }
}

/* =========================================================================
   HERO — red/gold statement band
   ========================================================================= */
.hero{
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(120% 140% at 85% -10%, rgba(255,199,54,.30), transparent 55%),
    linear-gradient(120deg, var(--red-deep) 0%, var(--red) 55%, var(--red-dark) 100%);
  padding: 56px 20px 64px;
  border-bottom: 4px solid var(--gold);
}
.hero::before{
  content: "";
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(115deg, rgba(255,255,255,.05) 0 2px, transparent 2px 90px);
  pointer-events: none;
}
.hero__inner{
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: center;
  position: relative;
}
.hero__eyebrow{
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,0,0,.28);
  border: 1px solid rgba(255,199,54,.5);
  color: var(--gold);
  font-weight: 800; font-size: 12.5px; letter-spacing: .07em; text-transform: uppercase;
  padding: 7px 14px; border-radius: 999px;
  margin-bottom: 18px;
}
.hero__title{
  font-size: clamp(32px, 4.6vw, 52px);
  line-height: 1.06;
  font-weight: 900;
  letter-spacing: -.01em;
  color: var(--white);
  margin: 0 0 16px;
  text-shadow: 0 3px 18px rgba(0,0,0,.25);
}
.hero__title em{
  font-style: normal;
  color: var(--ink);
  background: var(--gold);
  padding: 0 .12em;
  border-radius: 6px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.hero__lede{
  font-size: 18px;
  color: rgba(255,255,255,.92);
  max-width: 46ch;
  margin: 0 0 28px;
}
.hero__cta-row{ display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-bottom: 22px; }
.hero__fineprint{
  font-size: 12.5px; color: rgba(255,255,255,.72); max-width: 48ch;
}
.hero__badges{
  display: flex; flex-wrap: wrap; gap: 10px 22px;
  margin-top: 22px;
}
.hero__badge{
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; color: rgba(255,255,255,.92);
}
.hero__badge-dot{
  width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex-shrink: 0;
}

.hero__panel{
  position: relative;
  background: rgba(18,13,14,.55);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius-l);
  padding: 22px;
  backdrop-filter: blur(6px);
  box-shadow: var(--shadow-2);
}
.hero__panel-title{
  font-weight: 800; font-size: 13px; letter-spacing: .06em; text-transform: uppercase;
  color: var(--gold); margin: 0 0 14px;
}
.hero__tiles{
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
}
.hero__tile{
  position: relative; border-radius: var(--radius-s); overflow: hidden;
  aspect-ratio: 427 / 575;
  background: var(--surface);
  border: 1px solid rgba(255,255,255,.12);
}
.hero__tile img{ width: 100%; height: 100%; object-fit: cover; }
.hero__tile:nth-child(4), .hero__tile:nth-child(5), .hero__tile:nth-child(6){ display: none; }

@media (max-width: 980px){
  .hero__inner{ grid-template-columns: 1fr; }
  .hero__tiles{ grid-template-columns: repeat(4, 1fr); }
  .hero__tile:nth-child(4){ display: block; }
}
@media (max-width: 560px){
  .hero{ padding: 40px 16px 44px; }
  .hero__tiles{ grid-template-columns: repeat(3, 1fr); }
  .hero__tile:nth-child(4){ display: none; }
}

/* =========================================================================
   SECTION SCAFFOLDING
   ========================================================================= */
.section{ padding: 64px 20px; }
.section--tight{ padding: 44px 20px; }
.section--alt{ background: var(--surface); }
.section__inner{ max-width: 1280px; margin: 0 auto; }
.section__head{
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 20px; margin-bottom: 30px; flex-wrap: wrap;
}
.section__kicker{
  display: inline-block;
  font-size: 12.5px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  color: var(--red);
  background: rgba(229,75,77,.14);
  border: 1px solid rgba(229,75,77,.4);
  padding: 5px 12px; border-radius: 999px;
  margin-bottom: 12px;
}
.section__title{
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 900;
  color: var(--white);
  margin: 0 0 8px;
  letter-spacing: -.01em;
}
.section__sub{ color: var(--muted); font-size: 15.5px; max-width: 60ch; margin: 0; }
.section__link{
  font-weight: 700; color: var(--gold); font-size: 14.5px;
  display: inline-flex; align-items: center; gap: 6px;
  border-bottom: 1px solid transparent;
}
.section__link:hover{ border-color: var(--gold); }

/* ---------- Category chips ---------- */
.chip-row{
  display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px;
}
.chip{
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px; border-radius: 999px;
  background: var(--surface-2); border: 1px solid var(--line);
  font-weight: 700; font-size: 14px; color: var(--muted);
}
.chip.is-active{ background: var(--gold); border-color: var(--gold); color: var(--ink); }
.chip:hover{ border-color: var(--gold); color: var(--white); }

/* ---------- Game grid ---------- */
.game-grid{
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.game-card{
  position: relative;
  border-radius: var(--radius-m);
  overflow: hidden;
  background: var(--surface-2);
  border: 1px solid var(--line);
  aspect-ratio: 427 / 575;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.game-card:hover{ transform: translateY(-4px); border-color: var(--gold); box-shadow: var(--shadow-1); }
.game-card img{ width: 100%; height: 100%; object-fit: cover; }
.game-card__label{
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 10px 10px 9px;
  background: linear-gradient(0deg, rgba(0,0,0,.88), transparent);
  font-size: 12.5px; font-weight: 700; color: var(--white);
  line-height: 1.25;
}
.game-card__play{
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(20,12,13,.55);
  opacity: 0; transition: opacity .18s ease;
}
.game-card:hover .game-card__play{ opacity: 1; }
.game-card__play span{
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--gold); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 900;
}

@media (max-width: 980px){ .game-grid{ grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 620px){ .game-grid{ grid-template-columns: repeat(3, 1fr); gap: 10px; } }
@media (max-width: 400px){ .game-grid{ grid-template-columns: repeat(2, 1fr); } }

/* ---------- Live casino strip ---------- */
.live-strip{
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.live-card{
  border-radius: var(--radius-m); overflow: hidden;
  border: 1px solid var(--line); background: var(--surface-2);
  display: flex; flex-direction: column;
}
.live-card__img{ aspect-ratio: 427/575; overflow: hidden; }
.live-card__img img{ width: 100%; height: 100%; object-fit: cover; }
.live-card__body{ padding: 14px 16px 16px; }
.live-card__tag{
  display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: .06em;
  text-transform: uppercase; color: var(--ink); background: var(--gold);
  padding: 3px 8px; border-radius: 5px; margin-bottom: 8px;
}
.live-card__title{ font-weight: 800; color: var(--white); font-size: 16px; margin: 0 0 4px; }
.live-card__desc{ font-size: 13.5px; color: var(--muted); margin: 0; }

@media (max-width: 780px){ .live-strip{ grid-template-columns: 1fr; } }

/* =========================================================================
   SPORTS SECTION (balance to casino)
   ========================================================================= */
.sports{
  background:
    linear-gradient(160deg, var(--ink) 0%, #1a1113 60%, var(--red-deep) 140%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.sports__grid{
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
}
.sports__list{ list-style: none; margin: 22px 0 26px; padding: 0; display: grid; gap: 10px; }
.sports__list li{
  display: flex; align-items: center; gap: 10px;
  color: var(--paper); font-size: 15px; font-weight: 600;
}
.sports__list li::before{
  content: ""; width: 8px; height: 8px; border-radius: 2px; background: var(--gold); flex-shrink: 0;
  transform: rotate(45deg);
}
.sports__odds{
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-l);
  padding: 20px; box-shadow: var(--shadow-1);
}
.sports__odds-head{
  display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px;
  font-size: 12.5px; color: var(--muted-2); font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
}
.odds-row{
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 4px; border-bottom: 1px solid var(--line);
  gap: 10px;
}
.odds-row:last-child{ border-bottom: none; }
.odds-row__match{ font-size: 14.5px; font-weight: 700; color: var(--white); }
.odds-row__meta{ font-size: 12px; color: var(--muted-2); }
.odds-row__prices{ display: flex; gap: 6px; flex-shrink: 0; }
.odds-pill{
  min-width: 46px; text-align: center;
  padding: 7px 8px; border-radius: var(--radius-s);
  background: var(--surface-2); border: 1px solid var(--line);
  font-weight: 800; font-size: 13.5px; color: var(--gold);
}

@media (max-width: 900px){
  .sports__grid{ grid-template-columns: 1fr; }
}

/* =========================================================================
   PROMO BAND (bonus CTA)
   ========================================================================= */
.promo-band{
  background: linear-gradient(115deg, var(--gold) 0%, #ffdb7a 100%);
  color: var(--ink);
  border-radius: var(--radius-l);
  padding: 34px 30px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.promo-band__title{ font-size: 22px; font-weight: 900; margin: 0 0 6px; }
.promo-band__text{ font-size: 14.5px; margin: 0; max-width: 56ch; color: #3a2c06; }
.promo-band .btn--primary{ background: var(--ink); color: var(--gold); box-shadow: none; }
.promo-band .btn--primary:hover{ background: #2a1f21; }

/* ---------- Trust / feature grid ---------- */
.feature-grid{
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.feature-card{
  background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--radius-m);
  padding: 20px;
}
.feature-card__icon{
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,199,54,.14); border: 1px solid rgba(255,199,54,.35);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-weight: 900; margin-bottom: 12px; font-size: 17px;
}
.feature-card__title{ font-weight: 800; color: var(--white); font-size: 15.5px; margin: 0 0 6px; }
.feature-card__text{ font-size: 13.5px; color: var(--muted); margin: 0; }

@media (max-width: 980px){ .feature-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px){ .feature-grid{ grid-template-columns: 1fr; } }

/* ---------- Payment strip ---------- */
.pay-strip{
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px;
}
.pay-chip{
  display: flex; align-items: center; justify-content: center;
  background: var(--white); border-radius: var(--radius-s);
  padding: 10px 16px; height: 46px;
}
.pay-chip img{ height: 22px; width: auto; max-width: 96px; }

/* ---------- Steps ---------- */
.steps{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; counter-reset: step; }
.step{
  background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--radius-m);
  padding: 20px; position: relative;
}
.step::before{
  counter-increment: step; content: counter(step);
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--red); color: var(--white); font-weight: 800; font-size: 14px;
  margin-bottom: 12px;
}
.step__title{ font-weight: 800; color: var(--white); font-size: 15px; margin: 0 0 6px; }
.step__text{ font-size: 13.5px; color: var(--muted); margin: 0; }

@media (max-width: 980px){ .steps{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px){ .steps{ grid-template-columns: 1fr; } }

/* =========================================================================
   SEO ARTICLE BLOCK
   ========================================================================= */
.seo-article{
  background: var(--paper);
  color: var(--ink);
  border-radius: var(--radius-l);
  padding: 44px clamp(20px, 5vw, 56px) 52px;
}
.seo-article h1{
  font-size: clamp(26px, 3.6vw, 36px);
  font-weight: 900;
  line-height: 1.18;
  margin: 0 0 22px;
  color: var(--ink);
  letter-spacing: -.01em;
}
.seo-article h2{
  font-size: clamp(20px, 2.4vw, 25px);
  font-weight: 800;
  margin: 40px 0 14px;
  color: var(--red-deep);
  letter-spacing: -.005em;
}
.seo-article h3{
  font-size: 18px;
  font-weight: 800;
  margin: 26px 0 10px;
  color: var(--ink);
}
.seo-article h2:first-child, .seo-article h1 + h2{ margin-top: 8px; }
.seo-article p{
  font-size: 15.5px;
  line-height: 1.75;
  color: #3a2f2c;
  margin: 0 0 16px;
}
.seo-article a{
  color: var(--red-dark);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(229,75,77,.4);
  text-underline-offset: 2px;
}
.seo-article a:hover{ text-decoration-color: var(--red-dark); }
.seo-article strong{ color: var(--ink); }
.seo-article ul, .seo-article ol{
  margin: 0 0 18px; padding-left: 22px; color: #3a2f2c; font-size: 15.5px; line-height: 1.7;
}
.seo-article li{ margin-bottom: 8px; }
.seo-article ul{ list-style: disc; }
.seo-article ol{ list-style: decimal; }

/* Tables — responsive, non-overflowing */
.seo-article table{
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  margin: 18px 0 24px;
  font-size: 14px;
  background: var(--white);
  border: 1px solid #e7dcc8;
  border-radius: var(--radius-s);
  overflow: hidden;
}
.seo-article caption{ caption-side: top; text-align: left; font-weight: 700; margin-bottom: 8px; }
.seo-article th, .seo-article td{
  border: 1px solid #e7dcc8;
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.seo-article th{
  background: var(--red);
  color: var(--white);
  font-weight: 800;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: .03em;
}
.seo-article tbody tr:nth-child(even){ background: #f7efe0; }
.seo-article-table-wrap{ overflow-x: auto; -webkit-overflow-scrolling: touch; }

@media (max-width: 560px){
  .seo-article{ padding: 30px 16px 36px; border-radius: var(--radius-m); }
  .seo-article table{ font-size: 12px; }
  .seo-article th, .seo-article td{ padding: 7px 8px; }
}

/* ---------- FAQ accordion ---------- */
.faq{ margin-top: 8px; }
.faq-item{
  border-bottom: 1px solid #e7dcc8;
}
.faq-item:first-child{ border-top: 1px solid #e7dcc8; }
.faq-item__q{
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: none; border: none; text-align: left; cursor: pointer;
  padding: 18px 4px;
  font-size: 17px; font-weight: 800; color: var(--ink);
}
.faq-item__icon{
  flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%;
  background: var(--red); color: var(--white);
  display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 700;
  transition: transform .2s ease;
}
.faq-item[data-open="true"] .faq-item__icon{ transform: rotate(45deg); }
.faq-item__a{
  max-height: 0; overflow: hidden; transition: max-height .25s ease;
}
.faq-item__a-inner{ padding: 0 4px 18px; color: #3a2f2c; font-size: 15px; line-height: 1.7; }
.faq-item__a-inner p{ margin: 0; }

/* =========================================================================
   BREADCRUMB
   ========================================================================= */
.breadcrumb{
  max-width: 1280px; margin: 0 auto; padding: 18px 20px 0;
  font-size: 13px; color: var(--muted-2);
}
.breadcrumb ol{ display: flex; flex-wrap: wrap; list-style: none; gap: 6px; margin: 0; padding: 0; }
.breadcrumb li{ display: flex; align-items: center; gap: 6px; }
.breadcrumb li:not(:last-child)::after{ content: "/"; color: var(--line); }
.breadcrumb a{ color: var(--muted); font-weight: 600; }
.breadcrumb a:hover{ color: var(--gold); }
.breadcrumb li[aria-current] { color: var(--paper); font-weight: 700; }

/* ---------- Page hero (interior pages) ---------- */
.page-hero{
  background:
    radial-gradient(120% 160% at 90% 0%, rgba(255,199,54,.22), transparent 55%),
    linear-gradient(120deg, var(--red-deep), var(--red));
  border-bottom: 4px solid var(--gold);
  padding: 30px 20px 44px;
}
.page-hero__inner{ max-width: 1280px; margin: 0 auto; }
.page-hero__kicker{
  display: inline-block; font-size: 12.5px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink); background: var(--gold); padding: 5px 12px; border-radius: 999px; margin-bottom: 14px;
}
.page-hero__title{
  font-size: clamp(28px, 4vw, 40px); font-weight: 900; color: var(--white);
  margin: 0 0 12px; letter-spacing: -.01em; line-height: 1.1;
}
.page-hero__lede{ font-size: 16.5px; color: rgba(255,255,255,.92); max-width: 66ch; margin: 0 0 20px; }

/* =========================================================================
   FOOTER
   ========================================================================= */
.site-footer{
  background: #0c0809;
  border-top: 1px solid var(--line);
  padding: 52px 20px 26px;
}
.site-footer__inner{ max-width: 1280px; margin: 0 auto; }
.site-footer__top{
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px;
  padding-bottom: 34px; border-bottom: 1px solid var(--line);
}
.site-footer__brand{ display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.site-footer__brand-mark{ width: 28px; height: 28px; }
.site-footer__brand-word{ font-weight: 800; font-size: 18px; color: var(--white); }
.site-footer__blurb{ font-size: 13.5px; color: var(--muted-2); max-width: 40ch; margin: 0; }
.site-footer__heading{
  font-size: 12.5px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase;
  color: var(--gold); margin: 0 0 14px;
}
.site-footer__links{ list-style: none; display: grid; gap: 10px; padding: 0; margin: 0; }
.site-footer__links a{ font-size: 14px; color: var(--muted); }
.site-footer__links a:hover{ color: var(--white); }

.site-footer__locale{ margin-top: 6px; }

.footer-payments{ margin: 30px 0 26px; }
.footer-social{ display: flex; gap: 10px; margin-top: 16px; }
.footer-social a{
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--surface-2); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
}
.footer-social a:hover{ color: var(--gold); border-color: var(--gold); }

.responsible{
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  padding: 22px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  margin: 26px 0;
}
.responsible__badge{
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--surface-2); border: 2px solid var(--gold);
  color: var(--gold); font-weight: 900; font-size: 15px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.responsible__text{ font-size: 12.5px; color: var(--muted-2); line-height: 1.6; margin: 0; }
.responsible__text strong{ color: var(--muted); }

.site-footer__bottom{
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  padding-top: 4px;
}
.site-footer__copy{ font-size: 12.5px; color: var(--muted-2); margin: 0; }
.site-footer__legal-links{ display: flex; gap: 16px; flex-wrap: wrap; list-style: none; padding: 0; margin: 0; }
.site-footer__legal-links a{ font-size: 12.5px; color: var(--muted-2); }
.site-footer__legal-links a:hover{ color: var(--muted); }

@media (max-width: 980px){
  .site-footer__top{ grid-template-columns: 1fr 1fr; row-gap: 30px; }
}
@media (max-width: 560px){
  .site-footer__top{ grid-template-columns: 1fr; }
  .site-footer__bottom{ flex-direction: column; align-items: flex-start; }
}

/* =========================================================================
   UTILITIES / RESPONSIVE GUARDS
   ========================================================================= */
.container{ max-width: 1280px; margin: 0 auto; padding: 0 20px; }
img, svg{ max-width: 100%; height: auto; }
table{ max-width: 100%; }

@media (max-width: 400px){
  .hero__title{ font-size: 28px; }
  .btn--lg{ padding: 13px 22px; font-size: 15px; }
}
