:root {
  --bg: #ffffff;
  --text: #222;
  --text-light: #fff;
  --text-accent: #e2e2e2;
  --muted: #555;
  --accent: #b81f3a; /* red like original */
  --border: #e5e5e5;
  --border-dark: #222;
  --max: 1180px;
  font-size: 16px;
}

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

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Roboto Condensed', sans-serif;
  margin: 0;
}
.container {
  width: min(100% - 1.5rem, var(--max));
  margin-inline: auto;
}

/* HEADER */
.site-header {
  background: var(--accent);
  /* border-bottom: 12px solid var(--border-dark); */
  /* position: sticky; */
  top: 0;
  z-index: 20;
}

.logo-wrap {
  text-align: center;
  padding: 0.9rem 0 0.4rem;
}
.logo {
  font-weight: 700;
  font-size: 1.35rem;
  text-transform: lowercase;
}

.logo img {
  width: 220px;
}
.logo span {
  color: var(--accent);
}

.nav-toggle {
  background: none;
  border: none;
  font-size: 1.5rem;
  position: absolute;
  right: 1rem;
  top: 1rem;
  cursor: pointer;
  display: inline-flex;
}

.main-nav {
  display: none;
  text-align: center;
  padding-bottom: 0.75rem;
}
.main-nav.open {
  display: block;
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav li {
  display: inline-block;
  margin: 0 0.35rem;
}
.main-nav a {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  font-weight: 500;
  color: var(--text-light);
  font-size: 0.9rem;
}
.main-nav a:hover {
  color: var(--text-accent);
}
.menu-cta {
  color: var(--accent);
  font-weight: 700;
}

/* HERO */
.hero {
  background: url(../img/hero-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  /* padding: 1.8rem 0 1.3rem; */
}
.hero-grid {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}
.hero-text {
  line-height: 1;
  text-align: center;
  padding-top: 1.5rem;
}

.hero-text h1 {
  font-size: 3.5rem;
  margin-bottom: 0rem;
  color: var(--text-light);
}
.hero-text h2 {
  font-size: 6rem;
  margin-bottom: 0rem;
  color: var(--text-light);
  margin: 0;
}

.subtext {
  color: var(--text-accent);
  font-size: 0.6rem;
  /* text-align: right; */
}

.subtitle {
  color: rgb(255, 255, 122);
  font-size: 2rem;
  margin-bottom: 1rem;
  font-family: 'Story Script', sans-serif;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 1rem 1.4rem 0.3rem;
  border-radius: 999px;
  font-weight: 600;
  display: inline-block;
  box-shadow: 0 8px 16px rgba(230, 6, 37, 0.15);
  transition: transform 0.1s ease-in-out;
  margin-top: 15px;
  text-transform: uppercase;
  line-height: 0.8;
  text-align: end;
}
.btn-primary:hover {
  transform: translateY(-1px);
}

.call-box {
  border: 1px solid #f4c3cb;
  background: #fff8f9;
  border-radius: 0.75rem;
  padding: 0.65rem 0.85rem 0.5rem;
  margin-top: 1rem;
  max-width: 200px;
}
.call-box p {
  margin: 0;
  font-size: 0.7rem;
  text-transform: uppercase;
  color: #aa4752;
}
.call-box strong {
  font-size: 1.2rem;
}

.hero-image {
  display: flex;
  justify-content: center;
}

.hero-image .img-placeholder {
  background: #f6f6f6;
  border: 1px solid #ececec;
  border-radius: 0.8rem;
  min-height: 150px;
  display: grid;
  place-items: center;
  color: #aaa;
  font-size: 0.8rem;
}

.anonym {
  color: #fff;
  /* text-decoration: underline; */
  text-transform: uppercase;
  font-size: 0.55rem;
}

.hero-image img {
  max-width: 300px;
}

/* STEPS */
.steps {
  background: #fff;
  padding: 2rem 0 1.5rem;
}
.steps-grid {
  display: grid;
  gap: 1rem;
}
.step {
  border: 1px solid #f1f1f1;
  /* background: var(--accent);
   */
  background: #d44054;
  background: linear-gradient(
    350deg,
    rgba(148, 34, 54, 1) 0%,
    rgba(184, 31, 58, 1) 100%
  );

  color: #fff;
  border-radius: 0.75rem;
  padding: 1rem;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.02);
}

.step-heading {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 1rem;
}

.step-heading svg {
  width: 64px;
  height: 64px;
  opacity: 0.35;
}

.step h3 {
  margin: 0;
  /* font-size: 2rem; */
  color: #fff;
}

.step-icon {
  opacity: 0.7;
  position: static;
  bottom: 100;
  right: 0;
  z-index: 0;
}

.step p {
  /* margin: 0; */
}

.video-wrap {
  position: relative; /* makes the overlay stay over THIS box */
  display: inline-block; /* so it hugs the video width */
}

.video-wrap video {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0.75rem;
  border: 0.3rem solid var(--accent);
}

.video-overlay {
  position: absolute;
  inset: 0; /* top:0; right:0; bottom:0; left:0 */
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
  padding: 1rem;
}

.video-heading {
  font-size: 1.3rem !important;
}

.video-text {
  font-size: 0.8rem;
}

.video-overlay > .cta-btn {
  font-size: 0.8rem;
  padding: 0.4rem 1rem;
}

.video-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.video-overlay p {
  color: var(--text-accent);
}

.cta-btn {
  margin-top: 1rem;
  background: var(--accent);
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
}

.medal-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.icon-medal {
  height: 64px;
}

.content .container {
  display: flex;
  width: 95vw;
  text-align: center;
}
/* CONTENT */
.content {
  background: #fff;
  padding: 2rem 0 1.5rem;
}
.content-block h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.content-block p {
  margin-bottom: 1rem;
  /* color: #444; */
}

/* CATEGORIES */
.categories {
  background: #fff;
  padding: 1.8rem 0 1.8rem;
}
.categories h2 {
  margin-bottom: 0.3rem;
}
.section-lead {
  color: #666;
  margin-bottom: 1rem;
}
.cat-grid {
  display: grid;
  gap: 1rem;
}
.cat-card {
  border: 1px solid #f0f0f0;
  background: #fff;
  border-radius: 0.5rem;
  padding: 1rem 0.9rem 0.8rem;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.015);
}
.cat-card h3 {
  margin-top: 0;
}
.cat-card p {
  color: #555;
  margin-bottom: 0.5rem;
}
.cat-btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
  font-size: 0.8rem;
}

