/* ================================================================
   Colo by the Ewe — Main Stylesheet
   BAA-SICALLY BETTER COLOCATION
   ================================================================ */

:root {
  --purple:        #7B5BB5;
  --purple-dark:   #5B3F90;
  --purple-darker: #3A2466;
  --purple-light:  #EDE8F7;
  --coral:         #E8756A;
  --coral-dark:    #C85C52;
  --cream:         #FBF8F3;
  --charcoal:      #1E1B2E;
  --grey-mid:      #6B6880;
  --grey-light:    #F4F2FA;
  --white:         #FFFFFF;
  --shadow-sm:     0 4px 16px rgba(123, 91, 181, 0.12);
  --shadow:        0 8px 32px rgba(123, 91, 181, 0.18);
  --shadow-lg:     0 16px 48px rgba(123, 91, 181, 0.25);
  --shadow-dark:   0 16px 48px rgba(0, 0, 0, 0.25);
  --radius:        20px;
  --radius-sm:     12px;
  --radius-xs:     8px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--charcoal);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
}

/* ================================================================
   NAVIGATION
   ================================================================ */

#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(123, 91, 181, 0.1);
  padding: 0 2.5rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: box-shadow 0.3s;
}

#nav.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.nav-logo {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  font-weight: 900;
  user-select: none;
}

.nav-logo .logo-colo {
  font-size: 1.15rem;
  color: var(--charcoal);
  letter-spacing: -0.02em;
}

.nav-logo .logo-by {
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--grey-mid);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-logo .logo-ewe {
  font-size: 1.15rem;
  color: var(--purple);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--charcoal);
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--purple);
}

.nav-links .nav-cta {
  background: var(--purple);
  color: white;
  padding: 0.55rem 1.4rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: background 0.2s, transform 0.2s;
}

.nav-links .nav-cta:hover {
  background: var(--purple-dark);
  color: white;
  transform: translateY(-1px);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ================================================================
   HERO
   ================================================================ */

#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--charcoal) 0%, #2A1F4A 45%, var(--purple-darker) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 2.5rem 4rem;
}

/* Decorative sheep background */
#hero::before {
  content: '🐑';
  font-size: 28rem;
  position: absolute;
  bottom: -6rem;
  right: -4rem;
  opacity: 0.035;
  user-select: none;
  pointer-events: none;
  line-height: 1;
}

#hero::after {
  content: '';
  position: absolute;
  top: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--purple) 0%, transparent 65%);
  opacity: 0.15;
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #B89AE8;
  margin-bottom: 1.25rem;
}

.hero-text h1 {
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 900;
  color: white;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-text h1 .highlight-ewe {
  color: #C4A5F5;
}

.hero-text h1 .highlight-coral {
  color: var(--coral);
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 2.5rem;
  line-height: 1.75;
  max-width: 500px;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--coral);
  color: white;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary:hover {
  background: var(--coral-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(232, 117, 106, 0.35);
}

.btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.9);
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.25s;
  display: inline-block;
}

.btn-outline:hover {
  border-color: white;
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
}

/* Hero mascot — white-bg images get a card treatment on dark bg */
.hero-mascot {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-mascot-card {
  background: white;
  border-radius: 28px;
  padding: 1.5rem 1.5rem 0.5rem;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255,255,255,0.1);
  max-width: 400px;
  width: 100%;
  text-align: center;
}

.hero-mascot-card img {
  width: 100%;
}

.hero-mascot-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--purple);
  padding: 0.5rem 0 0.75rem;
}

/* ================================================================
   TAGLINE STRIP
   ================================================================ */

.tagline-strip {
  background: var(--purple);
  padding: 0.9rem 0;
  overflow: hidden;
}

.tagline-track {
  display: flex;
  white-space: nowrap;
  animation: scroll-left 28s linear infinite;
  width: max-content;
}

.tagline-strip:hover .tagline-track {
  animation-play-state: paused;
}

.tagline-track span {
  display: inline-block;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0 1.5rem;
}

.tagline-track span.sep {
  color: rgba(255, 255, 255, 0.3);
  padding: 0;
}

@keyframes scroll-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ================================================================
   SECTION SHARED
   ================================================================ */

section {
  padding: 6rem 2.5rem;
}

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

