/*
 * Header + Footer styles — Phase 3.5 rebuild from live capture.
 *
 * Source-of-truth values pulled from:
 *   - post-64 _elementor_data (header mega menus, Book CTA)
 *   - post-88 _elementor_data (footer light bg + colors + social brand SVGs)
 *   - live chrome-devtools getComputedStyle (exact hex + sizes + hover hex)
 *
 * Major reverts from Chip 1.5 / 2 / 3:
 *   - Footer wrapper: LIGHT (white + #EDF2F7) not navy
 *   - Footer text colors: dark navy/black not white
 *   - Header Book CTA: outline pill (white bg + green border + green text)
 *     with NAVY hover, NOT solid teal pill
 *   - Mega-menu items: image-box style with icon image at top
 *   - Social icons: brand-colored circles (Google G multi-color, FB #1877F2,
 *     IG gradient, LinkedIn #0A66C2, YT #FF0000, TikTok #000000)
 */

:root {
  --exhale-color-teal:           #029791;
  --exhale-color-teal-strong:    #47AEA8;
  --exhale-color-navy:           #021649;
  --exhale-color-navy-dark:      #051649;
  --exhale-color-cta-green:      #2E5D4B;
  --exhale-color-charcoal:       #333333;
  --exhale-color-body:           #4A5468;
  --exhale-color-text-dark:      #000000;
  --exhale-color-white:          #FFFFFF;
  --exhale-color-cream:          #F6FBFB;
  --exhale-color-light-blue:     #EDF2F7;     /* footer CTA strip bg */
  --exhale-color-light-border:   #E5E7EB;     /* footer Google G border */
  --exhale-color-border:         #E8E8E8;
  --exhale-color-theravive:      #655CC9;     /* purple Verdana credentials */

  --exhale-font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --exhale-font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;

  --exhale-radius:        8px;
  --exhale-radius-button: 5px;                /* header CTA matches live 5px */
  --exhale-shadow-mega:   0 18px 48px rgba(2, 22, 73, .14), 0 4px 12px rgba(2, 22, 73, .06);
  --exhale-shadow-card:   0 2px 12px rgba(0, 0, 0, .06);

  --exhale-header-h:         88px;
  --exhale-header-h-compact: 64px;
  --exhale-z-header: 100;
  --exhale-z-mega:   110;
  --exhale-z-scrim:  95;
}

/* ----------- HEADER ----------- */

.exhale-header {
  position: relative;
  z-index: var(--exhale-z-header);
  background: var(--exhale-color-white);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  font-family: var(--exhale-font-body);
  color: var(--exhale-color-charcoal);
}

.exhale-header *,
.exhale-header *::before,
.exhale-header *::after { box-sizing: border-box; }

.exhale-header__bar { padding: 0 28px; }

.exhale-header__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  height: var(--exhale-header-h);
}

.exhale-header__logo {
  display: inline-flex;
  flex: 0 0 auto;
  border-radius: 4px;
  text-decoration: none;
}

.exhale-header__logo img {
  display: block;
  height: 60px;
  width: auto;
  max-width: 263px;
  transition: opacity .25s ease, transform .25s ease, filter .25s ease;
}

.exhale-header__logo:hover img {
  opacity: 0.82;
  transform: scale(1.03);
  filter: brightness(1.05);
}

.exhale-header__logo:focus-visible {
  outline: 2px solid var(--exhale-color-teal-strong);
  outline-offset: 4px;
}

.exhale-header__logo:focus-visible img {
  opacity: 0.92;
}

.exhale-header__burger {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 0;
  padding: 8px;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
}

.exhale-header__burger:focus-visible {
  outline: 2px solid var(--exhale-color-teal);
  outline-offset: 2px;
  border-radius: 4px;
}

.exhale-header__burger-bar {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--exhale-color-navy);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}

