/* ==========================================================================
   1. VARIABLES
   ========================================================================== */

:root {
  --color-red: #b31117;
  --color-red-dark: #8a0d12;
  --color-black: #0a0a0a;
  --color-white: #ffffff;
  --color-off: #faf9f7;
  --color-gray: #666666;
  --color-light-gray: #999999;
  --color-border: #e5e2de;

  --font-primary: 'Montserrat', sans-serif;
  --font-heading: 'Montserrat', sans-serif;
  --container: 1440px;
}

/* ==========================================================================
   2. RESET
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  color: var(--color-black);
  background: var(--color-white);
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
.hero__title,
.values-section__title,
.about-section__title,
.testimonials-section__title {
  font-family: var(--font-heading);
  font-weight: 800;
}
/* ==========================================================================
   3. GLOBAL UTILITIES
   ========================================================================== */

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 6rem 5rem;
}

.section--off {
  background: var(--color-off);
}

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

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

/* ==========================================================================
   4. TYPOGRAPHY
   ========================================================================== */

.eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--color-red);
}

.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: currentColor;
  display: block;
}

.title-xl {
  font-size: clamp(3.5rem, 6vw, 6.5rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.02em;
}

.title-lg {
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 800;
  line-height: 1;
}

.text-body {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--color-gray);
}

/* ==========================================================================
   5. BUTTONS
   ========================================================================== */

.btn {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  display: inline-block;
}

.btn--primary {
  background: var(--color-red);
  color: var(--color-white);
  padding: 0.9rem 2.2rem;
  transition: 0.2s ease;
}

.btn--primary:hover {
  background: var(--color-red-dark);
}

.btn--link {
  margin-left: 1.5rem;
  border-bottom: 1px solid var(--color-black);
  padding-bottom: 4px;
  transition: 0.2s ease;
}

.btn--link:hover {
  color: var(--color-red);
  border-color: var(--color-red);
}

/* ==========================================================================
   6. HEADER / NAV
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 68px;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  z-index: 100;
}

.site-header__inner {
  height: 100%;
  padding: 0 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header__logo img {
  height: 61px;
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.site-nav__link {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: 0.2s ease;
}

.site-nav__link:hover {
  color: var(--color-red);
}

.site-nav__link--cta {
  background: var(--color-red);
  color: var(--color-white);
  padding: 0.55rem 1.4rem;
}

.site-nav__link--cta:hover {
  background: var(--color-red-dark);
}

/* ==========================================================================
   7. HERO
   ========================================================================== */

.hero {
  padding-top: 68px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 68px);
}

/* LEFT */
.hero__content {
  padding: 6rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--color-border);
}

.hero__title {
  margin: 2rem 0;
}

.hero__description {
  max-width: 420px;
  margin-bottom: 3rem;
}

.hero__actions {
  display: flex;
  align-items: center;
}

