* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #ffffff;
  color: #111111;
  line-height: 1.6;
}

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

/* HEADER / NAV */

.site-header {
  background: #000000;
  color: #ffffff;
  width: 100%;
}

.nav-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 8px 32px;
  display: flex;
  justify-content: flex-start;
	gap: 55px
}

.logo img {
  height: 165px;
  width: auto;
  display: block;
}

.footer-logo img {
  height: 70px;
  width: auto;
  display: block;
  margin: 0 auto 22px;
}

.main-nav {
  display: flex;
  gap: 34px;
  align-items: center;
}

.main-nav a {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover,
.main-nav a.active {
  color: #ff1493;
  border-bottom: 2px solid #ff1493;
}

/* HERO */

.hero {
  background: #000000;
  color: #ffffff;
  min-height: 500px;
  display: flex;
  align-items: flex-start;
}

.hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 30px 32px 90px;
  width: 100%;
}

.eyebrow {
  color: #ff1493;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  margin-bottom: 20px;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: 0.95;
  margin: 0 0 28px;
  font-weight: 800;
}

.hero-text {
  max-width: 650px;
  font-size: 1.2rem;
  color: #dddddd;
}

/* MAIN CONTENT */

.content-area {
  background: #ffffff;
  padding: 80px 32px 120px;
}

.intro-section,
.card-grid,
.split-section {
  max-width: 1180px;
  margin: 0 auto;
}

.text-block {
  max-width: 760px;
  margin-bottom: 100px;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.1;
  margin: 0 0 24px;
}

h3 {
  margin: 0 0 14px;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* CARDS */

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(180px, 240px));
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 100px;
}

.info-card {
  aspect-ratio: 1 / 1;
  border: 2px solid #111111;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: #ffffff;
  position: relative;
  overflow: hidden;
  transition: background 0.25s ease,
              color 0.25s ease,
              transform 0.25s ease;
}

.info-card:hover {
  background: #000000;
  color: #ffffff;
  transform: translateY(-6px);
}

.info-card p {
  margin: 0;
  font-size: 0.92rem;
}

/* SPLIT SECTION */

.split-section {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: center;
  padding-top: 40px;
  margin-bottom: 100px;
  border-top: 2px solid #111111;
}

.quote-box {
  background: #f2f2f2;
  border-left: 8px solid #ff1493;
  padding: 34px;
  font-size: 1.35rem;
  line-height: 1.3;
  font-weight: 700;
}

.button-link {
  display: inline-block;
  margin-top: 16px;
  color: #ff1493;
  font-weight: 700;
}

.button-link:hover {
  color: #111111;
}

/* FOOTER */

.site-footer {
  background: #000000;
  color: #ffffff;
  padding: 38px 32px;
  text-align: center;
}

.footer-logo img {
  height: 70px;
  width: auto;
  display: block;
  margin: 0 auto 22px;
}

.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
}

.footer-nav a {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-nav a:hover {
  color: #ff1493;
}

.footer-text {
  margin: 0;
  color: #aaaaaa;
  font-size: 0.8rem;
}

/* RESPONSIVE */

@media (max-width: 900px) {

  .nav-wrap {
    flex-direction: column;
    gap: 18px;
  }

  .logo img {
    height: 92px;
  }

  .main-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
  }

  .card-grid {
    grid-template-columns: repeat(2, minmax(160px, 240px));
    justify-content: center;
  }

  .split-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {

  .nav-wrap {
    padding: 18px 22px;
  }

  .logo img {
    height: 78px;
  }

  .content-area {
    padding: 52px 22px 90px;
  }

  .hero-inner {
    padding: 56px 22px 70px;
  }

  .card-grid {
    grid-template-columns: 1fr;
    justify-content: stretch;
  }

  .info-card {
    aspect-ratio: auto;
    min-height: 220px;
  }

  .text-block {
    margin-bottom: 70px;
  }

  .card-grid,
  .split-section {
    margin-bottom: 70px;
  }
}