/*!
Theme Name:  Kadence Child — Gold Coast Physio
Theme URI:   https://goldcoastphysio.com
Description: Gold Coast Physio child theme for Kadence
Author:      Ahmed Bilal / BBit Studio
Template:    kadence
Version:     1.0.0
License:     GNU General Public License v2 or later
Text Domain: kadence-child
*/

/* ============================================================
   GOLD COAST PHYSIO — Brand CSS Custom Properties
   ============================================================ */
:root {

  /* --- Gold / Champagne --- */
  --gc-champagne:        #cda35e;   /* Brand gold — icons, highlights */
  --gc-champagne-dark:   #a87d38;   /* Deep gold — CTA hover, pressed */
  --gc-champagne-deeper: #8f6520;   /* Active / focus states */
  --gc-champagne-light:  #dfc08a;   /* Soft gold — tints, badges */
  --gc-champagne-pale:   #faf6ee;   /* Cream — section backgrounds */

  /* --- Navy Blue --- */
  --gc-navy-deep:        #0a1f38;   /* Deepest navy — footer, dark hero */
  --gc-navy:             #10315a;   /* Primary navy — header, dark sections */
  --gc-navy-mid:         #1a4a78;   /* Mid navy — hover states */
  --gc-navy-light:       #2d6aa0;   /* Light navy — secondary accents */
  --gc-navy-pale:        #e8f0f8;   /* Pale blue tint — subtle bg */

  /* --- Text --- */
  --gc-charcoal:         #1a1f2e;   /* Headlines */
  --gc-gray:             #4d5563;   /* Body text */
  --gc-gray-light:       #7a8490;   /* Captions, muted */

  /* --- Borders & Lines --- */
  --gc-silver:           #d6d8dc;
  --gc-gray-line:        #e5e7eb;

  /* --- Backgrounds --- */
  --gc-off-white:        #f8f8f6;
  --gc-white:            #ffffff;
  --gc-dark-bg:          #0a1f38;

  /* --- Kadence variable overrides --- */
  --global-palette1:     #10315a;
  --global-palette2:     #cda35e;
  --global-palette3:     #1a1f2e;
  --global-palette4:     #4d5563;
  --global-palette5:     #7a8490;
  --global-palette6:     #e5e7eb;
  --global-palette7:     #f8f8f6;
  --global-palette8:     #ffffff;
  --global-palette9:     #0a1f38;

  /* --- Typography --- */
  --gc-font-heading:     'Playfair Display', Georgia, serif;
  --gc-font-body:        'Inter', 'Helvetica Neue', Arial, sans-serif;

  /* --- Spacing --- */
  --gc-section-py:       80px;
  --gc-section-py-sm:    48px;
  --gc-container-max:    1200px;
  --gc-radius:           8px;
  --gc-radius-lg:        16px;
}

/* ============================================================
   GLOBAL RESETS & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: var(--gc-font-body);
  color: var(--gc-gray);
  background: var(--gc-white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--gc-font-heading);
  color: var(--gc-charcoal);
  line-height: 1.2;
}

a { color: var(--gc-navy); text-decoration: none; }
a:hover { color: var(--gc-champagne); }

img { max-width: 100%; height: auto; display: block; }

/* Gold accent span — wrap words in <span class="gc-accent"> */
.gc-accent { color: var(--gc-champagne); }

/* Section wrapper utility */
.gc-section {
  padding: var(--gc-section-py) 0;
}
.gc-section--dark {
  background: var(--gc-navy);
  color: var(--gc-white);
}
.gc-section--navy-deep {
  background: var(--gc-navy-deep);
  color: var(--gc-white);
}
.gc-section--off-white {
  background: var(--gc-off-white);
}
.gc-section--champagne-pale {
  background: var(--gc-champagne-pale);
}

.gc-container {
  max-width: var(--gc-container-max);
  margin-inline: auto;
  padding-inline: 24px;
}

