/* ============================================================
   HOUSE OF REHAB — Global Stylesheet
   ============================================================ */

/* --- Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600&display=swap');

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:      #2B4035;
  --green-mid:  #3a5447;
  --green-light:#4a6b59;
  --cream:      #f9f6f1;
  --sand:       #ede8df;
  --white:      #ffffff;
  --dark:       #1a1a1a;
  --mid:        #4a4a4a;
  --light-text: #7a7a7a;
  --border:     #ddd8cf;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;
  --max-width:  1200px;
  --radius:     4px;
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--dark);
  background: var(--white);
  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; }

/* --- Typography --- */
h1, h2, h3, h4 { font-family: var(--font-serif); line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 600; }
p  { font-size: 1rem; color: var(--mid); line-height: 1.75; }

.section-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.75rem;
  display: block;
}

/* --- Layout --- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 2rem; }
.section    { padding: 5rem 0; }
.section--cream { background: var(--cream); }
.section--sand  { background: var(--sand); }
.section--green { background: var(--green); color: var(--white); }
.section--green p { color: rgba(255,255,255,0.8); }

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn--primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn--primary:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
}
.btn--outline {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn--outline:hover {
  background: var(--green);
  color: var(--white);
}
.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn--outline-white:hover {
  background: var(--white);
  color: var(--green);
}
.btn--large { padding: 1rem 2.5rem; font-size: 1rem; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 2rem;
}

/* Logo */
.nav__logo { display: flex; flex-direction: row; align-items: center; gap: 0.6rem; line-height: 1; text-decoration: none; }
.nav__logo-mark { width: 50px; height: 42px; flex-shrink: 0; display: block; }
.footer__logo-mark { width: 49px; height: 41px; flex-shrink: 0; display: block; }
.nav__logo-text { display: flex; flex-direction: column; padding-left: 0.7rem; border-left: 1px solid var(--border, #ddd8cf); }
.nav__logo-top {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--green);
}
.nav__logo-main {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.02em;
}
.nav__logo-sub {
  font-family: var(--font-sans);
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--light-text);
  margin-top: 1px;
}

/* Nav links */
.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav__links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--dark);
  letter-spacing: 0.02em;
  transition: color var(--transition);
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 100%;
  height: 1px;
  background: var(--green);
  transition: right var(--transition);
}
.nav__links a:hover::after,
.nav__links a.active::after { right: 0; }
.nav__links a:hover,
.nav__links a.active { color: var(--green); }

.nav__cta { margin-left: 1rem; }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: all var(--transition);
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav__mobile {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 1.5rem 2rem;
  gap: 1.25rem;
}
.nav__mobile a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark);
  padding: 0.25rem 0;
  transition: color var(--transition);
}
.nav__mobile a:hover { color: var(--green); }
.nav__mobile .btn { width: 100%; text-align: center; margin-top: 0.5rem; }
.nav__mobile.open { display: flex; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-top: 80px;
  overflow: hidden;
  background: var(--green);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero-strength.png');
  background-size: cover;
  background-position: center 30%;
  opacity: 0.45;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(43,64,53,0.3) 0%,
    rgba(43,64,53,0.75) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 6rem 0 5rem;
  max-width: 720px;
}

.hero__content h1 {
  color: var(--white);
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero__content h1 em {
  font-style: italic;
  font-weight: 400;
}

.hero__content p {
  color: rgba(255,255,255,0.88);
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
  max-width: 540px;
}

.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ============================================================
   HOME — INTRO STRIP
   ============================================================ */
.intro-strip {
  background: var(--sand);
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}
.intro-strip__inner {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.intro-strip__item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--green);
}
.intro-strip__item svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ============================================================
   HOME — WHY SECTION
   ============================================================ */
.why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.why__text h2 { margin-bottom: 1.25rem; }
.why__text p  { margin-bottom: 1.5rem; }

.why__pillars {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.pillar {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.pillar__icon {
  width: 44px;
  height: 44px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pillar__icon svg { width: 20px; height: 20px; fill: none; stroke: white; stroke-width: 2; }
.pillar__body h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.3rem; }
.pillar__body p  { font-size: 0.9rem; }

/* ============================================================
   HOME — SERVICES PREVIEW
   ============================================================ */
.services-preview__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1rem;
}

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

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(43,64,53,0.12);
}
.service-card__img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--sand);
}
.service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.service-card:hover .service-card__img img { transform: scale(1.04); }