.exhale-header__burger[aria-expanded="true"] .exhale-header__burger-bar:nth-child(1) { transform: translateY(11px) rotate(45deg); }
.exhale-header__burger[aria-expanded="true"] .exhale-header__burger-bar:nth-child(2) { opacity: 0; }
.exhale-header__burger[aria-expanded="true"] .exhale-header__burger-bar:nth-child(3) { transform: translateY(-11px) rotate(-45deg); }

.exhale-header__nav { display: flex; align-items: center; gap: 18px; flex: 1; }
.exhale-header__menu { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: 6px; }
.exhale-header__item { position: relative; }

.exhale-header__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 15px 13px;
  font-size: 17px;
  font-weight: 700;
  line-height: 17px;
  color: var(--exhale-color-navy-dark);
  background: transparent;
  border: 0;
  text-decoration: none;
  cursor: pointer;
  border-radius: 6px;
  font-family: inherit;
  letter-spacing: normal;
}

.exhale-header__link:hover,
.exhale-header__link:focus-visible { color: var(--exhale-color-teal); outline: none; }
.exhale-header__link:focus-visible {
  outline: 2px solid var(--exhale-color-teal);
  outline-offset: 2px;
}

/* Override Hello Elementor parent's reset.css universal `button:hover` rule
   which sets bg:#CC3366 (red) + color:white on every <button>. Our header
   nav toggles (.exhale-header__link--toggle) are <button> elements and were
   getting that red hover. Pin all interaction states to the default look
   for the button variant of .exhale-header__link. */
button.exhale-header__link:hover,
button.exhale-header__link:focus,
button.exhale-header__link:focus-visible,
button.exhale-header__link:active {
  background: transparent;
  background-color: transparent;
  color: var(--exhale-color-teal);
  border-color: transparent;
  text-decoration: none;
}

.exhale-header__caret {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform .2s ease;
  margin-top: 2px;
}

/* Per Sean 2026-06-03: caret stays pointing down regardless of mega menu
   open state. Up-arrow on expanded toggle removed by design. The base
   .exhale-header__caret rule above renders a down-pointing CSS triangle
   via border tricks; no rotation needed. */

/* ----- Header Book CTA (OUTLINE pill, matches live .elementor-element-9fe9aba) ----- */

.exhale-header__book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  background: var(--exhale-color-white);
  color: var(--exhale-color-cta-green);
  border: 1.6px solid var(--exhale-color-cta-green);
  font-weight: 700;
  font-size: 19px;
  font-family: var(--exhale-font-body);
  text-decoration: none;
  border-radius: var(--exhale-radius-button);
  transition: background-color .3s ease, color .3s ease;
  white-space: nowrap;
  margin-left: auto;
}

.exhale-header__book:hover,
.exhale-header__book:focus-visible {
  background: var(--exhale-color-cta-green);
  color: var(--exhale-color-white);
}

.exhale-header__book:focus-visible {
  outline: 2px solid var(--exhale-color-cta-green);
  outline-offset: 3px;
}

/* ----------- MEGA MENU (image-box style) ----------- */

.exhale-mega {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(0);
  min-width: 1100px;
  max-width: 96vw;
  background: var(--exhale-color-white);
  border-radius: 0 0 var(--exhale-radius) var(--exhale-radius);
  border: 1px solid var(--exhale-color-border);
  border-top: 0;
  box-shadow: var(--exhale-shadow-mega);
  padding: 28px;
  z-index: var(--exhale-z-mega);
  margin-top: 6px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity .22s ease, transform .28s cubic-bezier(.2, .8, .2, 1), visibility 0s 0s;
}

/* Slide-down on open: override default [hidden] {display:none} so we can transition. */
.exhale-mega[hidden] {
  display: block;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(-12px);
  transition: opacity .18s ease, transform .22s ease, visibility 0s .22s;
}

.exhale-mega__inner--has-intro {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
}

.exhale-mega__inner--no-intro {
  display: block;
}

