/* --- Self-hosted Inter Font --- */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/inter-regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/inter-semibold.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/inter-bold.woff2') format('woff2');
}

/* --- Merged content from style.css --- */
@media (max-width: 768px) {
  .site-header .brand {
    display: none !important;
  }
}
/* Highlight nav link for current page using aria-current */
.site-header .primary a[aria-current="page"] {
  background: rgba(240, 160, 75, 0.35);
  border-color: rgba(240, 160, 75, 0.6);
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(240, 160, 75, 0.2);
}

:root {
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --text: #1B2430;
  --muted: #5F6B7A;
  --line: #E6E9EF;
  --peach: #FCE7C8;
  --sage: #B1C29E;
  --sun: #FADA7A;
  --amber: #F0A04B;
  --maxw: 1120px;
  --radius: 16px;
  --vspace: 64px;

  /* Typography Scale System */
  --text-xs: 0.875rem;
  --text-sm: 0.95rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2rem;
  --text-4xl: 2.25rem;

  /* Font Weight System */
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700
}

* {
  box-sizing: border-box
}

html {
  font-size: 16px;
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: #fff
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 16px
}

.band {
  padding: var(--vspace) 0;
  position: relative
}

.band::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.015));
  pointer-events: none;
  z-index: 1;
  opacity: 0.6
}

.band.hero::after,
footer::after {
  display: none
}

section#services::after {
  background: linear-gradient(to bottom, transparent, rgba(177, 194, 158, 0.08))
}

section#packs::after {
  background: linear-gradient(to bottom, transparent, rgba(252, 231, 200, 0.12))
}

section#about::after {
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.15))
}

section#approach::after {
  background: linear-gradient(to bottom, transparent, rgba(177, 194, 158, 0.06))
}

section#contact::after {
  display: none
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: saturate(180%) blur(8px);
  -webkit-backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3)
}

/* Fallback for browsers that don't support backdrop-filter */
@supports not (backdrop-filter: blur(8px)) {
  .site-header {
    background: rgba(255, 255, 255, 0.9);
  }
}

.container.brand-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 16px
}

.site-header .brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-weight: var(--font-weight-semibold)
}

.site-header .brand img {
  height: 28px;
  width: auto
}

.site-header .primary {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px
}

.site-header .primary a,
.site-header .lang-toggle a {
  color: var(--text);
  text-decoration: none;
  font-weight: var(--font-weight-medium);
  padding: 6px 10px;
  border-radius: 12px;
  border: 1px solid transparent
}

.site-header .primary a:hover,
.site-header .lang-toggle a:hover {
  background: rgba(240, 160, 75, 0.12)
}

.site-header .primary a.active,
.site-header .lang-toggle a[aria-current="page"] {
  background: rgba(240, 160, 75, 0.35);
  border-color: rgba(240, 160, 75, 0.6);
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(240, 160, 75, 0.2)
}

.site-header .lang-toggle {
  display: flex;
  align-items: center;
  gap: 10px
}

.site-header a:visited {
  color: var(--text)
}

.site-header a[data-spy].active {
  border-bottom: 0;
  background: rgba(240, 160, 75, 0.38);
  border-color: rgba(240, 160, 75, 0.65);
  font-weight: var(--font-weight-semibold);
  box-shadow: 0 2px 8px rgba(240, 160, 75, 0.22)
}

.band.hero {
  background-color: #5a6b7d;
  background-image: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.25)), url('../../therapyspace.webp');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  margin-top: -80px;
  padding-top: calc(var(--vspace) + 80px);
}

/* Ensure hero background extends to very top */
.band.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: inherit;
  z-index: -1;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 28px;
  padding: 12px 0 60px;
  overflow: visible;
  min-height: calc(90vh - 80px)
}

/* Desktop hero padding */
@media (min-width: 768px) {
  .hero-inner {
    padding: 48px 0 60px;
  }
}

.hero-logo {
  position: relative;
  max-width: 320px;
  margin: 0 auto;
  filter: drop-shadow(0 14px 30px rgba(0, 0, 0, 0.10));
  overflow: visible
}

.hero-logo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  position: relative;
  z-index: 1
}

.hero-logo::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -20px;
  width: 115%;
  height: 52%;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(240, 160, 75, 0.28) 0%, rgba(240, 160, 75, 0.20) 28%, rgba(0, 0, 0, 0.10) 55%, rgba(0, 0, 0, 0.00) 78%);
  filter: blur(20px);
  opacity: 1;
  z-index: 0;
  mix-blend-mode: multiply
}

.hero-copy {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  overflow: visible;
  filter: drop-shadow(-8px 0 45px rgba(0, 0, 0, 0.3))
         drop-shadow(-4px 0 25px rgba(0, 0, 0, 0.2))
         drop-shadow(0 0 12px rgba(0, 0, 0, 0.15));
}

.hero-copy::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 140%;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 30%, rgba(0, 0, 0, 0.1) 60%, transparent 100%);
  z-index: -1;
  filter: blur(25px);
  pointer-events: none;
}

.hero-copy h1 {
  margin: 8px 0 12px;
  font-size: var(--text-4xl);
  line-height: 1.2;
  color: #fff;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.3), 0 2px 4px rgba(0, 0, 0, 0.8), 0 4px 8px rgba(0, 0, 0, 0.3)
}

.hero-copy .sub {
  color: #fff;
  font-size: var(--text-lg);
  line-height: 1.6;
  margin: 0 auto 20px;
  max-width: 52ch;
  position: relative;
  display: inline-block;
  z-index: 2;
  text-shadow: 0 2px 4px rgba(255, 255, 255, 0.3), 0 3px 8px rgba(0, 0, 0, 1), 0 6px 16px rgba(0, 0, 0, 0.8), 0 10px 30px rgba(0, 0, 0, 0.6)
}

@media (min-width:980px) {
  .hero-copy .sub::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -22px;
    width: 120%;
    height: 46px;
    pointer-events: none;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(240, 160, 75, 0.22) 0%, rgba(240, 160, 75, 0.14) 40%, rgba(0, 0, 0, 0.00) 78%);
    filter: blur(15px);
    opacity: 1
  }

  .hero-inner {
    grid-template-columns: auto 1fr;
    column-gap: 52px;
    padding: 72px 0 84px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    justify-content: center
  }

  .hero-logo {
    margin: 0;
    justify-self: start
  }

  .hero-copy {
    text-align: left;
    margin: 0;
    max-width: 500px
  }

  .hero-copy .sub {
    margin-left: 0;
    margin-right: 0;
    max-width: 520px
  }

  .hero-copy .actions {
    justify-content: flex-start
  }

  .about-grid {
    grid-template-columns: 1.2fr .8fr
  }
}

.hero-copy .actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap
}

.band.hero .btn {
  display: inline-flex;
  width: auto;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  font-weight: var(--font-weight-semibold);
  text-decoration: none;
  transition: .15s transform ease, .15s box-shadow ease
}

.band.hero .btn.primary {
  padding: 14px 22px;
  border-radius: 12px;
  background: linear-gradient(180deg, #F0A04B 0%, #D48C3F 100%);
  color: #1B2430;
  border: 1px solid #D79041;
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.10), 0 6px 18px rgba(240, 160, 75, 0.32)
}