.service-card__body { padding: 1.5rem; }
.service-card__tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.5rem;
  display: block;
}
.service-card__body h3 { margin-bottom: 0.6rem; font-size: 1.1rem; }
.service-card__body p  { font-size: 0.88rem; margin-bottom: 1.25rem; }
.service-card__link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--transition);
}
.service-card__link:hover { gap: 0.7rem; }

/* ============================================================
   HOME — CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--green);
  padding: 5rem 0;
  text-align: center;
}
.cta-banner h2 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}
.cta-banner p {
  color: rgba(255,255,255,0.8);
  max-width: 480px;
  margin: 0 auto 2.5rem;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--green);
  padding: 9rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}
.page-hero__content { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero__subtitle {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  max-width: 560px;
}
.page-hero__divider {
  width: 60px;
  height: 3px;
  background: rgba(255,255,255,0.5);
  margin: 1.25rem 0;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-intro__img {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--sand);
}
.about-intro__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-intro__text h2 { margin-bottom: 0.75rem; }
.about-intro__text .page-hero__divider { background: var(--green); margin: 1rem 0 1.5rem; }
.about-intro__text p { margin-bottom: 1.25rem; }

/* Philosophy pillars on About */
.philosophy { background: var(--cream); }
.philosophy h2 { text-align: center; margin-bottom: 0.75rem; }
.philosophy__sub { text-align: center; max-width: 520px; margin: 0 auto 3.5rem; }

.philosophy__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.philosophy-card {
  background: var(--white);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  border: 1px solid var(--border);
}
.philosophy-card__icon {
  width: 56px;
  height: 56px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
.philosophy-card__icon svg { width: 24px; height: 24px; fill: none; stroke: white; stroke-width: 2; }
.philosophy-card h3 { margin-bottom: 0.6rem; }
.philosophy-card p  { font-size: 0.9rem; }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-page .services-grid { grid-template-columns: repeat(3, 1fr); }
.service-detail {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-detail:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(43,64,53,0.1);
}
.service-detail__img {
  aspect-ratio: 3/2;
  overflow: hidden;
  background: var(--sand);
}
.service-detail__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-detail__body { padding: 2rem; }
.service-detail__tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.5rem;
  display: block;
}
.service-detail__body h3 { margin-bottom: 0.75rem; }
.service-detail__body p  { font-size: 0.9rem; margin-bottom: 1.5rem; }

