/* ============================================================
   Sun City Child Development Center — Redesign 2026
   Orange-led brand · Montserrat headings · Nunito body
   ============================================================ */

:root {
  --orange: #F05A28;
  --orange-dark: #C64716;
  --orange-soft: #FDE9DF;
  --ink: #26282E;
  --charcoal: #3A3D45;
  --muted: #6B6F78;
  --cream: #FFF9F4;
  --sand: #FAF0E4;
  --navy: #1E3A5F;
  --navy-deep: #14273F;
  --gold: #DFA32E;
  --gold-light: #F2C866;
  --white: #FFFFFF;
  --radius: 22px;
  --radius-sm: 14px;
  --shadow: 0 10px 30px rgba(38, 40, 46, 0.10);
  --shadow-soft: 0 6px 18px rgba(38, 40, 46, 0.07);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', 'Segoe UI', sans-serif;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--cream);
}

h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Segoe UI', sans-serif;
  color: var(--ink);
  line-height: 1.15;
  font-weight: 800;
}

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

a { color: var(--orange-dark); }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 999px;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-primary { background: var(--orange-dark); color: var(--white); }
.btn-primary:hover { background: var(--orange); }
.btn-outline {
  background: transparent; color: var(--ink);
  box-shadow: inset 0 0 0 2px var(--ink);
}
.btn-gold { background: var(--gold); color: var(--navy-deep); }
.btn-gold:hover { background: var(--gold-light); }
.btn-white { background: var(--white); color: var(--orange-dark); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 249, 244, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(38, 40, 46, 0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.logo img { height: 48px; width: auto; }
.main-nav { display: flex; align-items: center; gap: 32px; }
.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  color: var(--ink);
  text-decoration: none;
}
.main-nav a:not(.btn):hover { color: var(--orange-dark); }
.main-nav a.active { color: var(--orange-dark); }
.main-nav .btn { padding: 11px 24px; font-size: .9rem; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 3px;
  background: var(--ink);
  border-radius: 2px;
  margin: 5px 0;
  transition: transform .2s ease, opacity .2s ease;
}

/* ---------- Hero ---------- */
.hero { padding: 72px 0 88px; overflow: hidden; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}
.eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange-dark);
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(2.4rem, 5.2vw, 3.9rem);
  margin-bottom: 22px;
}
.hero h1 em {
  font-style: normal;
  color: var(--orange);
}
.hero p.lead {
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 34em;
  margin-bottom: 34px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-phone {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
}
.hero-phone small { display: block; font-weight: 600; color: var(--muted); }

.hero-media { position: relative; }
.hero-media::before {
  content: "";
  position: absolute;
  inset: -26px -26px auto auto;
  width: 190px; height: 190px;
  background: radial-gradient(circle, var(--gold-light) 0 8px, transparent 9px);
  background-size: 26px 26px;
  opacity: .55;
  border-radius: 30px;
  z-index: 0;
}
.hero-media img {
  position: relative;
  z-index: 1;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3.4;
  object-fit: cover;
  width: 100%;
}

/* ---------- Badge callout ---------- */
.badge-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #E8EDF5;
  padding: 64px 0;
  position: relative;
}
.badge-band::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}
.badge-grid {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 52px;
  align-items: center;
}
.badge-art { width: 100%; max-width: 230px; margin: 0 auto; filter: drop-shadow(0 12px 28px rgba(0,0,0,.35)); }
.badge-band .eyebrow { color: var(--gold-light); }
.badge-band h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 3.4vw, 2.3rem);
  margin-bottom: 16px;
}
.badge-band h2 em { font-style: normal; color: var(--gold-light); }
.badge-band p { max-width: 56em; color: #C7D2E2; }
.badge-band p + p { margin-top: 12px; }
.badge-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  margin-top: 26px;
}
.badge-stat strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--gold-light);
}
.badge-stat span { font-size: .92rem; color: #C7D2E2; }

/* ---------- Sections ---------- */
.section { padding: 88px 0; }
.section-sand { background: var(--sand); }
.section-head { max-width: 640px; margin: 0 auto 52px; text-align: center; }
.section-head h2 { font-size: clamp(1.8rem, 3.8vw, 2.6rem); margin-bottom: 14px; }
.section-head p { color: var(--muted); font-size: 1.1rem; }

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 26px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: transform .15s ease;
}
.value-card:hover { transform: translateY(-4px); }
.value-icon {
  width: 58px; height: 58px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--orange-soft);
  display: grid;
  place-items: center;
  color: var(--orange-dark);
}
.value-card h3 { font-size: 1.08rem; font-weight: 700; }

/* Photo strip */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 56px;
}
.photo-strip img {
  border-radius: var(--radius-sm);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  width: 100%;
  box-shadow: var(--shadow-soft);
}
.photo-strip img:nth-child(even) { transform: translateY(16px); }

/* Pillars */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pillar {
  background: var(--white);
  border-radius: var(--radius);
  padding: 38px 32px;
  box-shadow: var(--shadow-soft);
  border-top: 5px solid var(--orange);
}
.pillar .num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: .85rem;
  letter-spacing: .1em;
  color: var(--orange-dark);
  display: block;
  margin-bottom: 14px;
}
.pillar h3 { font-size: 1.25rem; margin-bottom: 12px; }
.pillar p { color: var(--muted); }

