/* ==========================================================================
   CSS CUSTOM VARIABLES & TOKENS (Premium Palette)
   ========================================================================== */
:root {
  --primary: #136442;
  --primary-hover: #004526;
  --accent: #e2ede5;
  --dark-neutral: #222d26;
  --text-main: #2e3b33;
  --text-muted: #52605a;
  --bg-light: #edf1ee;
  --bg-white: #ffffff;

  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: "Plus Jakarta Sans", Helvetica, sans-serif;

  --fs-hero-title: clamp(2.5rem, 2.07rem + 2.14vw, 4rem);
  --fs-hero-body-lg: clamp(1.1rem, 1.01rem + 0.21vw, 1.5rem);
  --fs-page-title: clamp(2.3rem, 2.04rem + 1.29vw, 3.2rem);
  --fs-section-title: clamp(2.1rem, 1.9rem + 1vw, 2.8rem);
  --fs-subsection-title: clamp(1.6rem, 1.43rem + 0.86vw, 2.2rem);
  --fs-card-title: clamp(1.25rem, 1.18rem + 0.36vw, 1.5rem);
  --fs-display: clamp(2rem, 1.86rem + 0.71vw, 2.5rem);
  --fs-list-heading: clamp(1.05rem, 1.01rem + 0.21vw, 1.2rem);
  --fs-body-lg: clamp(1rem, 0.97rem + 0.14vw, 1.1rem);

  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --radius-lg: 20px;
  --radius-md: 12px;
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 28px rgba(34, 45, 38, 0.12);
  --hairline: 1px solid rgba(0, 0, 0, 0.06);

  --section-padding: clamp(3.5rem, 8vw, 7.5rem) 0;
}

@media (max-width: 600px) {
  :root {
    --fs-hero-title: clamp(2.1rem, 1.7rem + 1.5vw, 2.5rem);
    --fs-page-title: clamp(1.9rem, 1.7rem + 1vw, 2.3rem);
    --fs-section-title: clamp(1.8rem, 1.6rem + 0.75vw, 2.1rem);
    --fs-subsection-title: clamp(1.4rem, 1.3rem + 0.5vw, 1.6rem);
    --fs-display: clamp(1.7rem, 1.55rem + 0.75vw, 2rem);
    --fs-list-heading: clamp(1.05rem, 1.02rem + 0.18vw, 1.17rem);
    --fs-body-lg: clamp(1.01rem, 0.98rem + 0.15vw, 1.09rem);
  }

  .team-card p,
  .focus-item p,
  .card-text,
  .footer-section p {
    font-size: 1rem;
  }
}

@media (max-width: 420px) {
  :root {
    --fs-page-title: clamp(1.7rem, 1.5rem + 0.9vw, 2.1rem);
    --fs-section-title: clamp(1.6rem, 1.45rem + 0.7vw, 1.9rem);
    --fs-subsection-title: clamp(1.3rem, 1.2rem + 0.45vw, 1.45rem);
    --fs-display: clamp(1.5rem, 1.4rem + 0.7vw, 1.8rem);
    --fs-list-heading: clamp(1.05rem, 1rem + 0.15vw, 1.15rem);
    --fs-body-lg: clamp(1.02rem, 0.97rem + 0.15vw, 1.08rem);
  }

  .team-card p,
  .focus-item p,
  .card-text,
  .footer-section p {
    font-size: 0.95rem;
  }
}

@media (max-width: 360px) {
  :root {
    --fs-page-title: clamp(1.6rem, 1.45rem + 0.75vw, 2rem);
    --fs-section-title: clamp(1.5rem, 1.38rem + 0.6vw, 1.8rem);
    --fs-subsection-title: clamp(1.25rem, 1.15rem + 0.4vw, 1.4rem);
    --fs-display: clamp(1.4rem, 1.3rem + 0.6vw, 1.7rem);
    --fs-list-heading: clamp(1rem, 0.96rem + 0.12vw, 1.1rem);
    --fs-body-lg: clamp(1rem, 0.95rem + 0.12vw, 1.05rem);
  }

  .team-card p,
  .focus-item p,
  .card-text,
  .footer-section p {
    font-size: 0.9rem;
  }

  .copyright-bar p {
    font-size: 0.8rem;
  }
}

