:root {
  --primary-red: #c8102e;
  --dark-red: #97001b;
  --accent-yellow: #f6b817;
  --heading-color: #151515;
  --text-color: #3d3d3d;
  --muted-color: #6b6b6b;
  --section-bg: #faf8f2;
  --white: #ffffff;
  --border-color: rgba(21, 21, 21, 0.1);
  --container-width: 1180px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--text-color);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

.site-wrapper {
  width: 100%;
  overflow: hidden;
}

.container {
  width: min(calc(100% - 40px), var(--container-width));
  margin: 0 auto;
}

.about-section {
  position: relative;
  padding: 70px 0;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 8% 15%,
      rgba(200, 16, 46, 0.07),
      transparent 26%
    ),
    radial-gradient(
      circle at 92% 85%,
      rgba(246, 184, 23, 0.08),
      transparent 24%
    ),
    linear-gradient(135deg, #fffefb 0%, var(--section-bg) 100%);
}

.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.35;
  pointer-events: none;
  background-image:
    linear-gradient(
      rgba(21, 21, 21, 0.025) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(21, 21, 21, 0.025) 1px,
      transparent 1px
    );
  background-size: 34px 34px;
}

.about-layout {
  position: relative;
  z-index: 2;
  width: 100%;
}

.about-content {
  width: 100%;
  max-width: 950px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--primary-red);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 42px;
  height: 3px;
  border-radius: 50px;
  background: linear-gradient(
    90deg,
    var(--primary-red),
    var(--accent-yellow)
  );
}

.about-title {
  max-width: 800px;
  margin-bottom: 28px;
  color: var(--heading-color);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(35px, 3vw, 40px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -1.8px;
}

.about-title .muted {
  color: var(--muted-color);
}

.about-title .accent {
  color: var(--primary-red);
}

.about-intro {
  max-width: 750px;
  margin-bottom: 23px;
  padding: 10px 14px;
  border-left: 5px solid var(--primary-red);
  border-radius: 0 12px 12px 0;
  color: #292929;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 35px rgba(44, 20, 20, 0.06);
  font-size: 19px;
  font-weight: 500;
  line-height: 1.7;
}

.about-copy {
  max-width: 900px;
}

.about-copy p {
  margin-bottom: 18px;
  color: var(--text-color);
  font-size: 17px;
  line-height: 1.8;
}

.about-copy p:last-child {
  margin-bottom: 0;
}

.about-copy strong {
  color: var(--heading-color);
  font-weight: 700;
}

.trust-message {
  position: relative;
  max-width: 1000px;
  margin-top: 34px;
  padding: 12px 20px 16px 14px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 18px 45px rgba(65, 22, 29, 0.09);
}

.trust-message::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 7px;
  background: linear-gradient(
    180deg,
    var(--primary-red),
    var(--accent-yellow)
  );
}

.trust-message p {
  margin: 0;
  color: var(--heading-color);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 2vw, 25px);
  line-height: 1.5;
}

.trust-message strong {
  color: var(--primary-red);
}

@media (max-width: 768px) {
  .container {
    width: min(calc(100% - 30px), var(--container-width));
  }

  .about-section {
    padding: 65px 0;
  }

  .about-title {
    margin-bottom: 24px;
    font-size: 42px;
    letter-spacing: -1px;
  }

  .about-intro {
    padding: 18px 20px;
    font-size: 17px;
  }

  .about-copy p {
    font-size: 16px;
    line-height: 1.7;
  }

  .trust-message {
    margin-top: 28px;
    padding: 22px 22px 22px 27px;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 50px 0;
  }

  .eyebrow {
    gap: 9px;
    font-size: 12px;
    letter-spacing: 1.4px;
  }

  .eyebrow::before {
    width: 30px;
  }

  .about-title {
    font-size: 36px;
    line-height: 1.12;
  }

  .about-intro {
    padding: 16px;
    border-left-width: 4px;
    font-size: 16px;
  }

  .trust-message p {
    font-size: 19px;
  }
}