:root {
  --red: #9e1f36;
  --red-deep: #7f182b;
  --orange: #feb200;
  --orange-deep: #e39e00;
  --ink: #1b1b1b;
  --muted: #4a4a4a;
  --white: #ffffff;
  --line: rgba(158, 31, 54, 0.16);
  --max: 1180px;
  --radius: 16px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  font-size: 20px;
}

body {
  margin: 0;
  font-family: Afacad, system-ui, sans-serif;
  color: var(--ink);
  background: var(--white);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.65;
}

p, li, input, textarea, select, label, button, a, td, th {
  font-size: inherit;
}

h1, h2, h3 {
  font-family: Gabarito, Afacad, sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 { font-size: 32px; }
h2 { font-size: 26px; }
h3 { font-size: 22px; }

img, video { max-width: 100%; display: block; }
a { color: var(--red); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: .5rem .8rem;
  z-index: 80;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.wrap {
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--orange);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 78px;
}

.logo {
  display: flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
}

.logo img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--white);
}

.logo-name {
  font-family: Gabarito, Afacad, sans-serif;
  font-size: 20px;
  font-weight: 700;
}

.nav {
  display: flex;
  align-items: center;
  gap: .15rem .7rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a,
.nav .sub-toggle {
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  background: none;
  border: 0;
  padding: 0;
  font-family: inherit;
  cursor: pointer;
}

.nav a[aria-current="page"],
.nav a:hover,
.nav .sub-toggle:hover,
.nav .has-sub.open > .sub-toggle {
  color: var(--red);
}

.has-sub {
  position: relative;
  padding: 18px 0;
  margin: -18px 0;
}
.sub-toggle::after { content: " ▾"; font-size: 14px; }

.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 270px;
  background: var(--orange);
  border-radius: 0 0 10px 10px;
  box-shadow: 0 12px 28px rgba(0,0,0,.16);
  padding: .35rem 0 .5rem;
  z-index: 80;
}

.has-sub:hover > .submenu,
.has-sub:focus-within > .submenu,
.has-sub.open > .submenu {
  display: block;
}

.submenu a {
  display: block;
  padding: .45rem .9rem;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 1.7rem;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

.hero-fallback,
.hero-video,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-fallback { background: #3a2a24; }

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(20,12,10,.72) 0%, rgba(20,12,10,.45) 48%, rgba(20,12,10,.55) 100%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 2rem;
  padding: 4.5rem 0 3.5rem;
  align-items: center;
}

.kicker {
  margin: 0 0 .6rem;
  letter-spacing: .14em;
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.kicker.red { color: var(--red); }

.hero h1,
.section h2,
.page-hero h1 {
  font-family: Gabarito, Afacad, sans-serif;
  line-height: 1.08;
  letter-spacing: -.02em;
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: 32px;
}

.hero h1 u { text-underline-offset: .12em; }

.usp {
  list-style: none;
  margin: 0 0 1.4rem;
  padding: 0;
}

.usp li {
  display: flex;
  gap: .7rem;
  align-items: flex-start;
  margin: .45rem 0;
  font-size: 20px;
}

.dot {
  width: 14px;
  height: 14px;
  margin-top: .45rem;
  border-radius: 50%;
  background: var(--orange);
  flex: 0 0 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 10px;
  padding: .85rem 1.2rem;
  font-family: Jost, Afacad, sans-serif;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  border: 0;
  cursor: pointer;
}

.btn-orange { background: var(--orange); color: var(--red); }
.btn-red { background: var(--red); color: var(--orange); }
.btn-outline { background: #fff; color: var(--red); border: 1px solid var(--red); }

.form-card {
  background: var(--red);
  color: #fff;
  border-radius: 14px;
  padding: 0.9rem 1rem 0.85rem;
  box-shadow: 0 16px 40px rgba(0,0,0,.25);
}

.form-card h2 {
  font-family: Gabarito, sans-serif;
  margin: 0 0 .3rem;
  font-size: 26px;
}

.form-card p { margin: 0 0 .55rem; }

.form-card label {
  display: block;
  margin: 0 0 .2rem;
  font-size: 16px;
  font-weight: 700;
}

.form-card input,
.form-card textarea,
.form-card select {
  width: 100%;
  margin: 0 0 .45rem;
  border: 1px solid rgba(255,255,255,.35);
  background: transparent;
  color: #fff;
  border-radius: 8px;
  padding: .45rem .65rem;
  font: inherit;
}

.form-card input::placeholder,
.form-card textarea::placeholder { color: rgba(255,255,255,.75); }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .55rem;
}

.form-card .btn { width: 100%; margin-top: .3rem; }

.section { padding: 20px 0; }

.section-yellow { background: var(--orange); }
.section-gray { background: #ececec; }

.section h2 {
  color: var(--red);
  font-size: 26px;
  margin: 0 0 .5rem;
}

.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 2rem;
  align-items: center;
}

.split.reverse { grid-template-columns: 1.1fr .9fr; }

.media-frame {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,.08);
  min-height: 280px;
}

.media-frame video,
.media-frame img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.media-frame + h1,
.media-frame + h2 {
  margin-top: 2rem;
}

.actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.2rem; }

