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

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* Header & Navigation */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.header__logo:hover {
  opacity: 0.8;
}

.header__logo-img {
  height: 40px;
  width: auto;
  display: block;
}

.header__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
  border-radius: 4px;
  transition: background 0.2s ease;
}

.header__toggle:hover {
  background: rgba(0, 0, 0, 0.04);
}

.header__toggle-line {
  width: 22px;
  height: 2px;
  background: #1a1a1a;
  transition: all 0.3s ease;
  border-radius: 1px;
}

.header__nav {
  display: flex;
}

.header__menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2.5rem;
  align-items: center;
}

.header__link {
  font-size: 0.95rem;
  font-weight: 500;
  color: #444;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
  position: relative;
}

.header__link:hover {
  color: #1a1a1a;
}

.header__link::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: #c41230;
  transition: width 0.25s ease;
}

.header__link:hover::after {
  width: 100%;
}

/* Contact link as CTA in nav */
.header__link[href*="contact"] {
  color: #fff;
  background: #c41230;
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  margin-left: 0.5rem;
}

.header__link[href*="contact"]::after {
  display: none;
}

.header__link[href*="contact"]:hover {
  background: #a00f28;
  color: #fff;
}

@media (max-width: 768px) {
  .header__toggle {
    display: flex;
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #fff;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    padding: 5rem 2rem 2rem;
    overflow-y: auto;
  }

  .header__nav.active {
    right: 0;
  }

  .header__overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .header__overlay.active {
    display: block;
    opacity: 1;
  }

  .header__menu {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }

  .header__link {
    font-size: 1.05rem;
    padding: 0.75rem 0;
    display: block;
  }

  .header__link[href*="contact"] {
    margin-left: 0;
    margin-top: 0.5rem;
    text-align: center;
  }

  .header__toggle.active .header__toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .header__toggle.active .header__toggle-line:nth-child(2) {
    opacity: 0;
  }

  .header__toggle.active .header__toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
}