/* INFO STRIP */
.info-strip {
  background: #fff;
  padding: 1.5rem 0 2.5rem;
  border-top: 1px solid #f2f2f2;
}
.info-strip h2 {
  margin-bottom: 0.4rem;
}
.info-strip p {
  color: #555;
  max-width: 44rem;
}

/* FOOTER */
.site-footer {
  background: #fafafa;
  border-top: 1px solid #efefef;
  padding: 1rem 0 1.25rem;
}
.footer-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-inner p {
  font-size: 0.8rem;
  color: #666;
}
.btn-small {
  padding: 0.45rem 1rem;
  font-size: 0.78rem;
}

.lined-text {
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
}

.lined-text::before,
.lined-text::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid var(--accent);
}

.lined-text:not(:empty)::before {
  margin-right: 0.75em;
}
.lined-text:not(:empty)::after {
  margin-left: 0.75em;
}

.bold {
  font-weight: 800;
}

.promo-banner {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.banner-img {
  max-width: 100%;
  border-radius: 0.75rem;
  justify-self: center;
}

.banner-text {
  text-align: center;
}

.banner-text h2 {
  font-size: 3.5rem;
  color: var(--accent);
}

.banner-text h3 {
  font-size: 2rem;
  margin-top: 1rem;
}

.banner-text p {
}

.price {
  margin: 0;
  line-height: 1;
  font-size: 0.6rem;
}

/* RESPONSIVE */
@media (min-width: 860px) {
  .nav-toggle {
    display: none;
  }
  .main-nav {
    display: block !important;
  }

  .hero-grid,
  .promo-banner {
    grid-template-columns: 1fr 1fr;
  }

  .hero-text {
    line-height: 1;
    text-align: end;
  }

  .hero-image {
    justify-content: flex-start;
  }
  .hero-image img {
    max-width: 400px;
  }

  .steps-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .content .container {
    width: 840px;
  }

  .video-heading {
    font-size: 2rem !important;
  }

  .video-text {
    font-size: 1rem;
  }

  .video-overlay > .cta-btn {
    font-size: 1rem;
    padding: 0.6rem 1.4rem;
  }

  .banner-text {
    text-align: left;
  }

  .cat-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .hero-text h2 {
    font-size: 4rem;
  }

  .subtitle {
    font-size: 1.5rem;
  }
}

.content-block.legal {
  max-width: 900px;
  margin: 0 auto;
  padding: 1.5rem;
  line-height: 1.6;
  color: #222;
  text-align: justify;
}
.content-block.legal h1 {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}
.content-block.legal address {
  font-style: normal;
  margin-bottom: 1rem;
  color: #333;
}
.legal-sections {
  margin-left: 1rem;
  padding-left: 0;
}
.legal-sections li {
  margin-bottom: 1rem;
}

.legal-sections li::marker {
  display: none;
}
.legal-sections h2 {
  font-size: 1.05rem;
  margin: 0 0 0.25rem 0;
}