/* Gold underline decoration used under section headlines */
.gc-headline-decorated {
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
  margin-bottom: 24px;
}
.gc-headline-decorated::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gc-champagne);
  border-radius: 2px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.gc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--gc-radius);
  font-family: var(--gc-font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  text-decoration: none;
}
.gc-btn--gold {
  background: var(--gc-champagne);
  color: var(--gc-navy);
  border-color: var(--gc-champagne);
}
.gc-btn--gold:hover {
  background: var(--gc-champagne-dark);
  border-color: var(--gc-champagne-dark);
  color: var(--gc-white);
}
.gc-btn--navy {
  background: var(--gc-navy);
  color: var(--gc-white);
  border-color: var(--gc-navy);
}
.gc-btn--navy:hover {
  background: var(--gc-navy-mid);
  border-color: var(--gc-navy-mid);
}
.gc-btn--outline-gold {
  background: transparent;
  color: var(--gc-champagne);
  border-color: var(--gc-champagne);
}
.gc-btn--outline-gold:hover {
  background: var(--gc-champagne);
  color: var(--gc-navy);
}

/* ============================================================
   CUSTOM SITE HEADER  (gc_render_header() in functions.php)
   ============================================================ */

/* Outer header bar — exact mockup navy, sticky */
/* Force override Kadence inline customizer CSS */
header { background: none !important; }

.gc-site-header {
  background: #10315a !important; /* force over Kadence inline CSS */
  position: sticky;
  top: 0;
  z-index: 999;
  width: 100%;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

/* Inner flex row */
.gc-header-inner {
  display: flex;
  align-items: center;
  height: 74px;
  gap: 0;
}

/* ---- Logo ---- */
.gc-header-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  margin-right: auto;      /* push nav + CTA to the right */
  text-decoration: none;
}
.gc-header-logo img {
  height: 44px;
  width: auto;
  display: block;
}
.gc-logo-text {
  font-family: var(--gc-font-heading);
  font-size: 1.3rem;
  color: var(--gc-white);
  letter-spacing: 0.01em;
}
.gc-logo-text strong {
  color: var(--gc-champagne);
}

/* ---- Primary nav ---- */
.gc-primary-nav {
  display: flex;
  align-items: center;
  margin-right: clamp(12px, 1.5vw, 24px); /* responsive gap before CTA */
  min-width: 0;    /* allow nav to shrink inside flex parent */
}
.gc-nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: nowrap;
}
.gc-nav-menu li {
  position: relative;
}
.gc-nav-menu > li > a {
  display: block;
  /* clamp: fluid nav padding that tightens as viewport narrows */
  padding: 8px clamp(7px, 0.7vw, 11px);
  font-family: var(--gc-font-body);
  font-size: clamp(0.82rem, 0.95vw, 0.9rem);
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
  border-bottom: 2px solid transparent;
}
.gc-nav-menu > li > a:hover,
.gc-nav-menu > li.current-menu-item > a,
.gc-nav-menu > li.current-menu-ancestor > a {
  color: var(--gc-champagne);
  border-bottom-color: var(--gc-champagne);
}

/* ---- Header CTA ---- */
.gc-header-cta {
  flex-shrink: 0;     /* CTA must never be clipped */
  white-space: nowrap;
  padding: 10px clamp(14px, 1.2vw, 20px);
  font-size: 0.875rem;
}

/* ---- Mobile hamburger ---- */
.gc-mobile-toggle {
  display: none;         /* hidden on desktop */
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: 12px;
  flex-shrink: 0;
}
.gc-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 24px;
}
.gc-hamburger span {
  display: block;
  height: 2px;
  background: var(--gc-white);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
  transform-origin: center;
}
/* Animate to X when open */
.gc-nav-open .gc-hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.gc-nav-open .gc-hamburger span:nth-child(2) { opacity: 0; }
.gc-nav-open .gc-hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- Mobile nav dropdown ---- */
@media (max-width: 1120px) {
  .gc-mobile-toggle { display: flex; }
  .gc-header-cta    { display: none; }  /* show inside mobile menu instead */
  .gc-primary-nav {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: #0d2849;
    margin: 0;
    padding: 16px 0 24px;
    display: none;
    flex-direction: column;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    z-index: 998;
  }
  .gc-nav-open .gc-primary-nav { display: flex; }
  .gc-nav-menu {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }
  .gc-nav-menu > li > a {
    padding: 14px 24px;
    font-size: 1rem;
    border-bottom: none;
    border-left: 3px solid transparent;
  }
  .gc-nav-menu > li > a:hover,
  .gc-nav-menu > li.current-menu-item > a {
    border-left-color: var(--gc-champagne);
    background: rgba(255,255,255,0.05);
    color: var(--gc-champagne);
  }
  /* Show CTA inside mobile dropdown */
  .gc-primary-nav::after {
    content: '';  /* CTA is added via the mobile-cta helper class */
  }
  .gc-mobile-cta {
    display: block !important;
    margin: 16px 24px 0;
    text-align: center;
  }
}

