/* === Reset & Base === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  color: #111;
  background: #f9f9f9;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: 'Cardo', 'Georgia', serif; font-weight: 700; line-height: 1.2; }

/* === Layout === */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* === Header === */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid #eee;
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.header-logo img { height: 50px; width: auto; }
.nav { display: flex; align-items: center; gap: 32px; }
.nav a {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav a:hover { color: #d8613c; }
.nav-phone {
  font-weight: 600;
  color: #d8613c;
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #111;
  margin: 6px 0;
  transition: 0.3s;
}

/* === Hero === */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-color: #111;
  color: #fff;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}
.hero .container { position: relative; z-index: 1; }
.hero-tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #d8613c;
  margin-bottom: 16px;
}
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 16px;
  max-width: 700px;
}
.hero p {
  font-size: 1.15rem;
  max-width: 560px;
  margin-bottom: 32px;
  opacity: 0.9;
  line-height: 1.7;
}

/* === Page Hero (subpages) === */
.page-hero {
  min-height: 50vh;
}

/* === Buttons === */
.btn {
  display: inline-block;
  padding: 16px 36px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-primary {
  background: #d8613c;
  color: #fff;
}
.btn-primary:hover { background: #c0532f; }
.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.btn-outline:hover {
  background: #fff;
  color: #111;
}

/* === Section Spacing === */
.section { padding: 100px 0; }
.section-dark { background: #111; color: #fff; }
.section-warm { background: #cfcabe; }
.section-muted { background: #f0eeea; }

/* === Section Headings === */
.section-tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #d8613c;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
}
.section-subtitle {
  font-size: 1.1rem;
  color: #636363;
  max-width: 640px;
  line-height: 1.7;
}

/* === Services Grid === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}
.service-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.service-card img { width: 100%; height: 240px; object-fit: cover; }
.service-card-body { padding: 32px; }
.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}
.service-card p {
  color: #636363;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-card .link {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #d8613c;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-card .link:hover { gap: 10px; }

/* === About / Split Section === */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split-img { border-radius: 8px; overflow: hidden; }
.split-img img { width: 100%; height: 100%; object-fit: cover; }
.split-content blockquote {
  font-family: 'Cardo', serif;
  font-size: 1.8rem;
  font-style: italic;
  color: #d8613c;
  margin-bottom: 24px;
  line-height: 1.3;
}
.split-content p {
  color: #636363;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* === Focus Areas === */
.focus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 60px;
}
.focus-item { text-align: center; padding: 40px 24px; }
.focus-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  background: #d8613c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.focus-icon svg { width: 28px; height: 28px; fill: #fff; stroke: #fff; stroke-width: 0; }
.focus-item h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.focus-item p {
  color: #636363;
  font-size: 0.95rem;
  line-height: 1.7;
}
.section-dark .focus-item p { color: #A4A4A4; }

/* === Pricing === */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}
.pricing-card {
  background: #fff;
  border-radius: 8px;
  padding: 48px 36px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s;
}
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card.featured {
  background: #d8613c;
  color: #fff;
}
.pricing-card.featured .pricing-freq,
.pricing-card.featured .pricing-desc { color: rgba(255,255,255,0.8); }
.pricing-sessions {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.pricing-price {
  font-family: 'Cardo', serif;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.pricing-freq {
  font-size: 0.9rem;
  color: #636363;
  margin-bottom: 16px;
}
.pricing-desc {
  font-size: 0.9rem;
  color: #636363;
}

/* === CTA Banner === */
.cta-banner {
  text-align: center;
  padding: 100px 24px;
  background: #111;
  color: #fff;
}
.cta-banner h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  max-width: 700px;
  margin: 0 auto 32px;
}

/* === Contact Form === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 60px;
}
.contact-info h3 {
  font-size: 1.3rem;
  margin-bottom: 24px;
}
.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.contact-info-item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 3px;
  stroke: #d8613c;
  fill: none;
  stroke-width: 2;
}
.contact-info-item p { color: #636363; line-height: 1.6; }
.contact-info-item a:hover { color: #d8613c; }
.contact-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  margin-bottom: 20px;
  transition: border-color 0.2s;
  background: #fff;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #d8613c;
}
.contact-form textarea { height: 140px; resize: vertical; }

/* === Map Embed === */
.map-container {
  margin-top: 60px;
  border-radius: 8px;
  overflow: hidden;
  height: 350px;
}
.map-container iframe { width: 100%; height: 100%; border: 0; }

/* === Footer === */
.footer {
  background: #111;
  color: #fff;
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand img { height: 50px; margin-bottom: 20px; }
.footer-brand p {
  color: #A4A4A4;
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s;
}
.footer-social a:hover {
  border-color: #d8613c;
  background: #d8613c;
}
.footer-social a svg { width: 16px; height: 16px; fill: #fff; }
.footer h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.footer ul li { margin-bottom: 12px; }
.footer ul a {
  color: #A4A4A4;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer ul a:hover { color: #d8613c; }
.footer-bottom {
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid #222;
  text-align: center;
  color: #636363;
  font-size: 0.85rem;
}

/* === Certifications List === */
.cert-list {
  columns: 2;
  column-gap: 32px;
  margin: 24px 0;
}
.cert-list li {
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
  color: #636363;
  font-size: 0.95rem;
  break-inside: avoid;
}
.cert-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 8px;
  background: #d8613c;
  border-radius: 50%;
}

/* === Hours List === */
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  color: #636363;
  font-size: 0.95rem;
}
.hours-list li span:first-child { font-weight: 600; color: #111; }

/* === Responsive === */
@media (max-width: 968px) {
  .services-grid, .pricing-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .nav { display: none; }
  .nav.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 24px;
    border-bottom: 1px solid #eee;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  }
  .menu-toggle { display: block; }
  .hero { min-height: 70vh; }
  .page-hero { min-height: 40vh; }
  .section { padding: 60px 0; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .cert-list { columns: 1; }
  .focus-grid { grid-template-columns: 1fr; }
}
