:root {
  --red: #E8262A;
  --red-dark: #C41B1F;
  --yellow: #FFC324;
  --yellow-dark: #E8A700;
  --green: #0F4D3A;
  --green-dark: #0A362A;
  --blue: #1D4FA8;
  --blue-dark: #143B82;
  --ink: #23262b;
  --ink-soft: #565b64;
  --paper: #FFFDF7;
  --cloud: #F4F1E8;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow-soft: 0 10px 30px rgba(35, 38, 43, 0.12);
  --shadow-pop: 0 6px 0 rgba(0,0,0,0.15);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Nunito', sans-serif;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Baloo 2', sans-serif;
  margin: 0 0 .4em;
  line-height: 1.15;
}

p { line-height: 1.6; color: var(--ink-soft); margin: 0 0 1em; }

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

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

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 88px 0; position: relative; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: 3px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn:hover { transform: translateY(-2px); }
.btn-lg { padding: 17px 32px; font-size: 1.1rem; }

.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 5px 0 var(--red-dark);
}
.btn-primary:hover { box-shadow: 0 7px 0 var(--red-dark); }
.btn-primary:active { transform: translateY(2px); box-shadow: 0 2px 0 var(--red-dark); }

.btn-outline {
  background: #fff;
  color: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 5px 0 rgba(29,79,168,.25);
}
.btn-outline:hover { background: #f0f4ff; }

.btn-white {
  background: #fff;
  color: var(--red);
  box-shadow: 0 5px 0 rgba(0,0,0,.15);
}

.btn-call {
  background: var(--green);
  color: #fff;
  padding: 11px 22px;
  box-shadow: 0 4px 0 var(--green-dark);
}
.btn-call:hover { box-shadow: 0 6px 0 var(--green-dark); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,253,247,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 3px solid var(--yellow);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.logo { height: 52px; width: auto; }
.main-nav {
  display: flex;
  gap: 28px;
  font-family: 'Baloo 2', sans-serif;
  font-weight: 600;
  font-size: 1.02rem;
}
.main-nav a { position: relative; padding: 4px 0; }
.main-nav a:hover { color: var(--red); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 3px;
  border-radius: 3px;
  background: var(--ink);
}

/* ---------- Hero ---------- */
.hero {
  padding-top: 70px;
  padding-bottom: 90px;
  overflow: hidden;
  background: linear-gradient(180deg, #FFFDF7 0%, #FFF6E0 100%);
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  opacity: .18;
  filter: blur(2px);
}
.blob-red { width: 300px; height: 300px; background: var(--red); top: -80px; left: -100px; }
.blob-yellow { width: 260px; height: 260px; background: var(--yellow); top: 40px; right: 6%; opacity: .28; }
.blob-green { width: 220px; height: 220px; background: var(--green); bottom: -60px; left: 20%; }
.blob-blue { width: 340px; height: 340px; background: var(--blue); bottom: -140px; right: -120px; }

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.badge-pill {
  display: inline-block;
  background: #fff;
  border: 2px solid var(--yellow);
  color: var(--green);
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  font-size: .85rem;
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.hero-text h1 {
  font-size: clamp(2.4rem, 4.4vw, 3.6rem);
  color: var(--ink);
}
.hero-text h1::after { content: ''; }

.hero-sub {
  font-size: 1.15rem;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 26px 0 20px;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-family: 'Baloo 2', sans-serif;
  color: var(--green);
}
.dot {
  width: 10px; height: 10px; border-radius: 50%;
}
.dot-open { background: #26b463; box-shadow: 0 0 0 4px rgba(38,180,99,.2); }

.hero-graphic {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
}
.hero-circle {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: conic-gradient(var(--red) 0 25%, var(--yellow) 25% 50%, var(--green) 50% 75%, var(--blue) 75% 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
}
.scissor-spin { width: 130px; height: 130px; animation: spin 9s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.chip {
  position: absolute;
  background: #fff;
  border-radius: 999px;
  padding: 10px 16px;
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  font-size: .82rem;
  box-shadow: var(--shadow-soft);
  white-space: nowrap;
}
.chip-red { top: 8%; left: -6%; color: var(--red); border: 2px solid var(--red); }
.chip-yellow { bottom: 20%; right: -8%; color: var(--yellow-dark); border: 2px solid var(--yellow); }
.chip-blue { bottom: -4%; left: 8%; color: var(--blue); border: 2px solid var(--blue); }

/* ---------- Section headings ---------- */
.eyebrow {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .85rem;
  margin-bottom: 8px;
}
.eyebrow-red { color: var(--red); }
.eyebrow-yellow { color: var(--yellow-dark); }
.eyebrow-green { color: var(--green); }
.eyebrow-blue { color: var(--blue); }

.services h2, .gallery h2, .testimonials h2, .location h2 {
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  margin-bottom: 34px;
}
.section-sub { max-width: 560px; margin-top: -18px; margin-bottom: 30px; }

/* ---------- Services ---------- */
.services { background: #fff; }
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--cloud);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  border-bottom: 6px solid transparent;
  transition: transform .2s ease;
}
.service-card:hover { transform: translateY(-6px); }
.border-red { border-color: var(--red); }
.border-yellow { border-color: var(--yellow); }
.border-green { border-color: var(--green); }
.border-blue { border-color: var(--blue); }

.service-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 16px;
}
.icon-red { background: rgba(232,38,42,.12); }
.icon-yellow { background: rgba(255,195,36,.22); }
.icon-green { background: rgba(15,77,58,.12); }
.icon-blue { background: rgba(29,79,168,.12); }

.service-card h3 { font-size: 1.25rem; }
.service-card p { margin: 0; font-size: .96rem; }

/* ---------- Why us ---------- */
.why-us {
  background: var(--green);
  color: #fff;
  padding: 60px 0;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.why-emoji { font-size: 2.2rem; display: block; margin-bottom: 10px; }
.why-item h4 { color: #fff; font-size: 1.1rem; margin-bottom: 6px; }
.why-item p { color: rgba(255,255,255,.82); font-size: .92rem; margin: 0; }

/* ---------- Gallery ---------- */
.gallery { background: var(--cloud); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.gallery-tile {
  position: relative;
  margin: 0;
  border-radius: var(--radius-md);
  aspect-ratio: 4/3;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform .2s ease;
}
.gallery-tile:hover { transform: scale(1.03); }
.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(85%);
  transition: filter .3s ease, transform .4s ease;
}
.gallery-tile:hover img { filter: grayscale(0%); transform: scale(1.06); }
.gallery-tile figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 14px 16px;
  background: linear-gradient(0deg, rgba(0,0,0,.75), transparent);
  color: #fff;
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  font-size: 1rem;
}

/* ---------- Testimonials ---------- */
.testimonials { background: #fff; }
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.review-card {
  background: var(--cloud);
  border-radius: var(--radius-md);
  padding: 26px;
  display: flex;
  flex-direction: column;
}
.stars { color: var(--yellow-dark); font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 10px; }
.review-card p { font-size: .95rem; margin-bottom: 14px; flex: 1; }
.review-name { font-family: 'Baloo 2', sans-serif; font-weight: 700; font-size: .88rem; color: var(--blue); }

/* ---------- Location ---------- */
.location { background: var(--cloud); }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: stretch;
}
.info-row {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
}
.info-icon {
  width: 46px; height: 46px;
  border-radius: 14px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.info-row strong { font-family: 'Baloo 2', sans-serif; font-size: 1.05rem; }
.info-row p { margin: 2px 0 0; }
.info-row a { color: var(--blue); font-weight: 700; }

.hours-table { border-collapse: collapse; margin-top: 6px; }
.hours-table td { padding: 2px 14px 2px 0; font-size: .92rem; color: var(--ink-soft); }
.hours-table td:first-child { font-weight: 700; color: var(--ink); }

.location-actions { display: flex; gap: 14px; margin-top: 10px; flex-wrap: wrap; }

.location-map {
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 340px;
  box-shadow: var(--shadow-soft);
}

/* ---------- Final CTA ---------- */
.final-cta {
  background: linear-gradient(120deg, var(--red) 0%, var(--blue) 100%);
  color: #fff;
  text-align: center;
  padding: 80px 0;
}
.final-cta-inner h2 { color: #fff; font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
.final-cta-inner p { color: rgba(255,255,255,.9); max-width: 480px; margin: 0 auto 26px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: #d8d8d8;
  padding: 50px 0 30px;
  text-align: center;
}
.footer-logo-badge {
  display: inline-block;
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  margin-bottom: 18px;
}
.footer-logo { height: 46px; margin: 0; }
.footer-inner p { color: #d8d8d8; margin: 4px 0; }
.footer-inner a { color: var(--yellow); font-weight: 700; }
.footer-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 20px 0;
  font-family: 'Baloo 2', sans-serif;
  font-weight: 600;
}
.footer-nav a:hover { color: var(--yellow); }
.footer-copy { font-size: .82rem; color: #8a8a8a; margin-top: 20px; }

/* ---------- Mobile call FAB ---------- */
.mobile-call-fab {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 58px;
  height: 58px;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(232,38,42,.4);
  z-index: 200;
}
.mobile-call-fab svg { width: 26px; height: 26px; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-graphic { min-height: 280px; margin-top: 20px; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 34px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .review-grid { grid-template-columns: repeat(2, 1fr); }
  .location-grid { grid-template-columns: 1fr; }
  .location-map { min-height: 300px; }
}

@media (max-width: 720px) {
  section { padding: 60px 0; }
  .main-nav {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    gap: 0;
    padding: 10px 24px 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,.08);
    transform: translateY(-130%);
    transition: transform .25s ease;
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav a { padding: 12px 0; border-bottom: 1px solid #eee; }
  .nav-toggle { display: flex; }
  .header-call { display: none; }
  .card-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .review-grid { grid-template-columns: 1fr; }
  .mobile-call-fab { display: flex; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .chip { position: static; margin: 8px auto 0; display: inline-flex; }
  .hero-graphic { flex-direction: column; gap: 10px; }
}
