/* ============================================
   Able Chiropractic — Design System
   ============================================ */

:root {
  --primary-dark: #1B4D3E;
  --primary-green: #2E8B57;
  --primary-green-hover: #247549;
  --brand-orange: #E8751A;
  --brand-orange-hover: #cc6313;
  --warm-cream: #F5F0E8;
  --warm-cream-dark: #eae2d2;
  --dark-text: #1A1A2E;
  --muted-text: #5c6175;
  --border-soft: rgba(26, 26, 46, 0.08);
  --shadow-sm: 0 2px 6px rgba(26, 26, 46, 0.06);
  --shadow-md: 0 8px 24px rgba(26, 26, 46, 0.08);
  --shadow-lg: 0 20px 50px rgba(26, 26, 46, 0.12);
  --radius: 10px;
  --radius-lg: 16px;
  --container: 1200px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--dark-text);
  background: var(--warm-cream);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; display: block; height: auto; }
a { color: var(--primary-green); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--brand-orange); }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--primary-dark);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p { color: var(--dark-text); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-sm { padding: 3.5rem 0; }
.section-cream { background: var(--warm-cream); }
.section-white { background: #fff; }
.section-dark { background: var(--primary-dark); color: #fff; }
.section-dark h1, .section-dark h2, .section-dark h3 { color: #fff; }

.eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--brand-orange);
  margin-bottom: .8rem;
}

.lead { font-size: 1.125rem; color: var(--muted-text); max-width: 60ch; }

.section-header { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.section-header .lead { margin: 0 auto; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem 1.6rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  transition: all .2s var(--ease);
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
}
.btn svg, .btn [data-icon] svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn [data-icon] { display: inline-flex; align-items: center; }

/* All inline icons should size to their container */
[data-icon] svg { width: 18px; height: 18px; vertical-align: middle; }
.learn-more svg, .read-more svg { width: 16px; height: 16px; }
.nav-cta [data-icon] svg, .cta-phone [data-icon] svg { width: 18px; height: 18px; }
.hero-badges [data-icon] svg { width: 18px; height: 18px; }
.contact-info-item .icon svg { width: 18px; height: 18px; }
.socials svg { width: 16px !important; height: 16px !important; }
.feature-icon svg { width: 34px !important; height: 34px !important; }
.service-icon svg { width: 28px !important; height: 28px !important; }
.carousel-btn svg { width: 20px !important; height: 20px !important; }
.btn-primary {
  background: var(--brand-orange);
  color: #fff;
  box-shadow: 0 4px 14px rgba(232, 117, 26, 0.3);
}
.btn-primary:hover { background: var(--brand-orange-hover); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(232, 117, 26, 0.4); color:#fff; }

.btn-green {
  background: var(--primary-green);
  color: #fff;
}
.btn-green:hover { background: var(--primary-green-hover); transform: translateY(-2px); color:#fff; }

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.9);
}
.btn-outline:hover { background: #fff; color: var(--primary-dark); }

.btn-outline-dark {
  background: transparent;
  color: var(--primary-dark);
  border: 2px solid var(--primary-dark);
}
.btn-outline-dark:hover { background: var(--primary-dark); color: #fff; }

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: .9rem 0;
  transition: all .3s var(--ease);
  background: transparent;
}
.site-header.scrolled {
  background: var(--primary-dark);
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
  padding: .5rem 0;
}
/* When no hero (inner pages) header is always solid */
.site-header.solid {
  background: var(--primary-dark);
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: .65rem;
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -.01em;
}
.brand img { height: 44px; width: auto; }
.brand:hover { color: #fff; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  font-size: .95rem;
}
.nav-links a {
  color: rgba(255,255,255,.92);
  font-weight: 500;
  position: relative;
  padding: .35rem 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--brand-orange);
  transition: width .25s var(--ease);
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: #fff; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--brand-orange);
  color: #fff;
  padding: .55rem 1.1rem;
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 600;
  transition: all .2s var(--ease);
}
.nav-cta:hover { background: var(--brand-orange-hover); color: #fff; transform: translateY(-1px); }
.nav-cta span { white-space: nowrap; }

.hamburger {
  display: none;
  width: 40px; height: 40px;
  color: #fff;
  align-items: center;
  justify-content: center;
}
.hamburger svg { width: 24px; height: 24px; }

@media (max-width: 960px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: inline-flex; }
  .mobile-menu.open .nav-links,
  .mobile-menu.open .nav-cta { display: flex; }
  .mobile-menu.open {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--primary-dark);
    z-index: 60;
    padding: 5rem 2rem 2rem;
  }
  .mobile-menu.open .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    font-size: 1.5rem;
  }
  .mobile-menu.open .nav-cta {
    margin-top: 2rem;
    width: 100%;
    justify-content: center;
    padding: 1rem;
  }
  .mobile-menu.open .mobile-close {
    display: block;
    position: absolute;
    top: 1.25rem; right: 1.5rem;
    color: #fff;
    font-size: 2rem;
  }
}
.mobile-close { display: none; }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  padding: 6rem 0 3rem;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../public/images/hero.jpg') center/cover no-repeat;
  z-index: -2;
  transform: scale(1.05);
  animation: zoomOut 14s ease-out forwards;
}
@keyframes zoomOut { to { transform: scale(1); } }
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27,77,62,.85) 0%, rgba(26,26,46,.55) 100%);
  z-index: -1;
}
.hero-inner {
  max-width: 780px;
  position: relative;
  z-index: 1;
}
.hero .eyebrow { color: #FFD9B8; }
.hero h1 {
  color: #fff;
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  font-weight: 700;
  margin-bottom: 1.25rem;
}
.hero p.lead {
  color: rgba(255,255,255,.9);
  font-size: 1.25rem;
  max-width: 55ch;
  margin-bottom: 2rem;
}
.hero-buttons { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.15);
  font-size: .9rem;
  color: rgba(255,255,255,.85);
}
.hero-badges span { display: inline-flex; align-items: center; gap: .5rem; }
.hero-badges svg { width: 18px; height: 18px; color: var(--brand-orange); }