.band.hero .btn.primary:hover {
  background: linear-gradient(180deg, #F2A754 0%, #C98038 100%);
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.12), 0 8px 22px rgba(240, 160, 75, 0.36);
  transform: translateY(-2px)
}

.band.hero .btn.ghost {
  padding: 14px 20px;
  border-radius: 12px;
  border: 1px solid #fff;
  color: #fff;
  background: rgba(255, 255, 255, 0.1)
}

.band.hero .btn.ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px)
}


.btn {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid var(--text);
  text-decoration: none;
  color: var(--text);
  font-weight: var(--font-weight-semibold);
  transition: .15s transform ease, .15s box-shadow ease, .15s background-color ease
}

.btn:hover {
  transform: translateY(-1px)
}

.btn.primary {
  background: linear-gradient(180deg, #F0A04B 0%, #D48C3F 100%);
  color: #1B2430;
  border: 1px solid #D79041;
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.10), 0 6px 18px rgba(240, 160, 75, 0.32);
  padding: 14px 22px;
  border-radius: 12px
}

.btn.primary:hover {
  background: linear-gradient(180deg, #F2A754 0%, #C98038 100%);
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.12), 0 8px 22px rgba(240, 160, 75, 0.36);
  transform: translateY(-1px)
}

.btn.primary.disabled,
.btn.primary:disabled {
  background: linear-gradient(180deg, #9ca3af 0%, #6b7280 100%);
  color: #d1d5db;
  border: 1px solid #9ca3af;
  box-shadow: none;
  cursor: not-allowed;
  opacity: 0.7;
  pointer-events: none;
  font-weight: var(--font-weight-semibold);
  font-size: inherit;
}

.btn.primary.disabled:hover,
.btn.primary:disabled:hover {
  background: linear-gradient(180deg, #9ca3af 0%, #6b7280 100%);
  box-shadow: none;
  transform: none;
}

.section-title {
  text-align: center;
  margin: 0 0 8px;
  font-weight: var(--font-weight-bold);
  font-size: var(--text-3xl)
}

.section-sub {
  max-width: 800px;
  margin: 0 auto 32px;
  text-align: center;
  color: var(--muted);
  font-size: var(--text-lg);
  line-height: 1.6
}

/* Enhanced text styling for services section headings */
#services .section-title {
  color: #1a1a1a;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.8),
    0 2px 4px rgba(0, 0, 0, 0.3),
    0 4px 8px rgba(0, 0, 0, 0.1);
  font-weight: 700;
}

#services .section-sub {
  color: #2d2d2d;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.6),
    0 2px 4px rgba(0, 0, 0, 0.2);
  font-weight: 500;
}

/* Enhanced text styling for packs section headings */
#packs .section-title {
  color: #1a1a1a;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.8),
    0 2px 4px rgba(0, 0, 0, 0.3),
    0 4px 8px rgba(0, 0, 0, 0.1);
  font-weight: 700;
}

#packs .section-sub {
  color: #2d2d2d;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.6),
    0 2px 4px rgba(0, 0, 0, 0.2);
  font-weight: 500;
}

section#services {
  background: linear-gradient(180deg, #FCE7C8 0%, #F0A04B 100%);
  position: relative;
}

/* Subtle texture overlay for services section */
section#services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.4) 1px, transparent 0);
  background-size: 24px 24px;
  opacity: 0.6;
  pointer-events: none;
  z-index: 1;
}

section#services .container {
  position: relative;
  z-index: 2;
}

#services .services-grid {
  display: grid;
  gap: 24px;
  margin-bottom: 32px;
  grid-template-columns: 1fr
}

@media (min-width:800px) {
  #services .services-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (min-width:1100px) {
  #services .services-grid {
    grid-template-columns: repeat(3, 1fr)
  }
}

.service-card,
#services .card,
#packs .card {
  position: relative;
  z-index: 1;
  border-radius: calc(var(--radius) + 2px);
  background: #fff;
  border: 1px solid color-mix(in srgb, var(--line) 70%, transparent);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03), 0 8px 24px rgba(0, 0, 0, 0.05);
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease
}

/* Glass morphism effect for services cards */
#services .card {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  /* Safari support */
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12),
    0 4px 16px rgba(0, 0, 0, 0.06);
}

/* Glass morphism effect for packs cards */
#packs .card {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  /* Safari support */
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12),
    0 4px 16px rgba(0, 0, 0, 0.06);
}

/* Fallback for browsers that don't support backdrop-filter */
@supports not (backdrop-filter: blur(12px)) {

  #services .card,
  #packs .card {
    background: rgba(255, 255, 255, 0.85);
  }
}

#packs .mini-card:last-of-type {
  margin-bottom: auto
}

#services .card::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -12px;
  width: 90%;
  height: 38px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(255, 204, 51, 0.38) 0%, rgba(255, 204, 51, 0.18) 40%, rgba(0, 0, 0, 0) 75%);
  filter: blur(18px);
  opacity: .9;
  z-index: -1
}

#services .card:hover,
#packs .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.09), 0 22px 46px rgba(0, 0, 0, 0.08)
}

/* Enhanced hover effects for glass morphism service cards */
#services .card:hover {
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15),
    0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-6px);
}

/* Enhanced hover effects for glass morphism packs cards */
#packs .card:hover {
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15),
    0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-6px);
}

#services .card h3,
#packs .card h3 {
  text-align: center;
  font-weight: var(--font-weight-semibold);
  font-size: var(--text-xl);
  line-height: 1.3;
  color: var(--text);
  margin: 0 0 12px
}

/* Enhanced text readability for glass morphism service cards */
#services .card h3 {
  color: #1a1a1a;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

#services .card p {
  color: #2d2d2d;
  font-weight: 500;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.6);
}

#services .card li {
  color: #2d2d2d;
  font-weight: 500;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.6);
}

/* Enhanced text readability for glass morphism packs cards */
#packs .card h3 {
  color: #1a1a1a;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

#packs .card p {
  color: #2d2d2d;
  font-weight: 500;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.6);
}

#packs .card li {
  color: #2d2d2d;
  font-weight: 500;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.6);
}

#packs .card h3 {
  margin: 0 0 8px
}

#services .card p {
  color: color-mix(in srgb, var(--text) 72%, var(--muted) 28%);
  font-weight: var(--font-weight-normal);
  line-height: 1.6;
  margin: 0 0 14px;
  text-align: center;
  min-height: 4.8em
}

#services .card ul {
  margin: 0 0 18px 0;
  padding: 0;
  color: var(--muted);
  font-weight: var(--font-weight-normal);
  line-height: 1.5;
  font-size: var(--text-sm);
  list-style-position: inside;
  text-align: center
}

#services .card li {
  margin-bottom: 6px
}

#services .meta-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  margin-bottom: 18px
}

#services .chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: var(--font-weight-semibold);
  font-size: var(--text-sm);
  border: 1px solid rgba(240, 160, 75, 0.55);
  background: rgba(240, 160, 75, 0.08);
  color: var(--text);
  line-height: 1.2;
  white-space: nowrap;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.04);
  transition: background .18s ease, box-shadow .18s ease, transform .18s ease
}

/* Glass morphism chips for services cards */
#services .card .chip {
  background: rgba(240, 160, 75, 0.3);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(240, 160, 75, 0.7);
  color: #1a1a1a;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 12px rgba(240, 160, 75, 0.2);
}