/* ACC info box */
.acc-info {
  background: var(--green);
  border-radius: 8px;
  padding: 3rem;
  color: var(--white);
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}
.acc-info__icon {
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.acc-info__icon svg { width: 28px; height: 28px; fill: none; stroke: white; stroke-width: 2; }
.acc-info h3 { color: var(--white); margin-bottom: 0.75rem; }
.acc-info p  { color: rgba(255,255,255,0.8); font-size: 0.95rem; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 { margin-bottom: 0.75rem; }
.contact-info p  { margin-bottom: 2rem; }

.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.contact-detail__icon {
  width: 44px;
  height: 44px;
  background: var(--sand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail__icon svg { width: 18px; height: 18px; fill: none; stroke: var(--green); stroke-width: 2; }
.contact-detail__text h4 { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--light-text); margin-bottom: 0.2rem; }
.contact-detail__text p  { font-size: 0.95rem; color: var(--dark); margin: 0; }

.map-wrap {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.map-wrap iframe {
  width: 100%;
  height: 420px;
  display: block;
  border: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--green);
  color: var(--white);
  padding: 4rem 0 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  margin-bottom: 2rem;
}
.footer__logo { margin-bottom: 1rem; align-items: flex-start; }
.footer__logo .nav__logo-text { border-left-color: rgba(255,255,255,0.2); }
.footer__logo .nav__logo-main { color: var(--white); font-size: 1.5rem; }
.footer__logo .nav__logo-top { color: rgba(255,255,255,0.6); }
.footer__logo .nav__logo-sub { color: rgba(255,255,255,0.4); }
.footer__tagline { color: rgba(255,255,255,0.7); font-size: 0.9rem; max-width: 260px; margin-top: 0.75rem; }

.footer__heading {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.25rem;
}
.footer__links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__links a {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--white); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer__copy { font-size: 0.8rem; color: rgba(255,255,255,0.45); }
.footer__acc  { font-size: 0.8rem; color: rgba(255,255,255,0.55); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .why__grid            { grid-template-columns: 1fr; gap: 3rem; }
  .about-intro__grid    { grid-template-columns: 1fr; gap: 3rem; }
  .services-grid        { grid-template-columns: repeat(2, 1fr); }
  .services-page .services-grid { grid-template-columns: repeat(2, 1fr); }
  .philosophy__grid     { grid-template-columns: repeat(2, 1fr); }
  .contact-grid         { grid-template-columns: 1fr; }
  .footer__grid         { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .services-grid  { grid-template-columns: 1fr; }
  .philosophy__grid { grid-template-columns: 1fr; }
  .footer__grid   { grid-template-columns: 1fr; gap: 2rem; }
  .hero__actions  { flex-direction: column; }
  .hero__actions .btn { text-align: center; }
  .acc-info       { flex-direction: column; gap: 1.25rem; }
  .about-intro__grid { grid-template-columns: 1fr; }
  .about-intro__img { display: none; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.7rem; }
}

/* ============================================================
   NAV SCROLLED STATE
   ============================================================ */
.nav--scrolled {
  box-shadow: 0 2px 24px rgba(43,64,53,0.12);
  background: rgba(255,255,255,0.98);
}

/* ============================================================
   PAGE HERO — additional
   ============================================================ */
.page-hero p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  max-width: 560px;
  margin-top: 1rem;
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); }

/* ============================================================
   SECTION HEADER (centred header reused across pages)
   ============================================================ */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header h2 { margin-top: 0.4rem; }

/* ============================================================
   ABOUT PAGE — new components
   ============================================================ */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-intro__text h2 { margin-bottom: 1rem; }
.about-intro__text p  { margin-bottom: 1.25rem; color: var(--light-text); }
.about-intro__image {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--sand);
}
.about-intro__image img { width: 100%; height: 100%; object-fit: cover; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2.25rem 2rem;
}
.value-card__number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--green);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 1rem;
}
.value-card h3 { margin-bottom: 0.75rem; font-size: 1.1rem; }
.value-card p  { font-size: 0.93rem; color: var(--light-text); }

.team-grid {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.team-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 3rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  align-items: flex-start;
}
.team-card__photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--sand);
  flex-shrink: 0;
}
.team-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card__body h3 { margin-bottom: 0.25rem; font-size: 1.5rem; }
.team-card__title {
  font-size: 0.8rem;
  color: var(--green);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.team-card__body p { font-size: 0.95rem; color: var(--light-text); margin-bottom: 0.75rem; line-height: 1.8; }

.acc-info-block {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
  background: var(--green);
  border-radius: var(--radius-md);
  padding: 3rem;
  color: var(--white);
}
.acc-info-block__icon {
  width: 64px;
  height: 64px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.acc-info-block__icon svg { width: 28px; height: 28px; fill: none; stroke: white; stroke-width: 2; }
.acc-info-block__text h3 { color: var(--white); margin-bottom: 0.75rem; }
.acc-info-block__text p  { color: rgba(255,255,255,0.8); margin-bottom: 0.6rem; font-size: 0.95rem; }

/* ============================================================
   SERVICES PAGE — new components
   ============================================================ */
.acc-box {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
  background: var(--white);
  border: 2px solid var(--green);
  border-radius: var(--radius-md);
  padding: 2.5rem;
}
.acc-box__badge {
  background: var(--green);
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.acc-box__content h3 { margin-bottom: 0.75rem; }
.acc-box__content p  { font-size: 0.93rem; color: var(--light-text); margin-bottom: 0.5rem; }

.services-list { display: flex; flex-direction: column; gap: 5rem; }

.service-full {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.service-full--reverse .service-full__image { order: 2; }
.service-full--reverse .service-full__body  { order: 1; }

.service-full__image {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--sand);
}
.service-full__image img { width: 100%; height: 100%; object-fit: cover; }

/* Dual-photo layout for services with two images (e.g. Dry Needling + BFR) */
.service-full__image--duo {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 0.5rem;
  aspect-ratio: auto;
  min-height: 340px;
}
.service-full__image--duo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}
@media (max-width: 1024px) {
  .service-full__image--duo {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    min-height: auto;
    max-height: 260px;
  }
}

.services-section-header {
  margin: 3rem 0 1.5rem;
  padding: 2rem;
  background: var(--cream);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--green);
}
.services-section-header .section-label {
  display: block;
  margin-bottom: 0.5rem;
}
.services-section-header p {
  color: var(--mid);
  max-width: 680px;
  margin: 0;
}

.service-full__duration {
  font-size: 0.85rem;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 1rem;
}
.service-full__body h3  { margin: 0.5rem 0 1rem; font-size: 1.6rem; }
.service-full__body p   { color: var(--light-text); margin-bottom: 1rem; font-size: 0.95rem; }

.service-full__includes {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.service-full__includes li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--dark);
}
.service-full__includes li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
}
.faq-item h4 { font-size: 1rem; margin-bottom: 0.6rem; color: var(--dark); }
.faq-item p  { font-size: 0.9rem; color: var(--light-text); }
.faq-item a  { color: var(--green); text-decoration: underline; }

