/* ========================================
   Breakthrough Talk - Main Stylesheet
   A warm, modern therapy website
   ======================================== */

/* CSS Custom Properties */
:root {
  /* Colors - Warm, natural palette */
  --color-white: #ffffff;
  --color-off-white: #faf9f7;
  --color-cream: #f5f3ef;
  --color-light-sage: #e8ede6;
  --color-sage: #9caf88;
  --color-soft-green: #7a9e7e;
  --color-forest: #3d5a47;
  --color-deep-forest: #2c4235;
  --color-grey-light: #e5e5e5;
  --color-grey: #6b7280;
  --color-grey-dark: #374151;
  --color-text: #2d3436;
  --color-text-muted: #5a6169;
  
  /* Typography */
  --font-primary: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Playfair Display', Georgia, serif;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  
  /* Border radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 50%;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(61, 90, 71, 0.08);
  --shadow-md: 0 4px 20px rgba(61, 90, 71, 0.1);
  --shadow-lg: 0 8px 30px rgba(61, 90, 71, 0.12);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  
  /* Container widths */
  --container-sm: 640px;
  --container-md: 768px;
  --container-lg: 1024px;
  --container-xl: 1200px;
}

/* ========================================
   Reset & Base Styles
   ======================================== */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-off-white);
  background-image: 
    radial-gradient(ellipse at 20% 30%, rgba(156, 175, 136, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(156, 175, 136, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(61, 90, 71, 0.04) 0%, transparent 40%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-forest);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-soft-green);
}

a:focus-visible {
  outline: 2px solid var(--color-sage);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

button:focus-visible {
  outline: 2px solid var(--color-sage);
  outline-offset: 2px;
}

/* ========================================
   Typography
   ======================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-deep-forest);
}

h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: var(--space-md);
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  margin-bottom: var(--space-md);
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  margin-bottom: var(--space-sm);
}

p {
  margin-bottom: var(--space-md);
}

.lead {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  line-height: 1.8;
}

/* ========================================
   Layout
   ======================================== */

.container {
  width: 100%;
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container--narrow {
  max-width: var(--container-md);
}

.section {
  padding: var(--space-2xl) 0;
}

.section--alt {
  background-color: var(--color-cream);
}

.section--sage {
  background-color: var(--color-light-sage);
}

.section--hero-top {
  padding-top: calc(var(--space-3xl) + 80px);
}

/* ========================================
   Header & Navigation
   ======================================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(250, 249, 247, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(61, 90, 71, 0.1);
  transition: box-shadow var(--transition-normal);
}

.header.scrolled {
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) var(--space-md);
  max-width: var(--container-xl);
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.logo__image {
  height: 45px;
  width: auto;
}

.logo__text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-deep-forest);
}

/* Navigation */
.nav {
  display: none;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav__link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-grey-dark);
  position: relative;
  padding: var(--space-xs) 0;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-sage);
  transition: width var(--transition-normal);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.nav__link:hover {
  color: var(--color-forest);
}

/* Mobile menu button */
.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-xs);
}

.menu-toggle__bar {
  width: 24px;
  height: 2px;
  background-color: var(--color-forest);
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.menu-toggle.active .menu-toggle__bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active .menu-toggle__bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active .menu-toggle__bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile navigation */
.mobile-nav {
  position: fixed;
  top: 73px;
  left: 0;
  right: 0;
  background-color: var(--color-off-white);
  padding: var(--space-md) var(--space-lg);
  transform: translateX(100%);
  transition: transform var(--transition-normal);
  box-shadow: var(--shadow-lg);
  border-bottom-left-radius: var(--radius-lg);
  border-bottom-right-radius: var(--radius-lg);
}

.mobile-nav.active {
  transform: translateX(0);
}

.mobile-nav__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-nav__link {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-grey-dark);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--color-grey-light);
}

.mobile-nav__link:last-child {
  border-bottom: none;
}

.mobile-nav__link:hover,
.mobile-nav__link.active {
  color: var(--color-forest);
}

/* Desktop navigation */
@media (min-width: 1024px) {
  .nav {
    display: block;
  }
  
  .menu-toggle {
    display: none;
  }
  
  .mobile-nav {
    display: none;
  }
}