/* Breadcrumb */
.gc-breadcrumb {
  background: var(--gc-navy);
  padding: 10px 0;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
}
.gc-breadcrumb a { color: rgba(255,255,255,0.7); }
.gc-breadcrumb a:hover { color: var(--gc-champagne); }
.gc-breadcrumb .sep { margin-inline: 8px; color: var(--gc-champagne); }
.gc-breadcrumb .current { color: var(--gc-white); }

/* ============================================================
   KADENCE FOOTER OVERRIDES
   ============================================================ */
#colophon,
.site-footer {
  background: linear-gradient(180deg, var(--gc-navy) 0%, #0d2549 60%, var(--gc-navy-deep) 100%) !important;
  color: var(--gc-white) !important;
}
.site-footer a { color: rgba(255,255,255,0.75); }
.site-footer a:hover { color: var(--gc-champagne); }

.gc-footer-bottom {
  background: linear-gradient(90deg, #04090f 0%, var(--gc-navy-deep) 50%, #04090f 100%);
  padding: 16px 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  border-top: 1px solid rgba(205,163,94,0.15); /* subtle gold rule above copyright bar */
}
.gc-footer-bottom a { color: rgba(255,255,255,0.5); }
.gc-footer-bottom a:hover { color: var(--gc-champagne); }

/* ============================================================
   HERO SLIDER
   ============================================================ */
.gc-hero-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  /* Must set height on the container — Swiper uses this for slide sizing */
  height: clamp(640px, calc(100vh - 74px), 860px);
}
.gc-hero-slider .swiper-wrapper {
  height: 100%;
}
.gc-hero-slider .swiper-slide {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  /* Fallback gradient when no bg image/video */
  background: linear-gradient(135deg, var(--gc-navy-deep) 0%, #1a4470 60%, var(--gc-navy-mid) 100%);
}
/* Ensure container fills the full slide width */
.gc-hero-slider .gc-container {
  width: 100%;
  position: relative;
  z-index: 2;
}
/* Background image layer */
.gc-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
/* Background video layer */
.gc-slide-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.gc-slide-video video,
.gc-slide-video iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
/* Overlay — use rgba so opacity is baked in, avoids stacking-context issues */
.gc-slide-overlay {
  position: absolute;
  inset: 0;
  /* --ov is set per-slide via inline style (driven by ACF overlay_opacity field).
     Default is 0.75. The gradient is darker on the left (text side) and fades
     toward the right so the background photo peeks through on the image side. */
  --ov: 0.75;
  background: linear-gradient(
    105deg,
    rgba(3, 12, 26, calc(var(--ov) + 0.18)) 0%,    /* near-black on text side */
    rgba(10, 31, 56, var(--ov))              40%,   /* brand navy mid-frame */
    rgba(10, 31, 56, calc(var(--ov) - 0.30)) 100%   /* lighter on photo side */
  );
  z-index: 1;
}
/* Content */
.gc-slide-content {
  position: relative;
  z-index: 3;
  color: var(--gc-white);
  max-width: 640px;
  padding: 64px 0;
}

/* Eyebrow label above headline */
.gc-slide-eyebrow {
  display: inline-block;
  font-family: var(--gc-font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gc-champagne);
  margin-bottom: 18px;
}

.gc-slide-content h1 {
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  font-weight: 700;
  color: var(--gc-white);
  margin-bottom: 20px;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.gc-slide-content .gc-slide-sub {
  font-size: 1.1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.82);
  margin-bottom: 28px;
  max-width: 520px;
}

/* Service pills — horizontal bullet-separated list */
.gc-slide-pills {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  margin-bottom: 36px;
}
.gc-slide-pills span {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  padding: 0 12px;
  white-space: nowrap;
}
.gc-slide-pills span:first-child { padding-left: 0; }
.gc-slide-pills span + span {
  border-left: 1px solid rgba(205,163,94,0.45);
}
/* Swiper nav dots — must sit above overlay */
.gc-hero-slider .swiper-pagination {
  z-index: 10;
}
.gc-hero-slider .swiper-pagination-bullet {
  background: rgba(255,255,255,0.5);
  opacity: 1;
  transition: background 0.2s;
  width: 10px;
  height: 10px;
}
.gc-hero-slider .swiper-pagination-bullet-active {
  background: var(--gc-champagne);
  width: 28px;
  border-radius: 5px;
}

/* ============================================================
   IMAGE PLACEHOLDER (renders when no real image uploaded)
   ============================================================ */
.gc-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(145deg, var(--gc-navy-deep) 0%, #1a4470 60%, #205080 100%);
  color: rgba(205,163,94,.45);
  font-size: 2.8rem;
  min-height: inherit;
}
.gc-img-placeholder__label {
  font-family: var(--gc-font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(205,163,94,.35);
}

/* ============================================================
   STATS BAR
   ============================================================ */
.gc-stats-bar {
  background: linear-gradient(135deg, var(--gc-navy-deep) 0%, var(--gc-navy) 55%, #162f57 100%);
  padding: 32px 0;
}
.gc-stats-bar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.gc-stat-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 24px;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.gc-stat-item:last-child { border-right: none; }
.gc-stat-icon {
  font-size: 1.8rem;
  color: var(--gc-champagne);
  flex-shrink: 0;
}
.gc-stat-icon svg { width: 36px; height: 36px; fill: var(--gc-champagne); }
.gc-stat-number {
  font-family: var(--gc-font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gc-white);
  line-height: 1;
}
.gc-stat-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gc-white);
  line-height: 1.2;
}
.gc-stat-sublabel {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
}

/* ============================================================
   SERVICES GRID (Homepage 3-up cards)
   ============================================================ */
.gc-services-grid {
  padding: var(--gc-section-py) 0;
}
.gc-services-grid__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.gc-service-card {
  border: 1px solid var(--gc-gray-line);
  border-radius: var(--gc-radius-lg);
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
}
.gc-service-card:hover {
  box-shadow: 0 12px 40px rgba(16,49,90,0.12);
  transform: translateY(-4px);
}
.gc-service-card__img {
  position: relative;
  aspect-ratio: 3/2;
  overflow: hidden;
  background: var(--gc-navy-deep); /* shows if img/placeholder fails to fill */
}
.gc-service-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.gc-service-card:hover .gc-service-card__img img {
  transform: scale(1.04);
}
.gc-service-card__icon {
  position: absolute;
  bottom: -20px;
  left: 20px;
  width: 44px; height: 44px;
  background: var(--gc-navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gc-champagne);
  font-size: 1.2rem;
  z-index: 2;
  border: 3px solid var(--gc-white);
}
.gc-service-card__body {
  padding: 36px 24px 24px;
}
.gc-service-card__body h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.gc-service-card__body p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--gc-gray);
  margin-bottom: 16px;
}
.gc-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gc-champagne);
}
.gc-learn-more:hover { color: var(--gc-champagne-dark); gap: 10px; }

