/* ------- Tokens ------- */
:root {
  --cream:    #FAF3DC;
  --cream-2:  #FBEAC4;
  --card:     #FFFBF0;
  --ink:      #2B2B2B;
  --ink-soft: #4A4A4A;
  --muted:    #8A7F6B;
  --line:     #EBDFC4;

  /* Brand palette sampled from the Play Lab logo */
  --orange:   #E8642A;   /* primary accent — the "ABA" / "fun" orange */
  --orange-d: #C44E22;   /* deep orange for text / hovers */
  --gold:     #F4B63E;   /* secondary accent (yellow) */
  --gold-d:   #CF8B1E;
  --blue:     #4FA3C7;   /* playful accent */
  --green:    #8AA85F;   /* playful accent */

  /* soft tints for icon chips / cards */
  --orange-soft: #FCE2D2;
  --gold-soft:   #FBEBC4;
  --blue-soft:   #D6ECF4;
  --green-soft:  #E2EBD2;

  /* legacy aliases (kept so nothing breaks) */
  --yellow:   var(--gold);
  --yellow-d: var(--gold-d);

  --display: 'Fraunces', Georgia, serif;
  --body:    'Nunito', system-ui, -apple-system, sans-serif;

  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-xl: 40px;
  --r-pill: 999px;

  --shadow-sm: 0 2px 0 rgba(0,0,0,0.06);
  --shadow-md: 0 10px 30px rgba(120, 60, 0, 0.10);
}

/* ------- Reset / Base ------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 0 0 0.4em;
  color: var(--ink);
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.5rem); line-height: 1.05; font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); line-height: 1.15; }
h3 { font-size: 1.3rem; line-height: 1.3; }
h4 { font-size: 1.05rem; line-height: 1.3; font-weight: 600; }
em { font-style: italic; color: var(--orange-d); font-weight: 500; }
p { margin: 0 0 1em; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.eyebrow {
  font-family: var(--body);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--orange-d);
  margin-bottom: 1.2em;
}
.eyebrow-center { text-align: center; }
.h2-center { text-align: center; margin-bottom: 2.5rem; }
.lede {
  font-size: 1.2rem;
  color: var(--ink-soft);
  max-width: 640px;
  line-height: 1.55;
}

/* ------- Buttons ------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  padding: 14px 24px;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: #fff;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 0 var(--gold); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--cream); }
.btn-pill {
  background: var(--gold);
  color: var(--ink);
  padding: 10px 20px;
  font-size: 0.9rem;
}
.btn-pill:hover { transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.btn-lg { padding: 18px 32px; font-size: 1.05rem; }
.btn-block { display: flex; justify-content: center; width: 100%; }

.link-arrow {
  font-weight: 700;
  color: var(--ink);
  border-bottom: 2px solid var(--orange);
  padding-bottom: 2px;
  transition: color 0.15s ease;
}
.link-arrow:hover { color: var(--orange-d); }

/* ------- Nav ------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 246, 228, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav::after {
  content: "";
  display: block;
  height: 4px;
  background: linear-gradient(90deg,
    var(--orange) 0 25%, var(--gold) 25% 50%,
    var(--green) 50% 75%, var(--blue) 75% 100%);
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 12px 28px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink);
}
.logo em { color: var(--orange-d); font-style: italic; font-weight: 500; }
.logo-mark { display: inline-block; width: 46px; height: 46px; }
.logo-mark img, .logo-mark svg { width: 100%; height: 100%; object-fit: contain; }

.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
  font-weight: 600;
  font-size: 0.95rem;
}
.nav-links a {
  position: relative;
  padding: 4px 0;
  color: var(--ink-soft);
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--ink); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
}

/* ------- Hero ------- */
.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 32%, rgba(239,174,34,0.38) 0%, transparent 36%),
    radial-gradient(circle at 4% 74%, rgba(79,163,199,0.24) 0%, transparent 30%);
}
.hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 2;
}
.hero h1 { max-width: 13ch; }
.hero .lede { margin-top: 1.2em; }
.hero-cta {
  margin-top: 2rem;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-shapes { position: absolute; inset: 0; pointer-events: none; }
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.7;
}
.shape-1 { top: 50px; right: 6%; width: 220px; height: 220px; background: var(--gold); animation: float 8s ease-in-out infinite; }
.shape-2 { top: 220px; right: 22%; width: 90px; height: 90px; background: var(--green); animation: float 6s ease-in-out infinite 1s; }
.shape-3 { bottom: 60px; right: 14%; width: 130px; height: 130px; background: var(--blue); animation: float 9s ease-in-out infinite 0.5s; }
.shape-4 { top: 120px; right: 38%; width: 40px; height: 40px; background: var(--orange); animation: float 7s ease-in-out infinite 1.5s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-18px); }
}