/* ========================================
   Buttons
   ======================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: var(--space-sm) var(--space-lg);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  text-align: center;
}

.btn--primary {
  background-color: var(--color-forest);
  color: var(--color-white);
}

.btn--primary:hover {
  background-color: var(--color-deep-forest);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--secondary {
  background-color: transparent;
  color: var(--color-forest);
  border: 2px solid var(--color-forest);
}

.btn--secondary:hover {
  background-color: var(--color-forest);
  color: var(--color-white);
}

.btn--ghost {
  background-color: transparent;
  color: var(--color-forest);
  padding: var(--space-xs) var(--space-sm);
}

.btn--ghost:hover {
  background-color: var(--color-light-sage);
}

.btn--outline {
  background-color: transparent;
  color: var(--color-forest);
  border: 2px solid var(--color-forest);
}

.btn--outline:hover {
  background-color: var(--color-forest);
  color: var(--color-white);
}

.btn--lg {
  padding: var(--space-md) var(--space-xl);
  font-size: 1.0625rem;
}

/* ========================================
   Hero Section
   ======================================== */

.hero {
  position: relative;
  padding: calc(var(--space-2xl) + 80px) 0 var(--space-2xl);
  background: linear-gradient(135deg, var(--color-off-white) 0%, var(--color-light-sage) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 400'%3E%3Cpath fill='%239caf88' fill-opacity='0.1' d='M200 50c-20 30-60 80-40 150 20 70 80 100 100 150-30-60-20-120 10-170 30-50 50-100 30-130-20-30-80 0-100 0z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right bottom;
  opacity: 0.3;
  pointer-events: none;
}

.hero__wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .hero__wrapper {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    gap: var(--space-xl);
  }
}

.hero__content {
  position: relative;
  max-width: 600px;
  z-index: 1;
  flex: 1;
}

.hero__image {
  flex-shrink: 0;
  max-width: 200px;
  width: 100%;
}

@media (min-width: 768px) {
  .hero__image {
    max-width: 280px;
  }
}

@media (min-width: 1024px) {
  .hero__image {
    max-width: 340px;
  }
}

.hero__image img {
  width: 100%;
  height: auto;
}

.hero__title {
  font-size: clamp(2.25rem, 6vw, 3.5rem);
  margin-bottom: var(--space-md);
  color: var(--color-deep-forest);
}

.hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
  justify-content: center;
}

@media (min-width: 768px) {
  .hero__buttons {
    justify-content: flex-start;
  }
}

.hero__intro {
  padding: var(--space-lg);
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-lg);
  border-top: 4px solid var(--color-sage);
}

@media (min-width: 768px) {
  .hero__intro {
    border-top: none;
    border-left: 4px solid var(--color-sage);
  }
}

.hero__intro p {
  margin-bottom: 0;
  font-size: 1.0625rem;
}

/* ========================================
   Cards
   ======================================== */

.card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: var(--space-md);
  color: var(--color-sage);
}

.card__title {
  font-family: var(--font-primary);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--color-deep-forest);
  margin-bottom: var(--space-xs);
}

.card__text {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  margin-bottom: 0;
}

/* Card grid */
.card-grid {
  display: grid;
  gap: var(--space-md);
}

@media (min-width: 640px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .card-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
  }
  
  .card-grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .card-grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Help card with leaf icon */
.help-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.help-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.help-card__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--color-sage);
}

.help-card__text {
  font-size: 1rem;
  color: var(--color-text);
  margin: 0;
}

/* ========================================
   Section Titles
   ======================================== */

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-xl);
}

.section-header__title {
  margin-bottom: var(--space-sm);
}

.section-header__subtitle {
  color: var(--color-text-muted);
  margin-bottom: 0;
}

/* ========================================
   Content Sections
   ======================================== */

.content-block {
  display: grid;
  gap: var(--space-xl);
  align-items: center;
}

@media (min-width: 768px) {
  .content-block {
    grid-template-columns: 1fr 1fr;
  }
  
  .content-block--reverse .content-block__text {
    order: -1;
  }
}

.content-block__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.content-block__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Quote block */
.quote-block {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.quote-block::before {
  content: '"';
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--color-sage);
  opacity: 0.3;
  position: absolute;
  top: var(--space-sm);
  left: var(--space-lg);
  line-height: 1;
}

.quote-block__text {
  font-size: 1.125rem;
  font-style: italic;
  color: var(--color-text);
  padding-left: var(--space-xl);
  margin-bottom: 0;
}

/* Therapy feels like section */
.feels-like {
  background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-light-sage) 100%);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
}

.feels-like__text {
  font-size: 1.125rem;
  line-height: 1.9;
  max-width: 700px;
  margin: 0 auto;
}

/* ========================================
   About/Bio Section
   ======================================== */

