:root {
  --ink: #17131f;
  --white: #ffffff;
  --cream: #fff4df;
  --soft-pink: #ffd6ea;
  --purple: #4b1f78;
  --deep-purple: #2a123f;
  --teal: #0d5965;
  --rose: #9d2f63;
  --navy: #172c47;
  --gold: #b06b00;
  --green: #27624a;
  --muted: #5e5868;
  --border: rgba(255,255,255,0.18);
  --shadow: 0 18px 45px rgba(20,12,35,0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.5;
  font-size: 15px;
}

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

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(23,19,31,0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

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

.brand {
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.02em;
  font-size: 1rem;
}

.nav-links {
  display: flex;
  gap: 0.9rem;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.88rem;
  opacity: 0.9;
}

.nav-links a:hover {
  opacity: 1;
  text-decoration: underline;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
}

/* LAYOUT */

section {
  padding: 2rem 1.25rem;
  scroll-margin-top: 72px;
}

.section-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.narrow {
  max-width: 780px;
}

.center {
  text-align: center;
}

/* BACKGROUNDS */

.section-dark {
  background:
    radial-gradient(
      circle at top left,
      rgba(255,111,181,0.20),
      transparent 32%
    ),
    linear-gradient(
      135deg,
      var(--deep-purple),
      var(--ink)
    );
  color: var(--white);
}

.section-light {
  background: var(--white);
  color: var(--ink);
}

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

/* HERO */

.hero {
  padding-top: 4rem;
  padding-bottom: 3rem;
}

.hero-content {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  margin: 0 0 0.45rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 800;
  color: #ffd6ea;
}

.dark-text {
  color: #8b1e3f;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.1;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  max-width: 700px;
  margin-bottom: 0.75rem;
}

h2 {
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  margin-bottom: 0.55rem;
}

h3 {
  font-size: 0.92rem;
  margin-bottom: 0.28rem;
}

.hero-copy {
  max-width: 620px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.86);
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

/* BUTTONS */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 0.88rem;
}

.button.primary {
  background: var(--soft-pink);
  color: var(--deep-purple);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}

/* HERO IMAGE */

.hero-image-card {
  background:
    linear-gradient(
      145deg,
      #8b1e3f,
      #5c1028
    );
  border: 3px solid #ffb3c8;
  border-radius: 28px;
  padding: 1rem;
  box-shadow:
    0 20px 50px rgba(0,0,0,0.40),
    0 0 18px rgba(139,30,63,0.35);
  position: relative;
}

.mascot-background {
  background:
    radial-gradient(
      circle at top,
      #8ff5ff 0%,
      #34c6d3 38%,
      #0d3b66 100%
    );
  border-radius: 22px;
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 360px;
  position: relative;
  overflow: hidden;
}

.mascot-background::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  top: -40px;
  right: -40px;
}

.mascot-background::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  background: rgba(0,255,255,0.12);
  border-radius: 50%;
  bottom: -20px;
  left: -20px;
}

.mascot-background img {
  position: relative;
  z-index: 2;
  max-width: 100%;
  max-height: 300px;
  object-fit: contain;
  filter: drop-shadow(0 12px 22px rgba(0,0,0,0.28));
}

/* INTRO */

.intro p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* SERVICES SECTION TITLE FIX */

.services h2 {
  color: #1a1028;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 0.2rem;
}

.services .eyebrow {
  color: #8b1e3f;
  font-weight: 900;
  letter-spacing: 0.16em;
}

/* SPLIT */

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.5rem;
  align-items: start;
}

.split p {
  color: rgba(255,255,255,0.86);
  font-size: 0.92rem;
}

/* CARDS */

.card-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 0.65rem;
  margin-top: 0.9rem;
}

.card {
  border-radius: 18px;
  padding: 0.8rem 0.9rem;
  color: var(--white);
  box-shadow: var(--shadow);
  min-height: auto;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(0,0,0,0.22);
}

.card ul {
  padding-left: 1rem;
  margin-bottom: 0;
  margin-top: 0.4rem;
}

.card li {
  margin-bottom: 0.18rem;
  font-size: 0.84rem;
  line-height: 1.3;
}

.card.purple {
  background: var(--purple);
}

.card.teal {
  background: var(--teal);
}

.card.rose {
  background: var(--rose);
}

.card.navy {
  background: var(--navy);
}

.card.gold {
  background: var(--gold);
}

.card.green {
  background: var(--green);
}

/* TAGS */

.tag-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
  margin-top: 0.8rem;
}

.tag-grid span {
  background: #f0e5ff;
  color: var(--deep-purple);
  border: 1px solid #dbc4ff;
  border-radius: 999px;
  padding: 0.34rem 0.58rem;
  font-weight: 700;
  font-size: 0.78rem;
}

/* STRENGTHS */

.strength-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 0.8rem;
  margin-top: 1rem;
}

.strength-grid div {
  background: var(--white);
  border-left: 6px solid var(--rose);
  border-radius: 14px;
  padding: 0.85rem;
  box-shadow: 0 10px 24px rgba(20,12,35,0.08);
  font-weight: 700;
  font-size: 0.86rem;
}

/* CONTACT */

.contact p {
  color: rgba(255,255,255,0.86);
  font-size: 0.92rem;
}

.contact-form {
  margin: 1.5rem auto 0;
  display: grid;
  gap: 0.8rem;
  max-width: 620px;
  text-align: left;
}

.contact-form label {
  display: grid;
  gap: 0.3rem;
  font-weight: 700;
  color: var(--white);
  font-size: 0.9rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  padding: 0.7rem;
  border-radius: 12px;
  font: inherit;
}

.contact-form select option {
  color: var(--ink);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(255,214,234,0.45);
}

/* FOOTER */

.footer {
  background: #0d0a12;
  color: rgba(255,255,255,0.76);
  text-align: center;
  padding: 1rem;
  font-size: 0.82rem;
}

/* RESPONSIVE */

@media (max-width: 900px) {

  .hero-content,
  .split {
    grid-template-columns: 1fr;
  }

  .card-grid,
  .strength-grid {
    grid-template-columns: repeat(2,1fr);
  }

  .hero-image-card {
    max-width: 360px;
    margin: 0 auto;
  }
}

@media (max-width: 680px) {

  section {
    padding: 1.8rem 1rem;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 58px;
    left: 0;
    right: 0;
    background: var(--ink);
    padding: 1rem;
    flex-direction: column;
  }

  .nav-links.open {
    display: flex;
  }

  .card-grid,
  .strength-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3rem;
  }

  h1 {
    font-size: 1.9rem;
  }

  .hero-content {
    gap: 1.5rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .mascot-background {
    min-height: 280px;
  }

  .mascot-background img {
    max-height: 240px;
  }

  .hero-image-card {
    margin: 0 auto;
    width: 100%;
    max-width: 320px;
  }

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

  .nav-links a {
    padding: 0.5rem 0;
  }
}