/* ============================================================
   MTM Recovery — Shared Stylesheet
   Used by every page. Page-specific tweaks are scoped with
   a body class: .page-about, .page-services, .page-testimonials,
   .page-gallery, .page-contact.
   ============================================================ */

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue: #3d7fc1;
  --blue-dark: #2f6aaa;
  --blue-light: #eaf2fb;
  --text-dark: #1a1a1a;
  --text-mid: #444;
  --text-light: #666;
  --white: #ffffff;
  --off-white: #f7f7f7;
  --border: #e5e5e5;
  --star: #f5c518;
}

body {
  font-family: 'Nunito Sans', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  height: 70px;
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
}
.nav-logo img { height: 46px; display: block; }
.nav-links { list-style: none; display: flex; gap: 36px; }
.nav-links a {
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
  padding-bottom: 4px;
}
.nav-links a:hover { color: #fff; }
.nav-links a.active {
  color: #fff;
  border-bottom: 2px solid #e07b50;
}

/* hamburger button — hidden on desktop, shown on mobile */
.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: transform 0.25s, opacity 0.25s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── SHARED UTILITIES ── */
.section-eyebrow,
.hero-eyebrow {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-light);
  margin-bottom: 8px;
  display: block;
}
.section-title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.05;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue); color: #fff;
  text-decoration: none;
  font-size: 12.5px; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 15px 36px;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--blue-dark); }
.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--blue);
  text-decoration: none;
  font-size: 12.5px; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 15px 40px;
  transition: all 0.2s;
}
.btn-white:hover { background: var(--blue-light); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--blue);
  border: 2px solid var(--blue);
  text-decoration: none;
  font-size: 12.5px; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 13px 36px;
  transition: all 0.2s;
}
.btn-outline:hover { background: var(--blue); color: #fff; }

/* services page adds extra top margin to .btn-primary */
.page-services .btn-primary { margin-top: 28px; }

/* ── HERO (shared structure) ── */
.hero {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.88);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(255,255,255,0.92) 40%, rgba(255,255,255,0.1) 75%);
}
/* "left" variant — used when image sits on the left */
.hero-overlay.left {
  background: linear-gradient(to left, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.88) 55%);
}
.hero-content {
  position: relative;
  padding: 80px 80px;
  max-width: 640px;
}
.hero-content h1 {
  font-size: clamp(36px, 4.5vw, 54px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 20px;
}
.hero-content p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--text-mid);
  max-width: 480px;
}

/* page-specific hero tweaks */
.page-about .hero { min-height: 580px; }
.page-about .hero-bg { background-position: center right; }
.page-services .hero { min-height: 580px; }
.page-services .hero-content { max-width: 620px; }
.page-services .hero-content p { max-width: 460px; }
.page-testimonials .hero { min-height: 520px; }
.page-testimonials .hero-content { max-width: 620px; }
.page-testimonials .hero-content p { max-width: 460px; }
.page-gallery .hero { min-height: 520px; }
.page-gallery .hero-bg { background-position: center top; }
.page-gallery .hero-content { max-width: 600px; }
.page-gallery .hero-content p { max-width: 440px; }
.page-contact .hero { min-height: 560px; }
.page-contact .hero-bg { filter: brightness(0.85); }
.page-contact .hero-content p { max-width: 460px; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */

/* ── OBJECTIVES ── */
.objectives {
  padding: 88px 80px;
  background: var(--white);
  border-top: 1px solid var(--border);
}
.objectives-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.objectives-img { position: relative; }
.objectives-img img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
}
.objectives-img::before {
  content: '';
  position: absolute;
  bottom: -16px;
  left: -16px;
  width: 60%;
  height: 60%;
  background: var(--blue);
  z-index: -1;
}
.objectives-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.objectives-list li {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}
.objectives-list li:first-child { border-top: 1px solid var(--border); }
.objectives-list li .num {
  font-size: 13px;
  font-weight: 800;
  color: var(--blue);
  min-width: 28px;
  padding-top: 2px;
  letter-spacing: 0.05em;
}
.objectives-list li p {
  font-size: 14.5px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-dark);
  line-height: 1.5;
  letter-spacing: 0.02em;
}