/* Testimonials */
.quotes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.quote-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 30px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
}
.quote-card .stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 16px; font-size: 1.05rem; }
.quote-card blockquote { flex: 1; color: var(--charcoal); font-size: 1rem; }
.quote-card cite {
  display: block;
  margin-top: 20px;
  font-style: normal;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  color: var(--ink);
}
.quote-card cite span { display: block; font-family: 'Nunito', sans-serif; font-weight: 600; color: var(--muted); font-size: .85rem; }

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  border-radius: var(--radius);
  padding: 64px 48px;
  text-align: center;
  color: var(--white);
}
.cta-band h2 { color: var(--white); font-size: clamp(1.8rem, 3.6vw, 2.5rem); margin-bottom: 14px; }
.cta-band p { color: #FFE4D6; max-width: 40em; margin: 0 auto 30px; }
.cta-band .hero-ctas { justify-content: center; }
.cta-band .hero-phone { color: var(--white); }
.cta-band .hero-phone small { color: #FFE4D6; }

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  background: var(--sand);
  padding: 64px 0 56px;
  text-align: center;
}
.page-hero h1 { font-size: clamp(2rem, 4.6vw, 3.1rem); margin-bottom: 12px; }
.page-hero p { color: var(--muted); font-size: 1.15rem; max-width: 38em; margin: 0 auto; }

/* ---------- Team ---------- */
.director-card {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 48px;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 44px;
}
.director-card img {
  border-radius: var(--radius-sm);
  aspect-ratio: 1 / 1.05;
  object-fit: cover;
  object-position: top;
  width: 100%;
}
.director-card .role {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange-dark);
  margin-bottom: 10px;
}
.director-card h2 { font-size: 1.9rem; margin-bottom: 14px; }
.director-card p { color: var(--muted); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 24px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}
.team-card img {
  width: 150px; height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 18px;
  border: 5px solid var(--orange-soft);
}
.team-card h3 { font-size: 1.15rem; margin-bottom: 4px; }
.team-card p { color: var(--muted); font-size: .95rem; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 40px;
  align-items: start;
}
.contact-cards { display: grid; gap: 18px; }
.contact-card {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 26px 28px;
  box-shadow: var(--shadow-soft);
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.contact-card .value-icon { width: 48px; height: 48px; flex-shrink: 0; margin: 0; }
.contact-card h3 { font-size: 1.02rem; margin-bottom: 4px; }
.contact-card a { color: var(--charcoal); text-decoration: none; font-weight: 600; }
.contact-card a:hover { color: var(--orange-dark); }
.contact-card p { color: var(--muted); font-size: .95rem; }

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 40px;
}
.contact-form h2 { font-size: 1.5rem; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { margin-bottom: 16px; }
.form-field label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: .85rem;
  margin-bottom: 6px;
  color: var(--ink);
}
.form-field input,
.form-field textarea {
  width: 100%;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  padding: 13px 16px;
  border: 1.5px solid #E3DCD2;
  border-radius: 10px;
  background: var(--cream);
  color: var(--ink);
}
.form-field input:focus,
.form-field textarea:focus {
  outline: 2px solid var(--orange);
  outline-offset: 1px;
  border-color: var(--orange);
}

/* ---------- Careers ---------- */
.job-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 48px;
  max-width: 860px;
  margin: 0 auto;
}
.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0 28px;
}
.tag {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: .8rem;
  background: var(--orange-soft);
  color: var(--orange-dark);
  border-radius: 999px;
  padding: 6px 16px;
}
.tag-navy { background: #E4EAF3; color: var(--navy); }
.job-card h2 { font-size: 1.9rem; }
.job-card h3 {
  font-size: 1.1rem;
  margin: 30px 0 12px;
  color: var(--orange-dark);
}
.job-card ul { padding-left: 22px; color: var(--muted); }
.job-card li { margin-bottom: 8px; }
.job-apply {
  margin-top: 36px;
  padding-top: 30px;
  border-top: 1.5px solid #F0E8DC;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

/* Hiring banner (team page) */
.hiring-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  border-radius: var(--radius);
  padding: 44px 48px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.hiring-banner h2 { color: var(--white); font-size: 1.6rem; margin-bottom: 6px; }
.hiring-banner p { color: #C7D2E2; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: #B9BCC4;
  padding: 64px 0 32px;
  margin-top: 88px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 44px;
}
.footer-brand h3 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 12px;
}
.footer-brand h3 span { color: var(--orange); }
.footer-brand p { font-size: .95rem; max-width: 26em; }
.site-footer h4 {
  color: var(--white);
  font-size: .85rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 9px; }
.site-footer a { color: #B9BCC4; text-decoration: none; font-size: .97rem; }
.site-footer a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  font-size: .85rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .hero-grid, .badge-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 48px 0 64px; }
  .hero-media { max-width: 560px; }
  .badge-grid { text-align: center; }
  .badge-art { max-width: 190px; }
  .badge-band p { margin: 0 auto; }
  .badge-stats { justify-content: center; }
  .values-grid, .photo-strip { grid-template-columns: repeat(2, 1fr); }
  .pillars-grid, .quotes-grid, .team-grid { grid-template-columns: 1fr 1fr; }
  .director-card { grid-template-columns: 1fr; padding: 32px; }
  .director-card img { max-width: 340px; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .main-nav {
    position: fixed;
    inset: 69px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--cream);
    border-bottom: 1px solid rgba(38,40,46,.08);
    box-shadow: var(--shadow);
    padding: 12px 24px 24px;
    display: none;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 14px 4px; font-size: 1.05rem; border-bottom: 1px solid rgba(38,40,46,.06); }
  .main-nav .btn { margin-top: 16px; text-align: center; }
  .nav-toggle { display: block; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  .section { padding: 60px 0; }
  .pillars-grid, .quotes-grid, .team-grid, .values-grid { grid-template-columns: 1fr; }
  .photo-strip { grid-template-columns: 1fr 1fr; gap: 12px; }
  .photo-strip img:nth-child(even) { transform: translateY(10px); }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .cta-band { padding: 48px 24px; }
  .job-card, .contact-form { padding: 30px 24px; }
  .hiring-banner { padding: 34px 28px; }
}