/* ==========================================================================
   DEFAULT CSS RESET
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font: inherit;
}

html:focus-within {
  scroll-behavior: smooth;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
}

#about,
#values,
#team,
#services,
#contact {
  scroll-margin-top: 70px;
}

body {
  font-family: var(--font-sans);
  line-height: 1.6;
  color: var(--text-main);
  background-color: var(--bg-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html,
body {
  min-height: 100%;
  overflow-x: hidden;
  position: relative;
}

img,
picture,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
}

.about-section,
.values-section,
.team-section,
.services-section,
.profile-details-cv,
.profile-accreditations,
.service-focus {
  padding: var(--section-padding) !important;
}

.hero-content p,
.value-card p,
.team-card p,
.service-card p,
.policy-block p,
.footer-section p {
  max-width: 100%;
}

/* Global Section Typography Header Utilities */
.section-title {
  font-family: var(--font-serif);
  font-size: var(--fs-section-title);
  color: var(--dark-neutral);
  text-align: center;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  font-weight: 400;
}

.section-subtitle {
  margin: 0 auto 4rem;
  text-align: center;
  color: var(--text-muted);
  font-size: var(--fs-body-lg);
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  transition: var(--transition-smooth);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 5%;
  background: rgba(34, 45, 38, 0.15);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-smooth);
}

header.scrolled .navbar {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 0.9rem 5%;
}

.logo a {
  color: var(--bg-white);
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

header.scrolled .logo a {
  color: var(--dark-neutral);
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2rem;
}

.nav-links > li > a {
  color: var(--bg-white);
  font-weight: 500;
  font-size: 1rem;
  padding: 0.5rem 0;
}

header.scrolled .nav-links > li > a {
  color: var(--text-main);
}

.nav-links > li > a:hover {
  color: var(--accent);
}

header.scrolled .nav-links > li > a:hover {
  color: var(--primary);
}

.nav-cta {
  background: var(--primary);
  color: var(--bg-white) !important;
  padding: 0.7rem 1.4rem !important;
  border-radius: 50px;
  font-weight: 600 !important;
}

.nav-cta:hover {
  background: var(--primary-hover) !important;
}

/* Dropdown Navigation Modals */
.dropdown {
  position: relative;
}

.dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
}

.dropdown-trigger::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  margin-left: 2px;
}

.dropdown.open .dropdown-trigger::after {
  transform: rotate(-135deg);
}

.dropdown-menu {
  position: absolute;
  top: 150%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-white);
  min-width: 240px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  list-style: none;
  padding: 0.6rem 0;
  transition: var(--transition-smooth);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: 100%;
}

.dropdown-menu a {
  color: var(--dark-neutral);
  display: block;
  padding: 0.7rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.dropdown-menu a:hover {
  background: var(--accent);
  color: var(--primary);
}

/* High Quality Burger Icon Transformation */
.burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  cursor: pointer;
  z-index: 1100;
}

.burger span {
  width: 100%;
  height: 2px;
  background: var(--bg-white);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

header.scrolled .burger span {
  background: var(--dark-neutral);
}

/* Burger Animation states activated via JavaScript open toggles */
.burger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
  background: var(--dark-neutral);
}
.burger.open span:nth-child(2) {
  opacity: 0;
}
.burger.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
  background: var(--dark-neutral);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 1.5rem;
}

.overlay {
  position: absolute;
  inset: 0;
  background: #8ba59a;
}

.hero-content {
  position: relative;
  color: var(--bg-white);
  max-width: 850px;
  z-index: 2;
}

.hero-content h1 {
  font-family: var(--font-serif);
  font-size: var(--fs-hero-title);
  line-height: 1.2;
  font-weight: 400;
  margin-bottom: 1.5rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}

.hero-content p {
  font-size: var(--fs-hero-body-lg);
  font-weight: 400;
  max-width: 640px;
  margin: 0 auto 2.5rem;
  opacity: 0.95;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}

.cta-button {
  display: inline-block;
  padding: 1.1rem 2.8rem;
  background: var(--primary);
  color: var(--bg-white);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(74, 107, 82, 0.3);
}

.cta-button:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(74, 107, 82, 0.4);
}