/* ── MISSION ── */
.mission {
  padding: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
}
.mission-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  min-height: 520px;
}
.mission-text {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}
.mission-text p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-mid);
  margin-top: 8px;
}
.mission-img { overflow: hidden; }
.mission-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 480px;
}

/* ── VISION ── */
.vision {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-top: 1px solid var(--border);
}
.vision-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.82);
}
.vision-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to left, rgba(255,255,255,0.04) 0%, rgba(10,30,60,0.45) 100%);
}
.vision-content {
  position: relative;
  z-index: 1;
  margin-left: auto;
  padding: 80px 80px;
  max-width: 580px;
}
.vision-content .section-title { color: #fff; }
.vision-content p {
  font-size: 15.5px;
  line-height: 1.8;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
}

/* ── THERAPIST PROFILE ── */
.profile-section {
  padding: 100px 80px;
  background: var(--white);
  border-top: 1px solid var(--border);
}
.profile-inner {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 80px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}
.profile-img-wrap { position: relative; }
.profile-img-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: top;
  display: block;
}
.profile-img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--blue);
  color: #fff;
  padding: 20px 24px;
  text-align: center;
  min-width: 110px;
}
.profile-img-badge .badge-num {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
  display: block;
  letter-spacing: -0.02em;
}
.profile-img-badge .badge-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
  display: block;
  margin-top: 4px;
}
.profile-role {
  font-size: 14px;
  color: var(--text-light);
  margin-top: -14px;
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}
.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.profile-tags span {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-light);
  padding: 6px 14px;
  border: 1px solid rgba(61,127,193,0.2);
}
.profile-bio {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
.profile-bio p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-mid);
}
.profile-bio p em {
  font-style: italic;
  color: var(--blue);
  font-weight: 600;
}
.profile-stats {
  display: flex;
  gap: 40px;
}
.pstat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pstat-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--blue);
  letter-spacing: -0.02em;
  line-height: 1;
}
.pstat-label {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
}

/* ── CERTIFICATION ── */
.cert-section {
  padding: 88px 80px;
  background: var(--off-white);
  border-top: 1px solid var(--border);
}
.cert-inner {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 72px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.cert-badge { display: flex; align-items: center; justify-content: center; }
.cert-badge img {
  width: 200px;
  height: 200px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.10));
}
.cert-text p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 14px;
}
.cert-text p strong { color: var(--text-dark); }
.cert-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}
.cert-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--text-mid);
}
.cert-check {
  color: var(--blue);
  font-weight: 900;
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.service-intro {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 32px;
  max-width: 560px;
}

/* sub-service item */
.sub-list { list-style: none; display: flex; flex-direction: column; gap: 0; }
.sub-item { padding: 18px 0; border-bottom: 1px solid var(--border); }
.sub-item:first-child { border-top: 1px solid var(--border); }
.sub-item h4 { font-size: 15px; font-weight: 700; color: var(--text-dark); margin-bottom: 6px; }
.sub-item p { font-size: 13.5px; line-height: 1.7; color: var(--text-light); }
.sub-item ul { margin-top: 8px; padding-left: 0; list-style: none; display: flex; flex-direction: column; gap: 4px; }
.sub-item ul li { font-size: 13.5px; color: var(--text-light); display: flex; gap: 8px; align-items: flex-start; }
.sub-item ul li::before { content: '—'; color: var(--blue); font-weight: 700; flex-shrink: 0; }

/* service sections: alternating layout */
.svc {
  display: grid; grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--border);
}
.svc.reverse { direction: rtl; }
.svc.reverse > * { direction: ltr; }
.svc-text {
  padding: 80px 72px;
  display: flex; flex-direction: column; justify-content: center;
  background: var(--white);
}
.svc.alt .svc-text { background: var(--off-white); }
.svc-img img {
  width: 100%; height: 100%; object-fit: cover; display: block; min-height: 500px;
}

