/* ============================================
   ABUNDANT LIFE CLINICAL PSYCHOLOGY
   Design System & Styles
   ============================================ */

/* --- Custom Properties --- */
:root {
  /* Colors — Warm Sophisticated Palette */
  --color-primary: #2C6E71;          /* warm teal-green (sophisticated, welcoming) */
  --color-primary-dark: #1F4D50;     /* darker teal for text and hovers */
  --color-primary-light: #5A9FA5;    /* lighter teal for secondary actions */
  --color-accent: #C97B5C;           /* warm terracotta (replaces gold) */
  --color-accent-light: #E8A689;     /* light terracotta */
  --color-accent-sage: #A4AC86;      /* soft sage green accent */
  --color-bg: #FDFCFA;              /* warm cream white (not green-tinted) */
  --color-bg-alt: #F5F0EB;          /* warm beige/taupe */
  --color-bg-warm: #EBE4DD;         /* deeper warm tone for premium sections */
  --color-text: #2B2B2B;            /* warm dark gray */
  --color-text-muted: #6B6B6B;      /* softer gray */
  --color-white: #FFFFFF;
  --color-border: #E0D5CC;          /* warm neutral border */
  --color-alert: #C97B5C;           /* terracotta for alerts */
  --color-alert-bg: #FEF5F0;        /* warm alert background */
  --color-copper: #B8860B;          /* luxury copper/gold accent */

  /* Typography */
  --font-heading: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --fs-xs: 0.8125rem;   /* 13px */
  --fs-sm: 0.875rem;     /* 14px */
  --fs-base: 1rem;       /* 16px */
  --fs-md: 1.125rem;     /* 18px */
  --fs-lg: 1.25rem;      /* 20px */
  --fs-xl: 1.5625rem;    /* 25px */
  --fs-2xl: 1.9375rem;   /* 31px */
  --fs-3xl: 2.4375rem;   /* 39px */
  --fs-4xl: 3.0625rem;   /* 49px */
  --fs-hero: 3.75rem;    /* 60px */
  --lh-tight: 1.2;
  --lh-base: 1.7;
  --lh-loose: 1.85;
  --ls-heading: 0.5px;   /* letter-spacing for headings */
  --fw-light: 300;       /* light font weight */

  /* Spacing */
  --sp-1: 0.5rem;    /* 8px */
  --sp-2: 1rem;      /* 16px */
  --sp-3: 1.5rem;    /* 24px */
  --sp-4: 2rem;      /* 32px */
  --sp-6: 3rem;      /* 48px */
  --sp-8: 4rem;      /* 64px */
  --sp-12: 6rem;     /* 96px */
  --sp-16: 8rem;     /* 128px */

  /* Layout */
  --max-width: 1200px;
  --max-width-narrow: 720px;

  /* Shadows — warm teal-tinted for premium feel */
  --shadow-sm: 0 1px 4px rgba(44,110,113,0.08);
  --shadow-md: 0 4px 16px rgba(44,110,113,0.12);
  --shadow-lg: 0 8px 30px rgba(44,110,113,0.16);
  --shadow-xl: 0 16px 48px rgba(44,110,113,0.18);

  /* Transitions with premium easing */
  --transition-fast: 200ms cubic-bezier(0.4, 0, 0.6, 1);
  --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);

  /* Header */
  --header-height: 80px;
  --header-height-scrolled: 64px;
}


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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: var(--lh-base);
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-primary-dark);
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}