/* ============================================================
   CONTACT PAGE — new components
   ============================================================ */
.contact-details h2 { margin-bottom: 2rem; }

.contact-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  margin-bottom: 1.75rem;
}
.contact-item__icon {
  width: 44px;
  height: 44px;
  background: var(--sand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item__icon svg { width: 18px; height: 18px; fill: none; stroke: var(--green); stroke-width: 2; }
.contact-item__label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--light-text);
  margin-bottom: 0.25rem;
}
.contact-item p { margin: 0; font-size: 0.95rem; line-height: 1.7; }
.contact-item a { color: var(--dark); }
.contact-item a:hover { color: var(--green); }
.contact-item__note { font-size: 0.8rem; color: var(--light-text); font-style: italic; margin-top: 0.15rem; }

.contact-map {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 500px;
}

.booking-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.booking-cta__text h2 { margin-bottom: 1rem; }
.booking-cta__text p  { color: var(--light-text); margin-bottom: 0.75rem; font-size: 0.95rem; }

.booking-cta__info { display: flex; flex-direction: column; gap: 1.5rem; }
.booking-note {
  padding: 1.5rem;
  border-left: 3px solid var(--green);
  background: var(--white);
}
.booking-note h4 { font-size: 0.95rem; margin-bottom: 0.4rem; }
.booking-note p  { font-size: 0.88rem; color: var(--light-text); margin: 0; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.revealed {
  opacity: 1;
  transform: none;
}

/* ============================================================
   RESPONSIVE — additional breakpoints
   ============================================================ */
@media (max-width: 1024px) {
  .about-intro      { grid-template-columns: 1fr; gap: 3rem; }
  .about-intro__image { display: none; }
  .values-grid      { grid-template-columns: 1fr; }
  .service-full     { grid-template-columns: 1fr; gap: 2.5rem; }
  .service-full--reverse .service-full__image { order: 0; }
  .service-full--reverse .service-full__body  { order: 0; }
  .service-full__image { max-height: 320px; }
  .faq-grid         { grid-template-columns: 1fr; }
  .booking-cta      { grid-template-columns: 1fr; gap: 3rem; }
  .acc-box          { flex-direction: column; gap: 1.5rem; }
  .acc-info-block   { flex-direction: column; gap: 1.5rem; }
  .team-card        { grid-template-columns: 1fr; gap: 1.5rem; }
  .team-card__photo { width: 120px; height: 120px; }
}

@media (max-width: 768px) {
  .values-grid      { grid-template-columns: 1fr; }
  .contact-map      { min-height: 300px; }
  .team-card        { grid-template-columns: 1fr; gap: 1.25rem; padding: 1.5rem; }
  .team-card__photo { width: 100px; height: 100px; }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
}
.testimonial-card__mark {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  line-height: 0.8;
  color: var(--green);
  opacity: 0.15;
  margin-bottom: 0.75rem;
  display: block;
}
.testimonial-card p {
  font-size: 0.95rem;
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  font-style: italic;
}
.testimonial-card__author {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--green);
  font-style: normal;
  display: block;
}
.testimonial-card__detail {
  font-size: 0.8rem;
  color: var(--light-text);
  font-style: normal;
}

