:root {
  --primary: #B5121B;
  --primary-dark: #7f0f16;
  --accent: #B5121B;
  --text: #1F2937;
  --muted: #4B5563;
  --surface: #F5F5F5;
  --background: #FFFFFF;
  --white: #FFFFFF;
  --shadow: 0 24px 48px rgba(31, 41, 55, 0.08);
  --radius: 24px;
  --radius-sm: 14px;
  --transition: 0.25s ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  background: var(--surface);
  line-height: 1.6;
}

h1, h2, h3, h4, h5 {
  font-family: "Poppins", "Inter", sans-serif;
  margin: 0;
}

p {
  margin: 0;
}

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

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

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(31, 41, 55, 0.08);
}

.nav-bar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  gap: 1rem;
  padding-block: 0.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
}

.brand img {
  display: block;
  width: clamp(110px, 14vw, 180px);
  max-width: 180px;
  height: auto;
  object-fit: contain;
}

.site-nav {
  display: none;
  gap: 1.5rem;
  font-weight: 600;
  color: var(--muted);
}

.site-nav a {
  color: var(--muted);
  padding: 0.35rem 0;
  transition: color var(--transition);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--primary);
}

.site-nav a.active {
  color: var(--primary);
  position: relative;
}

.site-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 3px;
  background: var(--primary);
  border-radius: 999px;
}

.nav-toggle {
  border: 0;
  background: transparent;
  padding: 0.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  cursor: pointer;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: var(--primary);
}

.nav-open .site-nav {
  display: flex;
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 0;
  right: 0;
  flex-direction: column;
  padding: 1rem 1rem 1.5rem;
  background: var(--white);
  box-shadow: 0 15px 30px rgba(7, 23, 45, 0.08);
}

.hero {
  position: relative;
  min-height: 90vh;
  display: grid;
  align-items: center;
  background: linear-gradient(180deg, rgba(31, 41, 55, 0.98), rgba(31, 41, 55, 0.92));
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  padding: 3rem 0 2rem;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.8fr);
  align-items: center;
  gap: 42px;
}

.hero-copy {
  max-width: 600px;
}

.hero-image-wrapper {
  width: 100%;
  max-width: none;
  height: 320px;
  overflow: hidden;
  position: relative;
  margin-inline-start: auto;
}

.hero-image-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 20, 28, 0.55), rgba(14, 20, 28, 0.35) 40%, rgba(14, 20, 28, 0.0));
  pointer-events: none;
  mix-blend-mode: multiply;
}

.hero-image-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(17, 25, 35, 0.0), rgba(17, 25, 35, 0.55) 60%);
  pointer-events: none;
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.68) contrast(0.96) saturate(0.82);
  transform: scale(1.03);
}

.hero-image-wrapper,
.hero-image-wrapper img {
  border-radius: 0;
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.hero h1,
.section-heading h2,
.about-content h2,
.contact-details h2,
.contact-header h2 {
  margin: 0 0 1rem;
  line-height: 1.05;
}

.hero h1,
.contact-header h2 {
  color: var(--white);
}

.section-heading h2,
.about-content h2,
.contact-details h2 {
  color: var(--text);
}

.hero h1 {
  font-size: clamp(58px, 5.5vw, 86px);
  color: var(--white);
  line-height: 1.02;
  max-width: 12ch;
}

.hero-text {
  max-width: 640px;
  font-size: 1.05rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hero-note {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 2rem;
  font-size: 0.98rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

@media (min-width: 700px) {
  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .hero-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.stat-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  min-height: auto;
  padding: 1.3rem 1.2rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  border-radius: 28px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 14px 30px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card > * {
  position: relative;
  z-index: 1;
}

.stat-card::before,
.stat-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.stat-card::before {
  background: transparent;
}

.stat-card::after {
  background: transparent;
}

.stat-card > * {
  position: relative;
  z-index: 1;
}

.stat-card:hover,
.stat-card:focus-within {
  transform: translateY(-5px);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.24);
  border-color: var(--primary);
}

.stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(181, 18, 27, 0.14);
  margin-bottom: 1rem;
}

.stat-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--primary);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stat-card span {
  display: block;
  font-size: clamp(1.1rem, 1.5vw, 1.55rem);
  line-height: 1.1;
  font-weight: 700;
  color: var(--white);
}

.stat-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.92rem;
  line-height: 1.5;
  max-width: 13ch;
}