/* --- Skip Link (Accessibility) --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--sp-2);
  background: var(--color-primary);
  color: var(--color-white);
  padding: var(--sp-1) var(--sp-2);
  border-radius: 0 0 4px 4px;
  z-index: 1000;
  font-size: var(--fs-sm);
}

.skip-link:focus {
  top: 0;
  color: var(--color-white);
}


/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: var(--lh-tight);
  color: var(--color-text);
}

h1 { font-size: var(--fs-4xl); }
h2 { font-size: var(--fs-3xl); }
h3 { font-size: var(--fs-2xl); }
h4 { font-size: var(--fs-xl); }

p {
  margin-bottom: var(--sp-3);
}

p:last-child {
  margin-bottom: 0;
}

.text-italic {
  font-style: italic;
}

.text-muted {
  color: var(--color-text-muted);
}

.text-center {
  text-align: center;
}


/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--sp-3);
}

.container--narrow {
  max-width: var(--max-width-narrow);
}

section {
  padding: var(--sp-12) 0;
}

.section--alt {
  background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-bg-alt) 100%);
  transition: all var(--transition-slow);
}

.section--dark {
  background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-bg-warm) 100%);
  color: var(--color-text);
}

.section--green {
  background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-bg-alt) 100%);
  opacity: 1;
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--color-text);
}

.section--dark .text-muted {
  color: var(--color-text-muted);
}

.section--dark a {
  color: var(--color-primary);
}

.section--dark a:hover {
  color: var(--color-accent);
}


/* --- Split Layout --- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  align-items: center;
}

.split--60-40 {
  grid-template-columns: 3fr 2fr;
}

.split--40-60 {
  grid-template-columns: 2fr 3fr;
}

.split--reverse {
  direction: rtl;
}

.split--reverse > * {
  direction: ltr;
}


/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.25rem;
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 12px;
  transition: all var(--transition-base);
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 15px rgba(44, 110, 113, 0.2);
}

.btn--primary:hover {
  background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(44, 110, 113, 0.3);
}

.btn--secondary {
  background-color: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  box-shadow: 0 2px 8px rgba(44, 110, 113, 0.1);
}

.btn--secondary:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(44, 110, 113, 0.2);
}

.btn--accent {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 15px rgba(201, 123, 92, 0.2);
}

.btn--accent:hover {
  background: linear-gradient(135deg, var(--color-accent-light) 0%, var(--color-accent) 100%);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 123, 92, 0.3);
}

.btn--white {
  background-color: var(--color-white);
  color: var(--color-primary);
  border: 1px solid var(--color-white);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.4);
}

.btn--white:hover {
  background-color: rgba(255, 255, 255, 0.95);
  color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.5);
}

.btn:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 2px;
}


/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: rgba(253, 252, 250, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--color-accent);
  transition: all var(--transition-base);
  height: var(--header-height);
  display: flex;
  align-items: center;
  box-shadow: 0 2px 8px rgba(44, 110, 113, 0.05);
}

.site-header.scrolled {
  height: var(--header-height-scrolled);
  box-shadow: 0 4px 16px rgba(44, 110, 113, 0.1);
  background-color: rgba(253, 252, 250, 0.98);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--sp-3);
}

.site-logo a {
  font-family: var(--font-heading);
  font-size: var(--fs-lg);
  font-style: italic;
  font-weight: 700;
  color: var(--color-primary-dark);
  text-decoration: none;
  line-height: var(--lh-tight);
}

.site-logo a:hover {
  color: var(--color-primary);
}

.site-logo .tagline {
  display: block;
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-style: normal;
  font-weight: 400;
  color: var(--color-text-muted);
  letter-spacing: 0.02em;
}

.site-header.scrolled .tagline {
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}

.nav-links a {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
  letter-spacing: 0.02em;
  position: relative;
  padding: var(--sp-1) 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-accent);
  transition: width var(--transition-base);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--color-primary);
}

.header-contact {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
}

.header-contact a {
  color: var(--color-text-muted);
  font-weight: 500;
}

.header-contact a:hover {
  color: var(--color-primary);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--sp-1);
  z-index: 200;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-text);
  transition: all var(--transition-base);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}


/* ============================================
   HERO SECTIONS
   ============================================ */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 100vh;
  padding: var(--sp-16) var(--sp-3);
  overflow: hidden;
  background-color: var(--color-primary-dark);
}