/* RIGHT */
.hero__media {
  background: var(--color-off);
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero__image-wrap {
  max-width: 520px;
  margin: 0 auto;
}

.hero__caption {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  color: var(--color-light-gray);
}
.hero h1{
      font-size: clamp(3.2rem, 5.5vw, 6.5rem);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 0.93;
    letter-spacing: -0.02em;
    color: var(--black);
    margin-bottom: 2rem;
}
/* ==========================================================================
   8. SECTION HEADINGS
   ========================================================================== */

.section-heading {
  margin-bottom: 3rem;
}

.section-heading__eyebrow {
  margin-bottom: 1rem;
}

.section-heading__title {
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 800;
}

/* ==========================================================================
   9. GENERIC GRID SYSTEM
   ========================================================================== */

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

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

/* ==========================================================================
   10. FOOTER
   ========================================================================== */

.site-footer {
  padding: 4rem 5rem;
  border-top: 1px solid var(--color-border);
}

.site-footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-footer__copy {
  font-size: 0.75rem;
  color: var(--color-light-gray);
}

/* ==========================================================================
   11. RESPONSIVE
   ========================================================================== */

@media (max-width: 1024px) {

  .section {
    padding: 4rem 2rem;
  }

  .site-header__inner {
    padding: 0 2rem;
  }

  .hero__grid {
    grid-template-columns: 1fr;
  }

  .hero__content {
    border-right: none;
    border-bottom: 1px solid var(--color-border);
    padding: 4rem 2rem;
  }

  .hero__media {
    padding: 3rem 2rem;
  }

  .hero__title {
    font-size: 3rem;
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .site-footer__inner {
    flex-direction: column;
    gap: 1rem;
  }
}

/* ==========================================================================
   RED STRIPE / MARQUEE
   ========================================================================== */

.red-stripe {
  background: var(--color-red);
  color: var(--color-white);
  overflow: hidden;
}

.red-stripe__inner {
  width: 100%;
  overflow: hidden;
}

.red-stripe__track {
  display: flex;
  width: max-content;
  animation: red-stripe-scroll 18s linear infinite;
}

.red-stripe__group {
  display: flex;
  align-items: center;
  padding: 0.9rem 0;
}

.red-stripe__text {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  white-space: nowrap;
}

.red-stripe__dot {
  margin: 0 1.5rem;
  opacity: 0.6;
}

/* animation */
@keyframes red-stripe-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */

.services-section {
  padding: 7rem 5rem 6rem;
  background: #ffffff;
}

.services-section__inner {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(520px, 1.25fr);
  column-gap: 4rem;
  align-items: start;
}

.services-section__intro {
  padding-right: 2rem;
}

.services-section__eyebrow {
  margin-bottom: 1.6rem;
}

.services-section__title {
  font-size: clamp(3rem, 5.2vw, 5.5rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin: 0 0 14rem;
  max-width: 7ch;
}

.services-section__copy {
  max-width: 34rem;
}

.services-section__copy p {
  font-size: 0.98rem;
  line-height: 1.85;
  color: var(--color-gray);
  margin: 0 0 2rem;
}

.services-section__copy p:last-child {
  margin-bottom: 0;
}

.services-section__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(240px, 1fr));
  gap: 2.25rem 1rem;
  align-self: end;
  padding-top: 11rem;
}

.service-card {
  min-width: 0;
}

.service-card__link {
  display: block;
}

.service-card__media {
  position: relative;
  overflow: hidden;
  background: #eae7e2;
  margin-bottom: 0.7rem;
}

.service-card__media img {
  width: 100%;
  aspect-ratio: 1 / 0.78;
  object-fit: cover;
  display: block;
}

.service-card__content {
  padding: 0 0.5rem 0 0;
}

.service-card__title {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.35;
  margin: 0 0 0.45rem;
}

.service-card__text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--color-gray);
  margin: 0;
}

.service-card__link:hover .service-card__title {
  color: var(--color-red);
}

.service-card__link:hover .service-card__media img {
  transform: scale(1.015);
  transition: transform 0.35s ease;
}

.service-card__media img {
  transition: transform 0.35s ease;
}
@media (max-width: 640px) {
  .services-section__grid {
    gap: 1.5rem 0.75rem;
  }

  .service-card__content {
    padding-right: 0.25rem;
  }
}
/* ==========================================================================
   IMPACT SECTION
   ========================================================================== */

.impact-section {
  padding: 6.5rem 5rem 7rem;
  background: #f5f4f2;
}

.impact-section__inner {
  width: 100%;
}

.impact-section__heading {
  margin-bottom: 4.5rem;
}

.impact-section__eyebrow {
  margin-bottom: 1.5rem;
}

.impact-section__title {
  font-size: clamp(3rem, 5.2vw, 5.5rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  max-width: 8ch;
  margin: 0;
}

.impact-section__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--color-border);
  margin-bottom: 5.5rem;
}

.impact-stat {
  padding: 3.2rem 3.25rem 3.5rem 0;
  min-height: 240px;
}

.impact-stat:not(:last-child) {
  border-right: 1px solid var(--color-border);
  padding-right: 2.5rem;
}

.impact-stat:not(:first-child) {
  padding-left: 3rem;
}

.impact-stat__value {
  font-size: clamp(4rem, 6vw, 5.5rem);
  line-height: 0.92;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--color-red);
  margin-bottom: 1rem;
}