/* ============================================================
   EXPERTISE SECTION
   ============================================================ */
.gc-expertise {
  padding: var(--gc-section-py) 0;
  background: var(--gc-white);
}
.gc-expertise__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.gc-expertise__eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gc-champagne);
  margin-bottom: 12px;
}
.gc-expertise__left h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 16px;
}
.gc-expertise__left p {
  color: var(--gc-gray);
  line-height: 1.7;
  margin-bottom: 32px;
}
.gc-therapy-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gc-therapy-icon-item {
  text-align: center;
}
.gc-therapy-icon-item .icon {
  font-size: 2rem;
  color: var(--gc-champagne);
  margin-bottom: 8px;
}
.gc-therapy-icon-item h4 { font-size: 0.95rem; margin-bottom: 4px; }
.gc-therapy-icon-item p { font-size: 0.82rem; color: var(--gc-gray-light); }

.gc-expertise__right {
  position: relative;
}
.gc-expertise__right img {
  border-radius: var(--gc-radius-lg);
  width: 100%;
}
.gc-expertise-overlay-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gc-navy);
  color: var(--gc-white);
  border-radius: var(--gc-radius);
  padding: 24px;
  max-width: 260px;
  box-shadow: 0 8px 32px rgba(10,31,56,0.3);
}
.gc-expertise-overlay-card .badge {
  width: 36px; height: 36px;
  background: var(--gc-champagne);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.gc-expertise-overlay-card h4 {
  color: var(--gc-white);
  font-size: 1rem;
  margin-bottom: 8px;
}
.gc-expertise-overlay-card p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}