/* ART — two-column text layout inside svc-text */
.art-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 8px; }
.art-col-title {
  font-size: 13px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--blue); margin-bottom: 10px;
}

/* 3-col layout: text | img | img */
.svc-3col {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  border-top: 1px solid var(--border);
}
.svc-3col .svc-text { padding: 80px 64px; background: var(--white); }
.svc-3col .svc-img img { width: 100%; height: 100%; object-fit: cover; display: block; min-height: 500px; }

/* ============================================================
   TESTIMONIALS PAGE
   ============================================================ */
.stats-strip {
  background: var(--blue);
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.stat {
  padding: 28px 40px; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.stat:last-child { border-right: none; }
.stat-num { font-size: 32px; font-weight: 900; color: #fff; line-height: 1; margin-bottom: 4px; }
.stat-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.6);
}

.t-section { padding: 88px 60px; background: var(--white); }
.t-section-header { text-align: center; margin-bottom: 56px; }

.t-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.t-card {
  padding: 36px 32px;
  border: 1px solid var(--border);
  background: var(--white);
  display: flex; flex-direction: column; gap: 16px;
  position: relative;
  transition: box-shadow 0.2s;
}
.t-card:hover { box-shadow: 0 4px 24px rgba(61,127,193,0.10); }
.t-card.featured {
  grid-column: span 2;
  background: var(--blue-light);
  border-color: var(--blue);
}
.t-card::before {
  content: '\201C';
  position: absolute; top: 16px; left: 24px;
  font-size: 64px; line-height: 1;
  color: var(--blue); opacity: 0.12;
  font-family: Georgia, serif;
}
.t-header { display: flex; align-items: center; gap: 14px; }
.t-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--blue); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800; flex-shrink: 0;
}
.t-card.featured .t-avatar { background: var(--blue-dark); }
.t-meta { display: flex; flex-direction: column; }
.t-name { font-size: 15px; font-weight: 800; color: var(--text-dark); }
.t-date { font-size: 12px; color: var(--text-light); margin-top: 1px; }
.t-stars { display: flex; gap: 3px; }
.t-stars span { color: var(--star); font-size: 15px; }
.t-body {
  font-size: 14px; line-height: 1.8; color: var(--text-mid);
  font-style: italic; padding-top: 8px;
}
.t-card.featured .t-body { font-size: 14.5px; }

/* ── CTA STRIP (shared base; per-page background) ── */
.cta-strip {
  padding: 72px 60px;
  text-align: center;
}
.cta-strip h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900; text-transform: uppercase;
  letter-spacing: -0.01em; margin-bottom: 12px;
}
.cta-strip p {
  font-size: 15px; max-width: 520px;
  margin: 0 auto 32px; line-height: 1.75;
}
.cta-strip .btn-primary { padding: 15px 40px; }

/* testimonials cta-strip: light */
.page-testimonials .cta-strip {
  background: var(--off-white);
  border-top: 1px solid var(--border);
}
.page-testimonials .cta-strip p { color: var(--text-mid); }

/* gallery cta-strip: blue */
.page-gallery .cta-strip { background: var(--blue); }
.page-gallery .cta-strip h2 { color: #fff; }
.page-gallery .cta-strip p { color: rgba(255,255,255,0.75); max-width: 500px; }

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gallery-section {
  padding: 72px 60px 88px;
  background: var(--white);
  border-top: 1px solid var(--border);
}

/* Row 1: 3 equal cols */
.row-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 12px;
}
.row-3 img { width: 100%; height: 340px; object-fit: cover; display: block; }