.band {
  background: var(--orange);
  padding: 20px 0;
}

.band-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.teaser {
  position: relative;
  min-height: 220px;
  border-radius: 8px;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  display: grid;
  align-items: end;
}

.teaser img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.teaser span {
  position: relative;
  z-index: 1;
  display: block;
  padding: 1rem;
  background: linear-gradient(transparent, rgba(0,0,0,.7));
  font-family: Jost, sans-serif;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.cta-box {
  background: var(--red);
  color: #fff;
  border-radius: 16px;
  padding: 1.6rem;
}

.cta-box h2 { color: #fff; }

.page-hero { padding: 20px 0; }
.page-hero h1 {
  color: var(--red);
  font-size: 32px;
}

.intro { font-size: 20px; color: var(--ink); max-width: 42rem; margin: 0 0 .4rem; }

.cards, .price-grid, .quotes {
  display: grid;
  gap: 1rem;
  margin-top: .6rem;
}
.cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}
.price-grid, .quotes { grid-template-columns: 1fr 1fr; }

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
  min-width: 0;
}
.price-card {
  background: var(--red);
  color: #fff;
  border: 0;
  border-radius: 16px;
  padding: 1.6rem 1.5rem 1.4rem;
}
.price-card h3 {
  color: #fff;
  margin: 0 0 .85rem;
}
.price-card p {
  color: #fff;
  margin: 0 0 .7rem;
}
.card {
  display: flex;
  flex-direction: column;
  padding: 0 0 .85rem;
}
.card .media-frame {
  margin: 0;
  border-radius: 0;
  min-height: 180px;
  height: 180px;
  box-shadow: none;
}
.card .media-frame img {
  height: 180px;
  min-height: 180px;
  object-fit: cover;
  display: block;
}
.card h3,
.card p,
.card .fineprint {
  padding: 0 .9rem;
  overflow-wrap: anywhere;
}
.card h3 {
  margin-top: .75rem;
  font-size: 20px;
  line-height: 1.25;
  min-height: 2.6em;
}
.card p {
  flex: 1;
}

.quote {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: .7rem .9rem;
}

.quote {
  background: #fff8f2;
}

.quote p {
  font-size: 20px;
  margin: 0;
}

.quote cite {
  display: block;
  margin-top: .45rem;
  font-style: normal;
  font-weight: 800;
  color: var(--red);
}

.review-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.review-card {
  background: linear-gradient(180deg, #3a0a16 0%, #9E1F36 52%, #e23a6a 100%);
  color: #fff;
  border: 4px solid var(--orange);
  border-radius: 8px;
  padding: 1.6rem 1.3rem 1.3rem;
  text-align: center;
}
.review-card .star {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: .55rem;
}
.review-card h3 {
  color: #fff;
  margin: 0 0 .65rem;
}
.review-card p {
  margin: 0;
  color: #fff;
}

.price {
  font-family: Gabarito, sans-serif;
  font-size: 2rem;
  color: var(--red);
  margin: .2rem 0 .5rem;
}

.fineprint { color: var(--muted); font-size: 16px; }

.site-footer {
  background: #221014;
  color: #f7e7d8;
  padding: 2.4rem 0 1.4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1.4rem;
}

.site-footer a { color: var(--orange); }
.footer-bottom {
  margin-top: 1.4rem;
  padding-top: .9rem;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.65);
}

#cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  background: #221014;
  color: #fff;
  padding: 1rem 1.2rem calc(1rem + env(safe-area-inset-bottom));
  box-shadow: 0 -8px 30px rgba(0,0,0,.25);
}
.cookie-inner {
  width: min(var(--max), calc(100% - 0rem));
  margin-inline: auto;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}
#cookie-banner p {
  margin: 0;
  font-size: 16px;
  line-height: 1.45;
  color: #fff;
}
#cookie-banner a { color: var(--orange); }
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  flex-shrink: 0;
}
@media (max-width: 720px) {
  .cookie-inner { flex-direction: column; align-items: stretch; }
}

.float-call {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  text-decoration: none;
  font-size: 1.5rem;
  box-shadow: 0 8px 20px rgba(0,0,0,.25);
  z-index: 40;
}

@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .logo-name { display: none; }
  .nav {
    display: none;
    position: absolute;
    left: 0; right: 0; top: 78px;
    background: var(--orange);
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.2rem 1.3rem;
  }
  .nav.open { display: flex; }
  .has-sub { width: 100%; }
  .submenu {
    position: static;
    box-shadow: none;
    padding: .2rem 0 .4rem .8rem;
    min-width: 0;
  }
  .has-sub:hover > .submenu { display: none; }
  .has-sub.open > .submenu { display: block; }
  .hero-grid, .split, .split.reverse, .band-grid, .cards, .price-grid, .quotes, .review-grid, .footer-grid, .form-row {
    grid-template-columns: 1fr;
  }
  .hero { min-height: auto; }
  h1, .hero h1, .page-hero h1 { font-size: 32px; }
  h2, .section h2, .form-card h2 { font-size: 26px; }
  h3 { font-size: 22px; }
}