/* ============================================================
   PARTNER BANNER
   ============================================================ */
.gc-partner-banner {
  background: linear-gradient(120deg, #060e1b 0%, var(--gc-navy-deep) 45%, #122848 100%);
  padding: 40px 0;
}
.gc-partner-banner__inner {
  display: flex;
  align-items: center;
  gap: 40px;
}
.gc-partner-banner__logo {
  flex-shrink: 0;
}
.gc-partner-banner__logo img {
  max-height: 70px;
  width: auto;
}
.gc-partner-banner__text { flex: 1; }
.gc-partner-banner__text h3 {
  color: var(--gc-champagne);
  font-size: 1.2rem;
  margin-bottom: 6px;
}
.gc-partner-banner__text p {
  color: rgba(255,255,255,0.8);
  font-size: 0.92rem;
  line-height: 1.6;
}
.gc-partner-banner__cta { flex-shrink: 0; }

/* ============================================================
   WHY CHOOSE SECTION
   ============================================================ */
.gc-why-choose {
  background: var(--gc-off-white);
  padding: var(--gc-section-py) 0;
  text-align: center;
}
.gc-why-choose__eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gc-champagne);
  margin-bottom: 12px;
}
.gc-why-choose h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 48px;
}
.gc-features-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}
.gc-feature-item { text-align: center; }
.gc-feature-item .icon {
  font-size: 2rem;
  color: var(--gc-champagne);
  margin-bottom: 10px;
}
.gc-feature-item h4 { font-size: 0.95rem; margin-bottom: 6px; }
.gc-feature-item p  { font-size: 0.82rem; color: var(--gc-gray-light); }

/* ============================================================
   CTA STRIP
   ============================================================ */
.gc-cta-strip {
  background: linear-gradient(135deg, var(--gc-champagne-light) 0%, var(--gc-champagne) 40%, var(--gc-champagne-dark) 80%, var(--gc-champagne-deeper) 100%);
  padding: 64px 0;
}
.gc-cta-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.gc-cta-strip__text h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--gc-navy);
  margin-bottom: 10px;
}
.gc-cta-strip__text p {
  color: rgba(10,31,56,0.75);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 500px;
}

/* ============================================================
   INNER PAGE — HERO (2-col)
   ============================================================ */
.gc-inner-hero {
  background: linear-gradient(135deg, var(--gc-navy) 0%, #0d2749 55%, var(--gc-navy-deep) 100%);
  padding: 0;
  overflow: hidden;
}
/* Full-width grid — left col text, right col bleeds to edge */
.gc-inner-hero__inner {
  display: grid;
  grid-template-columns: 55fr 45fr;  /* slight bias toward text column */
  min-height: 560px;
}
.gc-inner-hero__left {
  /* Use viewport-aware left padding so text aligns with the rest of the site's
     container on large screens, with a minimum of 24px on small screens.
     Formula: half the viewport gap outside a 1200px container + 48px inner padding */
  padding: 72px 56px 72px clamp(24px, calc((100vw - 1200px) / 2 + 48px), 120px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.gc-inner-hero__left h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--gc-white);
  margin-bottom: 18px;
  line-height: 1.12;
}
.gc-inner-hero__left p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 480px;
}
.gc-inner-hero__right {
  position: relative;
  overflow: hidden;
}
.gc-inner-hero__right img,
.gc-inner-hero__right video,
.gc-inner-hero__right iframe {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
/* Trust badges row */
.gc-trust-badges {
  display: flex;
  gap: 28px;
  margin-top: 24px;
}
.gc-trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
}
.gc-trust-badge .badge-icon {
  color: var(--gc-champagne);
  font-size: 1.3rem;
}
.gc-trust-badge .badge-text {
  display: flex;
  flex-direction: column;
}
.gc-trust-badge .badge-text strong {
  font-size: 0.85rem;
  color: var(--gc-white);
  line-height: 1.2;
}
.gc-trust-badge .badge-text span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.65);
}