.hero--short {
  min-height: 45vh;
  background:
    radial-gradient(ellipse 120% 80% at 80% 100%, #0D2418 0%, transparent 60%),
    radial-gradient(ellipse 100% 90% at 20% 90%, #2D6A4F 0%, transparent 55%),
    radial-gradient(ellipse 130% 70% at 60% 0%, #245C3E 0%, transparent 50%),
    radial-gradient(ellipse 90% 100% at 90% 30%, #1A4332 0%, transparent 60%),
    linear-gradient(160deg, #1A4332 0%, #122E23 40%, #0D2418 100%);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26, 67, 50, 0.5) 0%,
    rgba(26, 67, 50, 0.7) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: var(--fs-hero);
  font-style: italic;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--sp-3);
  line-height: 1.1;
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: var(--fs-lg);
  color: rgba(255,255,255,0.85);
  font-weight: 300;
  letter-spacing: 0.03em;
}

.hero__scroll {
  position: absolute;
  bottom: var(--sp-4);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.6);
  animation: scrollBounce 2s ease-in-out infinite;
}

.hero__scroll svg {
  width: 28px;
  height: 28px;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* Premium Animation Keyframes */

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

@keyframes slideInUnderline {
  from { transform: scaleX(0); transform-origin: left; }
  to { transform: scaleX(1); transform-origin: left; }
}

@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(24px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes gradientShiftTeal {
  0% { background: linear-gradient(135deg, #2C6E71, #2C6E71); }
  50% { background: linear-gradient(135deg, #5A9FA5, #2C6E71); }
  100% { background: linear-gradient(135deg, #5A9FA5, #5A9FA5); }
}

@keyframes gradientShiftTerracotta {
  0% { background: linear-gradient(135deg, #C97B5C, #C97B5C); }
  50% { background: linear-gradient(135deg, #E8A689, #C97B5C); }
  100% { background: linear-gradient(135deg, #E8A689, #E8A689); }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes staggerFadeIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ============================================
   CREDENTIAL CALLOUT
   ============================================ */
.credential-sidebar {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: var(--color-white);
  padding: var(--sp-4);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  animation: float 3s ease-in-out infinite;
  transition: all var(--transition-base);
}

.credential-sidebar h4 {
  color: var(--color-white);
  font-size: var(--fs-lg);
  margin-bottom: var(--sp-3);
  font-style: italic;
}

.credential-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-2);
  margin-bottom: var(--sp-3);
  font-size: var(--fs-sm);
  line-height: var(--lh-base);
}

.credential-item:last-child {
  margin-bottom: 0;
}

.credential-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  color: var(--color-accent-light);
}


/* ============================================
   SERVICE TAGS / CHIPS
   ============================================ */
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-1);
}

.tag {
  display: inline-block;
  padding: 0.5rem 1.125rem;
  background-color: var(--color-bg-alt);
  color: var(--color-primary);
  font-size: var(--fs-sm);
  font-weight: 500;
  border-radius: 100px;
  border: 1px solid var(--color-border);
  transition: all var(--transition-fast);
}

.tag:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}


/* ============================================
   SUPPORT LIST (Dot Points)
   ============================================ */
.support-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.support-list li {
  position: relative;
  padding: 0.625rem 0 0.625rem 1.5rem;
  font-size: var(--fs-base);
  color: var(--color-text);
  line-height: var(--lh-base);
  border-bottom: 1px solid var(--color-border);
}

.support-list li:last-child {
  border-bottom: none;
}

.support-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.05rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--color-primary);
}


/* ============================================
   THERAPY CARDS (Therapeutic Approaches)
   ============================================ */
.therapy-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
  align-items: stretch;
  margin-bottom: var(--sp-8);
}

.therapy-card--featured {
  position: relative;
  min-height: 400px;
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border-radius: 12px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.therapy-card--featured::before {
  content: none;
}

.therapy-card--featured .therapy-card__content {
  position: relative;
  z-index: 2;
  color: var(--color-white);
}

.therapy-card--featured h3 {
  color: var(--color-white);
  font-style: italic;
  margin-bottom: var(--sp-2);
}

.therapy-card--featured p {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.85);
  line-height: var(--lh-base);
}

.therapy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: var(--sp-4);
}

.therapy-card {
  padding: var(--sp-4);
  background: linear-gradient(135deg, var(--color-white) 0%, rgba(253, 252, 250, 0.5) 100%);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.therapy-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--color-accent);
  transform: translateY(-4px);
  background: linear-gradient(135deg, var(--color-white) 0%, rgba(245, 240, 235, 0.8) 100%);
}

.therapy-card:nth-child(odd) {
  transform: none;
}

.therapy-card h3 {
  font-size: var(--fs-xl);
  font-style: italic;
  color: var(--color-primary-dark);
  margin-bottom: var(--sp-2);
}

.therapy-card p {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  line-height: var(--lh-base);
}

.therapy-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: var(--sp-2);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.therapy-card__link:hover {
  color: var(--color-accent);
}

.therapy-card__link svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition-fast);
}

.therapy-card__link:hover svg {
  transform: translateX(3px);
}


/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-item:first-child {
  border-top: 1px solid var(--color-border);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--sp-3) 0;
  text-align: left;
  font-family: var(--font-heading);
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  background: none;
  border: none;
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--color-primary);
}

.faq-question:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 2px;
}

.faq-chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-left: var(--sp-2);
  color: var(--color-text-muted);
  transition: transform var(--transition-base);
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
  color: var(--color-primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow), padding var(--transition-slow);
}

.faq-answer__inner {
  padding-bottom: var(--sp-4);
  color: var(--color-text-muted);
  font-size: var(--fs-base);
  line-height: var(--lh-loose);
}

.faq-answer__inner p + p {
  margin-top: var(--sp-2);
}


/* ============================================
   CONTACT FORM
   ============================================ */
.form-group {
  margin-bottom: var(--sp-3);
}

.form-group label {
  display: block;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--sp-1);
  transition: color var(--transition-fast);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid var(--color-border);
  border-radius: 10px;
  background-color: var(--color-white);
  color: var(--color-text);
  transition: border-color var(--transition-base), box-shadow var(--transition-base), background-color var(--transition-base);
  position: relative;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background-color: rgba(253, 252, 250, 0.8);
  box-shadow: 0 0 0 4px rgba(44, 110, 113, 0.1), 0 2px 8px rgba(44, 110, 113, 0.15);
}