.impact-stat__label {
  font-size: 0.72rem;
  line-height: 1.7;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: #7b7b7b;
  margin: 0;
  max-width: 21ch;
}

.impact-section__quote-wrap {
  display: flex;
  justify-content: center;
}

.impact-quote {
  max-width: 980px;
  text-align: center;
  margin: 0;
}

.impact-quote__text {
  font-size: clamp(1.9rem, 3vw, 3.15rem);
  line-height: 1.48;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: #111;
  margin: 0 0 2rem;
}

.impact-quote__author {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #a1a1a1;
}

.impact-quote__line {
  width: 18px;
  height: 1px;
  background: currentColor;
  display: block;
}
@media (max-width: 1024px) {
  .impact-section {
    padding: 4.5rem 2rem 5rem;
  }

  .impact-section__heading {
    margin-bottom: 3rem;
  }

  .impact-section__title {
    font-size: clamp(2.8rem, 9vw, 4.5rem);
    max-width: none;
  }

  .impact-section__stats {
    grid-template-columns: 1fr;
    margin-bottom: 4rem;
  }

  .impact-stat {
    min-height: auto;
    padding: 2.75rem 0;
  }

  .impact-stat:not(:last-child) {
    border-right: 0;
    border-bottom: 0;
    padding-right: 0;
  }

  .impact-stat:not(:first-child) {
    padding-left: 0;
  }

  .impact-stat__value {
    font-size: clamp(3.8rem, 12vw, 5rem);
    margin-bottom: 1rem;
  }

  .impact-stat__label {
    font-size: 0.82rem;
    letter-spacing: 0.16em;
    max-width: 26ch;
  }

  .impact-quote {
    max-width: 820px;
  }

  .impact-quote__text {
    font-size: clamp(1.85rem, 4.8vw, 2.8rem);
    line-height: 1.55;
    margin-bottom: 1.75rem;
  }

  .impact-quote__author {
    font-size: 0.74rem;
    letter-spacing: 0.2em;
  }
}

@media (max-width: 640px) {
  .impact-section {
    padding: 4rem 1.5rem 4.5rem;
  }

  .impact-section__eyebrow {
    margin-bottom: 1.25rem;
  }

  .impact-section__title {
    font-size: clamp(2.6rem, 10vw, 4rem);
    line-height: 0.94;
  }

  .impact-section__stats {
    margin-bottom: 4.5rem;
  }

  .impact-stat {
    padding: 2.4rem 0 2.8rem;
  }

  .impact-stat__value {
    font-size: clamp(3.7rem, 13vw, 4.8rem);
  }

  .impact-stat__label {
    font-size: 0.76rem;
    line-height: 1.65;
    letter-spacing: 0.16em;
    max-width: 22ch;
  }

  .impact-quote__text {
    font-size: clamp(1.65rem, 7vw, 2.35rem);
    line-height: 1.62;
  }

  .impact-quote__author {
    gap: 0.75rem;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    flex-wrap: wrap;
    justify-content: center;
  }

  .impact-quote__line {
    width: 16px;
  }
}
/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */

.eyebrow--light {
  color: var(--color-white);
}

.eyebrow--light::before {
  background: currentColor;
}

