/* =========================================
   AG MANI & PEDI WELLNESS — GLOBAL STYLES
   Faithfully converted from Figma design
   ========================================= */

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

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

:root {
  --primary:    #5C5952;
  --accent:     #D09263;
  --bg:         #F9F7F2;
  --bg2:        #F0EFE9;
  --white:      #FFFFFF;
  --tertiary:   #D4C9BC;

  --playfair: 'Playfair Display', serif;
  --manrope:  'Manrope', sans-serif;
}

html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: var(--manrope); background: var(--bg); color: var(--primary); }
/* NOTE: overflow-x must be on html, NOT body — putting it on body breaks
   position:fixed overlays/panels on iOS Safari (makes them unclickable) */

/* ─── NAV ─── */
.nav {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 100px;
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 900;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.nav.scrolled { border-color: var(--tertiary); box-shadow: 0 2px 12px rgba(92,89,82,0.08); }

.nav-logo {
  font-family: var(--playfair);
  font-weight: 600;
  font-size: 28px;
  color: var(--primary);
  text-decoration: none;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-left: auto;
  list-style: none;
}

.nav-link {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-decoration: none;
}
.nav-link span {
  font-family: var(--playfair);
  font-weight: 500;
  font-size: 16px;
  color: var(--accent);
  white-space: nowrap;
  transition: color 0.2s;
}
.nav-link .underline-bar {
  height: 2px;
  background: transparent;
  transition: background 0.2s;
}
.nav-link.active span { font-weight: 800; color: var(--primary); }
.nav-link.active .underline-bar { background: var(--primary); }
.nav-link:hover span { color: var(--primary); }

/* Mobile nav */
.nav-menu-btn {
  display: none;
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--playfair);
  font-weight: 700;
  font-size: 22px;
  color: var(--accent);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  padding: 8px;             /* larger tap target */
  min-width: 44px;
  min-height: 44px;
  display: none;
  align-items: center;
  justify-content: flex-end;
}

/* ─── MOBILE OVERLAY + PANEL ─── */
.mobile-overlay {
  display: block;           /* always in DOM flow so fixed works */
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;       /* hidden but not display:none — keeps fixed context */
  transition: opacity 0.35s ease, visibility 0.35s ease;
  pointer-events: none;
}
.mobile-overlay.show {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.mobile-panel {
  position: fixed;
  top: 0; right: -360px;
  width: 340px;
  height: 100%;
  height: 100dvh;            /* use dvh for mobile browsers with address bar */
  background: var(--bg);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  padding: 16px 0;
  gap: 72px;
  transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow-y: auto;          /* allow scroll if content taller than screen */
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
.mobile-panel.open { right: 0; }

.mobile-panel-close {
  align-self: flex-end;
  padding: 8px 16px;
  min-width: 44px;
  min-height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--playfair);
  font-weight: 700;
  font-size: 22px;
  color: var(--accent);
  display: flex;
  align-items: center;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 0 16px;
}
.mobile-nav-link {
  display: flex;
  gap: 16px;
  align-items: center;
  text-decoration: none;
  width: 176px;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  padding: 4px 0;           /* extra tap area */
}
.mobile-nav-link .bar {
  width: 6px;
  height: 43px;
  border-radius: 3px;
  background: transparent;
  flex-shrink: 0;
  transition: background 0.2s;
}
.mobile-nav-link.active .bar { background: var(--primary); }
.mobile-nav-link span {
  font-family: var(--playfair);
  font-weight: 600;
  font-size: 32px;
  color: var(--accent);
  white-space: nowrap;
}
.mobile-nav-link.active span { font-weight: 800; color: var(--primary); }

.mobile-panel-cta {
  padding: 0 16px;
}
.mobile-panel-logo {
  margin-top: auto;
  padding: 16px;
  display: flex;
  justify-content: flex-end;
}
.mobile-panel-logo img { width: 132px; height: 80px; object-fit: contain; }

/* ─── BUTTONS ─── */
.btn-consult {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 16px 24px;
  font-family: var(--playfair);
  font-weight: 600;
  font-size: 24px;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  touch-action: manipulation;          /* prevent 300ms tap delay on mobile */
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: none;
  user-select: none;
}
.btn-consult:hover {
  background: #b87d50;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(208,146,99,0.35);
}
.btn-consult:active { transform: translateY(0); }
.btn-consult .wa-icon {
  width: 26px; height: 26px;
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.btn-consult:hover .wa-icon {
  transform: scale(1.2) rotate(15deg);
}

/* ─── HERO IMAGE SLIDER ─── */
.slider-wrap {
  position: relative;
  overflow: hidden;
}
.slider-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.2s cubic-bezier(0.4,0,0.2,1), transform 4s ease;
  background-size: cover;
  background-position: center;
}
.slider-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.slider-slide.active {
  opacity: 1; transform: scale(1);
}
.slider-slide.exit {
  opacity: 0; transform: scale(0.98);
}

.slider-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.slider-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}
.slider-dot.active {
  background: var(--accent);
  transform: scale(1.2);
}