.exhale-mega__intro {
  position: relative;
  background-color: var(--exhale-color-navy-dark);  /* fallback bg only */
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--exhale-color-white);
  border-radius: var(--exhale-radius);
  padding: 20px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  overflow: hidden;
  /* No min-height — grid track stretch makes intro match the 3-row items grid height exactly. */
  align-self: stretch;
}

/* Neutral dark overlay — preserves the photo's natural colors (no blue tint). */
.exhale-mega__intro::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .30) 0%, rgba(0, 0, 0, .50) 100%);
  pointer-events: none;
  border-radius: inherit;
}

.exhale-mega__intro > * { position: relative; z-index: 1; }

/* Per-panel nature images (Vancouver Island; generated by Gemini Nano Banana 2026-06-02). */
.exhale-mega__intro--services { background-image: url('https://introspectuscounselling.ca/wp-content/uploads/2026/06/mega-intro-services-tree.png'); }
.exhale-mega__intro--about    { background-image: url('https://introspectuscounselling.ca/wp-content/uploads/2026/06/mega-intro-about-mountain.png'); }
.exhale-mega__intro--resources { background-image: url('https://introspectuscounselling.ca/wp-content/uploads/2026/06/mega-intro-resources-beach.png'); }

.exhale-mega__intro-text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--exhale-color-white);
  margin: 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .35);
}

/* Intro CTA pill (Over View / About Sean / Browse Resources) — solid teal pill, matches live */
.exhale-mega__intro-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  padding: 10px 22px;
  background: var(--exhale-color-teal-strong);
  color: var(--exhale-color-white);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--exhale-radius-button);
  transition: background-color .2s ease, transform .15s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .15);
}

.exhale-mega__intro-btn:hover,
.exhale-mega__intro-btn:focus-visible {
  background: var(--exhale-color-cta-green);
  color: var(--exhale-color-white);
  transform: translateY(-1px);
  outline: none;
}

/* Row-grouped layout: horizontal row dividers + teal vertical broken-up column dividers. */
.exhale-mega__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.exhale-mega__row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* Single-item row (e.g., CBT in About panel) — center horizontally. */
.exhale-mega__row--center .exhale-mega__cell:only-child {
  grid-column-start: 2;
}

.exhale-mega__cell {
  position: relative;
  display: flex;
  min-height: 76px;       /* equalize cell heights so dividers have uniform visual length */
}

/* Uniform broken-up teal vertical divider between columns.
   Starts at the icon top (cell padding 10px + icon margin 2px = 12px) with a FIXED height
   so cells with varying tagline lengths still show the same divider length. */
.exhale-mega__cell:not(:first-child)::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  height: 52px;           /* fixed — uniform across rows regardless of cell text wrap */
  width: 1px;
  background: var(--exhale-color-teal-strong);
  opacity: 0.7;           /* lighten visual weight — Sean said "too thick" */
  pointer-events: none;
}

/* When CBT is centered (col 2), suppress the divider on its left edge. */
.exhale-mega__row--center .exhale-mega__cell:only-child::before { display: none; }

.exhale-mega__item {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  text-align: left;
  padding: 10px 12px;
  gap: 12px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--exhale-color-navy);
  transition: background-color .15s ease, color .15s ease, transform .15s ease;
}

.exhale-mega__item:hover,
.exhale-mega__item:focus-visible {
  background: var(--exhale-color-cream);
  color: var(--exhale-color-teal);
  transform: translateY(-1px);
  outline: none;
}

.exhale-mega__item:focus-visible {
  box-shadow: 0 0 0 2px var(--exhale-color-teal);
}

.exhale-mega__item-icon {
  display: block;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  object-fit: contain;
  margin-top: 2px;
}

.exhale-mega__item-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.exhale-mega__item-title {
  display: block;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
}

.exhale-mega__item-desc {
  display: block;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--exhale-color-body);
  margin-top: 2px;
}

/* Scrim for click-outside on desktop */
.exhale-header__scrim {
  position: fixed;
  inset: 0;
  background: rgba(2, 22, 73, .35);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  z-index: var(--exhale-z-scrim);
}