/* hero with logo image alongside copy */
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}
.hero-logo {
  justify-self: center;
  width: min(420px, 90%);
  filter: drop-shadow(0 14px 28px rgba(120,60,0,0.16));
  animation: float 9s ease-in-out infinite;
}

/* ------- Pillars (3 cards) ------- */
.pillars {
  padding: 40px 0 80px;
}
.pillars .wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pillar {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pillar:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.pillar-icon {
  width: 56px; height: 56px;
  border-radius: var(--r-md);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.pillar-icon svg { width: 28px; height: 28px; }
.pillar h3 { font-family: var(--display); font-size: 1.35rem; }
.pillar p { color: var(--ink-soft); margin: 0; }

/* ------- Story ------- */
.story {
  background: var(--cream-2);
  padding: 100px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.story-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.img-frame {
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 3px solid var(--ink);
  box-shadow: 8px 8px 0 var(--gold);
  background: #fff;
}
.img-frame-1 { transform: rotate(-2deg); }
.img-frame-2 { transform: rotate(2deg); box-shadow: -8px 8px 0 var(--green); }
.img-frame svg { display: block; width: 100%; height: auto; }

.story-copy h2 { max-width: 14ch; }
.check-list {
  list-style: none;
  padding: 0;
  margin: 1.5em 0;
}
.check-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 0.8em;
  color: var(--ink-soft);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--orange);
}
.check-list li::after {
  content: "";
  position: absolute;
  left: 5px; top: 12px;
  width: 8px; height: 4px;
  border-left: 2.5px solid #fff;
  border-bottom: 2.5px solid #fff;
  transform: rotate(-45deg);
}

/* ------- Quote band ------- */
.quote-band {
  padding: 90px 0;
  text-align: center;
}
.quote-band .wrap { max-width: 780px; }
.quote-mark { width: 56px; height: 56px; margin: 0 auto 16px; }
.quote-band p {
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.35;
  color: var(--ink);
}
.quote-attr {
  font-family: var(--body) !important;
  font-style: normal !important;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  color: var(--muted) !important;
  margin-top: 1em;
}

/* ------- CTA Band ------- */
.cta-band {
  padding: 80px 0;
  background: var(--ink);
  color: var(--cream);
}
.cta-band h2 { color: var(--cream); }
.cta-band p { color: rgba(255, 248, 236, 0.75); margin: 0; }
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-band .btn-primary {
  background: var(--gold);
  color: var(--ink);
}
.cta-band .btn-primary:hover { box-shadow: 0 6px 0 var(--orange); }

/* ------- Footer ------- */
.footer {
  background: var(--cream-2);
  padding: 60px 0 24px;
  border-top: 4px solid transparent;
  border-image: linear-gradient(90deg, var(--orange), var(--gold), var(--green), var(--blue)) 1;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-brand .logo-mark { width: 64px; height: 64px; }
.footer-brand .logo-text {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 700;
  display: block;
  margin-top: 10px;
}
.footer-brand .logo-text em { color: var(--orange-d); font-style: italic; font-weight: 500; }
.footer-tag {
  margin-top: 8px;
  color: var(--muted);
  font-style: italic;
}
.footer-col h4 {
  font-family: var(--body);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 14px;
}
.footer-col a,
.footer-col p {
  display: block;
  color: var(--ink-soft);
  margin-bottom: 8px;
  font-size: 0.95rem;
}
.footer-col a:hover { color: var(--orange-d); }
.social-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; }
.social-link svg { width: 18px; height: 18px; }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 28px;
  padding-right: 28px;
}