.testimonials-section {
  background: #000;
  color: #fff;
  padding: 6.5rem 5rem 6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.testimonials-section__inner {
  max-width: 1440px;
  margin: 0 auto;
}

.testimonials-section__header {
  margin-bottom: 4rem;
}

.testimonials-section__eyebrow {
  margin-bottom: 1.5rem;
}

.testimonials-section__title {
  font-size: clamp(3rem, 5.2vw, 5.5rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #fff;
  max-width: 17ch;
  margin: 0;
}

.testimonials-slider {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr) 84px;
  align-items: center;
  column-gap: 2rem;
}

.testimonials-slider__viewport {
  min-width: 0;
}

.testimonials-slider__track {
  position: relative;
  min-height: 500px;
}

.testimonial-card {
  max-width: 930px;
  margin: 0 auto;
}

.testimonial-card[hidden] {
  display: none;
}

.testimonial-card__quote-mark {
  font-size: 8rem;
  line-height: 1;
  color: var(--color-red);
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.testimonial-card__quote {
  margin: 0 0 2.75rem;
}

.testimonial-card__quote p {
  font-size: clamp(1.55rem, 2.5vw, 2.2rem);
  line-height: 1.72;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: #f2f2f2;
  margin: 0;
}

.testimonial-card__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}

.testimonial-card__line {
  display: block;
  width: 44px;
  height: 2px;
  background: var(--color-red);
}

.testimonial-card__author-block {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.testimonial-card__name {
  font-size: 0.95rem;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
}

.testimonial-card__role {
  font-size: 0.78rem;
  line-height: 1.5;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
  max-width: 56ch;
}

.testimonials-slider__arrow {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.testimonials-slider__arrow:hover {
  border-color: rgba(255, 255, 255, 0.42);
  color: #fff;
}

.testimonials-slider__arrow:focus-visible,
.testimonials-slider__dot:focus-visible {
  outline: 2px solid var(--color-red);
  outline-offset: 3px;
}

.testimonials-slider__dots {
  grid-column: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.7rem;
  margin-top: 2.75rem;
}

.testimonials-slider__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.testimonials-slider__dot.is-active {
  background: var(--color-red);
  transform: scale(1.05);
}
@media (max-width: 1024px) {
  .testimonials-section {
    padding: 4.5rem 2rem 4.5rem;
  }

  .testimonials-section__header {
    margin-bottom: 3rem;
  }

  .testimonials-section__title {
    font-size: clamp(2.8rem, 9vw, 4.5rem);
    max-width: none;
  }

  .testimonials-slider {
    grid-template-columns: 60px minmax(0, 1fr) 60px;
    column-gap: 1rem;
  }

  .testimonials-slider__track {
    min-height: 620px;
  }

  .testimonial-card {
    max-width: 100%;
  }

  .testimonial-card__quote-mark {
    font-size: 6.5rem;
    margin-bottom: 1rem;
  }

  .testimonial-card__quote p {
    font-size: clamp(1.8rem, 4vw, 2.45rem);
    line-height: 1.68;
  }

  .testimonial-card__role {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .testimonials-section {
    padding: 4rem 1.5rem 4rem;
  }

  .testimonials-section__eyebrow {
    margin-bottom: 1.25rem;
  }

  .testimonials-section__title {
    font-size: clamp(2.6rem, 10vw, 4rem);
    line-height: 0.94;
  }

  .testimonials-slider {
    grid-template-columns: 56px minmax(0, 1fr) 56px;
    column-gap: 0.75rem;
    align-items: start;
  }

  .testimonials-slider__track {
    min-height: 980px;
  }

  .testimonial-card__quote-mark {
    font-size: 5rem;
    margin-bottom: 1rem;
  }

  .testimonial-card__quote {
    margin-bottom: 2.25rem;
  }

  .testimonial-card__quote p {
    font-size: clamp(1.35rem, 6.6vw, 2rem);
    line-height: 1.78;
  }

  .testimonial-card__name {
    font-size: 0.9rem;
  }

  .testimonial-card__role {
    font-size: 0.76rem;
    line-height: 1.45;
    letter-spacing: 0.1em;
  }

  .testimonials-slider__arrow {
    width: 48px;
    height: 48px;
    margin-top: 22rem;
  }

  .testimonials-slider__dots {
    margin-top: 2.25rem;
  }
}

/* ==========================================================================
   VALUES SECTION
   ========================================================================== */

.values-section {
  padding: 6.5rem 5rem 6rem;
  background: #ffffff;
}

.values-section__header {
  margin-bottom: 3.5rem;
}

.values-section__eyebrow {
  margin-bottom: 1.4rem;
}

.values-section__title {
  font-size: clamp(3rem, 5.2vw, 5.5rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin: 0;
}

/* GRID */

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

/* CARD */

.value-card {
  background: transparent;
  border: 1px solid #e2dfda;
  padding: 2.75rem 2.25rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 100%;
  transition: border-color 0.3s;
}

.value-card__icon {
  margin-bottom: 1.75rem;
}

.value-card__icon img {
  width: 48px;
  height: auto;
}

.value-card__title {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.value-card__text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--color-gray);
  margin: 0;
}

.value-card:hover{
  border-color:var(--color-red);
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */

.about-section {
  padding: 6.5rem 5rem 5.5rem;
  background: #ffffff;
  border-bottom: 1px solid var(--color-border);
}

.about-section__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  column-gap: 5rem;
  align-items: start;
}

.about-section__content {
  min-width: 0;
}

.about-section__eyebrow {
  margin-bottom: 1.4rem;
}

.about-section__title {
  font-size: clamp(3rem, 5.2vw, 5.5rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin: 0 0 3rem;
  max-width: 8ch;
}

.about-section__copy {
  max-width: 44rem;
}

.about-section__copy p {
  font-size: 0.98rem;
  line-height: 1.9;
  color: var(--color-gray);
  margin: 0 0 2rem;
}

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

.about-section__copy strong {
  font-weight: 800;
  color: var(--color-black);
}

.about-section__media {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}

.about-section__logo {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}

.about-section__logo img {
  max-width: 320px;
  width: 100%;
  height: auto;
  display: block;
}

.about-section__figure {
  margin: 0;
  width: 100%;
}

.about-section__image-wrap {
  width: 100%;
  max-width: 430px;
}

.about-section__image-wrap img {
  width: 100%;
  aspect-ratio: 1 / 1.18;
  object-fit: cover;
  display: block;
}

.about-section__caption {
  margin-top: 0.8rem;
  font-size: 0.72rem;
  line-height: 1.5;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9a9a9a;
}
@media (max-width: 1024px) {
  .team-section {
    padding: 4rem 2rem 4.5rem;
  }

  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 640px) {
  .team-section {
    padding: 4rem 1.5rem;
  }

  .team-section__header {
    margin-bottom: 2rem;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .team-card__role {
    left: 1.1rem;
    bottom: 1rem;
    font-size: 0.7rem;
    padding: 0.35rem 0.85rem;
  }

  .team-card__content {
    padding: 1.25rem 1.35rem 1.35rem;
  }

  .team-card__name {
    font-size: 0.92rem;
  }
}
/* ==========================================================================
   TEAM SECTION
   ========================================================================== */

.team-section {
  padding: 4.5rem 5rem 6rem;
  background: #f5f4f2;
}

.team-section__inner {
  width: 100%;
}

.team-section__header {
  margin-bottom: 2.5rem;
}

.team-section__eyebrow {
  margin-bottom: 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.75rem;
}

.team-card {
  border: 1px solid #dfdcd7;
  background: transparent;
  min-width: 0;
}

.team-card__media {
  position: relative;
  background: #ebe9e5;
}

.team-card__media img {
  width: 100%;
  aspect-ratio: 1 / 1.25;
  object-fit: cover;
  display: block;
}

.team-card__role {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0.35rem 0.9rem;
  background: var(--color-red);
  color: #fff;
  font-size: 0.72rem;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.team-card__content {
  padding: 1.35rem 1.5rem 1.45rem;
  background: transparent;
}

.team-card__name {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-black);
}
.clients-section {
    background: #ffffff;
    padding: 120px 140px;
    scroll-margin-top: calc(var(--header-height) + 16px);
}

.clients-heading-wrap {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto 72px;
}

.clients-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 22px;
    color: #c9302c;
    text-transform: uppercase;
    letter-spacing: 0.38em;
    font-size: 0.95rem;
    font-weight: 500;
}

.clients-kicker-line {
    display: inline-block;
    width: 42px;
    height: 2px;
    background: #c9302c;
    transform: translateY(-1px);
}

.clients-title {
    margin: 0;
    color: #000000;
    text-transform: uppercase;
    font-size: clamp(3.2rem, 6vw, 5.8rem);
    line-height: 0.95;
    letter-spacing: -0.05em;
    font-weight: 900;
}

.clients-logo-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    align-items: center;
    gap: 52px 32px;
}

.client-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 88px;
}

.client-logo-item img {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: 74px;
    object-fit: contain;
}

@media (max-width: 1200px) {
    .clients-logo-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 42px 28px;
    }
}

@media (max-width: 768px) {
    .clients-section {
        padding: 96px 0 108px;
    }

    .clients-heading-wrap {
        margin-bottom: 56px;
    }

    .clients-kicker {
        font-size: 0.82rem;
        letter-spacing: 0.3em;
        gap: 14px;
    }

    .clients-kicker-line {
        width: 34px;
    }

    .clients-title {
        font-size: clamp(2.8rem, 9vw, 4.6rem);
        line-height: 0.92;
    }

    .clients-logo-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 30px 20px;
    }

    .client-logo-item {
        min-height: 68px;
    }

    .client-logo-item img {
        max-height: 54px;
    }
}
.cta-section {
    background: #ffffff;
    padding: 120px 0 130px;
    scroll-margin-top: calc(var(--header-height) + 16px);
}

.cta-inner {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.cta-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    margin-bottom: 28px;
    text-transform: uppercase;
    letter-spacing: 0.38em;
    font-size: 0.95rem;
    font-weight: 500;
    color: #c9302c;
}

.cta-kicker-line {
    display: inline-block;
    width: 44px;
    height: 2px;
    background: #c9302c;
    transform: translateY(-1px);
}

.cta-title {
    margin: 0;
    text-transform: uppercase;
    line-height: 0.9;
    letter-spacing: -0.05em;
}

.cta-title-top,
.cta-title-bottom {
    display: block;
    font-weight: 900;
    font-size: clamp(4rem, 8vw, 6.6rem);
}

.cta-title-top {
    color: #000000;
}

.cta-title-bottom {
    color: #c81010;
}

.cta-copy {
    margin: 34px auto 52px;
    max-width: 620px;
    font-size: 1.125rem;
    line-height: 1.7;
    color: #5f5f5f;
}

.cta-button-wrap {
    margin-bottom: 64px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 340px;
    min-height: 64px;
    padding: 0 34px;
    background: #c81010;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 1.05rem;
    font-weight: 800;
    border: 1px solid #c81010;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.cta-button:hover,
.cta-button:focus-visible {
    background: #a80d0d;
    border-color: #a80d0d;
    color: #ffffff;
}

.cta-meta {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 80px;
}

.cta-meta-item {
    min-width: 180px;
}

.cta-meta-label {
    margin-bottom: 10px;
    color: #9a9a9a;
    text-transform: uppercase;
    letter-spacing: 0.35em;
    font-size: 0.9rem;
    font-weight: 500;
}

.cta-meta-value {
    color: #1a1a1a;
    font-size: 1rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .cta-section {
        padding: 96px 0 104px;
    }

    .cta-kicker {
        gap: 14px;
        margin-bottom: 22px;
        font-size: 0.82rem;
        letter-spacing: 0.28em;
    }

    .cta-kicker-line {
        width: 34px;
    }

    .cta-title-top,
    .cta-title-bottom {
        font-size: clamp(3.2rem, 11vw, 5rem);
    }

    .cta-copy {
        margin: 28px auto 40px;
        font-size: 1rem;
    }

    .cta-button-wrap {
        margin-bottom: 48px;
    }

    .cta-button {
        width: 100%;
        min-width: 0;
        min-height: 58px;
        font-size: 0.98rem;
    }

    .cta-meta {
        flex-direction: column;
        gap: 28px;
        align-items: center;
    }

    .cta-meta-item {
        min-width: 0;
    }
}
.site-footer {
    background: #000000;
    padding: 36px 0;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-logo {
    display: block;
    max-height: 52px;
    width: auto;
}

.footer-logo-text {
    color: #ffffff;
    font-weight: 800;
    font-size: 1.25rem;
}

.footer-copy {
    margin: 0;
    color: #bfbfbf;
    font-size: 0.95rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .footer-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 18px;
    }

    .footer-logo {
        max-height: 44px;
    }

    .footer-copy {
        font-size: 0.85rem;
        letter-spacing: 0.14em;
    }
}