.exhale-header[data-scrim="true"] .exhale-header__scrim {
  opacity: 1;
  pointer-events: auto;
}

/* ----------- HEADER MOBILE ----------- */

@media (max-width: 1023px) {
  .exhale-header__inner { height: var(--exhale-header-h-compact); }
  .exhale-header__logo img { height: 44px; }
  .exhale-header__burger { display: flex; }
  .exhale-header__nav { display: none; }
}

@media (min-width: 1024px) {
  .exhale-header__scrim { display: none; }
}

/* ----------- MOBILE MENU (aside, mobile-only) ----------- */

.exhale-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: var(--exhale-z-mega);
  font-family: var(--exhale-font-body);
}

.exhale-mobile-menu[hidden] { display: none; }

.exhale-mobile-menu *,
.exhale-mobile-menu *::before,
.exhale-mobile-menu *::after { box-sizing: border-box; }

.exhale-mobile-menu__overlay {
  position: absolute;
  inset: 0;
  background: rgba(2, 22, 73, .45);
  opacity: 0;
  animation: exhale-mm-fade .2s ease forwards;
}

.exhale-mobile-menu__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(92vw, 420px);
  background: var(--exhale-color-white);
  color: var(--exhale-color-charcoal);
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 18px 22px 28px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: -12px 0 32px rgba(2, 22, 73, .18);
  transform: translateX(100%);
  animation: exhale-mm-slide .26s ease forwards;
}

@keyframes exhale-mm-fade { to { opacity: 1; } }
@keyframes exhale-mm-slide { to { transform: translateX(0); } }

.exhale-mobile-menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--exhale-color-border);
}

.exhale-mobile-menu__logo {
  display: inline-flex;
  border-radius: 4px;
  text-decoration: none;
}
.exhale-mobile-menu__logo img { display: block; height: 38px; width: auto; max-width: 180px; border: 0; }
.exhale-mobile-menu__logo:focus-visible {
  outline: 2px solid var(--exhale-color-teal);
  outline-offset: 2px;
}

.exhale-mobile-menu__close {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  border-radius: 6px;
  color: var(--exhale-color-navy);
  cursor: pointer;
  transition: background-color .15s ease, color .15s ease;
}

.exhale-mobile-menu__close:hover,
.exhale-mobile-menu__close:focus-visible {
  background: var(--exhale-color-cream);
  color: var(--exhale-color-teal);
}

.exhale-mobile-menu__close:focus-visible {
  outline: 2px solid var(--exhale-color-teal);
  outline-offset: 2px;
}

.exhale-mobile-menu__sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.exhale-mobile-menu__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 22px;
  background: var(--exhale-color-cta-green);
  color: var(--exhale-color-white);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  border-radius: var(--exhale-radius);
  box-shadow: var(--exhale-shadow-card);
  transition: background-color .2s ease, transform .15s ease;
}

.exhale-mobile-menu__cta:hover,
.exhale-mobile-menu__cta:focus-visible {
  background: var(--exhale-color-navy-dark);
  color: var(--exhale-color-white);
  transform: translateY(-1px);
}

.exhale-mobile-menu__cta:focus-visible {
  outline: 2px solid var(--exhale-color-cta-green);
  outline-offset: 3px;
}

.exhale-mobile-menu__nav { display: flex; flex-direction: column; gap: 4px; }

.exhale-mobile-menu__group {
  border-bottom: 1px solid var(--exhale-color-border);
  padding: 4px 0;
}

.exhale-mobile-menu__group[open] .exhale-mobile-menu__chev {
  transform: rotate(-135deg);
  margin-top: 4px;
}

.exhale-mobile-menu__group-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 4px;
  font-size: 17px;
  font-weight: 700;
  color: var(--exhale-color-navy);
  cursor: pointer;
  list-style: none;
}

.exhale-mobile-menu__group-title::-webkit-details-marker { display: none; }
.exhale-mobile-menu__group-title::marker { content: ''; }