.form-group input:focus + label,
.form-group textarea:focus + label {
  color: var(--color-primary);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #aaa;
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.form-success {
  display: none;
  padding: var(--sp-3) var(--sp-4);
  background: linear-gradient(135deg, rgba(44, 110, 113, 0.08), rgba(201, 123, 92, 0.05));
  border-left: 4px solid var(--color-primary);
  border-radius: 8px;
  font-weight: 500;
  margin-top: var(--sp-2);
  color: var(--color-primary);
  box-shadow: var(--shadow-sm);
  animation: slideInFromRight 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-success.show {
  display: block;
}


/* ============================================
   ALERT / NOTICE BANNER
   ============================================ */
.alert-banner {
  background: linear-gradient(135deg, var(--color-alert-bg) 0%, rgba(232, 166, 137, 0.08) 100%);
  border-left: 4px solid var(--color-accent);
  padding: var(--sp-3) var(--sp-4);
  margin-bottom: var(--sp-6);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.alert-banner:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.alert-banner p {
  font-size: var(--fs-base);
  color: var(--color-accent);
  font-weight: 500;
  margin: 0;
}


/* ============================================
   CONTACT INFO
   ============================================ */
.contact-details {
  font-size: var(--fs-base);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-2);
  margin-bottom: var(--sp-3);
}

.contact-item svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 3px;
  color: var(--color-primary);
}

.contact-item a {
  color: var(--color-text);
  font-weight: 500;
}

.contact-item a:hover {
  color: var(--color-primary);
}


/* ============================================
   GOOGLE MAP
   ============================================ */
.map-container {
  width: 100%;
  height: 400px;
  margin-top: var(--sp-8);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}


/* ============================================
   CALENDLY BOOKING SECTION
   ============================================ */
.booking-section {
  background-color: var(--color-bg-alt);
  border: 2px solid var(--color-border);
  border-radius: 12px;
  padding: var(--sp-6);
  text-align: center;
}

.booking-section h3 {
  font-style: italic;
  color: var(--color-primary-dark);
  margin-bottom: var(--sp-2);
}

.booking-section > p {
  max-width: 600px;
  margin: 0 auto var(--sp-4);
  color: var(--color-text-muted);
}

.calendly-inline-widget {
  min-width: 320px;
  border-radius: 12px;
  overflow: hidden;
}

/* Ticket Tailor widget styles */
#tix {
  border-radius: 12px;
  overflow: hidden;
}

#tix iframe {
  border-radius: 12px;
}

.booking-fallback {
  margin-top: var(--sp-3);
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
}

.booking-info-box {
  background-color: var(--color-white);
  border-left: 4px solid var(--color-primary);
  border-radius: 8px;
  padding: var(--sp-4);
  margin: var(--sp-6) auto;
  max-width: 700px;
  text-align: left;
}

.booking-info-box h4 {
  color: var(--color-primary);
  margin-bottom: var(--sp-2);
  font-size: var(--fs-md);
}

.booking-info-box ol li {
  margin-bottom: var(--sp-2);
  color: var(--color-text);
}


/* ============================================
   BANNER / HIGHLIGHT SECTION
   ============================================ */
.highlight-banner {
  position: relative;
  padding: var(--sp-8) var(--sp-6);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border-radius: 16px;
  color: var(--color-white);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-base);
}

.highlight-banner:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.highlight-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
  animation: float 6s ease-in-out infinite;
}

.highlight-banner h3 {
  color: var(--color-white);
  font-style: italic;
  margin-bottom: var(--sp-3);
}