/* ============================================================
   CONDITIONS GRID
   ============================================================ */
.conditions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-top: 2.5rem;
}
.condition-tag {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: var(--dark);
  font-weight: 500;
  text-align: center;
  transition: all var(--transition);
}
.condition-tag:hover {
  border-color: var(--green);
  color: var(--green);
  background: var(--cream);
}

/* ============================================================
   FOOTER — SOCIAL LINKS
   ============================================================ */
.footer__social {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.25rem;
}
.footer__social-link {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.footer__social-link:hover { background: rgba(255,255,255,0.2); }
.footer__social-link svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: rgba(255,255,255,0.8);
  stroke-width: 2;
}

/* ============================================================
   REGISTRATION CALLOUT (services page)
   ============================================================ */
.reg-callout {
  background: var(--sand);
  border-radius: var(--radius-md);
  padding: 1.75rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}
.reg-callout__text h3 { font-size: 1.05rem; margin-bottom: 0.2rem; }
.reg-callout__text p  { font-size: 0.9rem; color: var(--light-text); margin: 0; }

/* ============================================================
   FEES PAGE
   ============================================================ */
.fees-intro { max-width: 680px; margin-bottom: 3rem; }
.fees-intro p { margin-bottom: 1rem; }
.fees-category { margin-bottom: 3.5rem; }
.fees-category__label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--green);
  display: inline-block;
}
.fees-table { width: 100%; border-collapse: collapse; }
.fees-table th {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--light-text);
  text-align: left;
  padding: 0.75rem 1rem;
  border-bottom: 2px solid var(--border);
}
.fees-table th:last-child { text-align: right; }
.fees-table td {
  padding: 1.1rem 1rem;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  font-size: 0.95rem;
  color: var(--dark);
}
.fees-table td:last-child {
  text-align: right;
  font-weight: 600;
  color: var(--green);
  white-space: nowrap;
}
.fees-table tr:last-child td { border-bottom: none; }
.fees-table__sub {
  font-size: 0.82rem;
  color: var(--light-text);
  margin-top: 0.2rem;
  font-weight: 400;
}
.fee-note {
  background: var(--sand);
  border-radius: var(--radius-md);
  padding: 1.5rem 2rem;
  margin-top: 1.5rem;
}
.fee-note p { font-size: 0.9rem; color: var(--mid); margin-bottom: 0.5rem; }
.fee-note p:last-child { margin-bottom: 0; }

/* ============================================================
   CONSENT PAGE
   ============================================================ */
.consent-doc { max-width: 760px; margin: 0 auto; }
.consent-doc h2 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--green);
  margin: 2.5rem 0 0.75rem;
}
.consent-doc h3 {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  margin: 1.5rem 0 0.5rem;
}
.consent-doc p {
  color: var(--light-text);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.consent-doc ul {
  color: var(--light-text);
  line-height: 1.8;
  margin: 0 0 1rem 1.5rem;
  list-style: disc;
}
.consent-doc ul li { margin-bottom: 0.4rem; }
.consent-doc a { color: var(--green); }
.consent-meta {
  font-size: 0.875rem;
  color: var(--light-text);
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

/* ============================================================
   RESPONSIVE — new components
   ============================================================ */
@media (max-width: 1024px) {
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .conditions-grid   { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .conditions-grid   { grid-template-columns: repeat(2, 1fr); }
  .reg-callout       { flex-direction: column; align-items: flex-start; }
  .fees-table td,
  .fees-table th     { padding: 0.75rem 0.5rem; font-size: 0.875rem; }
  .fees-table td:last-child { white-space: normal; }
}