.exhale-mobile-menu__group-title:focus-visible {
  outline: 2px solid var(--exhale-color-teal);
  outline-offset: 2px;
  border-radius: 4px;
}

.exhale-mobile-menu__chev {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-top: -3px;
  transition: transform .2s ease;
}

.exhale-mobile-menu__group-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 4px 4px 14px;
}

.exhale-mobile-menu__intro {
  font-size: 14px;
  line-height: 1.55;
  color: var(--exhale-color-body);
  margin: 0;
}

.exhale-mobile-menu__overview {
  align-self: flex-start;
  font-size: 14px;
  font-weight: 700;
  color: var(--exhale-color-teal);
  text-decoration: none;
  padding: 4px 0;
}

.exhale-mobile-menu__overview:hover,
.exhale-mobile-menu__overview:focus-visible {
  color: var(--exhale-color-navy-dark);
  text-decoration: underline;
  outline: none;
}

.exhale-mobile-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.exhale-mobile-menu__list a {
  display: block;
  padding: 10px 8px;
  font-size: 15px;
  color: var(--exhale-color-navy);
  text-decoration: none;
  border-radius: 6px;
  transition: background-color .15s ease, color .15s ease;
}

.exhale-mobile-menu__list a:hover,
.exhale-mobile-menu__list a:focus-visible {
  background: var(--exhale-color-cream);
  color: var(--exhale-color-teal);
  outline: none;
}

.exhale-mobile-menu__contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 22px;
  margin-top: auto;
  background: transparent;
  color: var(--exhale-color-navy);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border: 1.5px solid var(--exhale-color-navy);
  border-radius: var(--exhale-radius);
  transition: background-color .2s ease, color .2s ease;
}

.exhale-mobile-menu__contact:hover,
.exhale-mobile-menu__contact:focus-visible {
  background: var(--exhale-color-navy);
  color: var(--exhale-color-white);
  outline: none;
}

.exhale-mobile-menu__contact:focus-visible {
  outline: 2px solid var(--exhale-color-navy);
  outline-offset: 2px;
}

@media (min-width: 1024px) {
  .exhale-mobile-menu { display: none !important; }
}

/* ----------- FOOTER (LIGHT — rebuilt Phase 3.5) ----------- */

.exhale-footer {
  font-family: var(--exhale-font-body);
  color: var(--exhale-color-text-dark);
  background: var(--exhale-color-white);
}

.exhale-footer *,
.exhale-footer *::before,
.exhale-footer *::after { box-sizing: border-box; }

/* ----- CTA strip (light blue-grey, white step cards) ----- */

.exhale-footer__cta-strip {
  background: var(--exhale-color-light-blue);
  padding: 60px 20px;
  text-align: center;
}

.exhale-footer__cta-inner {
  max-width: 900px;
  margin: 0 auto;
}

.exhale-cta-steps {
  list-style: none;
  margin: 0 auto 40px;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 0;
  flex-wrap: wrap;
}