/* Add slight dimming gradient behind nav to keep links legible over any hero */
.site-header:not(.scrolled):not(.solid)::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,0) 100%);
  pointer-events: none;
  z-index: -1;
}
.site-header { position: fixed; }

/* Smaller hero on inner pages */
.page-hero {
  position: relative;
  padding: 9rem 0 5rem;
  color: #fff;
  background: linear-gradient(135deg, var(--primary-dark) 0%, #123a2f 100%);
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .18;
  background: url('../public/images/clinic-2.webp') center/cover no-repeat;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; margin-bottom: .75rem; }
.page-hero p { color: rgba(255,255,255,.85); max-width: 60ch; }
.breadcrumb {
  font-size: .85rem;
  color: rgba(255,255,255,.65);
  margin-bottom: 1rem;
  font-weight: 500;
  letter-spacing: .02em;
}
.breadcrumb a { color: rgba(255,255,255,.8); }
.breadcrumb a:hover { color: var(--brand-orange); }

/* ============================================
   CARDS & GRIDS
   ============================================ */
.grid {
  display: grid;
  gap: 1.75rem;
}
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); }

.card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: all .3s var(--ease);
  border: 1px solid var(--border-soft);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all .3s var(--ease);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border-soft);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.service-icon {
  width: 60px; height: 60px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary-green), var(--primary-dark));
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff;
  margin-bottom: 1.25rem;
}
.service-icon svg { width: 28px; height: 28px; }
.service-card .card-body { padding: 2rem; flex: 1; display: flex; flex-direction: column; }
.service-card h3 { margin-bottom: .75rem; }
.service-card p { color: var(--muted-text); margin-bottom: 1.5rem; flex: 1; }
.service-card .learn-more {
  color: var(--brand-orange);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .92rem;
}
.service-card .learn-more:hover { gap: .6rem; }

/* About split */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.split.reverse > *:first-child { order: 2; }
.split .image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}
.split .image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.split .image-wrap::after {
  content: '';
  position: absolute;
  right: -20px; bottom: -20px;
  width: 120px; height: 120px;
  background: var(--brand-orange);
  border-radius: 50%;
  z-index: -1;
  opacity: .15;
}
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; gap: 2.5rem; }
  .split.reverse > *:first-child { order: 0; }
  .split .image-wrap { aspect-ratio: 3/2; }
}

/* Why Choose Us */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  text-align: center;
}
.feature { padding: 1rem; }
.feature-icon {
  width: 72px; height: 72px;
  margin: 0 auto 1.25rem;
  border-radius: 18px;
  background: rgba(232, 117, 26, 0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--brand-orange);
}
.feature-icon svg { width: 34px; height: 34px; }
.feature h3 { margin-bottom: .5rem; font-size: 1.2rem; }
.feature p { color: var(--muted-text); font-size: .95rem; }