.highlight-banner p {
  color: rgba(255,255,255,0.85);
  max-width: 700px;
}

.highlight-banner a {
  color: var(--color-accent-light);
}

.highlight-banner a:hover {
  color: var(--color-white);
}


/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: linear-gradient(135deg, var(--color-bg-warm) 0%, var(--color-bg-alt) 100%);
  color: var(--color-text);
  padding: var(--sp-8) 0 var(--sp-4);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--sp-6);
  margin-bottom: var(--sp-6);
}

.footer-brand .site-logo a {
  color: var(--color-primary);
  font-size: var(--fs-lg);
}

.footer-brand .tagline {
  color: var(--color-text-muted);
}

.footer-brand p {
  margin-top: var(--sp-2);
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  max-width: 300px;
}

.footer-nav h4,
.footer-contact h4 {
  color: var(--color-text);
  font-size: var(--fs-sm);
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--sp-3);
}

.footer-nav a {
  display: block;
  color: var(--color-text-muted);
  font-size: var(--fs-sm);
  padding: 0.25rem 0;
  transition: color var(--transition-fast);
}

.footer-nav a:hover {
  color: var(--color-primary);
}

.footer-contact-item {
  font-size: var(--fs-sm);
  margin-bottom: var(--sp-1);
}

.footer-contact-item a {
  color: var(--color-text-muted);
}

.footer-contact-item a:hover {
  color: var(--color-primary);
}

.footer-bottom {
  border-top: 1px solid rgba(44, 110, 113, 0.15);
  padding-top: var(--sp-3);
  text-align: center;
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
}


/* ============================================
   SCROLL ANIMATIONS (Premium)
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px) scale(0.95);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}


/* ============================================
   IMAGE ELEMENTS
   ============================================ */
.img-wrapper {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow:
    0 0 0 1px rgba(44, 110, 113, 0.1),
    0 8px 24px rgba(44, 110, 113, 0.12),
    0 16px 48px rgba(44, 110, 113, 0.08);
  transition: all var(--transition-base);
}

.img-wrapper:hover {
  box-shadow:
    0 0 0 1px rgba(44, 110, 113, 0.15),
    0 16px 32px rgba(44, 110, 113, 0.16),
    0 24px 64px rgba(44, 110, 113, 0.12);
}

.img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform var(--transition-slow);
}

.img-wrapper:hover img {
  transform: scale(1.03);
}

.img-wrapper--tall {
  height: 500px;
}

.img-wrapper--medium {
  height: 400px;
}

/* Water Image Container with Gradient Overlay */
.water-image-container {
  position: relative;
  box-shadow: var(--shadow-lg);
  border-radius: 12px;
  overflow: hidden;
  height: 500px;
}

.water-image-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Warm gradient overlay to match theme */
.water-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(44, 110, 113, 0.15) 0%,
    rgba(201, 123, 92, 0.08) 50%,
    rgba(232, 166, 137, 0.12) 100%
  );
  pointer-events: none;
  z-index: 2;
  mix-blend-mode: multiply;
  border-radius: 12px;
}

/* Premium depth overlay on image wrappers */
.img-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(44, 110, 113, 0.05) 0%, rgba(201, 123, 92, 0.03) 100%);
  border-radius: 12px;
  pointer-events: none;
  z-index: 1;
}


/* ============================================
   VISUAL DEPTH & PREMIUM TEXTURES
   ============================================ */

/* Subtle textured background pattern */
@supports (background-image: radial-gradient(circle, rgba(44, 110, 113, 0.03) 1px, transparent 1px)) {
  body {
    background-image:
      radial-gradient(circle, rgba(44, 110, 113, 0.02) 1px, transparent 1px),
      radial-gradient(circle, rgba(201, 123, 92, 0.01) 1px, transparent 1px);
    background-size: 50px 50px, 80px 80px;
    background-position: 0 0, 25px 25px;
  }
}

/* Enhanced section depth */
section {
  position: relative;
  overflow: hidden;
}

/* Subtle gradient overlays on alternating sections for depth */
.section--alt::before {
  content: '';
  position: absolute;
  top: 0;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 120% 50%, rgba(232, 166, 137, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.section--alt > * {
  position: relative;
  z-index: 1;
}

.section--dark::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 120%;
  height: 150%;
  background: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
  animation: float 8s ease-in-out infinite;
}

.section--dark > * {
  position: relative;
  z-index: 1;
}

/* Enhanced credential sidebar depth */
.credential-sidebar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, transparent 50%, rgba(0,0,0,0.02) 100%);
  border-radius: 12px;
  pointer-events: none;
}