.bio-section {
  display: grid;
  gap: var(--space-xl);
}

@media (min-width: 768px) {
  .bio-section {
    grid-template-columns: 300px 1fr;
    gap: var(--space-2xl);
  }
}

.bio-section__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  align-self: start;
  height: fit-content;
}

.bio-section__content h2 {
  margin-bottom: var(--space-md);
}

/* Credentials section */
.credentials {
  background-color: var(--color-cream);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-top: var(--space-xl);
}

.credentials__title {
  font-family: var(--font-primary);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-grey);
  margin-bottom: var(--space-md);
}

.credentials__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.credentials__item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--color-text);
  font-size: 0.9375rem;
}

.credentials__item svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--color-sage);
}

/* ========================================
   Therapy Pages
   ======================================== */

.therapy-hero {
  padding: calc(var(--space-3xl) + 80px) 0 var(--space-2xl);
  background: linear-gradient(135deg, var(--color-off-white) 0%, var(--color-light-sage) 100%);
  text-align: center;
}

.therapy-hero__title {
  margin-bottom: var(--space-md);
}

.therapy-hero__subtitle {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.therapy-content {
  max-width: 800px;
  margin: 0 auto;
}

.therapy-content h2 {
  margin-top: var(--space-xl);
}

.therapy-content p {
  font-size: 1.0625rem;
  line-height: 1.8;
}

.therapy-content ul {
  margin-bottom: var(--space-md);
}

.therapy-content li {
  position: relative;
  padding-left: var(--space-lg);
  margin-bottom: var(--space-sm);
  font-size: 1.0625rem;
}

.therapy-content li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 8px;
  background-color: var(--color-sage);
  border-radius: var(--radius-full);
}

/* ========================================
   Fees Section
   ======================================== */

.fee-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.fee-card__title {
  font-family: var(--font-primary);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-deep-forest);
  margin-bottom: var(--space-sm);
}

.fee-card__price {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-forest);
  margin-bottom: var(--space-xs);
}

.fee-card__duration {
  font-size: 0.875rem;
  color: var(--color-grey);
  margin-bottom: var(--space-md);
}

.fee-card__description {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

.fee-note {
  text-align: center;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  margin-top: var(--space-lg);
  padding: var(--space-md);
  background-color: var(--color-cream);
  border-radius: var(--radius-md);
}

/* ========================================
   Contact Section
   ======================================== */

.contact-section {
  display: grid;
  gap: var(--space-xl);
}

@media (min-width: 768px) {
  .contact-section {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
}

.contact-info__title {
  margin-bottom: var(--space-md);
}

.contact-info__text {
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.contact-info__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--color-sage);
  margin-top: 2px;
}

.contact-info__label {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-grey);
  margin-bottom: 2px;
}

.contact-info__value {
  font-size: 1rem;
  color: var(--color-text);
}

.contact-form {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-grey-dark);
  margin-bottom: var(--space-xs);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--space-sm);
  font-family: inherit;
  font-size: 1rem;
  border: 2px solid var(--color-grey-light);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-sage);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

/* ========================================
   CTA Banner
   ======================================== */

.cta-banner {
  background: linear-gradient(135deg, var(--color-forest) 0%, var(--color-deep-forest) 100%);
  color: var(--color-white);
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  text-align: center;
}