/* ------- Page hero (About/Services/Contact) ------- */
.page-hero {
  padding: 70px 0 50px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 88% 14%, rgba(235,97,36,0.28) 0%, transparent 28%),
    radial-gradient(circle at 12% 82%, rgba(127,178,79,0.42) 0%, transparent 28%),
    radial-gradient(circle at 60% 98%, rgba(79,163,199,0.30) 0%, transparent 26%),
    var(--cream);
}
.page-hero h1 { max-width: 14ch; margin-bottom: 0.3em; }
.page-hero .lede { margin-top: 1em; }

/* ------- About / Bio ------- */
.bio { padding: 90px 0; }
.bio-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: start;
}
.bio-portrait { position: sticky; top: 100px; }
.bio-portrait .img-frame { box-shadow: -8px 8px 0 var(--blue); }
.bio-photo { width: 100%; height: auto; display: block; }

/* compact, better-formatted credentials */
.credentials {
  margin-top: 22px;
  padding: 16px 20px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  border-left: 5px solid var(--orange);
}
.cred-name {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 2px;
}
.cred-role {
  margin: 0 0 10px;
  color: var(--orange-d);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.cred-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.cred-tags span {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  background: var(--gold-soft);
  color: var(--ink);
}
.bio-copy h3 {
  margin-top: 2.5em;
  font-size: 1.5rem;
}
.values { margin-top: 1.5em; }
.value {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.value:last-child { border-bottom: 0; }
.value-num {
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--orange);
  font-style: italic;
}
.value h4 { margin-bottom: 4px; font-family: var(--display); font-size: 1.2rem; }
.value p { margin: 0; color: var(--ink-soft); }

/* ------- Services ------- */
.services {
  padding: 80px 0 60px;
  display: block;
}
.services .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.svc-card {
  position: relative;
  padding: 40px 36px 36px;
  border-radius: var(--r-lg);
  border: 2px solid var(--ink);
  background: var(--card);
}
.svc-card:nth-child(odd) { transform: translateY(0); }
/* .svc-card:nth-child(even) { transform: translateY(28px); } */
.svc-yellow { background: #FBEFC6; }
.svc-green  { background: #E4F0D6; }
.svc-blue   { background: #D7ECF4; }
.svc-orange { background: #FBDFCB; }
.svc-num {
  position: absolute;
  top: 28px; right: 28px;
  font-family: var(--display);
  font-size: 2rem;
  font-style: italic;
  font-weight: 700;
  color: var(--ink);
  opacity: 0.18;
}
.svc-icon { width: 60px; height: 60px; margin-bottom: 20px; }
.svc-icon svg { width: 100%; height: 100%; }
.svc-card h2 { font-size: 1.75rem; margin-bottom: 0.3em; }
.svc-lede { color: var(--ink-soft); font-size: 1.02rem; }
.svc-list {
  list-style: none;
  padding: 0;
  margin: 1.2em 0 0;
}
.svc-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 0.6em;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
/* check-mark bullets */
.svc-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 3px;
  width: 17px; height: 17px;
  border-radius: 50%;
  background: var(--orange);
}
.svc-list li::after {
  content: "";
  position: absolute;
  left: 5px; top: 7px;
  width: 7px; height: 4px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}
.svc-green  .svc-list li::before { background: var(--green); }
.svc-blue   .svc-list li::before { background: var(--blue); }
.svc-yellow .svc-list li::before { background: var(--gold-d); }

/* full-width feature card (e.g. BCBA supervision — different audience) */
.svc-feature {
  grid-column: 1 / -1;
  transform: none !important;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: center;
  background: var(--ink);
  border-color: var(--ink);
  color: var(--cream);
}
.svc-feature h2,
.svc-feature .svc-tag { color: var(--cream); }
.svc-feature .svc-lede { color: rgba(255,248,236,0.8); }
.svc-feature .svc-num { color: var(--gold); opacity: 0.5; }
.svc-tag {
  display: inline-block;
  font-family: var(--body);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.svc-feature .svc-list li { color: rgba(255,248,236,0.82); }
.svc-feature .svc-list li::before { background: var(--gold); }
.svc-feature .svc-list li::after { border-color: var(--ink); }
.svc-feature .svc-icon svg circle { fill: var(--gold); }

/* Subtle lift on hover — matches the home-page pillars */
.svc-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
/* the feature card resets transform with !important, so override it on hover */
.svc-feature:hover {
  transform: translateY(-6px) !important;
}

/* ------- Process steps ------- */
.process {
  padding: 90px 0;
  background: #E6F1F4;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.step {
  text-align: center;
  padding: 0 12px;
}
.step-dot {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gold);
  border: 2.5px solid var(--ink);
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.3rem;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  color: var(--ink);
}
.step h4 { font-family: var(--display); font-size: 1.2rem; margin-bottom: 6px; }
.step p { color: var(--ink-soft); font-size: 0.95rem; margin: 0; }

/* ------- Contact ------- */
.contact-section { padding: 80px 0 100px; }
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
}
.contact-illus {
  margin: 0 auto 28px;
  width: min(300px, 80%);
  filter: drop-shadow(0 12px 24px rgba(120,60,0,0.15));
  animation: float 9s ease-in-out infinite;
}
.contact-info h2 { font-size: 1.8rem; margin-bottom: 1.2em; }
.contact-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  margin-bottom: 24px;
  align-items: start;
}
.ci-icon {
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  display: grid;
  place-items: center;
}
.ci-icon svg { width: 22px; height: 22px; }
.contact-item h4 { margin: 4px 0 2px; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); font-family: var(--body); font-weight: 700; }
.contact-item p { margin: 0; font-size: 1.1rem; font-weight: 600; color: var(--ink); }
.contact-item a:hover { color: var(--orange-d); }
.hours {
  margin-top: 32px;
  padding: 20px 24px;
  background: var(--cream-2);
  border-radius: var(--r-md);
  border-left: 4px solid var(--orange);
}
.hours h4 { font-family: var(--display); font-size: 1.1rem; margin-bottom: 8px; }
.hours p { margin: 0 0 4px; color: var(--ink-soft); }

.contact-form-wrap {
  background: var(--card);
  border: 2px solid var(--ink);
  border-radius: var(--r-lg);
  padding: 40px;
  box-shadow: 10px 10px 0 var(--orange);
}
.contact-form h2 { font-size: 1.6rem; margin-bottom: 1em; }
.contact-form label {
  display: block;
  margin-bottom: 16px;
}
.contact-form label > span {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--ink);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  font-family: var(--body);
  font-size: 1rem;
  background: var(--cream);
  color: var(--ink);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: #fff;
}
.contact-form textarea { resize: vertical; }