.learn-more {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--bg-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

/* ==========================================================================
   ABOUT & CORE VALUES SECTIONS
   ========================================================================== */
.about-section {
  background: var(--bg-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 6rem;
}

.about-text h2 {
  font-family: var(--font-serif);
  font-size: var(--fs-section-title);
  color: var(--dark-neutral);
  line-height: 1.3;
  font-weight: 400;
  margin-bottom: 2rem;
}

.about-text p {
  font-size: var(--fs-body-lg);
  color: var(--text-main);
  margin-bottom: 1.5rem;
}

.about-image-wrapper .image-fit {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.about-image-wrapper img {
  width: 100%;
  height: 640px;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.values-section {
  background: var(--bg-light);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.value-card {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: var(--hairline);
  border-top: 4px solid var(--primary);
}

.value-card h3 {
  font-family: var(--font-serif);
  font-size: var(--fs-card-title);
  color: var(--dark-neutral);
  margin-bottom: 1rem;
}

/* ==========================================================================
   TEAM SECTION
   ========================================================================== */
.team-section {
  background: var(--bg-white);
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4rem;
}

.team-card {
  text-align: center;
  flex: 1 1 320px;
  max-width: 400px;
}

.team-img {
  overflow: hidden;
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
  height: 400px;
  box-shadow: var(--shadow-sm);
  border: var(--hairline);
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
}

.team-card:hover .team-img img {
  transform: scale(1.05);
}

.team-card h3 {
  font-family: var(--font-serif);
  font-size: var(--fs-card-title);
  color: var(--dark-neutral);
  margin-bottom: 0.3rem;
}

.team-card span {
  display: block;
  font-size: 1rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.team-card p {
  font-size: 1rem;
  color: var(--text-muted);
  padding-bottom: 0.8rem;
}

/* ==========================================================================
   THERAPIST PROFILE
   ========================================================================== */
.profile-intro {
  padding: 4rem 0;
}

.profile-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.profile-label {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--primary);
  letter-spacing: 1.5px;
  margin-bottom: 0.5rem;
}

.profile-title-name {
  font-family: var(--font-serif);
  font-size: var(--fs-page-title);
  color: var(--dark-neutral);
  line-height: 1.2;
  margin-bottom: 2rem;
}

.profile-biography p {
  font-size: var(--fs-body-lg);
  margin-bottom: 1.5rem;
  color: var(--text-main);
}

/* Timeline Layout Elements */
.profile-details-cv {
  background-color: var(--bg-light);
}

.cv-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
}

.cv-section-heading {
  font-family: var(--font-serif);
  font-size: var(--fs-subsection-title);
  color: var(--dark-neutral);
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.cv-section-heading.centered {
  text-align: center;
}

.editorial-timeline {
  list-style: none;
  position: relative;
  padding-left: 2rem;
  border-left: 1px solid rgba(74, 107, 82, 0.2);
}

.editorial-timeline li {
  position: relative;
  margin-bottom: 2.5rem;
}

.editorial-timeline li:last-child {
  margin-bottom: 0;
}

.editorial-timeline li::before {
  content: "";
  position: absolute;
  left: calc(-2rem - 5px);
  top: 6px;
  width: 9px;
  height: 9px;
  background: var(--primary);
  border-radius: 50%;
}

.cv-year {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.3rem;
}

.editorial-timeline strong {
  display: block;
  font-size: var(--fs-list-heading);
  color: var(--dark-neutral);
  margin-bottom: 0.4rem;
}

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

/* Accreditations Row style setup */
.profile-accreditations {
  background: var(--bg-white);
}

.accreditation-row {
  display: flex;
  justify-content: center;
  gap: 5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.accreditation-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(74, 107, 82, 0.15);
  background: var(--bg-white);
  box-shadow: var(--shadow-sm);
  padding: 1.75rem 2.75rem;
  border-radius: var(--radius-md);
  min-width: 180px;
  transition: var(--transition-smooth);
}

.accreditation-badge:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(74, 107, 82, 0.3);
}

.accreditation-badge img {
  display: block;
  width: auto;
  height: auto;
  max-height: 220px;
  max-width: 220px;
  object-fit: contain;
}

/* RESPONSIVE SUB-QUERIES */
@media (max-width: 950px) {
  .profile-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .profile-image img {
    height: 380px;
    max-width: 400px;
    margin: 0 auto;
  }

  .cv-split-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

/* ==========================================================================
   SERVICES / MODALITIES SECTION
   ========================================================================== */
.services-section {
  background-color: var(--bg-light);
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4rem;
}

.service-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: var(--hairline);
  display: flex;
  flex-direction: column;
  flex: 1 1 320px;
  max-width: 440px;
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.card-image {
  overflow: hidden;
  height: 300px;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.card-title {
  font-family: var(--font-serif);
  font-size: var(--fs-card-title);
  color: var(--dark-neutral);
  padding: 1.8rem 1.2rem 0.5rem;
}

.card-text {
  padding: 0 1.2rem 1.5rem;
  color: var(--text-muted);
  font-size: 1rem;
  flex-grow: 1;
}

.special-link {
  display: inline-block;
  margin: 0 1.2rem 2rem;
  align-self: flex-start;
  font-weight: 600;
  font-size: 1rem;
  color: var(--primary);
  letter-spacing: 0.5px;
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 4rem;
}

.btn-outline {
  display: inline-block;
  padding: 1rem 2.5rem;
  background-color: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--bg-white);
}

/* ==========================================================================
   SERVICE DETAILS
   ========================================================================== */
.service-overview {
  padding: 4rem 0;
}

.service-overview-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 5rem;
  align-items: center;
}

.service-label {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--primary);
  letter-spacing: 1.5px;
  margin-bottom: 0.5rem;
}

.service-editorial-text p {
  font-size: var(--fs-body-lg);
  margin-bottom: 1.5rem;
  color: var(--text-main);
}

.service-editorial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* Editorial Focus Areas Section Styles */
.service-focus {
  background-color: var(--bg-light);
}

.focus-editorial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.focus-item {
  position: relative;
  padding-top: 2rem;
  border-top: 1px solid rgba(74, 107, 82, 0.2);
}

.focus-number {
  display: block;
  font-family: var(--font-serif);
  font-size: var(--fs-display);
  color: var(--primary);
  opacity: 0.55;
  line-height: 1;
  margin-bottom: 1rem;
}

.focus-item h3 {
  font-family: var(--font-serif);
  font-size: var(--fs-card-title);
  color: var(--dark-neutral);
  margin-bottom: 1rem;
}

.focus-item p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES (Service Subpage Ergonomics)
   ========================================================================== */
@media (max-width: 950px) {
  .service-overview-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .service-editorial-image {
    order: -1; /* Keeps the image on top for tablets and mobile devices */
  }

  .service-editorial-image img {
    height: 360px;
    max-width: 500px;
    margin: 0 auto;
  }

  .focus-editorial-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 600px) {
  .service-overview {
    padding: 2rem 0;
  }
}

/* ==========================================================================
   THERAPY APPROACH & FORMAT SECTION
   ========================================================================== */
.therapy-approach-section {
  background-color: var(--bg-white);
  padding: var(--section-padding);
}

.approach-content-stream {
  margin: 0 auto;
}

.approach-content-stream h2 {
  font-family: var(--font-serif);
  font-size: var(--fs-subsection-title);
  color: var(--dark-neutral);
  line-height: 1.3;
  font-weight: 400;
  margin-bottom: 1.8rem;
}

.approach-content-stream h2:not(:first-child) {
  margin-top: 5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(19, 100, 66, 0.12);
}

.approach-content-stream p {
  font-size: var(--fs-body-lg);
  line-height: 1.75;
  color: var(--text-main);
  margin-bottom: 2rem;
}

.approach-content-stream p strong {
  font-weight: 700;
}

.approach-content-stream h3 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary);
  letter-spacing: 1.5px;
  margin-top: 2.2rem;
  margin-bottom: 0.4rem;
}

.approach-content-stream h3 + p {
  font-size: var(--fs-body-lg);
  color: var(--text-main);
  margin-bottom: 1.8rem;
}

.service-focus .approach-content-stream h2 {
  font-family: "Dancing Script", var(--font-serif);
  font-size: clamp(2.4rem, 2.1rem + 1.2vw, 3.4rem);
  font-weight: 600;
  color: var(--primary);
}

.service-focus .approach-content-stream p {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--text-muted);
  border-left: 3px solid var(--primary);
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
}