#services .chip:hover {
  background: rgba(240, 160, 75, 0.14);
  border-color: rgba(240, 160, 75, 0.7);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.07), 0 1px 0 rgba(255, 255, 255, 0.6) inset;
  transform: translateY(-1px)
}

/* Enhanced chip hover for glass morphism cards */
#services .card .chip:hover {
  background: rgba(240, 160, 75, 0.5);
  border-color: rgba(240, 160, 75, 0.8);
  box-shadow: 0 6px 18px rgba(240, 160, 75, 0.3),
    0 2px 6px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

#services .card-actions,
#packs .card-actions {
  display: flex;
  justify-content: center;
  gap: 8px
}

#services .card .btn.primary,
#packs .card .btn.primary {
  position: relative;
  z-index: 1;
  min-width: 150px;
  text-align: center
}

#services .card .btn.primary::after,
#packs .card .btn.primary::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -16px;
  width: 130%;
  height: 36px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(240, 160, 75, 0.4) 0%, rgba(240, 160, 75, 0.16) 50%, rgba(0, 0, 0, 0) 75%);
  filter: blur(18px);
  opacity: .9;
  z-index: -1
}

#services .pricing-notes {
  margin-top: 36px;
  text-align: center;
  font-size: 0.95rem;
  color: #2d2d2d;
  max-width: 90ch;
  line-height: 1.4;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.6), 0 2px 4px rgba(0, 0, 0, 0.2);
  font-weight: 500
}

section#packs {
  background: linear-gradient(180deg, #C8D9B8 0%, #BED3AD 50%, #B5CFA4 100%);
  position: relative;
}

/* Subtle texture overlay for packs section */
section#packs::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.4) 1px, transparent 0);
  background-size: 24px 24px;
  opacity: 0.6;
  pointer-events: none;
  z-index: 1;
}

section#packs .container {
  position: relative;
  z-index: 2;
}

#packs .packs-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
  grid-auto-rows: 1fr
}

@media (min-width:800px) {
  #packs .packs-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

#packs .card::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -12px;
  width: 90%;
  height: 38px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(177, 194, 158, 0.38) 0%, rgba(177, 194, 158, 0.18) 40%, rgba(0, 0, 0, 0) 75%);
  filter: blur(18px);
  opacity: .9;
  z-index: -1
}

#packs .card-subtitle {
  text-align: center;
  color: var(--muted);
  font-size: var(--text-xs);
  font-weight: var(--font-weight-medium);
  margin: 0 0 12px;
  font-style: italic
}

#packs .pack-pricing-top {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line)
}

#packs .pack-pricing-top .price-option {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  padding: 6px 12px;
  background: rgba(255, 204, 51, 0.12);
  border-radius: 6px;
  border: 1px solid rgba(255, 204, 51, 0.3)
}

#packs .mini-card {
  background: rgba(255, 204, 51, 0.06);
  border: 1px solid rgba(255, 204, 51, 0.2);
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 12px;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease
}

#packs .mini-card:hover {
  background: rgba(255, 204, 51, 0.12);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08)
}

#packs .mini-card-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--text);
  margin-bottom: 8px;
  text-transform: uppercase
}

#packs .mini-card-content {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
  font-weight: 400
}

section#about {
  background: var(--peach)
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  margin-top: 24px
}

.about-text {
  order: 1
}

.about-media {
  text-align: center;
  order: 2;
  position: relative
}

.portrait {
  max-width: 320px;
  width: 100%;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.12))
}

.about-media::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -20px;
  width: 80%;
  height: 40px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(240, 160, 75, 0.35) 0%, rgba(240, 160, 75, 0.18) 40%, rgba(0, 0, 0, 0) 75%);
  filter: blur(20px);
  opacity: 1;
  z-index: 0
}

@media (min-width:900px) {
  .about-grid {
    grid-template-columns: 1.3fr 1fr;
    gap: 48px;
    align-items: center
  }

  .about-text {
    order: 1
  }

  .about-media {
    order: 2;
    justify-self: center
  }

  .portrait {
    max-width: 380px
  }
}

.rich p {
  margin: 0 0 12px;
  color: var(--text);
  line-height: 1.7
}

section#approach {
  background: #fff
}

.faq-list {
  max-width: 900px;
  margin: 0 auto
}

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden
}

.faq-item[open] .faq-question {
  border-bottom: 1px solid var(--line);
  background: rgba(177, 194, 158, 0.05)
}

.faq-question {
  cursor: pointer;
  list-style: none;
  padding: 18px 20px;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background .2s ease
}

.faq-question:hover {
  background: rgba(177, 194, 158, 0.08)
}

.faq-question-text {
  font-size: 1.05rem
}

.faq-short-answer {
  font-weight: 400;
  font-style: italic;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5
}

.faq-answer {
  padding: 18px 20px;
  color: var(--muted);
  line-height: 1.7
}

.faq-answer hr {
  border: none;
  border-top: 1px solid var(--line);
  margin: 16px 0
}

.faq-answer p {
  margin-bottom: 16px
}

.faq-answer p:last-child {
  margin-bottom: 0
}

/* Therapist Statement - special styling with extra padding */
.therapist-statement {
  background: linear-gradient(135deg, rgba(177, 194, 158, 0.08), rgba(177, 194, 158, 0.12));
  border: 2px solid rgba(177, 194, 158, 0.3);
  border-radius: calc(var(--radius) + 4px);
  margin-top: 32px;
  overflow: hidden
}

.therapist-statement .faq-question {
  padding: 32px 24px 28px;
  font-weight: 600;
  font-size: 1.05rem;
  justify-content: center;
  text-align: center
}

.therapist-statement[open] .faq-question {
  background: rgba(177, 194, 158, 0.15)
}

/* Override default faq-answer padding for therapist statement specifically */
.therapist-statement .faq-answer {
  padding: 60px 50px;
  font-size: 0.95rem;
  text-align: center;
  line-height: 2;
  max-width: 800px;
  margin: 0 auto;
}

.therapist-statement .faq-answer p {
  margin-bottom: 18px;
  margin-top: 0
}

.therapist-statement .faq-answer p:first-child {
  margin-top: 0;
  padding-top: 0
}

.therapist-statement .faq-answer p:last-child {
  margin-bottom: 0;
  padding-bottom: 0
}

/* Mobile adjustments for therapist statement */
@media (max-width:768px) {
  .therapist-statement .faq-answer {
    padding: 40px 28px;
    font-size: 0.93rem;
    line-height: 1.7
  }
}

section#contact {
  background: color-mix(in srgb, var(--sage) 16%, white)
}

.contact-intro {
  text-align: center;
  margin-bottom: 32px
}

.contact-intro a {
  color: var(--text);
  font-weight: 600;
  text-decoration: underline
}

.form.card {
  max-width: 700px;
  margin: 0 auto 32px;
  padding: 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius)
}

.form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px
}

.form .row.single {
  grid-template-columns: 1fr
}

.field label {
  font-weight: 600;
  display: block;
  margin-bottom: 6px
}

.field input,
.field textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem
}

.field textarea {
  min-height: 120px;
  resize: vertical
}