.cta-banner__title {
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.cta-banner__text {
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto var(--space-lg);
}

.cta-banner .btn--primary {
  background-color: var(--color-white);
  color: var(--color-forest);
}

.cta-banner .btn--primary:hover {
  background-color: var(--color-cream);
}

/* Simple CTA strip */
.cta-strip {
  background-color: var(--color-light-sage);
  padding: var(--space-xl);
  text-align: center;
}

.cta-strip__text {
  font-size: 1.125rem;
  margin-bottom: var(--space-md);
}

/* ========================================
   Footer
   ======================================== */

.footer {
  background-color: var(--color-deep-forest);
  color: var(--color-white);
  padding: var(--space-2xl) 0 var(--space-lg);
}

.footer__inner {
  display: grid;
  gap: var(--space-xl);
}

@media (min-width: 768px) {
  .footer__inner {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer__brand {
  margin-bottom: var(--space-md);
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.footer__logo-image {
  height: 40px;
  width: auto;
}

.footer__logo-text {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-white);
}

.footer__tagline {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
}

.footer__title {
  font-family: var(--font-primary);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-sage);
  margin-bottom: var(--space-md);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer__link {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color var(--transition-fast);
}

.footer__link:hover {
  color: var(--color-white);
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer__contact-item svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--color-sage);
  margin-top: 2px;
}

.footer__bottom {
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
}

.footer__copyright {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer__accreditations {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ========================================
   Homepage Hero (Centered)
   ======================================== */

.hero--home {
  text-align: center;
}

.hero--home .hero__content--centered {
  max-width: 700px;
  margin: 0 auto;
}

.hero__body {
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  color: var(--color-text-muted);
  line-height: 1.9;
  margin-bottom: var(--space-lg);
}

.hero__body p {
  margin-bottom: var(--space-sm);
}

.hero__body p:last-child {
  margin-bottom: 0;
}

.hero--home .hero__buttons {
  justify-content: center;
  margin-bottom: 0;
}

/* ========================================
   Meet Section (Homepage)
   ======================================== */

.meet-section {
  display: grid;
  gap: var(--space-xl);
  align-items: center;
}

@media (min-width: 768px) {
  .meet-section {
    grid-template-columns: 280px 1fr;
    gap: var(--space-2xl);
  }
}

@media (min-width: 1024px) {
  .meet-section {
    grid-template-columns: 320px 1fr;
  }
}

.meet-section__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  max-width: 220px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .meet-section__image {
    max-width: none;
    margin: 0;
  }
}

.meet-section__image img {
  width: 100%;
  display: block;
}

.meet-section__title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  margin-bottom: var(--space-md);
  color: var(--color-deep-forest);
}

.meet-section__lead {
  font-size: 1.125rem;
  color: var(--color-forest);
  margin-bottom: var(--space-md);
  font-weight: 500;
}

.meet-section__content p {
  margin-bottom: var(--space-md);
}

.meet-section__content .btn {
  margin-top: var(--space-sm);
}

/* ========================================
   Why Choose Section
   ======================================== */

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.why-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
}

.why-card__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  color: var(--color-sage);
}

.why-card__text {
  font-size: 1rem;
  margin: 0;
  color: var(--color-text);
  line-height: 1.5;
}

/* ========================================
   Gentle CTA Section
   ======================================== */

.gentle-cta {
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
}

.gentle-cta__title {
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin-bottom: var(--space-md);
  color: var(--color-deep-forest);
}

.gentle-cta__text {
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.gentle-cta__text:last-of-type {
  margin-bottom: var(--space-lg);
}

.gentle-cta__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
}

/* ========================================
   Qualifications Grid (About page)
   ======================================== */

.qualifications-grid {
  display: grid;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .qualifications-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.qualification-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
}

.qualification-card__title {
  font-family: var(--font-primary);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-forest);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--color-light-sage);
}

.qualification-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.qualification-card__list li {
  position: relative;
  padding-left: var(--space-md);
  margin-bottom: var(--space-sm);
  font-size: 0.9375rem;
  color: var(--color-text);
  line-height: 1.5;
}

.qualification-card__list li:last-child {
  margin-bottom: 0;
}

.qualification-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  background-color: var(--color-sage);
  border-radius: 50%;
}

/* ========================================
   Accessibility
   ======================================== */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-forest);
  color: var(--color-white);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-md);
  z-index: 9999;
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: var(--space-sm);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ========================================
   Utilities
   ======================================== */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--space-sm); }
.mt-2 { margin-top: var(--space-md); }
.mt-3 { margin-top: var(--space-lg); }
.mt-4 { margin-top: var(--space-xl); }
.mt-5 { margin-top: var(--space-2xl); }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-sm); }
.mb-2 { margin-bottom: var(--space-md); }
.mb-3 { margin-bottom: var(--space-lg); }
.mb-4 { margin-bottom: var(--space-xl); }
.mb-5 { margin-bottom: var(--space-2xl); }

/* Subtle crack pattern for decorative use */
.crack-pattern {
  position: relative;
}

.crack-pattern::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 60'%3E%3Cpath fill='none' stroke='%239caf88' stroke-width='1' stroke-opacity='0.2' d='M0 30 Q 100 20, 200 35 T 400 25 T 600 40 T 800 20 T 1000 35'/%3E%3Cpath fill='none' stroke='%233d5a47' stroke-width='0.5' stroke-opacity='0.1' d='M0 45 Q 150 35, 300 50 T 500 35 T 700 45 T 900 30 T 1000 40'/%3E%3C/svg%3E");
  background-size: cover;
  pointer-events: none;
}

/* Leaf decoration */
.leaf-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  color: var(--color-sage);
}

.leaf-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}