.exhale-cta-step {
  background: var(--exhale-color-white);
  border-radius: 16px;
  padding: 20px 28px;
  width: 280px;
  min-height: 280px;
  text-align: center;
  box-shadow: var(--exhale-shadow-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.exhale-cta-step__icon-wrap {
  width: 140px;
  height: 140px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.exhale-cta-step__icon-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.exhale-cta-step__title {
  font-family: var(--exhale-font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--exhale-color-navy-dark);
  margin: 0 0 8px;
  -webkit-text-stroke: 0.5px var(--exhale-color-navy-dark);
  line-height: 1.2;
}

.exhale-cta-step__desc {
  font-family: var(--exhale-font-body);
  font-size: 14px;
  color: var(--exhale-color-body);
  margin: 0;
  line-height: 1.5;
}

.exhale-cta-step__arrow {
  display: flex;
  align-items: center;
  padding-top: 50px;
  margin: 0 -4px;
}

.exhale-cta-button {
  display: inline-block;
  background: var(--exhale-color-cta-green);
  color: var(--exhale-color-white);
  font-family: var(--exhale-font-body);
  font-size: 16px;
  font-weight: 500;
  padding: 8px 22px;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color .2s ease, transform .15s ease;
}

.exhale-cta-button:hover,
.exhale-cta-button:focus-visible {
  background: var(--exhale-color-navy-dark);
  color: var(--exhale-color-white);
  transform: translateY(-1px);
}

.exhale-cta-fine {
  margin: 6px 0 0;
  font-family: var(--exhale-font-body);
  font-size: 14px;
  color: var(--exhale-color-body);
}

/* ----- Main info (4-column on white bg) ----- */

.exhale-footer__main {
  background: var(--exhale-color-white);
  padding: 80px 20px 40px;
}

.exhale-footer__main-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 40px;
  align-items: start;
}

.exhale-footer__col {
  display: flex;
  flex-direction: column;
}

.exhale-footer__col--about {
  gap: 18px;
}

.exhale-footer__logo {
  display: inline-flex;
  width: max-content;
}

.exhale-footer__logo img {
  display: block;
  height: 46px;
  width: auto;
}

.exhale-footer__tagline {
  font-family: var(--exhale-font-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--exhale-color-navy-dark);
  margin: 0;
  line-height: 1.2;
  text-transform: none;
}

.exhale-footer__areas {
  font-family: var(--exhale-font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--exhale-color-text-dark);
  margin: 0;
}

.exhale-footer__areas a {
  color: var(--exhale-color-teal-strong);
  text-decoration: underline;
  text-decoration-color: currentColor;
  text-underline-offset: 2px;
  font-weight: 500;
}

.exhale-footer__areas a:hover,
.exhale-footer__areas a:focus-visible {
  color: var(--exhale-color-navy-dark);
  text-decoration-thickness: 2px;
}

/* PT + Theravive blocks use inline styles to match live exactly (trust signals).
   Only minimal layout assists here. */
.exhale-footer__about .sx-verified-seal { display: inline-block; min-height: 80px; }

/* ----- Nav columns (Important Links + Services) ----- */

.exhale-footer__col-heading {
  font-family: var(--exhale-font-body);
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 16px;
  color: var(--exhale-color-navy-dark);
}

.exhale-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.exhale-footer__list a {
  color: var(--exhale-color-text-dark);
  font-family: var(--exhale-font-body);
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  line-height: 1.4;
  transition: color .15s ease, transform .15s ease;
}

.exhale-footer__list a:hover,
.exhale-footer__list a:focus-visible {
  color: var(--exhale-color-navy-dark);
  text-decoration: underline;
  transform: translateX(2px);
}

/* ----- Contact column ----- */

.exhale-footer__contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.exhale-footer__contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--exhale-font-body);
  font-size: 15px;
  color: var(--exhale-color-text-dark);
  line-height: 1.4;
}

.exhale-footer__contact-list a {
  color: var(--exhale-color-text-dark);
  text-decoration: none;
}

.exhale-footer__contact-list a:hover,
.exhale-footer__contact-list a:focus-visible {
  color: var(--exhale-color-navy-dark);
  text-decoration: underline;
}

.exhale-footer__contact-icon {
  display: inline-flex;
  flex: 0 0 auto;
  color: var(--exhale-color-navy-dark);
  padding-top: 2px;
}

.exhale-footer__contact-icon svg { display: block; }

/* ----- Social icons (brand-coloured circles) ----- */

.exhale-footer__social {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: start;
  gap: 12px;
}

.exhale-footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: var(--exhale-color-white);
  transition: filter .2s ease, transform .15s ease;
}

.exhale-footer__social-link svg { width: 20px; height: 20px; }

.exhale-footer__social-link:hover,
.exhale-footer__social-link:focus-visible {
  filter: brightness(1.1);
  transform: translateY(-1px);
  outline: none;
}