.actions {
  display: flex;
  gap: 10px
}

.actions.end {
  justify-content: flex-end
}

.map-wrap {
  margin-top: 24px
}

/* DEBUGGING: Super strong sticky CTA visibility */
body a.btn.primary.sticky-cta,
html body a.sticky-cta,
#sticky-cta-link {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 99999;
  padding: 14px 22px;
  border-radius: 12px;
  box-shadow: 0 10px 22px rgba(240, 160, 75, 0.28), inset 0 -2px 0 rgba(0, 0, 0, 0.10);
  transition: opacity .3s ease, transform .3s ease;
  display: block;
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  background: #f0a04b;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  width: auto;
  height: auto;
  min-width: 120px;
  text-align: center;
}

body a.btn.primary.sticky-cta.hidden,
html body a.sticky-cta.hidden,
#sticky-cta-link.hidden {
  opacity: 0;
  transform: translateY(100px);
  pointer-events: none;
}

body a.btn.primary.sticky-cta::after,
html body a.sticky-cta::after,
#sticky-cta-link::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -12px;
  width: 76%;
  height: 12px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(240, 160, 75, 0.25), rgba(240, 160, 75, 0) 70%);
  filter: blur(10px);
  pointer-events: none;
}

/* Hover effects for sticky CTA */
body a.btn.primary.sticky-cta:hover,
html body a.sticky-cta:hover,
#sticky-cta-link:hover {
  background: #e8944a;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(240, 160, 75, 0.35), inset 0 -2px 0 rgba(0, 0, 0, 0.10);
}

/* Hamburger Menu (Mobile Only) */
.hamburger-btn {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
  z-index: 10001;
  position: relative;
}

.hamburger-line {
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s ease;
  border-radius: 1px;
}

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

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

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

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 10000;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}

.mobile-nav.active {
  visibility: visible;
  opacity: 1;
}

.mobile-nav-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 280px;
  height: 100vh;
  background: white;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  padding: 80px 30px 30px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  z-index: 2;
}

.mobile-nav.active .mobile-nav-content {
  transform: translateX(0);
}

.mobile-nav-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  z-index: 1;
}

.mobile-nav-link {
  display: block;
  padding: 16px 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  transition: color 0.2s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: #f0a04b;
}

.mobile-nav-lang {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 2px solid rgba(0, 0, 0, 0.1);
  display: flex;
  gap: 20px;
}

.mobile-nav-lang a {
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
  text-decoration: none;
  color: #666;
  border: 1px solid rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease;
}

.mobile-nav-lang a[aria-current="page"] {
  background: #f0a04b;
  color: white;
  border-color: #f0a04b;
}

/* Floating Language Toggle - Hidden by default */
.floating-lang-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9998;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 25px;
  padding: 8px 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: none;
  /* Hidden on desktop */
  gap: 8px;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

/* Desktop: Ensure floating toggle stays hidden */
@media (min-width: 769px) {
  .floating-lang-toggle {
    display: none;
    visibility: hidden;
  }
}

/* Mobile Layout Rules */
@media (max-width: 768px) {
  .hamburger-btn {
    display: flex;
  }

  .primary {
    display: none;
  }

  .lang-toggle {
    display: none;
  }

  /* Force show floating language toggle on mobile with higher specificity */
  body .floating-lang-toggle,
  html body .floating-lang-toggle {
    display: flex;
    position: fixed;
    top: 15px;
    /* Position inside header space */
    right: 20px;
    /* Position in top right corner */
    z-index: 9998;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 6px 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    gap: 6px;
    align-items: center;
    visibility: visible;
    opacity: 1;
    width: auto;
    height: auto;
    min-width: 60px;
    transition: all 0.3s ease;
  }

  /* Floating lang toggle links mobile styling */
  body .floating-lang-toggle a,
  html body .floating-lang-toggle a {
    background: transparent;
    color: #666;
    border: none;
    padding: 4px 8px;
    font-weight: 600;
    font-size: 12px;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.2s ease;
  }

  body .floating-lang-toggle a[aria-current="page"],
  html body .floating-lang-toggle a[aria-current="page"] {
    background: #f0a04b;
    color: #333;
  }

  body .floating-lang-toggle a:hover,
  html body .floating-lang-toggle a:hover {
    background: rgba(240, 160, 75, 0.1);
    color: #f0a04b;
  }

  body .floating-lang-toggle a[aria-current="page"]:hover,
  html body .floating-lang-toggle a[aria-current="page"]:hover {
    background: #e8944a;
    color: #333;
  }

  /* Ensure sticky CTA doesn't conflict on mobile */
  body a.btn.primary.sticky-cta,
  html body a.sticky-cta,
  #sticky-cta-link {
    bottom: 20px;
    z-index: 9999;
    /* Higher than floating lang toggle */
  }

  /* Ensure card CTA buttons are visible on mobile */
  #services .card-actions,
  #packs .card-actions {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: auto;
  }

  #services .card .btn.primary,
  #packs .card .btn.primary {
    display: inline-block;
    visibility: visible;
    opacity: 1;
    position: relative;
    z-index: 1;
    min-width: 120px;
    text-align: center;
    /* Ensure proper button styling on mobile */
    background: linear-gradient(180deg, #F0A04B 0%, #D48C3F 100%);
    color: #1B2430;
    border: 1px solid #D79041;
    box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.10), 0 6px 18px rgba(240, 160, 75, 0.32);
    padding: 14px 22px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: .15s transform ease, .15s box-shadow ease;
  }

  #services .card .btn.primary:hover,
  #packs .card .btn.primary:hover {
    background: linear-gradient(180deg, #F2A754 0%, #C98038 100%);
    box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.12), 0 8px 22px rgba(240, 160, 75, 0.36);
    transform: translateY(-1px);
  }
}

.floating-lang-toggle a {
  text-decoration: none;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  transition: all 0.2s ease;
  color: #666;
}

.floating-lang-toggle a[aria-current="page"] {
  background: #f0a04b;
  color: white;
}

.floating-lang-toggle a:hover {
  background: rgba(240, 160, 75, 0.1);
  color: #f0a04b;
}

.floating-lang-toggle a[aria-current="page"]:hover {
  background: #e8944a;
  color: white;
}

footer {
  border-top: 1px solid var(--line);
  padding: 16px 0;
  color: var(--muted)
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px
}

.footer-lang a {
  color: inherit;
  text-decoration: none;
  font-weight: 600
}

.footer-lang span {
  margin: 0 6px
}

@media (max-width:900px) {
  .about-grid {
    grid-template-columns: 1fr
  }

  .form .row {
    grid-template-columns: 1fr
  }
}

a,
button,
summary {
  outline-offset: 2px
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--sun)
}

a[data-spy].active {
  border-bottom: 2px solid var(--text)
}

/* Accessibility improvements */
.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
}

.field-help {
  font-size: 0.875rem;
  color: var(--muted);
  margin-top: 4px
}

.field-help.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
}

input[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: #dc3545;
  box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.25)
}

input[aria-invalid="false"]:focus,
textarea[aria-invalid="false"]:focus {
  border-color: var(--sun);
  box-shadow: 0 0 0 3px rgba(240, 160, 75, 0.12)
}

/* Image Optimization */
img {
  height: auto;
  max-width: 100%;
}