.hero {
  position: relative;
  height: 80vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-image: url("./images/hero.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.5) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 2rem 2rem 2rem 4rem;
  text-align: left;
}

.hero__title {
  margin: 0 0 1rem;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero__subtitle {
  margin: 0 0 2rem;
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero__cta {
  display: inline-block;
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: #c41230;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
}

.hero__cta:hover {
  background: #a00f28;
  transform: translateY(-1px);
}

.hero__cta:focus {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

/* Intro section */
.intro {
  padding: 5rem 2rem 6rem;
  background: linear-gradient(180deg, #faf9f7 0%, #fff 100%);
}

.intro__content {
  max-width: 680px;
  margin: 0 auto;
}

.intro__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c41230;
  margin: 0 0 1.25rem;
}

.intro__lead {
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  font-weight: 400;
  line-height: 1.45;
  color: #1a1a1a;
  margin: 0 0 2rem;
  padding-left: 1.25rem;
  border-left: 3px solid #c41230;
}

.intro__body {
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.75;
  color: #444;
  margin: 0 0 2rem;
}

.intro__quote {
  margin: 2.5rem 0;
  padding: 2rem 2rem 2rem 2.25rem;
  background: #fff;
  border-left: 4px solid #c41230;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.intro__quote-text {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #333;
  margin: 0 0 1.5rem;
  font-style: normal;
}

.intro__stat {
  font-size: 0.9rem;
  font-weight: 500;
  color: #c41230;
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
}

.intro__stat-number {
  font-size: 1.5rem;
  font-weight: 400;
}

.intro__body--last {
  margin-bottom: 0;
}

/* Carousel section - How we've helped */
.carousel-section {
  padding: 4rem 0 5rem;
  background: #fff;
}

.carousel-section__title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  color: #1a1a1a;
  margin: 0 0 2.5rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 700;
  color: #1a1a1a;
}

.carousel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1200px;
  margin: 0 auto;
  height: 480px;
}

.carousel__image {
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.carousel__content {
  height: 100%;
  padding: 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  background: #faf9f7;
}

.carousel__indicators {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #c41230;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}

.carousel__indicator-sep {
  margin: 0 0.15rem;
  color: #888;
}

.carousel__text {
  flex: 1;
}

.carousel__heading {
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  font-weight: 400;
  line-height: 1.3;
  color: #1a1a1a;
  margin: 0 0 1rem;
}

.carousel__border {
  width: 48px;
  height: 3px;
  background: #c41230;
  margin-bottom: 1.25rem;
}

.carousel__description {
  font-size: 1rem;
  line-height: 1.65;
  color: #444;
  margin: 0 0 1.5rem;
}

.carousel__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: #c41230;
  text-decoration: none;
  transition: color 0.2s ease, gap 0.2s ease;
}

.carousel__link:hover {
  color: #a00f28;
  gap: 0.75rem;
}

.carousel__link-icon {
  font-size: 1.1em;
}

.carousel__arrow {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  line-height: 1;
  color: #1a1a1a;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.carousel__arrow:hover {
  background: #c41230;
  color: #fff;
  border-color: #c41230;
}

.carousel__arrow:focus {
  outline: 2px solid #c41230;
  outline-offset: 2px;
}

@media (max-width: 768px) {
  .carousel {
    grid-template-columns: 1fr;
    height: 560px;
  }

  .carousel__image {
    height: 220px;
    min-height: 220px;
  }

  .carousel__content {
    padding: 1.5rem 2rem;
    min-height: 0;
  }
}

/* Services & Capabilities */
.services {
  padding: 4rem 2rem 5rem;
  background: #fff;
}

.services__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.services__title {
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 2.5rem;
  text-align: left;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.services__item {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  padding: 1.75rem;
  border-bottom: 1px solid #e5e3e0;
  align-items: center;
  margin: 0 1rem;
}

.services__item:nth-child(3n) {
  padding-right: 0;
}

.services__num {
  font-size: 2.5rem;
  font-weight: 600;
  color: #c41230;
  margin-right: 1rem;
  flex-shrink: 0;
}

.services__label {
  font-size: 1.2rem;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .services__grid {
    grid-template-columns: 1fr;
  }

  .services__item {
    padding-right: 0;
  }

  .services__item:nth-child(3n) {
    padding-right: 0;
  }
}

/* Our approach section */
.approach {
  padding: 5rem 2rem;
  background: #fff;
}

.approach__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.approach__content {
  padding-right: 2rem;
}

.approach__title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 1.5rem;
}

.approach__lead {
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 600;
  line-height: 1.5;
  color: #1a1a1a;
  margin: 0 0 1.5rem;
}

.approach__text {
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
  margin: 0 0 1.25rem;
}

.approach__text:last-child {
  margin-bottom: 0;
}

.approach__image-wrapper {
  position: relative;
  overflow: visible;
}

.approach__image {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
}

.highlight .image-wrapper-shape {
  content: "";
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  position: absolute;
  width: calc(100% + 3rem);
  height: 90%;
  background-color: #c41230;
  top: -2.5rem;
  right: -3rem;
  z-index: 0;
}

@media (max-width: 768px) {
  .approach__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .approach__content {
    padding-right: 0;
  }

  .highlight .image-wrapper-shape {
    width: calc(100% + 2rem);
    right: -2rem;
    margin-top: -2rem;
  }
}

/* Our team section */
.team {
  padding: 5rem 2rem;
  background: #faf9f7;
}

.team__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.team__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 3rem;
}

.team__title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}

.team__view-all {
  font-size: 1rem;
  font-weight: 600;
  color: #c41230;
  text-decoration: none;
  transition: color 0.2s ease;
}

.team__view-all:hover {
  color: #a00f28;
}

.team__carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.team__grid {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  flex: 1;
  padding: 0.5rem 0;
}

.team__grid::-webkit-scrollbar {
  display: none;
}

.team__card {
  flex: 0 0 240px;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.team__card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.team__image-wrapper {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: #e5e3e0;
}

.team__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team__info {
  padding: 1.5rem;
}

.team__name {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 0.5rem;
}

.team__role {
  font-size: 0.9rem;
  font-weight: 500;
  color: #666;
  margin: 0 0 0.5rem;
}

.team__location {
  font-size: 0.875rem;
  color: #888;
  margin: 0 0 1rem;
  line-height: 1.4;
}

.team__contact {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #c41230;
  text-decoration: none;
  transition: color 0.2s ease;
}

.team__contact:hover {
  color: #a00f28;
}

.team__arrow {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  line-height: 1;
  color: #1a1a1a;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  flex-shrink: 0;
}

.team__arrow:hover {
  background: #c41230;
  color: #fff;
  border-color: #c41230;
}

.team__arrow:focus {
  outline: 2px solid #c41230;
  outline-offset: 2px;
}

.team__arrow:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.team__arrow:disabled:hover {
  background: #fff;
  color: #1a1a1a;
  border-color: #ddd;
}

@media (max-width: 768px) {
  .team__header {
    flex-direction: column;
    gap: 1rem;
  }

  .team__card {
    flex: 0 0 200px;
  }

  .team__carousel-wrapper {
    gap: 0.5rem;
  }

  .team__arrow {
    width: 36px;
    height: 36px;
    font-size: 1.25rem;
  }
}

/* Highlight banner */
.banner {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.banner__image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.35) 100%
  );
}

.banner__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 3rem 2rem;
  max-width: 640px;
}

.banner__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.75rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.banner__text {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 1.5rem;
  line-height: 1.5;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.banner__cta {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: #c41230;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
}

.banner__cta:hover {
  background: #a00f28;
  transform: translateY(-1px);
}

/* Contact form */
.contact {
  padding: 5rem 2rem;
  background: #fff;
}

.contact__inner {
  max-width: 800px;
  margin: 0 auto;
}

.contact__header {
  text-align: center;
  margin-bottom: 3rem;
}

.contact__title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 0.75rem;
}

