:root {
  --brand-yellow: #fee900;
  --brand-red: #c60000;
  --brand-blue: #324c77;
  --ink: #111111;
  --slate: #8b949e;
  --paper: #f5f6f8;
  --white: #ffffff;
  --radius: 16px;
  --shadow: 0 12px 30px rgba(17, 17, 17, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Barlow", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}

img {
  max-width: 100%;
  display: block;
}

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

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: #000;
  color: #fff;
  padding: 0.5rem 0.75rem;
  z-index: 1000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.top-bar {
  background: var(--brand-yellow);
  border-bottom: 2px solid rgba(0, 0, 0, 0.05);
}

.top-bar__inner {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.top-bar p {
  margin: 0;
  font-weight: 500;
}

.top-call {
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.5rem, 3.6vw, 2rem);
  letter-spacing: 0.02em;
}

.site-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 90;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

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

.logo-link img {
  width: min(320px, 60vw);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.site-nav a {
  padding: 0.7rem 0.9rem;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 8px;
  transition: 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--brand-red);
  color: #fff;
}

.nav-call {
  background: var(--brand-red);
  color: #fff;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 42px;
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 8px;
  padding: 0.4rem;
}

.menu-toggle span {
  display: block;
  height: 3px;
  background: var(--ink);
  margin: 0.28rem 0;
  border-radius: 2px;
}

.hero {
  position: relative;
  min-height: 62vh;
  background: url("assets/images/hero2.jpg") center / cover no-repeat;
  color: var(--white);
  display: grid;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 0, 0, 0.86), rgba(7, 0, 0, 0.74));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 5rem 0;
}

.eyebrow {
  margin: 0 0 0.5rem;
  color: var(--brand-yellow);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.85rem;
  font-weight: 700;
}

.eyebrow-red {
  color: var(--brand-red);
}

h1,
h2,
h3 {
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.01em;
  line-height: 1.05;
  margin: 0;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.7rem);
  text-wrap: balance;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  text-wrap: balance;
}

h3 {
  font-size: 1.4rem;
}

.hero-copy {
  margin-top: 1rem;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  max-width: 62ch;
}

.hero-actions {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.78rem 1.4rem;
  font-weight: 700;
  border: 2px solid transparent;
  transition: 0.2s ease;
}

.btn-primary {
  background: var(--brand-red);
  color: #fff;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #9f0000;
}

.btn-light {
  background: #fff;
  color: var(--ink);
}

.btn-light:hover,
.btn-light:focus-visible {
  border-color: #fff;
  background: transparent;
  color: #fff;
}

.trust-row {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.trust-row span {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-weight: 600;
}

.section {
  padding: clamp(3.5rem, 9vw, 5.2rem) 0;
}

.section-head {
  max-width: 780px;
}

.section-head--center {
  text-align: center;
  margin-inline: auto;
}

.section-head h2 {
  margin-top: 0.2rem;
}

.service-grid {
  margin-top: 1.8rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: var(--shadow);
  border-top: 6px solid var(--brand-yellow);
}

.service-card p {
  margin: 0.7rem 0 0;
}

.service-card--cta {
  background: var(--brand-red);
  color: #fff;
  border-top-color: var(--brand-yellow);
}

.service-card--cta a {
  margin-top: 0.85rem;
  display: inline-block;
  color: var(--brand-yellow);
  font-weight: 700;
}

.coupons {
  background: linear-gradient(180deg, #f0f2f6 0%, #fff 100%);
}

.coupon-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.coupon-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
  box-shadow: var(--shadow);
  text-align: center;
}

.coupon-badge {
  width: 160px;
  aspect-ratio: 1;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--brand-yellow);
  border: 4px solid #f5dd2a;
  display: grid;
  place-items: center;
  line-height: 1;
  color: #0e0e0e;
}

.coupon-badge strong {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: 2.2rem;
}

.coupon-badge span {
  font-weight: 800;
  font-size: 1.7rem;
  margin-top: -0.35rem;
}

.coupon-card p {
  margin: 0;
  font-size: 1.05rem;
}

.about {
  background: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: center;
}

.about p {
  max-width: 65ch;
}

.about ul {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
}

.about li {
  margin-bottom: 0.45rem;
}

.about img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  min-height: 320px;
  object-fit: cover;
}

.contact {
  background: #f2f4f7;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 1.2rem;
}

.contact-info,
.contact-form {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.contact-info ul {
  list-style: none;
  margin: 1rem 0;
  padding: 0;
}

.contact-info li {
  margin: 0.4rem 0;
}

.contact-info a {
  color: var(--brand-red);
  font-weight: 700;
}

.contact-info iframe {
  width: 100%;
  min-height: 260px;
  border: 0;
  border-radius: 10px;
}

.contact-form label {
  display: grid;
  gap: 0.3rem;
  font-weight: 600;
  margin-bottom: 0.65rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  border: 1px solid #d8dce2;
  border-radius: 10px;
  font: inherit;
  padding: 0.7rem 0.75rem;
}

.contact-form textarea {
  resize: vertical;
}

.site-footer {
  background: var(--slate);
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1rem;
  align-items: start;
  padding: 2rem 0;
}

.site-footer img {
  width: min(280px, 70vw);
  filter: contrast(1.02) saturate(1.03);
}

.site-footer h3 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.site-footer p {
  margin: 0;
}

.copyright {
  text-align: center;
  padding: 0.8rem 1rem;
  background: rgba(0, 0, 0, 0.12);
  font-size: 0.92rem;
}

.mobile-call {
  display: none;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 4vw;
    width: min(360px, 92vw);
    background: #fff;
    border: 1px solid #e3e6eb;
    border-radius: 12px;
    box-shadow: var(--shadow);
    padding: 0.5rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav.open {
    display: flex;
  }

  .service-grid,
  .coupon-grid,
  .about-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 74vh;
    background-position: 67% center;
  }

  .hero-copy {
    max-width: 52ch;
  }

  .top-bar__inner {
    min-height: auto;
    padding: 0.6rem 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .top-call {
    font-size: 1.65rem;
  }

  .mobile-call {
    display: block;
    position: sticky;
    bottom: 0;
    width: 100%;
    text-align: center;
    background: var(--brand-red);
    color: #fff;
    font-weight: 700;
    padding: 0.85rem 0.8rem;
    z-index: 95;
  }

  body {
    padding-bottom: 0;
  }
}