img[loading="lazy"] {
  content-visibility: auto;
}

.portrait {
  aspect-ratio: 1;
  object-fit: cover;
}

.hero-logo img {
  aspect-ratio: 1;
  object-fit: contain;
}

.brand img {
  aspect-ratio: 1;
  object-fit: contain;
}

/* Accessibility & UX Enhancements */
.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 to content link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--sun);
  color: var(--text);
  padding: 8px 16px;
  text-decoration: none;
  border-radius: 4px;
  z-index: 1000;
  transition: top 0.3s ease;
  font-weight: 600;
}

.skip-link:focus {
  top: 6px;
}

/* Enhanced focus indicators */
*:focus-visible {
  outline: 2px solid var(--sun);
  outline-offset: 2px;
  border-radius: 2px;
}

/* Smooth navigation enhancements */
.primary a {
  position: relative;
  transition: all 0.3s ease;
}

.primary a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--sun);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.primary a:hover::after,
.primary a:focus::after {
  transform: scaleX(1);
}

/* Language toggle improvements */
.lang-toggle a {
  transition: all 0.3s ease;
}

.lang-toggle a:hover,
.lang-toggle a:focus {
  background: rgba(250, 218, 122, 0.1);
  transform: scale(1.05);
}

.lang-toggle a[aria-current="page"] {
  background: var(--sun);
  color: var(--text);
}

/* Enhanced button interactions */
.btn {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.btn:hover,
.btn:focus {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Card hover effects */
.card {
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

/* Form accessibility enhancements */
input[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12);
}

input[aria-invalid="false"]:focus,
textarea[aria-invalid="false"]:focus {
  border-color: var(--sun);
  box-shadow: 0 0 0 3px rgba(250, 218, 122, 0.12);
}

/* Improved readability */
p,
li {
  line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.3;
}

/* Loading states for images */
img[loading="lazy"]:not([src]) {
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

/* --- Merged content from contact-grid.css --- */
/* Calendly + Contact two-column layout */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
  margin: 0 auto 32px;
}

@media (min-width: 980px) {
  .contact-grid {
    grid-template-columns: 1.1fr 1fr;
  }
}

.calendly-inline-widget {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

/* Make the contact form match the Calendly widget height on desktop */
@media (min-width: 980px) {
  .contact-grid .form.card {
    display: flex;
    /* vertical layout */
    flex-direction: column;
    min-height: 700px;
    /* same as Calendly inline style */
  }

  .contact-grid .form.card textarea {
    flex: 1;
    /* grow to fill remaining space */
    min-height: 420px;
    /* sensible floor so it looks good */
  }

  /* If your submit button is in a wrapper, keep it at the bottom */
  .contact-grid .form.card .actions,
  .contact-grid .form.card button[type="submit"] {
    margin-top: auto;
  }
}

/* Mobile/tablet: ensure form is properly sized and button is visible */
@media (max-width: 979px) {
  .contact-grid .form.card {
    padding: 24px;
    overflow: visible;
    /* Ensure nothing is clipped */
    min-height: auto;
    height: auto;
  }

  .contact-grid .form.card .row {
    margin-bottom: 16px;
  }

  .contact-grid .form.card textarea {
    min-height: 120px;
    /* Smaller to ensure button fits */
    max-height: 150px;
    margin-bottom: 16px;
    display: block;
  }

  .contact-grid .form.card .actions {
    display: flex;
    margin-top: 16px;
    margin-bottom: 0;
    padding-bottom: 0;
    justify-content: center;
    /* Center button on mobile */
    visibility: visible;
  }

  .contact-grid .form.card button[type="submit"] {
    width: 100%;
    max-width: 100%;
    padding: 14px 24px;
    display: block;
    visibility: visible;
  }
}

/* --- Merged content from fixes-2025-11-03.css --- */
/* --- Packs landing page: chips side by side fix --- */
/* Unify meta-chips layout globally */
.meta-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  margin-bottom: 18px;
}

#packs .meta-chips .chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: var(--font-weight-semibold);
  font-size: var(--text-sm);
  border: 1px solid rgba(240, 160, 75, 0.55);
  background: rgba(240, 160, 75, 0.08);
  color: var(--text);
  line-height: 1.2;
  white-space: nowrap;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.04);
  transition: background .18s ease, box-shadow .18s ease, transform .18s ease;
}

#packs .meta-chips .chip:hover {
  background: rgba(240, 160, 75, 0.14);
  border-color: rgba(240, 160, 75, 0.7);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.07), 0 1px 0 rgba(255, 255, 255, 0.6) inset;
  transform: translateY(-1px);
}

/* === Mobile Navigation Fixes === */
/* Hide desktop primary navigation on mobile, show hamburger */
@media (max-width: 979px) {
  .site-header .primary {
    display: none;
  }

  .hamburger-btn {
    display: flex;
    margin-left: auto;
  }

  /* Keep language toggle visible in header on mobile */
  .site-header .lang-toggle {
    display: flex;
    margin-right: 16px;
    order: -1;
  }
}

/* Show desktop nav, hide hamburger on desktop */
@media (min-width: 980px) {
  .hamburger-btn {
    display: none;
  }

  .mobile-nav {
    display: none;
  }
}

/* Equal height cards and pinned CTAs in Tailored Packs */
#packs .card {
  min-height: 640px;
  display: flex;
  flex-direction: column;
}

#packs .card .card-actions {
  margin-top: auto;
}

/* Improved card contrast for packs section - balanced opacity */
#packs .card {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06),
    0 1px 6px rgba(0, 0, 0, 0.04);
}

/* Ensure mini-cards are visible within regular cards */
#packs .mini-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(177, 194, 158, 0.3);
}

/* Remove white border from portrait (keep glow/shadow) */
.portrait {
  border: none;
}

/* === Hero buttons alignment: mobile centered, desktop left === */
.band.hero .actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (min-width: 900px) {
  .band.hero .actions {
    justify-content: flex-start;
  }
}