.stat-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.95rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  border: 1px solid transparent;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-secondary {
  background: var(--white);
  color: var(--text);
  border-color: rgba(31, 41, 55, 0.12);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  color: var(--primary);
  border-color: var(--primary);
}

.section {
  padding: 5.5rem 0;
}

.section-alt {
  background: var(--surface);
}

.section-heading {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 2rem;
}

.section-heading .eyebrow {
  margin: 0 0 0.8rem;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.9rem;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.section-heading .eyebrow::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.35rem;
  transform: translateX(-50%);
  width: 44px;
  height: 2px;
  border-radius: 999px;
  background: var(--primary);
}

.section-heading h2,
.about-content h2,
.contact-details h2 {
  font-size: clamp(2rem, 2.4vw, 2.3rem);
  color: var(--text);
  line-height: 1.1;
  margin: 0;
}

.section-heading p,
.about-content p,
.contact-details p,
.contact-list,
.why-card p,
.benefit-item p {
  color: var(--muted);
}

.why-grid {
  display: grid;
  gap: 1.5rem;
}

.why-card,
.contact-form,
.contact-panel,
.contact-list-panel {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.why-card:hover,
.contact-panel:hover,
.contact-form:hover {
  transform: translateY(-4px);
  box-shadow: 0 34px 60px rgba(31, 41, 55, 0.12);
  border-color: rgba(181, 18, 27, 0.2);
}

.why-card {
  padding: 1.35rem 1.25rem;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.why-card > * {
  position: relative;
  z-index: 1;
}

.icon-box {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(181, 18, 27, 0.08);
  margin-bottom: 0.9rem;
}

.icon-box svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--primary);
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-card h3,
.benefit-item h3 {
  margin: 0 0 0.5rem;
  color: var(--primary-dark);
}

.about-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.about-image {
  display: grid;
  gap: 1rem;
}

.about-image img {
  width: 100%;
  height: 255px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 22px 42px rgba(31, 41, 55, 0.14);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.about-image img:nth-child(1),
.about-image img.top-half {
  object-position: center top;
}

.about-image img:nth-child(2) {
  object-position: center 28%;
}

.about-image img:hover,
.about-image img:focus-visible {
  transform: scale(1.03);
  box-shadow: 0 28px 55px rgba(31, 41, 55, 0.18);
}

@media (min-width: 768px) {
  .about-grid,
  .contact-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }

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

@media (max-width: 899px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-image-wrapper {
    height: 380px;
  }
}

@media (max-width: 599px) {
  .hero h1 {
    font-size: clamp(36px, 8vw, 48px);
  }

  .hero-image-wrapper {
    height: 300px;
  }

  .about-image img {
    height: 220px;
  }
}

@media (min-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.benefits-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.benefit-item {
  padding: 1.2rem 1.3rem;
  border-left: 4px solid var(--primary);
  background: #ffffff;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}


.contact-grid {
  display: grid;
  gap: 2rem;
}

.contact-panel,
.contact-form,
.contact-list-panel {
  padding: 2rem;
}

.contact-panel {
  display: grid;
  gap: 1.5rem;
}

.contact-header h2 {
  color: var(--text);
}

.contact-list-panel {
  display: grid;
  gap: 0.75rem;
}

.contact-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
}

.contact-item strong {
  color: var(--text);
}

.modern-form {
  display: grid;
  gap: 1rem;
}

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


.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.form-honeypot {
  position: absolute !important;
  top: -9999px !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.form-honeypot input,
.honeypot-field {
  position: absolute !important;
  top: -9999px !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.form-status {
  min-height: 1.8rem;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.form-status--success {
  color: #0c6b3a;
}

.form-status--error {
  color: #b5121b;
}

label {
  font-weight: 700;
  color: var(--text);
}

input,
textarea {
  border: 1px solid rgba(31, 41, 55, 0.12);
  border-radius: 16px;
  padding: 1rem 1.1rem;
  font: inherit;
  background: #ffffff;
  transition: border-color var(--transition), box-shadow var(--transition);
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(181, 18, 27, 0.12);
}

.site-footer {
  background: var(--text);
  color: rgba(255, 255, 255, 0.88);
  padding: 1.5rem 0;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: center;
  text-align: center;
}

.footer-links {
  display: flex;
  gap: 1rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 640px) {
  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .hero-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }

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

  .nav-open .site-nav {
    position: static;
    display: flex;
    flex-direction: row;
    padding: 0;
    background: transparent;
    box-shadow: none;
  }

  .hero-content {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

@media (min-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