/* Layered depth on hero sections */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(44, 110, 113, 0.2) 0%, rgba(44, 110, 113, 0.05) 100%);
  z-index: 2;
}

.hero__bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(44, 110, 113, 0.05) 0%, transparent 50%);
  z-index: 1;
}

/* Enhanced card depth with inset shadow */
.therapy-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, transparent 50%, rgba(0,0,0,0.01) 100%);
  border-radius: 12px;
  pointer-events: none;
  z-index: 1;
}

.therapy-card {
  position: relative;
}

.therapy-card > * {
  position: relative;
  z-index: 2;
}

/* Layered depth on buttons */
.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%, rgba(0,0,0,0.05) 100%);
  border-radius: 12px;
  opacity: 0;
  transition: opacity var(--transition-fast);
  pointer-events: none;
  z-index: 0;
}

.btn:hover::before {
  opacity: 1;
}

.btn {
  position: relative;
}

/* Enhanced form input depth */
.form-group input,
.form-group textarea {
  background: linear-gradient(135deg, var(--color-white) 0%, rgba(253, 252, 250, 0.8) 100%);
  position: relative;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.02);
}

.form-group input::before,
.form-group textarea::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
  opacity: 0.5;
}

/* Enhanced footer depth */
.site-footer {
  position: relative;
  background: linear-gradient(135deg, var(--color-bg-warm) 0%, var(--color-bg-alt) 100%);
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.03) 0%, transparent 40%),
    radial-gradient(circle at 80% 100%, rgba(201, 123, 92, 0.03) 0%, transparent 40%);
  pointer-events: none;
  z-index: 1;
}

.site-footer > * {
  position: relative;
  z-index: 2;
}

/* Subtle divider lines between sections for depth */
section:not(:last-child)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 1000px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(44, 110, 113, 0.1) 50%, transparent 100%);
  z-index: 10;
}

/* Premium highlight banner depth */
.highlight-banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, transparent 50%, rgba(0,0,0,0.05) 100%);
  border-radius: 16px;
  pointer-events: none;
}


/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
  :root {
    --fs-hero: 2.75rem;
    --fs-4xl: 2.5rem;
    --fs-3xl: 2rem;
  }

  .split {
    gap: var(--sp-6);
  }

  .therapy-card:nth-child(odd) {
    transform: none;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --fs-hero: 2.25rem;
    --fs-4xl: 2rem;
    --fs-3xl: 1.75rem;
    --fs-2xl: 1.5rem;
    --header-height: 64px;
  }

  section {
    padding: var(--sp-8) 0;
  }

  .split,
  .split--60-40,
  .split--40-60 {
    grid-template-columns: 1fr;
    gap: var(--sp-4);
  }

  .split--reverse {
    direction: ltr;
  }

  .therapy-featured {
    grid-template-columns: 1fr;
  }

  .therapy-grid {
    grid-template-columns: 1fr;
  }

  .therapy-card:nth-child(odd) {
    transform: none;
  }

  /* Mobile nav */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background-color: var(--color-bg);
    flex-direction: column;
    align-items: flex-start;
    padding: calc(var(--header-height) + var(--sp-4)) var(--sp-4) var(--sp-4);
    gap: 0;
    box-shadow: var(--shadow-lg);
    transition: right var(--transition-base);
    overflow-y: auto;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: var(--fs-md);
    padding: var(--sp-2) 0;
    width: 100%;
    border-bottom: 1px solid var(--color-border);
  }

  .nav-links a::after {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .header-contact {
    display: none;
  }

  /* Mobile nav overlay */
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 90;
  }

  .nav-overlay.open {
    display: block;
  }

  .img-wrapper--tall {
    height: auto;
    max-height: 500px;
  }

  .img-wrapper--medium {
    height: auto;
    max-height: 400px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: var(--sp-4);
  }

  .hero {
    min-height: 80vh;
  }

  .hero--short {
    min-height: 35vh;
  }

  .img-wrapper--tall {
    height: 300px;
  }

  .img-wrapper--medium {
    height: 250px;
  }

  .highlight-banner {
    padding: var(--sp-6) var(--sp-4);
  }

  .booking-section {
    padding: var(--sp-4);
  }
}

@media (max-width: 480px) {
  :root {
    --fs-hero: 1.875rem;
  }

  .container {
    padding: 0 var(--sp-2);
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}
