/* ── Momentum Physiotherapy — Wellness Template 03 ── */
:root {
  --navy: #16324A;
  --navy-dark: #0F2438;
  --coral: #FF6B4A;
  --coral-dark: #E85530;
  --white: #ffffff;
  --offwhite: #F5F7F8;
  --border: #E2E8ED;
  --text: #1F2937;
  --muted: #64748B;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--white); color: var(--text); line-height: 1.65; }

h1, h2, h3 { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: 0.01em; line-height: 1.05; }
h1 { font-size: clamp(2.8rem, 6.5vw, 5rem); }
h2 { font-size: clamp(2.1rem, 4.5vw, 3rem); }
h3 { font-size: 1.3rem; letter-spacing: 0.02em; }
p { color: var(--muted); }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 6rem 0; }
.section-alt { background: var(--offwhite); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: 'Inter', sans-serif; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--coral-dark);
  margin-bottom: 1rem;
}
.eyebrow::before { content: ''; width: 26px; height: 3px; background: var(--coral); display: inline-block; }

/* ── HEADER ── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--white); border-bottom: 3px solid var(--navy);
  padding: 1.1rem 0;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; }
.logo-text { font-family: 'Barlow Condensed', sans-serif; font-size: 1.7rem; font-weight: 800; text-transform: uppercase; color: var(--navy); letter-spacing: 0.01em; }
.logo-text span { color: var(--coral); }
.nav-links { display: flex; align-items: center; gap: 2.2rem; }
.nav-link {
  font-size: 0.88rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--navy);
  position: relative; padding-bottom: 4px;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 3px; background: var(--coral);
  transition: width 0.25s;
}
.nav-link:hover::after { width: 100%; }
.btn-nav {
  background: var(--coral); color: var(--white); font-weight: 800; font-size: 0.82rem;
  text-transform: uppercase; letter-spacing: 0.03em;
  padding: 0.75rem 1.5rem; clip-path: polygon(10px 0, 100% 0, 100% 100%, 0 100%, 0 10px);
  transition: background 0.2s;
}
.btn-nav:hover { background: var(--coral-dark); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 3px; background: var(--navy); }

.mobile-nav {
  display: none; position: fixed; top: 4.6rem; left: 1rem; right: 1rem; z-index: 99;
  background: var(--navy); padding: 1.6rem 2rem; flex-direction: column; gap: 1.2rem;
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}
.mobile-nav.open { display: flex; }
.mobile-nav a { font-size: 1.05rem; font-weight: 700; text-transform: uppercase; color: var(--white); }

/* ── HERO ── */
.hero { position: relative; background: var(--navy); overflow: hidden; padding: 0; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; min-height: 560px; }
.hero-text-wrap { display: flex; flex-direction: column; justify-content: center; padding: 4rem 3rem 4rem 2rem; }
.hero .eyebrow { color: var(--coral); }
.hero .eyebrow::before { background: var(--coral); }
.hero h1 { color: var(--white); margin-bottom: 1.3rem; }
.hero-text-wrap p.lead { color: rgba(255,255,255,0.75); font-size: 1.1rem; max-width: 460px; margin-bottom: 2.2rem; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.4rem; }
.btn-primary {
  background: var(--coral); color: var(--white); font-weight: 800; font-size: 0.92rem;
  text-transform: uppercase; letter-spacing: 0.03em;
  padding: 1rem 2rem; clip-path: polygon(14px 0, 100% 0, 100% 100%, 0 100%, 0 14px);
  display: inline-block; transition: background 0.2s;
}
.btn-primary:hover { background: var(--coral-dark); }
.btn-outline {
  border: 2px solid var(--white); color: var(--white); font-weight: 800; font-size: 0.92rem;
  text-transform: uppercase; letter-spacing: 0.03em;
  padding: 1rem 2rem; display: inline-block; transition: all 0.2s;
  clip-path: polygon(14px 0, 100% 0, 100% 100%, 0 100%, 0 14px);
}
.btn-outline:hover { background: var(--white); color: var(--navy); }
.hero-badges { display: flex; gap: 1.8rem; flex-wrap: wrap; }
.hero-badge-item { display: flex; align-items: center; gap: 0.6rem; }
.hero-badge-item svg { width: 20px; height: 20px; color: var(--coral); flex-shrink: 0; }
.hero-badge-item span { font-size: 0.82rem; font-weight: 700; color: rgba(255,255,255,0.85); text-transform: uppercase; letter-spacing: 0.02em; }

.hero-img-wrap { position: relative; clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%); overflow: hidden; }
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; min-height: 560px; }
.hero-img-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(22,50,74,0.25), rgba(22,50,74,0.05)); }

/* ── STATS STRIP ── */
.stats-strip { background: var(--coral); padding: 2.4rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat-item .stat-num { font-family: 'Barlow Condensed', sans-serif; font-size: 2.6rem; font-weight: 800; color: var(--white); }
.stat-item .stat-label { font-size: 0.78rem; color: rgba(15,36,56,0.85); font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; margin-top: 0.2rem; }

/* ── AREAS WE TREAT (interactive grid) ── */
.areas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: 3rem; }
.area-card {
  background: var(--white); border: 2px solid var(--border); padding: 2rem 1.6rem;
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 0 100%);
  cursor: pointer; transition: border-color 0.2s, transform 0.2s, background 0.2s;
  display: flex; align-items: center; gap: 1.2rem;
}
.area-card:hover { border-color: var(--coral); transform: translateX(4px); background: var(--offwhite); }
.area-icon {
  width: 52px; height: 52px; background: var(--navy); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 0 100%);
}
.area-icon svg { width: 26px; height: 26px; color: var(--coral); }
.area-card h3 { font-size: 1.05rem; margin-bottom: 0.2rem; }
.area-card p { font-size: 0.82rem; margin: 0; }