/* ─── HOME: hero ─── */
.home-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 0 100px 0;
  background: var(--bg);
}
.home-hero-text { width: 560px; flex-shrink: 0; }
.home-hero-title {
  font-family: var(--playfair);
  font-weight: 700;
  font-size: 48px;
  color: var(--primary);
  line-height: 1.5;
  margin-bottom: 24px;
}
.home-hero-body {
  font-family: var(--manrope);
  font-weight: 500;
  font-size: 16px;
  line-height: 28px;
  color: var(--primary);
  margin-bottom: 12px;
}
.home-hero-by {
  font-family: var(--manrope);
  font-size: 18px;
  color: var(--primary);
  margin-bottom: 32px;
}
.home-hero-by em {
  font-family: var(--playfair);
  font-weight: 700;
  font-style: italic;
  font-size: 24px;
}
.home-hero-img-wrap {
  flex: 1;
  min-width: 0;
  position: relative;
}
.home-hero-img-wrap .slider-wrap {
  width: 100%;
  aspect-ratio: 3/2;
  border-radius: 12px;
  overflow: hidden;
}

/* ─── LOGO BAND ─── */
.logo-band {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 120px 0;
  background: var(--bg);
}
.logo-band img { width: 139px; height: 84px; object-fit: contain; }

/* ─── CONCERNS ─── */
.concerns-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  padding-bottom: 120px;
  background: var(--bg);
}
.concerns-heading { text-align: center; width: 647px; display: flex; flex-direction: column; gap: 24px; }
.concerns-heading h2 {
  font-family: var(--playfair); font-weight: 600; font-size: 48px; color: var(--primary);
}
.concerns-heading .sub1 {
  font-family: var(--manrope); font-weight: 700; font-size: 24px; color: var(--primary);
}
.concerns-heading .sub2 {
  font-family: var(--manrope); font-weight: 600; font-size: 16px; line-height: 26px; color: var(--primary);
}

.concerns-grid {
  display: grid;
  grid-template-columns: repeat(3, 360px);
  gap: 64px;
}

/* Standard card */
.concern-card {
  display: flex;
  flex-direction: column;
  height: 540px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), box-shadow 0.35s ease;
  border-radius: 8px;
  overflow: hidden;
}
.concern-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(92,89,82,0.18);
}