/* services-interest checkboxes */
.svc-interest { margin-bottom: 16px; }
.svc-interest > span {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ink);
}
.chip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.chip {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--cream);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.chip input { width: auto; accent-color: var(--orange); margin: 0; }
.chip:hover { border-color: var(--orange); }
.chip:has(input:checked) { border-color: var(--orange); background: var(--orange-soft); }
.form-note {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 12px 0 18px;
}

/* ------- Responsive ------- */
@media (max-width: 900px) {
  .nav-inner { gap: 16px; flex-wrap: wrap; }
  .nav-links { gap: 18px; order: 3; width: 100%; justify-content: center; padding-top: 8px; border-top: 1px solid var(--line); margin-top: 8px; }
  .nav-inner .btn-pill { margin-left: auto; }

  .hero-grid { grid-template-columns: 1fr; gap: 24px; }
  .hero-logo { grid-row: 1; width: min(300px, 70%); margin-bottom: 8px; }
  .pillars .wrap { grid-template-columns: 1fr; }
  .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .bio-grid { grid-template-columns: 1fr; gap: 40px; }
  .bio-portrait { position: static; }
  .services .wrap { grid-template-columns: 1fr; }
  .svc-card:nth-child(even) { transform: none; }
  .svc-feature { grid-template-columns: 1fr; gap: 24px; }
  .steps { grid-template-columns: 1fr 1fr; gap: 32px 16px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .chip-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .cta-inner { flex-direction: column; align-items: flex-start; }

  .shape-1 { width: 140px; height: 140px; }
  .shape-2 { width: 60px; height: 60px; }
  .shape-3 { width: 90px; height: 90px; }
}

@media (max-width: 540px) {
  .steps { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 24px; box-shadow: 6px 6px 0 var(--orange); }
  .hero { padding: 50px 0 70px; }
  .nav-links { gap: 14px; font-size: 0.88rem; }
}