.contact__subtitle {
  font-size: 1.1rem;
  color: #666;
  margin: 0;
  line-height: 1.6;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.contact__field {
  display: flex;
  flex-direction: column;
}

.contact__label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.contact__input,
.contact__select,
.contact__textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-family: inherit;
  color: #1a1a1a;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact__input:focus,
.contact__select:focus,
.contact__textarea:focus {
  outline: none;
  border-color: #c41230;
  box-shadow: 0 0 0 3px rgba(196, 18, 48, 0.1);
}

.contact__textarea {
  resize: vertical;
  min-height: 120px;
}

.contact__select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.contact__submit {
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: #c41230;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
  align-self: flex-start;
  margin-top: 0.5rem;
}

.contact__submit:hover {
  background: #a00f28;
  transform: translateY(-1px);
}

.contact__submit:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .contact__row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact__submit {
    width: 100%;
  }
}

/* Footer */
.footer {
  background: #323F48;
  color: #fff;
  padding: 3rem 2rem 1.5rem;
  margin-top: 4rem;
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2.5rem;
  margin-bottom: 2rem;
}

.footer__section {
  display: flex;
  flex-direction: column;
}

.footer__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 1rem;
}

.footer__subtitle {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer__address,
.footer__contact,
.footer__info {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__link {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer__link:hover {
  color: #c41230;
}

.footer__info strong {
  color: #fff;
  font-weight: 600;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  text-align: center;
}

.footer__copyright {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

@media (max-width: 768px) {
  .footer {
    padding: 2.5rem 1.5rem 1.25rem;
  }

  .footer__content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer__bottom {
    text-align: left;
  }
}

/* Page hero (for about, contact, etc.) */
.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem;
  text-align: center;
  overflow: hidden;
}

.page-hero__image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.6) 100%
  );
}

.page-hero__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.page-hero__title {
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

.page-hero__subtitle {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  line-height: 1.5;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  font-weight: 400;
}

/* Page content sections */
.page-content {
  padding: 4rem 2rem;
  background: #fff;
}

.page-content__inner {
  max-width: 800px;
  margin: 0 auto;
}

.page-content__section {
  margin-bottom: 3rem;
}

.page-content__section:last-of-type {
  margin-bottom: 0;
}

.page-content__heading {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 1.25rem;
}

.page-content__section p {
  font-size: 1rem;
  line-height: 1.75;
  color: #444;
  margin: 0 0 1.25rem;
}

.page-content__section p:last-child {
  margin-bottom: 0;
}

.page-content__list {
  margin: 1.25rem 0;
  padding-left: 1.5rem;
}

.page-content__list li {
  font-size: 1rem;
  line-height: 1.75;
  color: #444;
  margin-bottom: 0.75rem;
}

.page-content__list li:last-child {
  margin-bottom: 0;
}

.page-content__meta {
  font-size: 0.9rem;
  color: #888;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.page-content__contact-info {
  background: #faf9f7;
  padding: 1.5rem;
  border-radius: 4px;
  margin-top: 1rem;
}

.page-content__link {
  color: #c41230;
  text-decoration: none;
  transition: color 0.2s ease;
}

.page-content__link:hover {
  color: #a00f28;
  text-decoration: underline;
}

.page-content__cta {
  margin-top: 4rem;
  padding: 3rem 2rem;
  background: #faf9f7;
  border-radius: 8px;
  text-align: center;
}

.page-content__button {
  display: inline-block;
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: #c41230;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
  margin-top: 1rem;
}

.page-content__button:hover {
  background: #a00f28;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .page-hero {
    padding: 4rem 1.5rem 3rem;
  }

  .page-content {
    padding: 3rem 1.5rem;
  }

  .page-content__cta {
    padding: 2rem 1.5rem;
  }
}

/* Contact page */
.contact-page {
  padding: 4rem 2rem;
  background: #fff;
}

.contact-page__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.contact-page__info {
  position: sticky;
  top: 100px;
}

.contact-page__heading {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 2rem;
}

.contact-page__details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-page__detail-item {
  padding-bottom: 2rem;
  border-bottom: 1px solid #e5e3e0;
}

.contact-page__detail-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-page__detail-title {
  font-size: 1rem;
  font-weight: 600;
  color: #c41230;
  margin: 0 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
}

.contact-page__detail-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
  margin: 0;
}

.contact-page__link {
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-page__link:hover {
  color: #c41230;
}

.contact-page__form-wrapper {
  background: #faf9f7;
  padding: 2.5rem;
  border-radius: 8px;
}

.contact-page__form-wrapper .contact__form {
  margin-top: 1.5rem;
}

@media (max-width: 968px) {
  .contact-page__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-page__info {
    position: static;
  }

  .contact-page__form-wrapper {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .contact-page {
    padding: 3rem 1.5rem;
  }

  .contact-page__form-wrapper {
    padding: 1.5rem;
  }
}