.section-label {
  display: inline-block;
  background: var(--purple-light);
  color: var(--purple);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.section-label.light {
  background: rgba(255, 255, 255, 0.12);
  color: #C4A5F5;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.section-title span {
  color: var(--purple);
}

.section-sub {
  font-size: 1.05rem;
  color: var(--grey-mid);
  line-height: 1.75;
  max-width: 600px;
}

.section-center {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}

.section-center .section-sub {
  margin: 0 auto;
}

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

#about {
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-mascot {
  position: relative;
}

.about-mascot img {
  width: 100%;
  max-width: 420px;
  filter: drop-shadow(0 20px 40px rgba(123, 91, 181, 0.15));
}

.about-mascot-badge {
  position: absolute;
  top: 12px;
  right: 8px;
  background: var(--purple);
  color: white;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.6rem 0.8rem;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  box-shadow: var(--shadow);
}

.about-text .section-sub + .section-sub {
  margin-top: 1rem;
}

.about-text .section-sub strong {
  color: var(--charcoal);
  font-weight: 700;
}

.about-stats {
  display: flex;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.stat-card {
  background: white;
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-sm);
  text-align: center;
  flex: 1;
}

.stat-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--purple);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--grey-mid);
  font-weight: 500;
  margin-top: 0.3rem;
}

/* ================================================================
   SERVICES
   ================================================================ */

#services {
  background: var(--white);
}

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

.service-card {
  background: var(--grey-light);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--coral));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.service-card:hover {
  background: white;
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-icon {
  font-size: 2.25rem;
  margin-bottom: 0.75rem;
  display: block;
}

.service-pun {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--purple);
  margin-bottom: 0.5rem;
}

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.875rem;
  color: var(--grey-mid);
  line-height: 1.65;
}

/* ================================================================
   WHY US
   ================================================================ */

#why {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

#why::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--purple-dark) 0%, transparent 70%);
  opacity: 0.4;
  pointer-events: none;
}

#why::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--purple-darker) 0%, transparent 70%);
  opacity: 0.5;
  pointer-events: none;
}

.why-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.why-content .section-title {
  color: white;
}

.why-content .section-sub {
  color: rgba(255, 255, 255, 0.55);
}

.why-list {
  list-style: none;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.925rem;
  line-height: 1.6;
}

.why-check {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  background: var(--purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: white;
  margin-top: 0.15rem;
  font-weight: 700;
}

.why-list li strong {
  color: white;
  font-weight: 700;
}

/* Mascot in white card on dark bg */
.why-mascot {
  display: flex;
  justify-content: center;
}

.why-mascot-card {
  background: white;
  border-radius: 24px;
  padding: 1rem;
  box-shadow: 0 32px 72px rgba(0, 0, 0, 0.35);
  max-width: 380px;
  width: 100%;
}

.why-mascot-card img {
  width: 100%;
  border-radius: var(--radius-sm);
}

/* ================================================================
   HOW IT WORKS
   ================================================================ */

#how {
  background: var(--cream);
}

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

.steps-grid::before {
  content: '';
  position: absolute;
  top: 50px;
  left: calc(16.67% + 25px);
  right: calc(16.67% + 25px);
  height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--coral));
  z-index: 0;
}

.step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 100px;
  height: 100px;
  background: white;
  border: 3px solid var(--purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.75rem;
  box-shadow: var(--shadow);
  transition: all 0.3s;
}

.step:hover .step-num {
  background: var(--purple);
  transform: scale(1.08);
}

.step-num span {
  font-size: 2rem;
  font-weight: 900;
  color: var(--purple);
  transition: color 0.3s;
}

.step:hover .step-num span {
  color: white;
}

.step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--charcoal);
}

.step p {
  font-size: 0.875rem;
  color: var(--grey-mid);
  line-height: 1.65;
}

/* ================================================================
   LOCATIONS
   ================================================================ */

#locations {
  background: var(--white);
}

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

.location-card {
  background: var(--grey-light);
  border-radius: var(--radius-sm);
  padding: 1.75rem 1rem;
  text-align: center;
  transition: all 0.3s;
  cursor: default;
}