.service-focus .approach-content-stream p:first-of-type::before {
  content: "\201C";
  font-style: normal;
  color: var(--primary);
  opacity: 0.5;
  margin-right: 0.2rem;
}

.service-focus .approach-content-stream p:last-of-type::after {
  content: "\201D";
  font-style: normal;
  color: var(--primary);
  opacity: 0.5;
  margin-left: 0.2rem;
}

/* ==========================================================================
   RESPONSIVE MEDIA CONSTRAINTS (Approach Section Subpage)
   ========================================================================== */
@media (max-width: 950px) {
  .approach-content-stream h2:not(:first-child) {
    margin-top: 4rem;
    padding-top: 2rem;
  }
}

@media (max-width: 600px) {
  .approach-content-stream {
    max-width: 100%;
  }

  .approach-content-stream h2 {
    margin-bottom: 1.2rem;
  }

  .approach-content-stream h2:not(:first-child) {
    margin-top: 3.5rem;
  }

  .approach-content-stream h3 {
    font-size: 0.9rem;
    margin-top: 1.8rem;
  }
}

/* ==========================================================================
   FEES & POLICIES SECTION
   ========================================================================== */
.fees-grid-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin: 3.5rem 0;
}

.fee-card {
  background: var(--bg-white);
  padding: 2.8rem;
  border-radius: var(--radius-lg);
  border: var(--hairline);
  border-top: 4px solid var(--primary);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.fee-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.fee-card h3 {
  font-family: var(--font-serif);
  font-size: var(--fs-card-title);
  color: var(--dark-neutral);
  margin-bottom: 1.5rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.fee-price-rows {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  margin-bottom: 2rem;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}

.price-row-label {
  display: flex;
  flex-direction: column;
  color: var(--text-main);
  font-weight: 600;
  font-size: 1.05rem;
}

.price-row-label small {
  margin-top: 0.3rem;
  color: var(--text-muted);
  font-weight: 400;
  font-size: 0.85rem;
}

.price-row-amount {
  font-family: var(--font-serif);
  font-size: var(--fs-display);
  color: var(--primary);
  font-weight: 700;
  white-space: nowrap;
}

.fee-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.fee-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.fee-features li::before {
  content: "✓";
  color: var(--primary);
  font-weight: bold;
}

.fee-note {
  margin-top: 1.4rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ==========================================================================
   PRACTICE POLICIES
   ========================================================================== */
.policy-layout-grid {
  padding-top: 3rem;
  display: block;
  max-width: 800px;
  margin: 0 auto;
}

.policy-content-stream {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.policy-block h2 {
  font-family: var(--font-serif);
  font-size: var(--fs-subsection-title);
  color: var(--primary);
  margin-bottom: 1.5rem;
  font-weight: 500;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(0, 69, 38, 0.15);
}

.policy-block h3 {
  font-family: var(--font-serif);
  font-size: var(--fs-card-title);
  color: var(--dark-neutral);
  margin: 2rem 0 1rem 0;
}

.policy-block p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-main);
  margin-bottom: 1.5rem;
}

.policy-block ul {
  list-style: none;
  margin: 1rem 0 1.5rem 0;
}

.policy-block ul li {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-main);
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
}

.policy-block ul li::before {
  content: "•";
  color: var(--primary);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Regulatory highlight block panels */
.policy-callout {
  background-color: var(--bg-light);
  padding: 2rem;
  border-radius: var(--radius-md);
  margin: 2rem 0;
  border-left: 4px solid var(--primary);
}

.policy-callout p {
  margin-bottom: 0 !important;
}

.policy-callout h3 {
  margin-top: 0 !important;
  margin-bottom: 0.75rem !important;
}

/* ==========================================================================
   RESPONSIVE MEDIA CONSTRAINTS (Policy Optimization)
   ========================================================================== */
@media (max-width: 950px) {
  .policy-layout-grid {
    max-width: 100%;
  }

  .policy-callout {
    padding: 1.5rem;
  }
}

@media (max-width: 600px) {
  .policy-content-stream {
    gap: 3.5rem;
  }
}

/* ==========================================================================
   FOOTER & CONTACT SECTION
   ========================================================================== */
.footer-section {
  background: var(--bg-white);
  padding: clamp(4.5rem, 9vw, 7rem) 0 2.5rem;
}

.footer-intro {
  text-align: center;
  margin-bottom: 3.5rem;
}

.footer-section .section-title {
  color: var(--dark-neutral);
}

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

.contact-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.contact-card {
  background: var(--bg-light);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: var(--hairline);
  text-align: center;
  overflow-wrap: break-word;
}

.contact-card strong {
  display: block;
  font-size: 1rem;
  color: var(--dark-neutral);
  margin-bottom: 0.75rem;
}

.contact-card p {
  margin: 0;
}

.contact-card a {
  color: var(--primary);
  font-weight: 400;
  transition: var(--transition-smooth);
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-brand {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--dark-neutral);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
  list-style: none;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

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

.copyright-bar {
  text-align: center;
  padding-top: 2rem;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ==========================================================================
   SUBPAGE UTILITIES
   ========================================================================== */
.subpage-main {
  padding-top: 120px;
  min-height: 70vh;
}

.subpage-body header .navbar {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.subpage-body header .logo a,
.subpage-body header .nav-links > li > a {
  color: var(--dark-neutral);
}

.subpage-body header .burger span {
  background: var(--dark-neutral);
}

.subpage-body header .nav-links > li > a:hover {
  color: var(--primary);
}

/* ==========================================================================
   ANIMATIONS & KEYFRAMES
   ========================================================================== */
@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}

.bounce-arrow {
  display: inline-block;
  animation: bounce 2s infinite;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES (Senior Mobile Ergonomics)
   ========================================================================== */
@media (max-width: 1100px) {
  .team-grid {
    gap: 2.5rem;
  }
}

@media (max-width: 1024px) {
  .about-grid {
    gap: 3rem;
  }

  .about-image-wrapper img {
    height: 440px;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 950px) {
  .burger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 300px;
    background: var(--bg-white);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 6rem 3rem 3rem;
    gap: 1.8rem;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
    transition: var(--transition-smooth);
    overflow-y: auto;
  }

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

  .nav-links > li {
    width: 100%;
  }

  .nav-links li a {
    color: var(--dark-neutral) !important;
    font-size: 1.15rem;
    display: block;
    width: 100%;
  }

  .nav-links li a.nav-cta {
    color: var(--bg-white) !important;
    text-align: center;
    margin-top: 1rem;
  }

  /* Mobile Dropdown Overrides */
  .dropdown-menu {
    position: relative;
    top: 0 !important;
    left: 0;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    background: transparent;
    padding-left: 1.2rem;
    padding-top: 0.5rem;
    display: none;
  }

  .dropdown:hover .dropdown-menu,
  .dropdown.open .dropdown-menu {
    display: block;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-image-wrapper {
    order: -1;
  }

  .about-image-wrapper img {
    height: auto;
    aspect-ratio: 4 / 3;
    max-width: 100%;
  }

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

  .service-overview-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .service-editorial-image {
    order: -1;
  }

  .service-editorial-image img {
    height: auto;
    aspect-ratio: 4 / 3;
    max-width: 500px;
    margin: 0 auto;
  }

  .focus-editorial-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .fees-grid-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-cards-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 1.5rem;
  }

  .section-subtitle {
    margin: 0 auto 2.5rem;
  }

  .profile-title-name {
    text-align: center;
  }

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

  .contact-card {
    padding: 1.5rem;
  }

  .contact-card strong {
    font-size: 0.9rem;
  }

  .contact-card p,
  .contact-card a {
    font-size: 0.9rem;
  }

  .team-grid {
    gap: 2.5rem;
  }

  .team-card {
    max-width: 400px;
  }

  .team-img {
    height: 380px;
    max-width: 100%;
  }

  .policy-layout-grid {
    padding-top: 1.5rem;
  }

  .policy-content-stream {
    gap: 3rem;
  }

  .policy-block h2 {
    text-align: left;
  }

  .policy-callout {
    padding: 1.5rem 1.2rem;
  }
}

@media (max-width: 420px) {
  .footer-links a {
    font-size: 0.9rem;
  }

  .logo a {
    font-size: 1.5rem;
  }
}