/* Testimonials carousel */
.testimonials {
  background: var(--primary-dark);
  color: #fff;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: '';
  position: absolute;
  right: -80px; top: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(232,117,26,.1);
}
.testimonials h2 { color: #fff; text-align: center; margin-bottom: 3rem; }
.carousel {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
}
.carousel-track {
  display: flex;
  overflow: hidden;
  border-radius: var(--radius-lg);
  min-height: 260px;
}
.testimonial-slide {
  flex: 0 0 100%;
  padding: 2.5rem 3rem;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  opacity: 0;
  transition: opacity .5s var(--ease);
  display: none;
  text-align: center;
}
.testimonial-slide.active { opacity: 1; display: block; }
.stars { color: #FFC84D; font-size: 1.2rem; margin-bottom: 1rem; letter-spacing: .15em; }
.quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-style: italic;
  line-height: 1.5;
  color: #fff;
  margin-bottom: 1.5rem;
}
.testimonial-meta {
  font-size: .9rem;
  color: rgba(255,255,255,.7);
}
.testimonial-meta strong { color: var(--brand-orange); font-style: normal; display: block; margin-bottom: .15rem; font-size: 1rem; }
.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}
.carousel-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,.2);
  display: inline-flex; align-items: center; justify-content: center;
  transition: all .2s var(--ease);
}
.carousel-btn:hover { background: var(--brand-orange); border-color: var(--brand-orange); }
.carousel-btn svg { width: 20px; height: 20px; }
.carousel-dots { display: flex; gap: .5rem; }
.carousel-dots button {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  transition: all .2s;
  padding: 0;
}
.carousel-dots button.active { background: var(--brand-orange); width: 28px; border-radius: 5px; }

/* Specials banner */
.specials {
  background: linear-gradient(135deg, var(--brand-orange) 0%, #f58b38 100%);
  color: #fff;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.specials h2 { color: #fff; margin-bottom: 2rem; text-align: center; }
.specials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}
.special-card {
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  padding: 1.75rem;
  text-align: center;
}
.special-card-badge {
  display: inline-block;
  background: #fff;
  color: var(--brand-orange);
  font-weight: 700;
  font-size: .78rem;
  padding: .3rem .8rem;
  border-radius: 999px;
  letter-spacing: .08em;
  margin-bottom: 1rem;
}
.special-card h3 { color: #fff; font-size: 1.25rem; margin-bottom: .5rem; }
.special-card p { color: rgba(255,255,255,.92); font-size: .95rem; }

/* Blog preview cards */
.blog-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all .3s var(--ease);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border-soft);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-thumb {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--warm-cream-dark);
}
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.blog-card:hover .blog-thumb img { transform: scale(1.05); }
.blog-card .card-body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }
.blog-meta { font-size: .82rem; color: var(--muted-text); margin-bottom: .75rem; display: flex; gap: 1rem; }
.blog-meta .tag {
  background: rgba(46,139,87,.1);
  color: var(--primary-green);
  padding: .15rem .6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .75rem;
}
.blog-card h3 { font-size: 1.25rem; margin-bottom: .5rem; }
.blog-card p { color: var(--muted-text); font-size: .95rem; margin-bottom: 1rem; flex: 1; }
.blog-card a.read-more { color: var(--brand-orange); font-weight: 600; font-size: .92rem; }