.location-card:hover {
  background: var(--purple-light);
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.location-flag {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  display: block;
}

.location-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.location-card p {
  font-size: 0.75rem;
  color: var(--grey-mid);
  margin-bottom: 0.6rem;
}

.loc-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.2rem 0.65rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.loc-live {
  background: #E6F4EA;
  color: #1E7E34;
}

.loc-soon {
  background: #FFF3E0;
  color: #C45600;
}

/* ================================================================
   CONTACT / QUOTE
   ================================================================ */

#contact {
  background: linear-gradient(135deg, var(--purple-darker) 0%, #2D1B60 60%, var(--purple-dark) 100%);
  position: relative;
  overflow: hidden;
}

#contact::before {
  content: '🐑';
  font-size: 30rem;
  position: absolute;
  bottom: -8rem;
  right: -6rem;
  opacity: 0.03;
  pointer-events: none;
  line-height: 1;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.contact-text .section-title {
  color: white;
}

.contact-text .section-sub {
  color: rgba(255, 255, 255, 0.6);
}

.contact-perks {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.contact-perk {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.925rem;
}

.perk-icon {
  font-size: 1.15rem;
  flex-shrink: 0;
}

/* Form */
.quote-form {
  background: white;
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.25);
}

.quote-form h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 1.75rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #E8E4F2;
  border-radius: var(--radius-xs);
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
  color: var(--charcoal);
  background: white;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(123, 91, 181, 0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* Checkboxes */
.checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-top: 0.25rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--charcoal);
  cursor: pointer;
  user-select: none;
}

.checkbox-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--purple);
  flex-shrink: 0;
  border: 2px solid #E8E4F2;
  cursor: pointer;
}

/* Included-as-standard callout below checkbox grid */
.included-standard {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.6rem;
  flex-wrap: wrap;
}

.included-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--grey-mid);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  flex-shrink: 0;
}

.included-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--charcoal);
}

.included-check {
  width: 18px;
  height: 18px;
  background: #E6F4EA;
  color: #1E7E34;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  flex-shrink: 0;
}

.form-submit {
  width: 100%;
  background: var(--purple);
  color: white;
  border: none;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s;
  margin-top: 0.5rem;
  letter-spacing: 0.01em;
}

.form-submit:hover {
  background: var(--purple-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(123, 91, 181, 0.35);
}

/* Form success state */
.form-success {
  text-align: center;
  padding: 3rem 2rem;
}

.form-success .success-emoji {
  font-size: 4rem;
  margin-bottom: 1rem;
  display: block;
  animation: bounce-in 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.form-success h3 {
  margin-bottom: 0.75rem;
}

.form-success p {
  color: var(--grey-mid);
  font-size: 0.95rem;
}

@keyframes bounce-in {
  0% { transform: scale(0.3); opacity: 0; }
  60% { transform: scale(1.15); }
  80% { transform: scale(0.9); }
  100% { transform: scale(1); opacity: 1; }
}

/* ================================================================
   FOOTER
   ================================================================ */

footer {
  background: var(--charcoal);
  padding: 2.5rem 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-logo {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  font-weight: 900;
}

.footer-logo .logo-colo {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.footer-logo .logo-by {
  font-size: 0.55rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-logo .logo-ewe {
  font-size: 1rem;
  color: #C4A5F5;
}

.footer-copy {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.7;
}

.footer-copy a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-copy a:hover {
  color: white;
}

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.2);
  font-style: italic;
  font-weight: 600;
  cursor: default;
  transition: color 0.3s;
}

.footer-tagline:hover {
  color: rgba(196, 165, 245, 0.6);
}

/* ================================================================
   SCROLL-IN ANIMATIONS
   ================================================================ */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ================================================================
   RESPONSIVE
   ================================================================ */

@media (max-width: 1100px) {
  .locations-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 960px) {
  .hero-inner,
  .about-grid,
  .why-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-mascot {
    order: -1;
  }

  .hero-mascot-card {
    max-width: 300px;
    margin: 0 auto;
  }

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

  .steps-grid::before {
    display: none;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .about-stats {
    gap: 0.75rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid rgba(123,91,181,0.1);
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 1rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }

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

  .nav-hamburger {
    display: flex;
  }
}

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

  #nav {
    padding: 0 1.25rem;
  }

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

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

  .hero-text h1 {
    font-size: 2.4rem;
  }

  .hero-btns {
    flex-direction: column;
  }

  .hero-btns a {
    text-align: center;
  }

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

  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}