.concern-card-img {
  width: 360px;
  height: 200px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.concern-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.concern-card:hover .concern-card-img img { transform: scale(1.07); }

.concern-card-body {
  background: var(--bg2);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 16px 24px 32px;
  border-radius: 0 0 8px 8px;
}
.concern-card-body h3 {
  font-family: var(--playfair); font-weight: 600; font-size: 28px; color: var(--primary);
  transition: color 0.25s;
}
.concern-card:hover .concern-card-body h3 { color: var(--accent); }
.concern-card-body p {
  font-family: var(--manrope); font-weight: 500; font-size: 16px; line-height: 26px; color: var(--primary);
  flex: 1;
}
.concern-card-learn {
  font-family: var(--manrope); font-weight: 700; font-size: 16px; color: var(--accent);
  text-transform: uppercase;
  height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
  transition: letter-spacing 0.2s;
}
.concern-card:hover .concern-card-learn { letter-spacing: 0.04em; }

/* Concern6 special card */
.concern6-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 520px;
  width: 360px;
  gap: 0;
}
.concern6-circle {
  width: 120px; height: 120px;
  background: var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.concern6-circle span {
  font-family: var(--playfair); font-weight: 900; font-size: 80px; color: var(--white); line-height: 1;
}
.concern6-body {
  background: var(--bg);
  display: flex; flex-direction: column; gap: 16px; align-items: center;
  padding: 16px 24px 0;
  width: 320px;
}
.concern6-body h3 {
  font-family: var(--playfair); font-weight: 600; font-size: 36px; color: var(--primary);
  text-align: center;
}
.concern6-body p {
  font-family: var(--manrope); font-size: 18px; line-height: 28px; color: var(--primary);
  text-align: center;
}
.concern6-btn {
  background: var(--accent);
  color: var(--white);
  font-family: var(--playfair); font-weight: 600; font-size: 24px;
  border: none; border-radius: 8px;
  padding: 16px 24px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.25s, transform 0.2s;
}
.concern6-btn:hover { background: #b87d50; transform: translateY(-2px); }

/* ─── ON YOUR FEET ─── */
.onyf-section {
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  padding: 72px 0 120px;
}
.onyf-heading {
  text-align: center;
  width: 896px;
  display: flex; flex-direction: column; gap: 16px;
}
.onyf-heading h2 {
  font-family: var(--playfair); font-weight: 600; font-size: 48px; color: var(--primary);
}
.onyf-heading p {
  font-family: var(--manrope); font-weight: 700; font-size: 24px; color: var(--primary);
}
.onyf-content {
  display: flex;
  gap: 64px;
  align-items: flex-start;
  padding: 0 100px;
  width: 100%;
}
.onyf-img-wrap {
  flex-shrink: 0;
  width: 491px;
  height: 446px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
.onyf-img-wrap .slider-wrap { width: 100%; height: 100%; }
.onyf-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
  color: var(--primary);
}
.onyf-text p {
  font-family: var(--manrope); font-weight: 500; font-size: 16px; line-height: 26px;
}
.onyf-text p strong { font-weight: 700; }
.onyf-text h3 {
  font-family: var(--playfair); font-weight: 700; font-size: 32px; line-height: 42px;
  margin-bottom: 8px;
}
.onyf-list {
  font-family: var(--manrope); font-weight: 500; font-size: 16px; line-height: 26px;
  padding-left: 24px;
}
.onyf-list li { margin-bottom: 0; }

/* ─── WHY CHOOSE US ─── */
.why-section {
  background: var(--primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  padding: 72px 0 120px;
}
.why-section h2 {
  font-family: var(--playfair); font-weight: 600; font-size: 48px; color: var(--white);
  text-align: center;
}
.why-grid {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}
.why-card {
  width: 299px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.why-icon {
  width: 160px; height: 160px;
  flex-shrink: 0;
  transition: transform 0.5s cubic-bezier(0.34,1.56,0.64,1), filter 0.3s ease;
}
.why-card:hover .why-icon {
  transform: scale(1.08) rotate(4deg);
  filter: drop-shadow(0 4px 12px rgba(208,146,99,0.4));
}
.why-card h3 {
  font-family: var(--playfair); font-weight: 700; font-size: 24px; color: var(--white);
}
.why-card p {
  font-family: var(--manrope); font-weight: 600; font-size: 16px; line-height: 26px; color: var(--white);
}

/* ─── REVIEWS & FOOT ANIMATION ─── */
.reviews-section {
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  padding: 72px 0 120px;
}
.reviews-section h2 {
  font-family: var(--playfair); font-weight: 600; font-size: 48px; color: var(--primary);
  text-align: center;
  width: 647px;
}

/* Foot walking animation */
.steps-anim {
  display: flex;
  gap: 24px;
  align-items: center;
  height: 160px;
  width: 1080px;
  position: relative;
}
.foot-step {
  width: 160px; height: 160px;
  flex-shrink: 0;
  opacity: 0;
  transition: opacity 1s ease;
}
.foot-step.visible { opacity: 1; }
.foot-step.flipped { transform: scaleY(-1); }
.foot-step img { width: 100%; height: 100%; object-fit: contain; }

/* Reviews paginator */
.reviews-cards {
  display: flex;
  gap: 240px;
  align-items: flex-start;
  color: var(--primary);
}
.review-page { display: none; gap: 240px; }
.review-page.active { display: flex; }

.review-card { width: 362px; display: flex; flex-direction: column; gap: 16px; }
.review-card blockquote {
  font-family: var(--playfair); font-weight: 500; font-style: italic;
  font-size: 20px; line-height: 1.5; color: var(--primary);
}
.review-card .author { font-family: var(--manrope); font-weight: 700; font-size: 18px; color: var(--primary); }
.review-card .date   { font-family: var(--manrope); font-weight: 400; font-size: 14px; color: var(--primary); }

.page-control {
  display: flex;
  gap: 10px;
}
.page-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s;
}
.page-dot.active {
  background: var(--accent);
  transform: scale(1.2);
}

/* ─── LET'S START ─── */
.lets-start {
  background: var(--primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 72px 32px 120px;
  text-align: center;
}
.lets-start h2 {
  font-family: var(--playfair); font-weight: 600; font-size: 48px; color: var(--white);
}
.lets-start p {
  font-family: var(--manrope); font-weight: 500; font-size: 16px; line-height: 26px; color: var(--white);
  max-width: 700px;
}

/* ─── FOOTER ─── */
.footer {
  background: var(--primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 0 32px 32px;
}
.footer img { width: 132px; height: 80px; object-fit: contain; }
.footer p {
  font-family: var(--manrope); font-weight: 600; font-size: 14px; color: var(--white); text-align: center;
}

/* ─── INNER PAGE HERO ─── */
.inner-hero {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: center;
  padding: 0 100px 64px;
  background: var(--bg);
}
.inner-hero-text { width: 560px; flex-shrink: 0; }
.inner-hero-eyebrow {
  font-family: var(--manrope); font-weight: 400; font-size: 18px; color: var(--primary);
  margin-bottom: 0;
}
.inner-hero-title {
  font-family: var(--playfair); font-weight: 700; font-size: 48px; color: var(--primary);
  line-height: 1.15;
  margin-bottom: 24px;
}
.inner-hero-body {
  font-family: var(--manrope); font-weight: 600; font-size: 16px; line-height: 26px; color: var(--primary);
}
.inner-hero-img {
  flex: 1;
  min-width: 0;
  position: relative;
}
.inner-hero-img .slider-wrap {
  width: 100%;
  aspect-ratio: 3/2;
  border-radius: 12px;
  overflow: hidden;
}

/* ─── CONCERN PAGE ─── */
.concern-back {
  font-family: var(--manrope); font-weight: 700; font-size: 14px; color: #4427fe;
  display: inline-block;
  margin-bottom: 24px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.concern-back:hover { opacity: 0.7; }
.concern-eyebrow {
  font-family: var(--manrope); font-weight: 700; font-size: 16px; color: var(--primary);
}
.concern-hero-title {
  font-family: var(--playfair); font-weight: 600; font-size: 48px; color: var(--primary);
  line-height: 1.15;
  margin-bottom: 16px;
}
.concern-hero-body {
  font-family: var(--manrope); font-weight: 600; font-size: 16px; line-height: 26px; color: var(--primary);
}

.concern-info {
  display: flex;
  gap: 32px;
  justify-content: center;
  padding: 64px 32px;
  background: var(--bg);
}
.concern-info-col { width: 360px; display: flex; flex-direction: column; gap: 16px; }
.concern-info-col h3 {
  font-family: var(--playfair); font-weight: 700; font-size: 24px; color: var(--primary);
}
.concern-info-col ul, .concern-info-col p {
  font-family: var(--manrope); font-weight: 600; font-size: 16px; line-height: 26px; color: var(--primary);
}
.concern-info-col ul { padding-left: 24px; }

.how-we-help {
  display: flex;
  gap: 104px;
  align-items: center;
  justify-content: center;
  padding: 64px 32px;
  background: var(--primary);
}
.how-we-help-img {
  flex-shrink: 0;
  width: 480px;
  height: 484px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
.how-we-help-img .slider-wrap { width: 100%; height: 100%; }
.how-we-help-text { width: 560px; display: flex; flex-direction: column; gap: 32px; }
.how-we-help-text h2 {
  font-family: var(--playfair); font-weight: 700; font-size: 48px; color: var(--white);
}
.how-we-help-text p {
  font-family: var(--manrope); font-weight: 600; font-size: 16px; line-height: 26px; color: var(--white);
}

/* ─── ABOUT PAGE ─── */
.our-mission {
  background: var(--white);
  display: flex;
  justify-content: center;
  padding: 65px 32px;
}
.our-mission-inner {
  width: 640px;
  display: flex; flex-direction: column; gap: 40px; align-items: center;
}
.our-mission-inner h2 {
  font-family: var(--playfair); font-weight: 600; font-size: 48px; color: var(--primary);
  text-align: center;
}
.our-mission-inner p {
  font-family: var(--manrope); font-weight: 600; font-size: 16px; line-height: 26px; color: var(--primary);
  width: 100%;
}

.our-approach {
  background: var(--bg);
  display: flex; flex-direction: column; gap: 64px; align-items: center;
  padding: 65px 32px;
  color: var(--primary);
}
.our-approach-heading {
  width: 1008px; display: flex; flex-direction: column; gap: 40px; align-items: center;
  text-align: center;
}
.our-approach-heading h2 {
  font-family: var(--playfair); font-weight: 600; font-size: 48px;
}
.our-approach-heading .tagline {
  font-family: var(--manrope); font-weight: 600; font-size: 16px; line-height: 26px;
}
.our-approach-heading .tagline em {
  font-family: var(--playfair); font-style: italic; font-size: 20px;
}
.our-approach-cols {
  display: flex; gap: 32px; width: 1008px;
}
.our-approach-cols p {
  flex: 1; font-family: var(--manrope); font-weight: 600; font-size: 16px; line-height: 26px;
}

.approach-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  width: 1050px;
}
.approach-card {
  background: var(--bg2);
  border-radius: 8px;
  padding: 24px;
  width: 320px;
  height: 300px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}
.approach-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(92,89,82,0.12); }
.approach-card h3 {
  font-family: var(--playfair); font-weight: 700; font-size: 24px; color: var(--primary);
}
.approach-card p {
  font-family: var(--manrope); font-weight: 600; font-size: 16px; line-height: 26px; color: var(--primary);
}

.our-specialists {
  background: var(--primary);
  display: flex; flex-direction: column; gap: 64px; align-items: center;
  padding: 65px 32px;
}
.our-specialists > h2 {
  font-family: var(--playfair); font-weight: 600; font-size: 48px; color: var(--bg);
  text-align: center;
}
.specialist-card {
  background: var(--bg);
  border-radius: 46px;
  display: flex;
  gap: 64px;
  align-items: flex-start;
  padding: 32px;
  width: 1200px;
}
.specialist-img {
  width: 320px; height: 480px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}
.specialist-img img { width: 100%; height: 100%; object-fit: cover; }
.specialist-text { flex: 1; display: flex; flex-direction: column; gap: 16px; }
.specialist-text h3 {
  font-family: var(--playfair); font-weight: 700; font-size: 40px; color: var(--primary);
}
.specialist-text p {
  font-family: var(--manrope); font-weight: 500; font-size: 16px; line-height: 26px; color: var(--primary);
  white-space: pre-line;
}
.specialist-text em {
  font-family: var(--playfair); font-style: italic; font-size: 20px;
}
.specialist-text strong {
  font-family: var(--playfair); font-weight: 600; font-style: italic; font-size: 20px;
}

/* ─── CONTACT PAGE ─── */
.contact-info-section {
  background: var(--bg);
  display: flex; flex-direction: column; align-items: center;
  padding: 65px 32px;
}
.contact-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  width: 1224px;
}
.contact-card {
  background: var(--bg2);
  border-radius: 8px;
  padding: 24px;
  width: 390px;
  height: 240px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-card h3 {
  font-family: var(--playfair); font-weight: 700; font-size: 24px; color: var(--primary);
}
.contact-card p, .contact-card address {
  font-family: var(--manrope); font-weight: 600; font-size: 16px; line-height: 26px; color: var(--primary);
  font-style: normal;
}
.contact-card-cta {
  margin-top: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.btn-directions {
  background: var(--bg);
  color: var(--primary);
  font-family: var(--manrope);
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  padding: 0 16px;
  height: 40px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: background 0.2s;
}
.btn-directions:hover { background: var(--tertiary); }

.hours-grid {
  display: flex;
  gap: 24px;
  font-family: var(--manrope); font-weight: 600; font-size: 16px; line-height: 36px; color: var(--primary);
  width: 100%;
}
.hours-grid .days { white-space: nowrap; }
.hours-grid .times { flex: 1; text-align: right; }

/* ─── SERVICES PAGE ─── */
.services-grid {
  background: var(--white);
  display: flex; flex-direction: column; gap: 64px; align-items: center;
  padding: 65px 0;
}
.services-grid h2 {
  font-family: var(--playfair); font-weight: 600; font-size: 48px; color: var(--primary); text-align: center;
}
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  width: 1294px;
}
.service-card {
  background: var(--bg2);
  border-radius: 8px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(92,89,82,0.12); }
.service-card.narrow { width: 402px; height: 880px; }
.service-card.wide   { width: 800px; height: 1000px; }
.service-card.nano   { width: 402px; height: 1000px; }
.service-card h3 {
  font-family: var(--playfair); font-weight: 700; font-size: 32px; color: var(--primary);
}
.service-card h4 {
  font-family: var(--playfair); font-style: italic; font-weight: 500; font-size: 20px;
  line-height: 26px; color: var(--primary);
}
.service-card p, .service-card li {
  font-family: var(--manrope); font-weight: 400; font-size: 16px; line-height: 26px; color: var(--primary);
}
.service-card ul { padding-left: 20px; }
.service-card strong { font-weight: 700; }
.service-card .price {
  font-family: var(--manrope); font-weight: 700; font-size: 16px; line-height: 26px; color: var(--primary);
}
.service-card .card-cta { margin-top: auto; display: flex; justify-content: center; }
.service-wide-cols { display: flex; gap: 24px; flex: 1; overflow: hidden; }
.service-wide-cols > div { flex: 1; }

.not-sure-section {
  background: var(--primary);
  display: flex; flex-direction: column; align-items: center; gap: 40px;
  padding: 72px 32px 120px;
  text-align: center;
}
.not-sure-section h2 {
  font-family: var(--playfair); font-weight: 600; font-size: 48px; color: var(--white);
}
.not-sure-section p {
  font-family: var(--manrope); font-size: 18px; color: var(--white); line-height: 1.5;
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE SYSTEM
   Breakpoints:
     ≤1024px  Tablet  — hamburger, 2-col grids, stacked heroes
     ≤768px   Mobile  — single column, tight padding, swipe cards
   ═══════════════════════════════════════════════════ */

/* ─── TABLET ≤1024px ─────────────────────────────── */
@media (max-width: 1024px) {

  /* NAV */
  .nav            { padding: 0 40px; height: 70px; }
  .nav-links      { display: none; }
  .nav-menu-btn   { display: flex; }

  /* HOME HERO — image first */
  .home-hero      { flex-direction: column; padding: 32px 40px 0; gap: 32px; }
  .home-hero-img-wrap { order: -1; width: 100%; flex-shrink: unset; }
  .home-hero-text { order: 1; width: 100%; flex-shrink: unset; }
  .home-hero-img-wrap .slider-wrap { aspect-ratio: 16/9; }
  .home-hero-title { font-size: 40px; }

  /* LOGO BAND */
  .logo-band      { padding: 80px 40px; }

  /* CONCERNS — 2 columns */
  .concerns-section { padding-left: 40px; padding-right: 40px; }
  .concerns-heading { width: 100%; }
  .concerns-grid  { grid-template-columns: repeat(2, 1fr); gap: 32px; max-width: 100%; }
  .concern-card   { height: auto; }
  .concern-card-img { width: 100%; }
  .concern6-card  { width: 100%; }
  .concern6-body  { width: 100%; }

  /* ON YOUR FEET */
  .onyf-heading   { width: 100%; padding: 0 40px; }
  .onyf-content   { flex-direction: column; padding: 0 40px; gap: 40px; }
  .onyf-img-wrap  { width: 100%; height: auto; aspect-ratio: 4/3; }

  /* WHY CHOOSE US — 2×2 grid */
  .why-section    { padding: 72px 40px 100px; }
  .why-grid       { flex-wrap: wrap; justify-content: center; gap: 40px; }
  .why-card       { width: calc(50% - 20px); max-width: 299px; }

  /* REVIEWS */
  .reviews-section { padding: 72px 40px 100px; }
  .reviews-section h2 { width: 100%; }
  .steps-anim     { width: 100%; overflow: hidden; }
  .reviews-cards  { gap: 60px; }
  .review-page    { gap: 60px; }
  .review-card    { width: 100%; max-width: 340px; }

  /* LET'S START */
  .lets-start     { padding: 72px 40px 100px; }
  .lets-start h2  { font-size: 40px; }

  /* FOOTER */
  .footer         { padding: 0 40px 32px; }

  /* INNER-PAGE HERO — image first */
  .inner-hero     { flex-direction: column; padding: 32px 40px 48px; gap: 32px; }
  .inner-hero-img { order: -1; width: 100%; flex: unset; }
  .inner-hero-text{ order: 1; width: 100%; flex-shrink: unset; }
  .inner-hero-title { font-size: 40px; }
  .inner-hero-img .slider-wrap { aspect-ratio: 16/9; }

  /* CONCERN INFO — 2 cols then wrap */
  .concern-info   { flex-wrap: wrap; padding: 48px 40px; gap: 32px; }
  .concern-info-col { width: calc(50% - 16px); min-width: 240px; flex: 1; }

  /* HOW WE HELP */
  .how-we-help    { flex-direction: column; gap: 40px; padding: 48px 40px; }
  .how-we-help-img{ width: 100%; height: auto; aspect-ratio: 4/3; }
  .how-we-help-text { width: 100%; }
  .how-we-help-text h2 { font-size: 40px; }

  /* ABOUT — our-mission */
  .our-mission    { padding: 65px 40px; }
  .our-mission-inner { width: 100%; }

  /* ABOUT — our-approach */
  .our-approach   { padding: 65px 40px; }
  .our-approach-heading { width: 100%; }
  .our-approach-heading h2 { font-size: 40px; }
  .our-approach-cols { flex-direction: column; width: 100%; }
  .approach-cards { width: 100%; justify-content: center; }
  .approach-card  { width: calc(50% - 12px); min-width: 0; height: auto; }

  /* ABOUT — specialists */
  .our-specialists { padding: 65px 40px; }
  .specialist-card { flex-direction: column; width: 100%; border-radius: 20px; }
  .specialist-img  { width: 100%; height: 400px; }
  .specialist-text h3 { font-size: 32px; }

  /* CONTACT */
  .contact-info-section { padding: 65px 40px; }
  .contact-cards  { width: 100%; flex-direction: column; align-items: center; }
  .contact-card   { width: 100%; max-width: 600px; height: auto; }
  .contact-specialist-btn { width: 100%; }

  /* SERVICES */
  .services-grid  { padding: 65px 40px; }
  .services-grid h2 { font-size: 40px; }
  .service-cards  { width: 100%; }
  .service-card.narrow,
  .service-card.wide,
  .service-card.nano { width: 100%; height: auto; }
  .service-wide-cols { flex-direction: column; }

  .not-sure-section { padding: 72px 40px 100px; }
  .not-sure-section h2 { font-size: 40px; }

  /* CONCERN 6 / FWC */
  .fwc-hero       { flex-direction: column; padding: 32px 40px 48px; gap: 32px; }
  .fwc-hero-img   { order: -1; width: 100%; }
  .fwc-hero-img img { height: 360px; }
  .fwc-hero-text  { order: 1; width: 100%; }

  .hiw-section    { padding: 65px 40px; }
  .hiw-section h2 { font-size: 40px; }
  .hiw-grid       { grid-template-columns: 1fr; gap: 32px; }

  .fwc-cta        { flex-direction: column; gap: 40px; padding: 48px 40px; }
  .fwc-cta-img    { width: 100%; height: auto; aspect-ratio: 4/3; }
  .fwc-cta-text   { width: 100%; }
  .fwc-cta-text h2 { font-size: 36px; }
}

/* ─── MOBILE ≤768px ──────────────────────────────── */
@media (max-width: 768px) {

  /* NAV */
  .nav            { padding: 0 16px; height: 60px; }

  /* HOME HERO */
  .home-hero      { padding: 16px 16px 0; gap: 20px; }
  .home-hero-text { text-align: center; display: flex; flex-direction: column; align-items: center; }
  .home-hero-title { font-size: 34px; line-height: 1.25; }
  .home-hero-body { font-size: 18px; line-height: 32px; }
  .home-hero-by   { font-size: 18px; }
  .home-hero-img-wrap .slider-wrap { aspect-ratio: 4/3; }

  /* LOGO BAND */
  .logo-band      { height: 400px; padding: 0 16px; }

  /* CONCERNS — single column */
  .concerns-section { padding: 0 16px 80px; gap: 32px; }
  .concerns-heading { width: 100%; }
  .concerns-heading h2 { font-size: 30px; }
  .concerns-heading .sub1 { font-size: 20px; line-height: 30px;}
  .concerns-grid  { grid-template-columns: 1fr; gap: 24px; }
  .concern-card   { height: auto; }
  .concern-card-img { width: 100%; height: 200px; }
  .concern-card-body h3 { font-size: 24px; }
  .concern6-card  { width: 100%; }
  .concern6-body  { width: 100%; }
  .concern6-body h3 { font-size: 30px; }

  /* ON YOUR FEET */
  .onyf-section   { padding: 48px 0 80px; }
  .onyf-heading   { padding: 0 16px; width: 100%; }
  .onyf-heading h2 { font-size: 30px; }
  .onyf-heading p { font-size: 18px; line-height: 28px; }
  .onyf-content   { padding: 0 16px; gap: 24px; }
  .onyf-img-wrap  { aspect-ratio: 4/3; }
  .onyf-text h3   { font-size: 26px; line-height: 36px; }

  /* WHY CHOOSE US — single column */
  .why-section    { padding: 60px 16px 80px; }
  .why-section h2 { font-size: 30px; }
  .why-grid       { flex-direction: column; flex-wrap: nowrap; gap: 40px; align-items: center; }
  .why-card       { width: 100%; max-width: 100%; }
  .why-icon       { width: 100px; height: 100px; }
  .why-card h3    { font-size: 22px; }

  /* REVIEWS */
  .reviews-section { padding: 60px 16px 80px; }
  .reviews-section h2 { width: 100%; font-size: 30px; }
  .steps-anim     { transform: scale(0.5); transform-origin: top center; margin-bottom: -80px; overflow: hidden; }
  .reviews-cards  { gap: 0; }
  .review-page    { flex-direction: column; gap: 24px; }
  .review-card    { width: 100%; max-width: 100%; }
  .review-card blockquote { font-size: 18px; }

  /* LET'S START */
  .lets-start     { padding: 60px 16px 80px; }
  .lets-start h2  { font-size: 30px; }
  .lets-start p   { font-size: 17px; }

  /* FOOTER */
  .footer         { padding: 0 16px 32px; }
  .footer p       { font-size: 14px; white-space: normal; text-align: center; }

  /* INNER-PAGE HERO */
  .inner-hero     { padding: 16px 16px 32px; gap: 20px; }
  .inner-hero-title { font-size: 30px; line-height: 1.2; }
  .inner-hero-body { font-size: 17px; }
  .inner-hero-eyebrow { font-size: 16px; }
  .inner-hero-img .slider-wrap { aspect-ratio: 4/3; }

  /* CONCERN BACK / LABELS */
  .concern-hero-title { font-size: 30px; }
  .concern-hero-body { font-size: 17px; }

  /* CONCERN INFO — single column */
  .concern-info   { flex-direction: column; flex-wrap: nowrap; padding: 32px 16px; gap: 32px; }
  .concern-info-col { width: 100%; min-width: 0; }
  .concern-info-col h3 { font-size: 22px; }

  /* HOW WE HELP */
  .how-we-help    { padding: 32px 16px; gap: 24px; }
  .how-we-help-img { aspect-ratio: 4/3; height: auto; }
  .how-we-help-text { width: 100%; }
  .how-we-help-text h2 { font-size: 30px; }

  /* ABOUT — mission */
  .our-mission    { padding: 48px 16px; }
  .our-mission-inner { width: 100%; }
  .our-mission-inner h2 { font-size: 30px; }

  /* ABOUT — approach */
  .our-approach   { padding: 48px 16px; gap: 40px; }
  .our-approach-heading h2 { font-size: 30px; }
  .our-approach-heading .tagline em { font-size: 18px; }
  /* Horizontal swipe on mobile */
  .approach-cards {
    flex-wrap: nowrap;
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 16px;
    gap: 16px;
    scrollbar-width: none;
    justify-content: flex-start;
  }
  .approach-cards::-webkit-scrollbar { display: none; }
  .approach-card  { flex: 0 0 85vw; min-width: 85vw; width: 85vw; height: auto; scroll-snap-align: start; }
  .approach-card h3 { font-size: 22px; }

  /* ABOUT — specialists */
  .our-specialists { padding: 48px 16px; }
  .our-specialists > h2 { font-size: 30px; }
  .specialist-card { padding: 20px; border-radius: 16px; gap: 24px; }
  .specialist-img  { width: 320px; height: 480px; align-self: center; }
  .specialist-text h3 { font-size: 28px; }
  .specialist-text p { font-size: 17px; }

  /* CONTACT */
  .contact-info-section { padding: 48px 16px; }
  .contact-cards  { width: 100%; }
  .contact-card   { width: 100%; max-width: 100%; height: auto; }
  .contact-card h3 { font-size: 22px; }
  .contact-specialist-btn { width: 100%; font-size: 20px; }
  .contact-touch-btns { gap: 12px; }

  /* SERVICES */
  .services-grid  { padding: 48px 16px; gap: 32px; }
  .services-grid h2 { font-size: 30px; }
  .service-cards  { width: 100%; gap: 20px; }
  .service-card.narrow,
  .service-card.wide,
  .service-card.nano { width: 100%; height: auto; }
  .service-wide-cols { flex-direction: column; }
  .service-card h3 { font-size: 26px; }
  .service-card h4 { font-size: 18px; }
  .service-card .card-cta .btn-consult { font-size: 20px; }

  .not-sure-section { padding: 60px 16px 80px; }
  .not-sure-section h2 { font-size: 30px; }
  .not-sure-section p { font-size: 18px; }

  /* CONCERN 6 / FWC */
  .fwc-hero       { padding: 16px 16px 32px; gap: 20px; }
  .fwc-hero-img img { height: 240px; }
  .concern-hero-title { font-size: 30px; }

  .hiw-section    { padding: 48px 16px; gap: 32px; }
  .hiw-section h2 { font-size: 30px; }
  .hiw-card       { padding: 20px; }
  .hiw-step       { font-size: 20px; }
  .hiw-card-title { font-size: 22px; }
  .hiw-card-subtitle { font-size: 18px; }
  .hiw-icon       { width: 60px; height: 60px; }

  .fwc-cta        { padding: 40px 16px 80px; gap: 24px; }
  .fwc-cta-img    { height: auto; aspect-ratio: 4/3; }
  .fwc-cta-text h2 { font-size: 30px; line-height: 1.2; }
  .fwc-cta-text p { font-size: 18px; line-height: 30px; }

  /* BUTTONS — slightly smaller on mobile */
  .btn-consult    { font-size: 20px; padding: 14px 20px; }
  .btn-consult .wa-icon { width: 22px; height: 22px; }
  .btn-fws        { font-size: 20px; padding: 14px 20px; }
}

/* ─── LANGUAGE TOGGLE BUTTON ─── */
.lang-toggle {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--playfair);
  font-weight: 600;
  font-size: 16px;
  color: var(--accent);
  white-space: nowrap;
  padding: 0;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: color 0.2s;
  line-height: normal;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.lang-toggle:hover { color: var(--primary); }
.lang-toggle .lang-underline {
  height: 2px;
  background: transparent;
  transition: background 0.2s;
  width: 100%;
}

/* Mobile panel lang button — matches .mobile-nav-link style exactly */
.mobile-lang {
  display: flex;
  gap: 16px;
  align-items: center;
  width: 100%;
  padding: 4px 0;
  font-family: var(--playfair);
  font-weight: 600;
  font-size: 32px;
  color: var(--accent);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

/* ─── FOOT WELLNESS SESSION BUTTON (no WA icon, full-width) ─── */
.btn-fws {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 16px 24px;
  font-family: var(--playfair);
  font-weight: 600;
  font-size: 24px;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  width: auto;
}
.btn-fws:hover {
  background: #b87d50;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(208,146,99,0.35);
}
.btn-fws:active { transform: translateY(0); }

/* ─── ON-YOUR-FEET BOOK BUTTON — fix width to auto (not full-width) ─── */
.onyf-cta-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
}
.onyf-cta-wrap .btn-consult {
  width: auto;       /* was being stretched to full width */
}

/* ─── STATIC IMAGE REPLACEMENT (inner heroes — carousel removed) ─── */
.slider-static {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
}
.slider-static img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

/* ─── CONTACT: two specialist buttons ─── */
.contact-touch-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  flex: 1;
  justify-content: center;
}
.contact-specialist-btn {
  width: 288px;
  justify-content: center;
  align-self: center;
}

/* ─── ABOUT: closing paragraph ─── */
.approach-closing {
  width: 640px;
  text-align: center;
  font-family: var(--manrope);
  font-weight: 600;
  font-size: 16px;
  line-height: 26px;
  color: var(--primary);
}
@media (max-width: 1024px) {
  .approach-closing { width: 100%; }
}