/* ============================================================
   INNER PAGE — THERAPY TYPE CARDS
   ============================================================ */
.gc-therapy-types {
  padding: var(--gc-section-py) 0;
  background: var(--gc-white);
  text-align: center;
}
.gc-therapy-types h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 40px;
}
.gc-therapy-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}
.gc-therapy-card {
  border: 1px solid var(--gc-gray-line);
  border-radius: var(--gc-radius-lg);
  padding: 28px;
}
.gc-therapy-card__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.gc-therapy-card__icon {
  width: 56px; height: 56px;
  background: var(--gc-navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.gc-therapy-card__icon svg,
.gc-therapy-card__icon img { width: 28px; height: 28px; }
.gc-therapy-card h3 { font-size: 1.1rem; margin: 0; }
.gc-therapy-card__desc {
  font-size: 0.9rem;
  color: var(--gc-gray);
  line-height: 1.6;
  margin-bottom: 20px;
}
.gc-therapy-checklist {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.gc-therapy-checklist li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--gc-gray);
}
.gc-therapy-checklist li::before {
  content: '✓';
  color: var(--gc-champagne);
  font-weight: 700;
  flex-shrink: 0;
}

/* ============================================================
   INNER PAGE — SPLIT BENEFITS
   ============================================================ */
.gc-split-benefits {
  padding: var(--gc-section-py) 0;
  background: var(--gc-white);
}
.gc-split-benefits__headers {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.gc-split-tab {
  padding: 24px 32px;
  text-align: center;
}
.gc-split-tab h3 {
  font-size: 1.15rem;
  margin: 0;
  padding-bottom: 12px;
  position: relative;
  display: inline-block;
}
.gc-split-tab h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 3px;
  background: var(--gc-champagne);
  border-radius: 2px;
}
.gc-split-tab--navy  { background: var(--gc-navy); }
.gc-split-tab--navy h3  { color: var(--gc-white); }
.gc-split-tab--gold  { background: var(--gc-champagne); }
.gc-split-tab--gold h3  { color: var(--gc-navy); }
.gc-split-tab--gold h3::after { background: var(--gc-navy); }

.gc-split-benefits__grids {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--gc-gray-line);
}
.gc-split-col {
  padding: 36px 32px;
}
.gc-split-col:first-child {
  border-right: 1px solid var(--gc-gray-line);
}
.gc-benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 20px 16px;
  text-align: center;
}
.gc-benefit-item .icon {
  font-size: 1.8rem;
  color: var(--gc-champagne);
  margin-bottom: 8px;
}
.gc-benefit-item h4 { font-size: 0.85rem; margin-bottom: 4px; font-weight: 600; }
.gc-benefit-item p  { font-size: 0.75rem; color: var(--gc-gray-light); }

/* ============================================================
   INNER PAGE — TESTIMONIALS
   ============================================================ */
.gc-testimonials {
  padding: var(--gc-section-py) 0;
  background: var(--gc-white);
  text-align: center;
}
.gc-testimonials h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 40px;
}
.gc-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}
.gc-testimonial-card {
  border: 1px solid var(--gc-gray-line);
  border-radius: var(--gc-radius-lg);
  padding: 28px;
}
.gc-stars {
  color: var(--gc-champagne);
  font-size: 1.1rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}
.gc-testimonial-card blockquote {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--gc-gray);
  margin: 0 0 16px;
  font-style: italic;
}
.gc-testimonial-card cite {
  font-style: normal;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gc-charcoal);
  display: block;
}
.gc-testimonial-card .location {
  font-size: 0.78rem;
  color: var(--gc-gray-light);
}

/* ============================================================
   INNER STATS BAR (5-col variant)
   ============================================================ */