.exhale-footer__social-link:focus-visible {
  outline: 2px solid var(--exhale-color-navy-dark);
  outline-offset: 2px;
}

.exhale-footer__social-link--google     { background: var(--exhale-color-white); border: 1px solid var(--exhale-color-light-border); }
.exhale-footer__social-link--google svg { width: 22px; height: 22px; }
.exhale-footer__social-link--facebook   { background: #1877F2; }
.exhale-footer__social-link--instagram  { background: linear-gradient(45deg, #FCB045 0%, #E1306C 45%, #833AB4 100%); }
.exhale-footer__social-link--linkedin   { background: #0A66C2; }
.exhale-footer__social-link--youtube    { background: #FF0000; }
.exhale-footer__social-link--tiktok     { background: #000000; }

/* ----- Copyright bar ----- */

.exhale-footer__bottom {
  padding: 18px 0;
  border-top: 1px solid var(--exhale-color-border);
  background: var(--exhale-color-white);
}

.exhale-footer__bottom-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.exhale-footer__copyright {
  margin: 0;
  font-family: var(--exhale-font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--exhale-color-text-dark);
  text-align: center;
}

/* ----------- FOOTER MOBILE ----------- */

@media (max-width: 1023px) {
  .exhale-footer__main-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .exhale-footer__col--about { grid-column: 1 / -1; }
}

@media (max-width: 599px) {
  .exhale-footer__cta-strip { padding: 40px 20px; }
  .exhale-cta-steps { flex-direction: column; gap: 12px; align-items: center; }
  .exhale-cta-step__arrow { display: none; }
  .exhale-footer__main-inner { grid-template-columns: 1fr; gap: 28px; }
}

@media (min-width: 600px) and (max-width: 1024px) {
  .exhale-cta-steps { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 16px; }
  .exhale-cta-step { width: 30%; min-width: 200px; min-height: 220px; padding: 24px 16px; }
  .exhale-cta-step__icon-wrap { width: 100px; height: 100px; margin-bottom: 12px; }
  .exhale-cta-step__title { font-size: 18px; }
  .exhale-cta-step__arrow { display: none; }
}

/* Respect reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .exhale-header *,
  .exhale-footer *,
  .exhale-mega,
  .exhale-mobile-menu * { transition: none !important; animation: none !important; }
}

/* Hide any Elementor Pro popup that EP server-renders into the page on
   single-post URLs. r7's dequeue of `e-popup` CSS removed EP's
   hide-by-default styling, so popups like the mobile-menu popup (post
   15011) became visible below the footer. Scope this hide to single-post
   pages so popups on non-blog pages (homepage etc.) still work normally. */
body.single-post .elementor-location-popup {
  display: none !important;
}

/* =========================================================================
   r11 mobile tap-target padding boost (2026-06-03 evening)
   -------------------------------------------------------------------------
   Apple iOS HIG + Google Material + WCAG 2.5.5 AAA recommend 44x44px
   minimum for touch targets. Several inline text links on /single-post/
   URLs render below that on mobile: breadcrumb (14-18px tall), hero
   eyebrow (18px), sidebar service link (15px), mobile menu items (39px).
   Boost padding so the tap area hits 44px+ without changing visual font
   size. Scoped to <=768px so desktop spacing is untouched.
   Audit data: chrome-devtools getComputedStyle on /test/ at 320/375/414.
   ========================================================================= */
@media (max-width: 768px) {
  /* r12 tuning (2026-06-03 evening): r11 padding values came up 4-10px
     short of the 44px target after factoring in line-height. Switching
     to min-height + inline-flex + align-items:center guarantees the
     44px tap area regardless of font-size or line-height drift, and
     padding controls horizontal touch width. */
  .exhale-post__breadcrumb a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 6px;
  }
  .exhale-post__hero-eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 6px;
  }
  .exhale-post__sidebar-service-link {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0;
  }
  .exhale-mobile-menu__list a {
    min-height: 44px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
  }
}
