:root {
  --bg: #fffaf6;
  --surface: #ffffff;
  --text: #24333d;
  --muted: #667784;
  --line: #e9ded6;
  --primary: #f28b74;
  --primary-deep: #ea7055;
  --secondary: #f6efe9;
  --accent: #335c67;
  --accent-soft: #eef7f9;
  --shadow: 0 18px 40px rgba(38, 51, 61, 0.08);
  --radius: 20px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Nunito', Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(255, 250, 246, 0.92);
  border-bottom: 1px solid rgba(233, 222, 214, 0.75);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 78px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-badge {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), #ffcf7e);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.brand strong { font-size: 1.05rem; }
.brand small { color: var(--muted); }

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.site-nav a {
  font-weight: 700;
  color: var(--muted);
}

.site-nav a.active,
.site-nav a:hover {
  color: var(--text);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 1.7rem;
  cursor: pointer;
}

.hero,
.page-hero {
  padding: 5rem 0 3rem;
}

.hero-grid,
.split-grid,
.contact-grid {
  display: grid;
  gap: 2rem;
}

.hero-grid,
.split-grid { grid-template-columns: 1.2fr 0.8fr; }
.contact-grid { grid-template-columns: 0.95fr 1.05fr; }

.hero h1,
.page-hero h1 {
  margin: 0.3rem 0 1rem;
  font-size: clamp(2.4rem, 5vw, 4.25rem);
  line-height: 1.05;
}

.lead {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 650px;
}

.narrow { max-width: 760px; }
.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--primary-deep);
}
.eyebrow.light { color: rgba(255,255,255,0.8); }

.hero-actions,
.hero-badges,
.footer-wrap,
.schedule-head {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.hero-actions { margin-top: 1.7rem; }
.hero-badges { margin-top: 1.25rem; }
.hero-badges span {
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--muted);
  font-weight: 700;
}

.section { padding: 2rem 0 4rem; }
.section-soft { background: linear-gradient(180deg, rgba(255,255,255,0) 0%, #fff 100%); }
.section-accent {
  padding: 1rem 0 4rem;
}

.section-heading {
  margin-bottom: 1.75rem;
}

.section h2,
.card h2,
.card h3,
.card h4 {
  margin-top: 0;
}

.card {
  background: var(--surface);
  border: 1px solid rgba(233, 222, 214, 0.9);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
}

.feature-card { min-height: 190px; }
.hero-card { align-self: center; }

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

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 0.9rem;
  color: var(--muted);
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-deep);
  font-weight: 800;
}

.hours-card,
.stack-gap {
  display: grid;
  gap: 1rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  background: var(--secondary);
}

.hours-row.muted span,
.hours-row.muted strong,
.small-note {
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.9rem 1.25rem;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary-deep), var(--primary));
  box-shadow: 0 10px 24px rgba(242, 139, 116, 0.28);
}

.btn-secondary {
  background: #fff;
  border: 1px solid var(--line);
}


.btn-light {
  background: #fff;
  color: var(--accent);
}

.full { width: 100%; }
.top-gap { margin-top: 0.75rem; }

.review-section { align-items: start; }
.quote-card {
  padding: 1rem 1.1rem;
  border-radius: 16px;
  background: var(--accent-soft);
}
.quote {
  margin: 0;
  color: var(--accent);
  font-weight: 700;
  line-height: 1.6;
}

.contact-form {
  display: grid;
  gap: 1rem;
}
.contact-form label {
  display: grid;
  gap: 0.45rem;
  font-weight: 700;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  font: inherit;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(234,112,85,0.2);
  border-color: var(--primary-deep);
}

.calendar-frame {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--line);
  min-height: 520px;
}
.calendar-frame iframe {
  width: 100%;
  min-height: 520px;
  border: 0;
}

.info-card ol {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
  line-height: 1.7;
}
.button-group-vertical {
  display: grid;
  gap: 0.85rem;
}

.cta-band {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: center;
  padding: 1.8rem;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--accent), #447a86);
  color: #fff;
  box-shadow: var(--shadow);
}
.site-footer {
  padding: 1.2rem 0 2rem;
}
.footer-wrap {
  justify-content: space-between;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 1.2rem;
}

@media (max-width: 900px) {
  .hero-grid,
  .split-grid,
  .contact-grid,
  .grid-3,
  .cta-band {
    grid-template-columns: 1fr;
    display: grid;
  }

  .site-nav {
    display: none;
    width: 100%;
    padding-bottom: 1rem;
    flex-direction: column;
    align-items: flex-start;
  }
  .site-nav.open { display: flex; }
  .menu-toggle { display: inline-block; }
  .nav-wrap { flex-wrap: wrap; }
}


.live-reviews-card {
  display: grid;
  gap: 1.25rem;
}
.live-reviews-head {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.compact-actions { margin-top: 0; }
.live-widget-shell {
  border: 1px dashed var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, #fff 0%, #fffaf5 100%);
  padding: 1rem;
}
.live-widget-shell.compact {
  min-height: 220px;
}
.widget-placeholder {
  border-radius: 16px;
  background: var(--accent-soft);
  padding: 1.1rem;
  color: var(--accent);
}
.widget-placeholder h4,
.widget-placeholder p,
.widget-placeholder ol {
  margin-top: 0;
}
.widget-placeholder ol {
  padding-left: 1.2rem;
  margin-bottom: 0;
  line-height: 1.7;
}
code {
  background: rgba(51, 92, 103, 0.08);
  padding: 0.1rem 0.35rem;
  border-radius: 8px;
}


.enroll-banner {
  background: #e63946;
  color: #ffffff;
  text-align: center;
  padding: 12px 16px;
  font-weight: 700;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.enroll-banner a {
  color: #ffd166;
  margin-left: 10px;
  text-decoration: underline;
}

.enroll-banner a:hover {
  opacity: 0.9;
}


.logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.hero-logo {
  width: min(100%, 680px);
  height: auto;
  display: block;
  border-radius: 24px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.14);
}

.quick-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 1.5rem;
}

.quick-buttons .btn {
  min-width: 190px;
  text-align: center;
}

.btn-secondary {
  background: #f4a261;
  color: #ffffff;
}

.btn-secondary:hover {
  filter: brightness(0.97);
}

.logo-card {
  text-align: center;
  margin-bottom: 1rem;
}

.logo-card img {
  width: min(100%, 420px);
  height: auto;
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}

.code-block {
  background: #1f2937;
  color: #f9fafb;
  padding: 18px;
  border-radius: 12px;
  overflow-x: auto;
  font-size: 0.95rem;
  line-height: 1.55;
}