/* === Services minutes chip recolor to sage with hover ring === */
.services-grid .card .meta-chips .chip:first-child {
  background: #B1C29E;
  border: 1px solid color-mix(in srgb, #B1C29E 70%, black);
  color: var(--text);
}

.services-grid .card .meta-chips .chip:first-child:hover,
.services-grid .card .meta-chips .chip:first-child:focus,
.services-grid .card .meta-chips .chip:first-child:focus-visible {
  box-shadow: 0 0 0 3px color-mix(in srgb, #B1C29E 35%, white);
  outline: none;
}

/* === Packs mini-tags chips (semantic list) === */
.mini-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.mini-tags li {
  padding: 6px 10px;
  border-radius: 999px;
  background: color-mix(in srgb, #B1C29E 14%, white);
  border: 1px solid color-mix(in srgb, #B1C29E 60%, white);
  font-size: var(--text-sm);
  line-height: 1.2;
}

/* === Therapist Statement emphasis and spacing === */
details.therapist-statement {
  border: 1px solid color-mix(in srgb, #B1C29E 70%, black);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  background: color-mix(in srgb, #B1C29E 12%, white);
  margin-bottom: 20px;
  /* extra breathing space before FAQs */
}

details.therapist-statement>summary {
  padding: 16px 20px;
}

/* === Contact form: subtle elevation/hover + focus lift === */
form.form.card {
  transition: box-shadow .15s ease, transform .15s ease;
}

form.form.card:hover,
form.form.card:focus-within {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

/* === Packs mini-tags chips: center inside mini-card === */
.mini-card .mini-tags {
  justify-content: center;
  align-items: center;
}

/* === Services minutes chip recolor to sage with hover ring (higher specificity to beat base styles) === */
#services .meta-chips .chip:first-child {
  background: #B1C29E;
  border: 1px solid color-mix(in srgb, #B1C29E 70%, black);
  color: var(--text);
}

#services .meta-chips .chip:first-child:hover,
#services .meta-chips .chip:first-child:focus,
#services .meta-chips .chip:first-child:focus-visible {
  box-shadow: 0 0 0 3px color-mix(in srgb, #B1C29E 35%, white);
  outline: none;
}

/* === Progressive Disclosure Themed Packs === */

/* Card content centering */
#packs .card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 400px;
  padding: 32px 24px;
}

#packs .card h3,
#packs .card .card-subtitle {
  text-align: center;
  width: 100%;
}

/* Topic Groups */
.topic-group {
  margin-bottom: 24px;
  width: 100%;
}

.topic-title {
  font-size: var(--text-xs);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.5px;
  color: var(--text);
  margin-bottom: 12px;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  background: none;
  transition: color 0.2s ease;
  text-align: center;
}

.topic-title:hover {
  color: color-mix(in srgb, var(--text) 70%, #B1C29E);
}

/* Topic Tags */
.topic-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
  justify-content: center;
}

.topic-tags .tag {
  padding: 8px 12px;
  border-radius: 999px;
  background: color-mix(in srgb, #B1C29E 14%, white);
  border: 1px solid color-mix(in srgb, #B1C29E 60%, white);
  font-size: var(--text-sm);
  line-height: 1.2;
  transition: all 0.2s ease;
}

.topic-tags .tag:hover {
  background: color-mix(in srgb, #B1C29E 25%, white);
  transform: translateY(-1px);
}

/* Topic Details (expandable content) */
.topic-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.topic-details.expanded {
  max-height: 200px;
}

.topic-details .topic-tags.extended {
  margin-top: 8px;
  opacity: 0.8;
}

.topic-details .topic-tags.extended .tag {
  background: color-mix(in srgb, #B1C29E 8%, white);
  border: 1px solid color-mix(in srgb, #B1C29E 40%, white);
  font-size: var(--text-xs);
}

/* Meta chips positioning and styling - stacked layout with enhanced contrast */


/* Duration chip row (top) */
#packs .meta-chips .chip:first-child {
  order: -1;
  width: auto;
  align-self: center;
}

/* Pricing chips row (bottom) */
.pricing-chips-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

#packs .meta-chips .chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: var(--font-weight-semibold);
  font-size: var(--text-sm);
  border: 1px solid rgba(240, 160, 75, 0.55);
  background: rgba(240, 160, 75, 0.08);
  color: var(--text);
  line-height: 1.2;
  white-space: nowrap;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.04);
  transition: background .18s ease, box-shadow .18s ease, transform .18s ease;
}

/* Glass morphism chips for packs cards - matching services exactly */
#packs .card .chip {
  background: rgba(240, 160, 75, 0.3);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(240, 160, 75, 0.7);
  color: #1a1a1a;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 12px rgba(240, 160, 75, 0.2);
}

#packs .meta-chips .chip:hover {
  background: rgba(240, 160, 75, 0.14);
  border-color: rgba(240, 160, 75, 0.7);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.07), 0 1px 0 rgba(255, 255, 255, 0.6) inset;
  transform: translateY(-1px);
}

/* Enhanced chip hover for glass morphism cards */
#packs .card .chip:hover {
  background: rgba(240, 160, 75, 0.5);
  border-color: rgba(240, 160, 75, 0.8);
  box-shadow: 0 6px 18px rgba(240, 160, 75, 0.3),
    0 2px 6px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

/* Enhanced duration chip styling for better contrast */
#packs .meta-chips .chip:first-child {
  background: #9AB087;
  border: 2px solid #7A956A;
  color: #2c3e2d;
  font-weight: 700;
  box-shadow: 0 3px 6px rgba(122, 149, 106, 0.3);
}

/* Style for chips inside the info wrapper (for GROUP SUPPORT card with multiple info chips) */
#packs .meta-chips>div:first-child .chip {
  background: #9AB087;
  border: 2px solid #7A956A;
  color: #2c3e2d;
  font-weight: 700;
  box-shadow: 0 3px 6px rgba(122, 149, 106, 0.3);
}

/* Enhanced glass morphism for duration chip with better contrast */
#packs .card .chip:first-child {
  background: rgba(154, 176, 135, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 2px solid rgba(122, 149, 106, 0.9);
  color: #2c3e2d;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.9);
  box-shadow: 0 6px 16px rgba(122, 149, 106, 0.4),
    0 2px 4px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.3) inset;
}

/* Enhanced glass morphism for chips inside info wrapper */
#packs .card .meta-chips>div:first-child .chip {
  background: rgba(154, 176, 135, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 2px solid rgba(122, 149, 106, 0.9);
  color: #2c3e2d;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.9);
  box-shadow: 0 6px 16px rgba(122, 149, 106, 0.4),
    0 2px 4px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.3) inset;
}

#packs .meta-chips .chip:first-child:hover,
#packs .meta-chips .chip:first-child:focus,
#packs .meta-chips .chip:first-child:focus-visible {
  background: #8FA67C;
  border-color: #6B8259;
  box-shadow: 0 4px 8px rgba(122, 149, 106, 0.4);
  outline: none;
  transform: translateY(-1px);
}

/* Hover state for chips inside info wrapper */
#packs .meta-chips>div:first-child .chip:hover,
#packs .meta-chips>div:first-child .chip:focus,
#packs .meta-chips>div:first-child .chip:focus-visible {
  background: #8FA67C;
  border-color: #6B8259;
  box-shadow: 0 4px 8px rgba(122, 149, 106, 0.4);
  outline: none;
  transform: translateY(-1px);
}

/* Enhanced duration chip hover for glass morphism */
#packs .card .chip:first-child:hover {
  background: rgba(143, 166, 124, 0.7);
  border-color: rgba(107, 130, 89, 0.95);
  box-shadow: 0 8px 20px rgba(122, 149, 106, 0.5),
    0 4px 8px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(255, 255, 255, 0.4) inset;
  transform: translateY(-2px);
}

/* Enhanced glass morphism hover for chips inside info wrapper */
#packs .card .meta-chips>div:first-child .chip:hover {
  background: rgba(143, 166, 124, 0.7);
  border-color: rgba(107, 130, 89, 0.95);
  box-shadow: 0 8px 20px rgba(122, 149, 106, 0.5),
    0 4px 8px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(255, 255, 255, 0.4) inset;
  transform: translateY(-2px);
}

/* Enhanced price chips styling for better contrast - Services Section */
#services .meta-chips .chip:not(:first-child) {
  background: #E6A855;
  border: 2px solid #D4952A;
  color: #2d1f0a;
  font-weight: 700;
  box-shadow: 0 3px 6px rgba(212, 149, 42, 0.3);
}