.gc-stats-bar--5col .gc-stats-bar__inner {
  grid-template-columns: repeat(5, 1fr);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .gc-features-grid { grid-template-columns: repeat(3, 1fr); }
  .gc-benefit-grid  { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  :root { --gc-section-py: var(--gc-section-py-sm); }

  .gc-stats-bar__inner,
  .gc-stats-bar--5col .gc-stats-bar__inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .gc-stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); }

  .gc-services-grid__inner { grid-template-columns: 1fr; }
  .gc-expertise__inner     { grid-template-columns: 1fr; }
  .gc-expertise-overlay-card { position: static; max-width: 100%; margin-top: 20px; }
  .gc-partner-banner__inner { flex-direction: column; text-align: center; }
  .gc-features-grid { grid-template-columns: repeat(2, 1fr); }
  .gc-cta-strip__inner { flex-direction: column; text-align: center; }

  .gc-inner-hero__inner { grid-template-columns: 1fr; }
  .gc-inner-hero__left  { padding: 56px 24px 40px; }  /* simple padding on mobile */
  .gc-inner-hero__right { min-height: 300px; order: -1; } /* image above text on mobile */
  .gc-trust-badges { flex-wrap: wrap; gap: 16px; }

  .gc-therapy-cards { grid-template-columns: 1fr; }
  .gc-split-benefits__headers,
  .gc-split-benefits__grids { grid-template-columns: 1fr; }
  .gc-split-col:first-child { border-right: none; border-bottom: 1px solid var(--gc-gray-line); }
  .gc-benefit-grid  { grid-template-columns: repeat(2, 1fr); }
  .gc-testimonial-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   CUSTOM FOOTER
   ============================================================ */

/* Remove all Kadence inline/default header+footer colours */
#masthead,
header.site-header,
.site-header,
#colophon,
.site-footer,
footer.site-footer {
  background: none !important;
}

.gc-footer {
  background: linear-gradient(180deg, var(--gc-navy) 0%, #0d2549 60%, var(--gc-navy-deep) 100%) !important;
  color: var(--gc-white);
}

/* --- Main footer grid --- */
.gc-footer-main {
  padding: 72px 0 56px;
}

.gc-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.4fr 1.2fr 1.5fr;
  gap: 40px 48px;
  align-items: start;
}

/* --- Brand column --- */
.gc-footer-logo-link img { height: 42px; width: auto; }
.gc-footer-logo-text {
  font-family: var(--gc-font-heading);
  font-size: 1.3rem;
  color: var(--gc-white);
  text-decoration: none;
}
.gc-footer-logo-text strong { color: var(--gc-champagne); }
.gc-footer-tagline {
  margin-top: 18px;
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.65);
  max-width: 300px;
}

/* Social icons */
.gc-footer-social {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}
.gc-footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}
.gc-footer-social a:hover {
  background: var(--gc-champagne);
  color: var(--gc-navy-deep);
}

/* --- Nav columns heading --- */
.gc-footer-heading {
  font-family: var(--gc-font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gc-champagne);
  margin: 0 0 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(205,163,94,0.25);
}

/* --- Nav links --- */
.gc-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.gc-footer-links li {
  margin-bottom: 9px;
}
.gc-footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s;
}
.gc-footer-links a:hover {
  color: var(--gc-champagne);
}

/* --- Contact column --- */
.gc-footer-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.gc-footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-bottom: 12px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
}
.gc-footer-contact-list a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s;
}
.gc-footer-contact-list a:hover { color: var(--gc-champagne); }

/* contact icons via CSS counter */
.gc-fc-phone::before  { content: '📞'; margin-top:1px; flex-shrink:0; }
.gc-fc-email::before  { content: '✉'; margin-top:1px; flex-shrink:0; }
.gc-fc-web::before    { content: '🌐'; margin-top:1px; flex-shrink:0; }
.gc-fc-address::before { content: '📍'; margin-top:1px; flex-shrink:0; }

/* --- Bottom bar --- */
.gc-footer-bottom {
  background: linear-gradient(90deg, #04090f 0%, var(--gc-navy-deep) 50%, #04090f 100%);
  border-top: 1px solid rgba(205,163,94,0.15);
  padding: 16px 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}
.gc-footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.gc-footer-legal {
  display: flex;
  align-items: center;
  gap: 10px;
}
.gc-footer-legal a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.gc-footer-legal a:hover { color: var(--gc-champagne); }
.gc-footer-legal span { color: rgba(255,255,255,0.2); }

/* Responsive footer */
@media (max-width: 1024px) {
  .gc-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gc-footer-brand { grid-column: 1 / -1; }
  .gc-footer-tagline { max-width: 100%; }
}

@media (max-width: 600px) {
  .gc-footer-grid { grid-template-columns: 1fr; }
  .gc-footer-main { padding: 48px 0 40px; }
  .gc-footer-bottom-inner { flex-direction: column; text-align: center; }
}