/* Row 2: 2 cols, left wider */
.row-2-wide {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.row-2-wide img { width: 100%; height: 400px; object-fit: cover; display: block; }

/* Row 3: 2 equal cols */
.row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.row-2 img { width: 100%; height: 360px; object-fit: cover; display: block; }

/* Row 4: 1 wide + 2 stacked */
.row-1-2 {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 12px;
}
.row-1-2 .main-img { height: 480px; object-fit: cover; display: block; width: 100%; }
.row-1-2 .stack { display: flex; flex-direction: column; gap: 12px; }
.row-1-2 .stack img { width: 100%; flex: 1; object-fit: cover; display: block; height: 234px; }

/* hover effect on gallery images */
.gallery-section img { transition: opacity 0.25s; }
.gallery-section img:hover { opacity: 0.88; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */

/* ── INFO BAR ── */
.info-bar {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: grid; grid-template-columns: repeat(3, 1fr);
}
.info-item {
  display: flex; align-items: center; gap: 20px;
  padding: 32px 52px;
  border-right: 1px solid var(--border);
}
.info-item:last-child { border-right: none; }
.info-icon {
  width: 52px; height: 52px; min-width: 52px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--white);
}
.info-icon svg { width: 22px; height: 22px; stroke: var(--blue); fill: none; stroke-width: 1.6; }
.info-text h4 {
  font-size: 11px; font-weight: 900; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--text-dark); margin-bottom: 4px;
}
.info-text p { font-size: 14px; color: var(--text-mid); line-height: 1.5; }
.info-text a { color: var(--blue); text-decoration: none; font-weight: 700; }
.info-text a:hover { text-decoration: underline; }

/* ── BOOKING + MAP ── */
.booking-section {
  display: grid; grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--border);
  min-height: 620px;
}
.booking-left {
  padding: 72px 72px;
  background: var(--white);
  display: flex; flex-direction: column;
}
.page-contact .section-title { margin-bottom: 32px; }

.booking-intro {
  font-size: 15px; line-height: 1.8;
  color: var(--text-mid); margin-bottom: 36px;
}
.booking-cta { margin-top: 32px; }
.booking-redirect-note {
  font-size: 12px; color: var(--text-light);
  text-align: center; margin-top: 10px; letter-spacing: 0.04em;
}
.booking-call {
  margin-top: 44px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.booking-call-label {
  font-size: 11px; font-weight: 900; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--text-dark); margin-bottom: 12px;
}
.booking-call-num {
  font-size: 22px; font-weight: 900;
  color: var(--blue); text-decoration: none;
}
.booking-call-hours {
  font-size: 13px; color: var(--text-light); margin-top: 6px;
}

/* Booking type card */
.booking-type {
  border: 1px solid var(--border);
  padding: 20px 24px; margin-bottom: 32px;
  display: flex; align-items: center; gap: 16px;
}
.booking-type-dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--blue); flex-shrink: 0;
}
.booking-type-text h4 { font-size: 14.5px; font-weight: 700; color: var(--text-dark); }
.booking-type-text span { font-size: 12.5px; color: var(--text-light); }