#services .card .chip:not(:first-child) {
  background: rgba(230, 168, 85, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 2px solid rgba(212, 149, 42, 0.9);
  color: #2d1f0a;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.9);
  box-shadow: 0 6px 16px rgba(212, 149, 42, 0.4),
    0 2px 4px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.3) inset;
}

#services .meta-chips .chip:not(:first-child):hover {
  background: #D4952A;
  border-color: #C08619;
  box-shadow: 0 4px 8px rgba(212, 149, 42, 0.4);
  transform: translateY(-1px);
}

#services .card .chip:not(:first-child):hover {
  background: rgba(212, 149, 42, 0.7);
  border-color: rgba(192, 134, 25, 0.95);
  box-shadow: 0 8px 20px rgba(212, 149, 42, 0.5),
    0 4px 8px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(255, 255, 255, 0.4) inset;
  transform: translateY(-2px);
}

/* Enhanced price chips styling for themed packs - Pricing chips only */
#packs .pricing-chips-row .chip {
  background: #E6A855;
  border: 2px solid #D4952A;
  color: #2d1f0a;
  font-weight: 700;
  box-shadow: 0 3px 6px rgba(212, 149, 42, 0.3);
}

#packs .card .pricing-chips-row .chip {
  background: rgba(230, 168, 85, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 2px solid rgba(212, 149, 42, 0.9);
  color: #2d1f0a;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.9);
  box-shadow: 0 6px 16px rgba(212, 149, 42, 0.4),
    0 2px 4px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.3) inset;
}

#packs .pricing-chips-row .chip:hover {
  background: #D4952A;
  border-color: #C08619;
  box-shadow: 0 4px 8px rgba(212, 149, 42, 0.4);
  transform: translateY(-1px);
}

#packs .card .pricing-chips-row .chip:hover {
  background: rgba(212, 149, 42, 0.7);
  border-color: rgba(192, 134, 25, 0.95);
  box-shadow: 0 8px 20px rgba(212, 149, 42, 0.5),
    0 4px 8px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(255, 255, 255, 0.4) inset;
  transform: translateY(-2px);
}

/* New Horizontal Topic Cards Layout */
.packs-grid {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.packs-grid .card {
  width: 100%;
  max-width: none;
}

/* === CRITICAL: Override 2x2 grid with stacked vertical layout === */
html body section#packs .container .packs-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  grid-template-columns: none;
  grid-template-rows: none;
  grid-auto-rows: unset;
}

html body section#packs .packs-grid .card {
  width: 100%;
  max-width: none;
  margin: 0;
}

/* Force single column on all screen sizes */
@media (min-width: 800px) {
  html body section#packs .container .packs-grid {
    grid-template-columns: none;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
}

/* Additional reset for any grid properties */
html body #packs .packs-grid {
  grid-auto-rows: unset;
}

.topic-cards-grid {
  display: flex;
  gap: 1.5rem;
  margin: 1.5rem 0;
  justify-content: space-between;
}

.topic-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  text-align: center;
  flex: 1;
  min-height: 220px;
  display: flex;
  flex-direction: column;
}

.topic-card:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* New static topic card styling */
.topic-card-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.topic-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #333;
  margin: 0 0 0.5rem 0;
  letter-spacing: 0.5px;
  text-align: center;
}

.topic-card-description {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
  text-align: center;
  line-height: 1.4;
  font-style: italic;
}

.topic-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  align-items: flex-start;
  flex-grow: 1;
  align-content: flex-start;
}

.topic-card-tags .tag {
  font-size: 0.85rem;
  padding: 0.4rem 0.8rem;
  background: rgba(230, 168, 85, 0.15);
  color: #2d1f0a;
  border: 2px solid rgba(230, 168, 85, 0.4);
  border-radius: 18px;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
  display: inline-block;
}

.topic-card-tags .tag:hover {
  background: rgba(230, 168, 85, 0.25);
  border-color: rgba(230, 168, 85, 0.6);
  transform: translateY(-1px);
}

.topic-card-details.expanded {
  max-height: 250px;
  padding-top: 0.75rem;
}

.topic-card-details .topic-tags.extended {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1rem 0;
  justify-content: center;
}

.topic-card-expand-arrow {
  font-size: 1.1rem;
  color: #E6A855;
  font-weight: 400;
  transition: all 0.3s ease;
  text-align: center;
  margin-top: auto;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  background: rgba(230, 168, 85, 0.1);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
}

.topic-card-header.expanded .topic-card-expand-arrow {
  transform: rotate(180deg);
  color: #D4952A;
  background: rgba(212, 149, 42, 0.15);
}

.topic-card:hover .topic-card-expand-arrow {
  color: #D4952A;
  background: rgba(212, 149, 42, 0.15);
  transform: scale(1.05);
}

.topic-card-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.topic-card-details.expanded {
  max-height: 250px;
  padding-top: 0.75rem;
}

.topic-card-details .topic-tags.extended {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1rem 0;
  justify-content: center;
}

.topic-card-details .topic-tags.extended .tag {
  font-size: 0.85rem;
  padding: 0.4rem 0.8rem;
  background: rgba(212, 149, 42, 0.15);
  color: #2d1f0a;
  border: 2px solid rgba(212, 149, 42, 0.4);
  border-radius: 18px;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
  display: inline-block;
}

.topic-card-details .topic-tags.extended .tag:hover {
  background: rgba(212, 149, 42, 0.25);
  border-color: rgba(212, 149, 42, 0.6);
  transform: translateY(-1px);
}

/* Card intro styling */
.card-intro {
  font-size: 1.05rem;
  color: #666;
  margin: 0.75rem 0 1.5rem 0;
  line-height: 1.6;
  font-style: italic;
  text-align: center;
}

/* Responsive adjustments for horizontal topic cards */
@media (max-width: 768px) {
  .topic-cards-grid {
    flex-direction: column;
    gap: 1.5rem;
  }

  .topic-card {
    min-height: 180px;
    padding: 1.25rem;
  }

  .topic-card-title {
    font-size: 1rem;
  }

  .topic-card-tags .tag {
    font-size: 0.8rem;
    padding: 0.35rem 0.7rem;
  }
}

/* Card actions centering */
#packs .card-actions {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 0;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  #packs .card {
    min-height: 350px;
    padding: 24px 20px;
  }

  .topic-title {
    font-size: 0.85rem;
  }

  .topic-tags .tag {
    font-size: 0.9rem;
    padding: 6px 10px;
  }

  .show-more-btn {
    padding: 10px 16px;
    font-size: 0.85rem;
  }

  #packs .meta-chips .chip {
    font-size: 0.9rem;
    padding: 7px 10px;
  }
}

/* About Section Enhancements */
#about .section-title {
  color: #1a1a1a;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.8),
    0 2px 4px rgba(0, 0, 0, 0.3),
    0 4px 8px rgba(0, 0, 0, 0.1);
  font-weight: 700;
}

#about .section-sub {
  color: #2d2d2d;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.6),
    0 2px 4px rgba(0, 0, 0, 0.2);
  font-weight: 500;
}

/* Enhanced portrait styling with amber accents */
.portrait {
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(230, 168, 85, 0.25);
  border: 2px solid rgba(230, 168, 85, 0.15);
  transition: transform 0.3s ease;
}