/* CTA section */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #0f332a 100%);
  color: #fff;
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .08;
  background: url('../public/images/clinic-3.webp') center/cover no-repeat;
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { color: #fff; margin-bottom: .75rem; }
.cta-section p { color: rgba(255,255,255,.85); margin-bottom: 2rem; font-size: 1.15rem; }
.cta-section .btn-primary { font-size: 1rem; padding: 1rem 2rem; }
.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--brand-orange);
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.cta-phone:hover { color: #fff; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: #142e27;
  color: rgba(255,255,255,.75);
  padding: 4rem 0 1.5rem;
  font-size: .92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (max-width: 780px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

.site-footer h4 {
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer-brand .brand { color: #fff; margin-bottom: 1rem; }
.footer-brand p { color: rgba(255,255,255,.6); font-size: .9rem; margin-bottom: 1rem; }

.footer-links { display: flex; flex-direction: column; gap: .6rem; }
.footer-links a { color: rgba(255,255,255,.75); }
.footer-links a:hover { color: var(--brand-orange); }

.footer-hours li {
  display: flex;
  justify-content: space-between;
  padding: .25rem 0;
  font-size: .88rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-hours li span:first-child { color: rgba(255,255,255,.9); font-weight: 500; }
.footer-hours li.closed span:last-child { color: rgba(255,255,255,.4); font-style: italic; }

.socials { display: flex; gap: .5rem; margin-top: 1rem; }
.socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  transition: all .2s var(--ease);
}
.socials a:hover { background: var(--brand-orange); transform: translateY(-2px); color:#fff; }
.socials svg { width: 16px; height: 16px; }

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .82rem;
  color: rgba(255,255,255,.55);
}

/* ============================================
   FORM
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info-card {
  background: var(--primary-dark);
  color: #fff;
  padding: 2.5rem;
  border-radius: var(--radius-lg);
}
.contact-info-card h3 { color: #fff; margin-bottom: 1.5rem; }
.contact-info-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: flex-start; }
.contact-info-item .icon {
  width: 40px; height: 40px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--brand-orange);
}
.contact-info-item .icon svg { width: 18px; height: 18px; }
.contact-info-item strong { display: block; color: rgba(255,255,255,.6); font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 600; margin-bottom: .15rem; }
.contact-info-item a, .contact-info-item p { color: #fff; }
.contact-info-item a:hover { color: var(--brand-orange); }

form {
  background: #fff;
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: .4rem;
}
.form-group label .required { color: var(--brand-orange); }
.form-group input,
.form-group textarea {
  width: 100%;
  padding: .85rem 1rem;
  border: 1.5px solid rgba(26,26,46,.1);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: .95rem;
  color: var(--dark-text);
  background: #fff;
  transition: all .2s var(--ease);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(46,139,87,.12);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.honey { position: absolute; left: -9999px; opacity: 0; }
.form-status { margin-top: 1rem; font-size: .92rem; }
.form-status.success { color: var(--primary-green); }
.form-status.error { color: #c0392b; }

/* Video */
.video-wrap {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--primary-dark);
}
.video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* Map */
.map-wrap {
  margin-top: 3rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.map-wrap iframe { width: 100%; height: 420px; border: 0; display: block; }

/* ============================================
   TEAM
   ============================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.team-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-soft);
  transition: transform .3s var(--ease);
}
.team-card:hover { transform: translateY(-4px); }
.team-photo { aspect-ratio: 4/5; overflow: hidden; background: var(--warm-cream-dark); }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card .body { padding: 1.5rem; }
.team-card h3 { margin-bottom: .25rem; }
.team-card .role { color: var(--brand-orange); font-weight: 600; font-size: .85rem; letter-spacing: .05em; text-transform: uppercase; margin-bottom: 1rem; display: block; }
.team-card p { color: var(--muted-text); font-size: .93rem; }

/* ============================================
   PAGE-SPECIFIC
   ============================================ */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-soft);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem; right: 1.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--brand-orange);
  opacity: .15;
}
.testimonial-card .stars { color: #FFC84D; margin-bottom: 1rem; }
.testimonial-card .text { color: var(--dark-text); margin-bottom: 1.5rem; font-size: .98rem; }
.testimonial-card .meta { font-size: .9rem; color: var(--muted-text); border-top: 1px solid var(--border-soft); padding-top: 1rem; }
.testimonial-card .meta strong { color: var(--primary-dark); display: block; font-weight: 700; }

/* Service detail page */
.service-hero-meta {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  background: rgba(255,255,255,.1);
  padding: .5rem 1.2rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
  font-size: .85rem;
  letter-spacing: .05em;
}

.benefits {
  list-style: none;
}
.benefits li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: .75rem 0;
  border-bottom: 1px solid var(--border-soft);
  color: var(--dark-text);
}
.benefits li:last-child { border: 0; }
.benefits li::before {
  content: '';
  width: 24px; height: 24px;
  min-width: 24px;
  background: var(--primary-green);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='currentColor' d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='currentColor' d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center/contain no-repeat;
  margin-top: 2px;
}

/* Article / blog post */
article.post { max-width: 760px; margin: 0 auto; }
article.post .meta { display: flex; gap: 1.5rem; font-size: .9rem; color: var(--muted-text); margin-bottom: 2rem; align-items: center; flex-wrap: wrap; }
article.post .meta .tag { background: rgba(46,139,87,.1); color: var(--primary-green); padding: .25rem .75rem; border-radius: 999px; font-weight: 600; font-size: .8rem; }
article.post .cover {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 2.5rem;
}
article.post h2 { margin: 2.5rem 0 1rem; }
article.post h3 { margin: 2rem 0 .75rem; }
article.post p { margin-bottom: 1.2rem; color: var(--dark-text); font-size: 1.05rem; line-height: 1.8; }
article.post ul, article.post ol { margin: 1rem 0 1.5rem 1.5rem; color: var(--dark-text); }
article.post ul li, article.post ol li { margin-bottom: .5rem; line-height: 1.7; }
article.post ul { list-style: disc; }
article.post ol { list-style: decimal; }
article.post blockquote {
  border-left: 4px solid var(--brand-orange);
  padding: .5rem 0 .5rem 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: var(--muted-text);
  font-size: 1.1rem;
}

.share-buttons { display: flex; gap: .75rem; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--border-soft); }
.share-buttons span { font-weight: 600; color: var(--primary-dark); align-self: center; margin-right: .5rem; }
.share-buttons a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--warm-cream);
  color: var(--primary-dark);
  display: inline-flex; align-items: center; justify-content: center;
}
.share-buttons a:hover { background: var(--brand-orange); color: #fff; }
.share-buttons svg { width: 16px; height: 16px; }

/* Animations */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Utility */
.text-center { text-align: center; }
.mt-3 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 1rem; }

/* 404 */
.notfound {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 1.5rem;
}
.notfound h1 { font-size: 5rem; color: var(--brand-orange); }