/* Calendar */
.calendar-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px;
}
.cal-title { font-size: 15px; font-weight: 700; color: var(--text-dark); }
.cal-nav { display: flex; gap: 8px; }
.cal-nav button {
  width: 32px; height: 32px;
  border: 1px solid var(--border); background: var(--white);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--text-mid); transition: all 0.2s;
}
.cal-nav button:hover { background: var(--blue-light); border-color: var(--blue); color: var(--blue); }
.day-list { display: flex; flex-direction: column; gap: 8px; }
.day-btn {
  width: 100%; padding: 16px 24px;
  border: 1px solid var(--border); background: var(--white);
  cursor: pointer; text-align: center; transition: all 0.2s;
  display: flex; justify-content: center; gap: 12px; align-items: center;
}
.day-btn:hover { border-color: var(--blue); background: var(--blue-light); }
.day-btn.selected { border-color: var(--blue); background: var(--blue); color: #fff; }
.day-btn .day-name { font-size: 14px; font-weight: 700; min-width: 40px; text-align: left; }
.day-btn .day-date { font-size: 13.5px; color: inherit; opacity: 0.7; }
.day-btn.selected .day-date { opacity: 0.85; }

/* Map side */
.booking-map {
  position: relative; overflow: hidden;
  background: var(--off-white);
}
.booking-map iframe {
  width: 100%; height: 100%; min-height: 620px;
  border: none; display: block;
  filter: grayscale(20%);
}
.map-card {
  position: absolute; top: 24px; left: 24px;
  background: var(--white); padding: 16px 20px;
  border: 1px solid var(--border);
  max-width: 260px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.map-card h4 { font-size: 13.5px; font-weight: 800; color: var(--text-dark); margin-bottom: 4px; }
.map-card p { font-size: 12.5px; color: var(--text-light); line-height: 1.6; }
.map-card a {
  font-size: 12px; font-weight: 700; color: var(--blue);
  text-decoration: none; display: inline-block; margin-top: 10px;
  letter-spacing: 0.06em; text-transform: uppercase;
}

/* Booking button */
.btn-book-square {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  width: 100%; padding: 18px 32px;
  background: var(--blue); color: #fff;
  text-decoration: none;
  font-size: 13.5px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  border: 2px solid var(--blue);
  transition: all 0.2s;
}
.btn-book-square:hover { background: var(--blue-dark); border-color: var(--blue-dark); }

/* ── CTA BOTTOM (contact only) ── */
.cta-bottom {
  background: var(--blue);
  padding: 64px 60px;
  text-align: center;
}
.cta-bottom h2 {
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 900; text-transform: uppercase;
  color: #fff; margin-bottom: 12px; letter-spacing: -0.01em;
}
.cta-bottom p {
  font-size: 15px; color: rgba(255,255,255,0.72);
  max-width: 500px; margin: 0 auto 28px; line-height: 1.75;
}

/* ============================================================
   HOME PAGE
   ============================================================ */
.page-home .hero { min-height: 600px; }
.page-home .hero-bg { background-position: center right; filter: brightness(0.9); }
.page-home .hero-overlay {
  background: linear-gradient(to right, rgba(255,255,255,0.92) 40%, rgba(255,255,255,0.15) 75%);
}
.page-home .hero-content p { max-width: 440px; margin-bottom: 32px; }
.page-home .section-title { margin-bottom: 28px; }

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── WHY ESSENTIAL ── */
.why { display: grid; grid-template-columns: 1fr 1fr; }
.why-text {
  padding: 80px 72px;
  display: flex; flex-direction: column; justify-content: center;
  background: var(--white);
}
.why-text > p.intro {
  font-size: 15px; line-height: 1.75;
  color: var(--text-mid); margin-bottom: 32px;
}
.why-list { list-style: none; display: flex; flex-direction: column; gap: 0; }
.why-list li {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 16px 0; border-bottom: 1px solid var(--border);
}
.why-list li:first-child { border-top: 1px solid var(--border); }
.why-list li .num {
  font-size: 13px; font-weight: 800; color: var(--blue);
  min-width: 28px; padding-top: 2px; letter-spacing: 0.05em;
}
.why-list li .li-text strong {
  font-size: 14.5px; font-weight: 700;
  color: var(--text-dark); display: block; margin-bottom: 3px;
}
.why-list li .li-text span {
  font-size: 13.5px; color: var(--text-light); line-height: 1.6;
}
.why-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block; min-height: 500px;
}

/* ── AT YOUR DOOR ── */
.door { display: grid; grid-template-columns: 1fr 1fr; }
.door-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block; min-height: 500px;
}
.door-text {
  padding: 80px 72px;
  display: flex; flex-direction: column; justify-content: center;
  background: var(--off-white);
}
.door-list { list-style: none; display: flex; flex-direction: column; gap: 0; }
.door-list li {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 16px 0; border-bottom: 1px solid var(--border);
}
.door-list li:first-child { border-top: 1px solid var(--border); }
.door-list li .num {
  font-size: 13px; font-weight: 800; color: var(--blue);
  min-width: 28px; padding-top: 2px; letter-spacing: 0.05em;
}
.door-list li .li-text strong {
  font-size: 14.5px; font-weight: 700;
  color: var(--text-dark); display: block; margin-bottom: 3px;
}
.door-list li .li-text span {
  font-size: 13.5px; color: var(--text-light); line-height: 1.6;
}