.portrait:hover {
  transform: scale(1.02);
}

/* Update existing portrait shadow to amber colors */
.about-media::after {
  background: radial-gradient(ellipse at center, rgba(230, 168, 85, 0.35) 0%, rgba(212, 149, 42, 0.18) 40%, rgba(0, 0, 0, 0) 75%);
}

/* Subtle link enhancements */
.about-text a {
  color: #D4952A;
  font-weight: 600;
  transition: color 0.3s ease;
}

.about-text a:hover {
  color: #E6A855;
}

/* Improve text readability */
.about-text .rich p {
  margin-bottom: 1.2em;
  line-height: 1.6;
}

/* Enhanced text styling for approach section headings */
#approach .section-title {
  color: #1a1a1a;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.8),
    0 2px 4px rgba(0, 0, 0, 0.3),
    0 4px 8px rgba(0, 0, 0, 0.1);
  font-weight: 700;
}

#approach .section-sub {
  color: #2d2d2d;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.6),
    0 2px 4px rgba(0, 0, 0, 0.2);
  font-weight: 500;
}

/* Enhanced text styling for contact section headings */
#contact .section-title {
  color: #1a1a1a;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.8),
    0 2px 4px rgba(0, 0, 0, 0.3),
    0 4px 8px rgba(0, 0, 0, 0.1);
  font-weight: 700;
}

#contact .section-sub {
  color: #2d2d2d;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.6),
    0 2px 4px rgba(0, 0, 0, 0.2);
  font-weight: 500;
}

/* Dreams featured service card styling */
#packs .featured-service {
  box-shadow: 0 0 0 2px rgba(230, 168, 85, 0.4),
    0 8px 32px rgba(230, 168, 85, 0.25),
    0 2px 4px rgba(230, 168, 85, 0.1);
  background: rgba(255, 255, 255, 0.85);
  border: 2px solid rgba(230, 168, 85, 0.5);
  position: relative;
  transform: translateY(-2px);
  overflow: hidden;
}

#packs .featured-service::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(230, 168, 85, 0.1), rgba(212, 149, 42, 0.05));
  border-radius: calc(var(--radius) + 2px);
  z-index: -1;
  pointer-events: none;
}

#packs .featured-service h3 {
  color: #D4952A;
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.08em;
  text-shadow:
    -1px -1px 0 rgba(0, 0, 0, 0.5),
    1px -1px 0 rgba(0, 0, 0, 0.5),
    -1px 1px 0 rgba(0, 0, 0, 0.5),
    1px 1px 0 rgba(0, 0, 0, 0.5);
}

/* Enhanced card title prominence for themed packs */
#packs .card h3 {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.02));
  padding: 12px 20px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  margin: 0 0 16px 0;
}

/* Dreams featured card keeps its special amber title but matches background */
#packs .featured-service h3 {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.02));
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: #D4952A;
  font-weight: var(--font-weight-bold);
}

/* Bio card styling for consistency */
.bio-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  z-index: 1;
}

.bio-card-title {
  color: #1a1a1a;
  font-weight: 700;
  font-size: 1.5rem;
  margin: 0 0 24px 0;
  text-align: center;
  border-bottom: 2px solid rgba(230, 168, 85, 0.2);
  padding-bottom: 16px;
}

/* Bio sections organization */
.bio-section {
  margin-bottom: 20px;
}

.bio-section:last-child {
  margin-bottom: 0;
}

.bio-section.credentials {
  padding: 16px;
  background: rgba(230, 168, 85, 0.05);
  border-radius: 8px;
  border-left: 3px solid #E6A855;
}

.bio-icon {
  display: inline-block;
  margin-right: 8px;
  font-size: 1.1em;
  opacity: 0.8;
}

/* Enhanced About section spacing and background */
#about {
  background: linear-gradient(135deg, #FCE7C8 0%, #F5D5A8 25%, #F0C894 50%, #FCE7C8 75%, #F8E0B8 100%);
  position: relative;
}

#about .section-title {
  margin-bottom: 32px;
}

#about .about-grid {
  margin-top: 0;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: center;
}

/* Enhanced portrait styling */
.portrait {
  border-radius: 50%;
  box-shadow: 0 12px 40px rgba(230, 168, 85, 0.3),
    0 0 0 4px rgba(252, 231, 200, 0.4);
  border: 3px solid rgba(230, 168, 85, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  height: auto;
  max-width: 450px;
  aspect-ratio: 1;
  object-fit: cover;
}

.portrait:hover {
  transform: scale(1.02);
  box-shadow: 0 16px 48px rgba(230, 168, 85, 0.4),
    0 0 0 4px rgba(252, 231, 200, 0.6);
}

/* Update existing portrait shadow to peach/amber */
.about-media::after {
  background: radial-gradient(ellipse at center, rgba(252, 231, 200, 0.4) 0%, rgba(230, 168, 85, 0.2) 40%, rgba(0, 0, 0, 0) 75%);
  width: 85%;
  height: 45px;
}

/* Mobile responsive improvements */
@media (max-width: 900px) {
  #about .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-text {
    order: 2;
  }

  .about-media {
    order: 1;
    text-align: center;
  }

  .portrait {
    max-width: 320px;
  }

  .bio-card {
    padding: 24px;
  }

  .bio-card-title {
    font-size: 1.3rem;
  }
}

#about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse 800px 600px at 20% 30%, rgba(252, 231, 200, 0.4) 0%, transparent 50%),
    radial-gradient(ellipse 600px 400px at 80% 70%, rgba(245, 213, 168, 0.3) 0%, transparent 50%),
    radial-gradient(ellipse 1000px 800px at 50% 100%, rgba(240, 200, 148, 0.2) 0%, transparent 60%);
  z-index: 0;
}

#about .container {
  position: relative;
  z-index: 1;
}

/* Approach section enhancement - subtle beige background */
section#approach {
  background: #faf9f7;
  position: relative;
}

section#approach::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(245, 245, 220, 0.4) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

section#approach>* {
  position: relative;
  z-index: 2;
}

/* Contact section enhancement - subtle warm background */
section#contact {
  background: #fefcf8;
  position: relative;
}

section#contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 70% 30%, rgba(255, 248, 220, 0.5) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

section#contact>* {
  position: relative;
  z-index: 2;
}

/* Prevent scroll artifacts in packs section */
section#packs {
  overflow: hidden;
}

/* Enhanced hero text separation and readability */
.hero-logo {
  position: relative;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.5),
    0 2px 6px rgba(0, 0, 0, 0.3),
    0 1px 3px rgba(0, 0, 0, 0.2);
}

.hero-logo::before {
  content: '';
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  background: radial-gradient(ellipse at center,
      rgba(0, 0, 0, 0.6) 0%,
      rgba(0, 0, 0, 0.4) 30%,
      rgba(0, 0, 0, 0.2) 60%,
      transparent 80%);
  border-radius: 25px;
  z-index: -1;
  filter: blur(12px);
}

.hero-copy h1,
.hero-copy .sub {
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.6),
    0 2px 6px rgba(0, 0, 0, 0.4),
    0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Contact form title styling */
.form-title {
  font-size: var(--text-xl);
  font-weight: var(--font-weight-semibold);
  color: var(--text);
  margin: 0 0 24px 0;
  text-align: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}