/* ── SERVICES ── */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3rem; }
.service-card { text-align: left; }
.service-num { font-family: 'Barlow Condensed', sans-serif; font-size: 3rem; font-weight: 800; color: var(--border); line-height: 1; margin-bottom: 0.8rem; }
.service-card h3 { margin-bottom: 0.6rem; }
.service-card p { font-size: 0.88rem; }

/* ── TEAM ── */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; margin-top: 3rem; }
.team-card { background: var(--white); border: 2px solid var(--border); }
.team-photo { aspect-ratio: 4/5; overflow: hidden; position: relative; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-info { padding: 1.6rem 1.6rem 1.8rem; border-top: 3px solid var(--coral); }
.team-info h3 { margin-bottom: 0.2rem; }
.team-role { font-size: 0.8rem; font-weight: 700; color: var(--coral-dark); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 0.7rem; }
.team-info p.bio { font-size: 0.86rem; }

/* ── PROCESS ── */
.process-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; margin-top: 3rem; }
.process-step {
  background: var(--navy); color: var(--white); padding: 2.4rem 2rem;
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 0 100%);
}
.process-step .process-num { font-family: 'Barlow Condensed', sans-serif; font-size: 2.4rem; font-weight: 800; color: var(--coral); margin-bottom: 1rem; }
.process-step h3 { color: var(--white); margin-bottom: 0.6rem; }
.process-step p { color: rgba(255,255,255,0.65); font-size: 0.88rem; }

/* ── BILLING BANNER ── */
.billing-banner {
  background: var(--offwhite); border: 2px solid var(--border);
  padding: 3.5rem; display: grid; grid-template-columns: 1.4fr 1fr; gap: 2.5rem; align-items: center;
  clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 28px, 100% 100%, 0 100%);
}
.billing-list { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.4rem; }
.billing-pill {
  background: var(--white); border: 2px solid var(--navy); color: var(--navy); font-size: 0.8rem; font-weight: 700;
  padding: 0.5rem 1.1rem; text-transform: uppercase; letter-spacing: 0.02em;
}
.billing-cta { text-align: center; }

/* ── TESTIMONIALS ── */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; margin-top: 3rem; }
.testimonial-card { background: var(--navy); color: var(--white); padding: 2.2rem; }
.testimonial-stars { color: var(--coral); font-size: 0.95rem; margin-bottom: 1rem; letter-spacing: 0.05em; }
.testimonial-card p.quote { font-size: 0.94rem; color: rgba(255,255,255,0.9); margin-bottom: 1.4rem; }
.testimonial-author { font-size: 0.85rem; font-weight: 700; color: var(--coral); text-transform: uppercase; letter-spacing: 0.03em; }

/* ── FINAL CTA ── */
.final-cta { text-align: center; padding: 6rem 2rem; background: var(--coral); }
.final-cta .eyebrow { color: var(--navy-dark); justify-content: center; }
.final-cta .eyebrow::before { background: var(--navy-dark); }
.final-cta h2 { color: var(--white); max-width: 680px; margin: 0 auto 1.2rem; }
.final-cta p { color: rgba(15,36,56,0.8); max-width: 480px; margin: 0 auto 2.2rem; font-weight: 600; }
.final-cta .btn-primary { background: var(--navy); }
.final-cta .btn-primary:hover { background: var(--navy-dark); }

/* ── FOOTER ── */
.site-footer { background: var(--navy-dark); padding: 3rem 2rem 2rem; }
.footer-inner { max-width: 1180px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.5rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-logo-text { font-family: 'Barlow Condensed', sans-serif; font-size: 1.5rem; font-weight: 800; text-transform: uppercase; color: var(--white); }
.footer-logo-text span { color: var(--coral); }
.footer-links { display: flex; gap: 2rem; flex-wrap: wrap; }
.footer-links a { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.02em; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { max-width: 1180px; margin: 1.5rem auto 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; }
.footer-copy, .footer-credit { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.footer-credit a { color: rgba(255,255,255,0.6); }
.footer-credit a:hover { color: var(--white); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; min-height: auto; }
  .hero-img-wrap { clip-path: none; order: -1; }
  .hero-img-wrap img { min-height: 320px; }
  .hero-text-wrap { padding: 3rem 2rem; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .areas-grid, .team-grid, .process-row, .testimonial-grid { grid-template-columns: 1fr 1fr; }
  .billing-banner { grid-template-columns: 1fr; clip-path: none; padding: 2.5rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 2rem 1rem; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .container { padding: 0 1.25rem; }
  .section { padding: 4rem 0; }
  .services-grid, .areas-grid, .team-grid, .process-row, .testimonial-grid { grid-template-columns: 1fr; }
  .hero-text-wrap { padding: 2.5rem 1.5rem; }
}