/* ── BENEFITS ── */
.benefits {
  padding: 88px 60px;
  text-align: center;
  background: var(--white);
  border-top: 1px solid var(--border);
}
.benefits .section-eyebrow { text-align: center; }
.benefits .section-title { text-align: center; margin-bottom: 56px; }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  max-width: 1100px; margin: 0 auto;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}
.benefit-item {
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 20px 36px;
  display: flex; flex-direction: column;
  align-items: center; gap: 18px;
  transition: background 0.2s;
}
.benefit-item:hover { background: var(--blue-light); }
.benefit-icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--border);
  border-radius: 50%;
}
.benefit-icon svg { width: 26px; height: 26px; stroke: var(--blue); fill: none; stroke-width: 1.8; }
.benefit-item p {
  font-size: 13px; font-weight: 600;
  color: var(--text-mid); line-height: 1.5;
  text-align: center;
}

/* ── BOOK CTA ── */
.book-cta {
  padding: 88px 60px 72px;
  text-align: center;
  background: var(--off-white);
  border-top: 1px solid var(--border);
}
.book-cta .section-eyebrow { font-size: 15px; margin-bottom: 6px; }
.book-cta .section-title { font-size: clamp(36px, 4vw, 52px); margin-bottom: 18px; }
.book-cta .cta-desc {
  font-size: 15px; font-weight: 400;
  line-height: 1.75; color: var(--text-mid);
  max-width: 680px; margin: 0 auto 52px;
}
.book-photos {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
  max-width: 1100px; margin: 0 auto 44px;
  align-items: end;
}
.book-photos img { width: 100%; object-fit: cover; display: block; }
.book-photos img:nth-child(1) { height: 260px; }
.book-photos img:nth-child(2) { height: 300px; }
.book-photos img:nth-child(3) { height: 260px; }
.book-photos img:nth-child(4) { height: 300px; }
.btn-book {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--blue); color: var(--white);
  text-decoration: none;
  font-size: 12.5px; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 16px 48px;
  transition: background 0.2s;
}
.btn-book:hover { background: var(--blue-dark); }
.btn-book .arrow { font-size: 17px; }

/* ── HOME TESTIMONIALS (different layout from testimonials page) ── */
.testimonials-section {
  padding: 88px 60px;
  background: var(--white);
  border-top: 1px solid var(--border);
}
.testimonials-section .section-eyebrow { text-align: center; }
.testimonials-section .section-title { text-align: center; margin-bottom: 52px; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px; margin: 0 auto;
}
.testimonial {
  padding: 36px 32px;
  border: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 24px;
  background: var(--white);
  position: relative;
}
.testimonial::before {
  content: '\201C';
  position: absolute; top: 20px; left: 28px;
  font-size: 72px; line-height: 1;
  color: var(--blue); opacity: 0.15;
  font-family: Georgia, serif;
}
.testimonial p {
  font-size: 14.5px; line-height: 1.8;
  color: var(--text-mid); font-style: italic;
  padding-top: 16px;
}
.testimonial-footer {
  display: flex; align-items: center; gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}
/* home-page t-avatar (smaller, light bg) — scoped to avoid clashing with .t-avatar in testimonials */
.page-home .t-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--blue-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800; color: var(--blue);
  flex-shrink: 0;
}
.testimonial cite {
  font-size: 13px; font-weight: 800;
  font-style: normal;
  color: var(--text-dark);
  letter-spacing: 0.05em; text-transform: uppercase;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  padding: 60px 60px 0;
}
.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 48px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom: 52px;
}
.footer-brand img {
  height: 50px;
  display: block;
  margin-bottom: 16px;
  background: var(--blue);
  padding: 10px 14px;
}
.footer-brand p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 18px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--blue);
  text-decoration: none;
  padding: 7px 14px;
  transition: background 0.2s;
}
.footer-social a:hover { background: var(--blue-dark); }
.footer-col h4 {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--blue);
  display: inline-block;
}
.footer-col p, .footer-col address {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.9;
  font-style: normal;
}
.footer-col a { color: var(--blue); text-decoration: none; }
.footer-col a:hover { text-decoration: underline; }
.footer-col .hours {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-dark);
  display: block;
  margin-top: 4px;
}
.footer-col .phone {
  font-size: 16px;
  font-weight: 800;
  color: var(--blue);
}
/* footer nav links override the blue colour with text-mid */
.footer-col address a {
  display: block;
  color: var(--text-mid);
  text-decoration: none;
  line-height: 2;
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 18px 0;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--text-light);
  text-transform: uppercase;
  max-width: 1100px;
  margin: 0 auto;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--blue);
    padding: 8px 24px 16px;
    gap: 0;
    box-shadow: 0 6px 14px rgba(0,0,0,0.15);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; border-bottom: 1px solid rgba(255,255,255,0.12); }
  .nav-links li:last-child { border-bottom: none; }
  .nav-links a { display: block; padding: 14px 0; }
  .nav-links a.active { border-bottom: none; color: #e07b50; }
  .hero-content { padding: 60px 32px; }

  /* About */
  .objectives { padding: 60px 32px; }
  .objectives-inner { grid-template-columns: 1fr; gap: 40px; }
  .objectives-img::before { display: none; }
  .mission-inner { grid-template-columns: 1fr; }
  .mission-text { padding: 48px 32px; }
  .vision-content { padding: 60px 32px; margin-left: 0; max-width: 100%; }
  .cert-inner { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .cert-section { padding: 60px 32px; }
  .profile-section { padding: 60px 32px; }
  .profile-inner { grid-template-columns: 1fr; gap: 48px; }
  .profile-img-badge { right: 0; bottom: 0; }
  .profile-stats { flex-wrap: wrap; gap: 24px; }

  /* Services */
  .svc, .svc-3col { grid-template-columns: 1fr; direction: ltr; }
  .svc-img img, .svc-3col .svc-img img { min-height: 260px; }
  .svc-text, .svc-3col .svc-text { padding: 48px 32px; }
  .art-cols { grid-template-columns: 1fr; }

  /* Testimonials */
  .stats-strip { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); }
  .t-section { padding: 60px 24px; }
  .t-grid { grid-template-columns: 1fr; }
  .t-card.featured { grid-column: span 1; }
  .cta-strip { padding: 60px 24px; }

  /* Gallery */
  .gallery-section { padding: 48px 16px; }
  .row-3 { grid-template-columns: 1fr; }
  .row-3 img { height: 260px; }
  .row-2-wide, .row-2, .row-1-2 { grid-template-columns: 1fr; }
  .row-2-wide img, .row-2 img, .row-1-2 .main-img { height: 260px; }
  .row-1-2 .stack img { height: 200px; }

  /* Contact */
  .info-bar { grid-template-columns: 1fr; }
  .info-item { border-right: none; border-bottom: 1px solid var(--border); padding: 24px 32px; }
  .booking-section { grid-template-columns: 1fr; }
  .booking-left { padding: 48px 32px; }
  .booking-map iframe { min-height: 360px; }
  .cta-bottom { padding: 60px 24px; }

  /* Home */
  .why, .door { grid-template-columns: 1fr; }
  .why-img img, .door-img img { min-height: 280px; }
  .why-text, .door-text { padding: 48px 32px; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .book-photos { grid-template-columns: 1fr 1fr; }
  .book-photos img { height: 200px !important; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .benefits, .book-cta, .testimonials-section { padding-left: 24px; padding-right: 24px; }

  /* Footer */
  .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; }
  footer { padding-left: 24px; padding-right: 24px; }
}
