/* ============================================
   LEANIE BRITS - COUNSELLING PSYCHOLOGIST
   Global Stylesheet
   ============================================ */

/* ===== 1. CSS CUSTOM PROPERTIES ===== */

:root {
  /* Primary: Turquoise/Teal */
  --color-teal: #45828b;
  --color-teal-light: #d0e8eb;
  --color-teal-dark: #336873;
  --color-teal-xlight: #e8f4f6;

  /* Accent: Soft Pink */
  --color-pink: #ecd1d0;
  --color-pink-light: #f7eeee;
  --color-pink-dark: #c09e9c;

  /* Neutrals */
  --color-light-gray: #f8f8f7;
  --color-medium-gray: #e2e2e2;
  --color-dark-gray: #777777;

  /* Typography colours */
  --color-text: #3d3d3d;
  --color-heading: #1a2a2e;
  --color-white: #FFFFFF;
  --color-bg: #FFFFFF;

  /* Typography */
  --font-heading: 'Allura', cursive;
  --font-script: 'Allura', cursive;
  --font-body: 'Axiforma', 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.5vw, 1.25rem);
  --text-xl: clamp(1.25rem, 1.1rem + 0.75vw, 1.5rem);
  --text-2xl: clamp(1.5rem, 1.2rem + 1.5vw, 2rem);
  --text-3xl: clamp(2.25rem, 1.75rem + 2vw, 3rem);
  --text-4xl: clamp(2.25rem, 1.75rem + 2.5vw, 3.25rem);

  --leading-tight: 1.2;
  --leading-normal: 1.6;
  --leading-relaxed: 1.8;

  --tracking-wide: 0.05em;
  --tracking-wider: 0.1em;
  --tracking-widest: 0.2em;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  --section-padding: clamp(3rem, 5vw, 6rem);

  /* Layout */
  --container-max: 1200px;
  --container-narrow: 800px;
  --container-padding: clamp(1rem, 3vw, 2rem);
  --header-height: 120px;

  /* Borders & Shadows */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 8px rgba(26, 42, 46, 0.06);
  --shadow-md: 0 6px 20px rgba(26, 42, 46, 0.10);
  --shadow-lg: 0 12px 40px rgba(26, 42, 46, 0.14);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;
}

/* ===== 2. RESET & BASE STYLES ===== */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

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

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

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

a:hover {
  color: var(--color-teal);
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--color-heading);
  line-height: var(--leading-tight);
  font-weight: 600;
}

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

p {
  margin-bottom: var(--space-md);
}

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

ul, ol {
  padding-left: var(--space-xl);
}

li {
  margin-bottom: var(--space-sm);
}

/* ===== 3. UTILITY CLASSES ===== */

.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;
}

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

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

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

.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  z-index: 9999;
  padding: var(--space-sm) var(--space-md);
  background: var(--color-teal-dark);
  color: var(--color-white);
  font-weight: 700;
}

.skip-link:focus {
  top: 0;
}

/* ===== 4. LAYOUT ===== */

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

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

.section {
  padding: var(--section-padding) 0;
}

.section--alt {
  background-color: var(--color-light-gray);
  background-image: radial-gradient(circle at 1px 1px, rgba(69, 130, 139, 0.15) 1px, transparent 0);
  background-size: 28px 28px;
}

.section--pink {
  background-color: var(--color-pink-light);
}

.section--teal {
  background-color: var(--color-teal);
  background-image: none;
}

.section--teal h2,
.section--teal p {
  color: var(--color-white);
}

.section--teal .meet-preview__content h2 {
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: var(--color-white);
  background-clip: unset;
  color: var(--color-white);
}

.section--teal .meet-preview__content p {
  color: rgba(255, 255, 255, 0.85);
}

.section--teal .meet-preview__contact-icons .meet-contact-icon {
  border-color: var(--color-pink);
  color: var(--color-pink);
}

.section--teal .meet-preview__contact-icons .meet-contact-icon:hover {
  background-color: var(--color-pink);
  color: var(--color-teal);
}

.section--teal .meet-preview__image-wrap::before {
  border-color: var(--color-pink);
}

.section--teal .section-title::after {
  background: var(--color-pink);
}

.section--teal.section-divider--wave-to-white::after {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 16C240 40 480 48 720 36S1200 4 1440 16V48H0Z' fill='%23FFFFFF'/%3E%3C/svg%3E");
}

.section--teal .btn--secondary {
  color: var(--color-white);
  border-color: var(--color-white);
}

.section--teal .btn--secondary:hover {
  background-color: var(--color-white);
  color: var(--color-teal);
}


.section-title {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section-subtitle {
  text-align: center;
  max-width: 600px;
  margin: calc(-1 * var(--space-2xl)) auto var(--space-3xl);
  color: var(--color-dark-gray);
  font-size: var(--text-lg);
}

/* ===== 5. HEADER ===== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: #FFFFFF;
  transition: box-shadow var(--transition-base);
  border-bottom: 1px solid transparent;
}

.site-header--scrolled {
  background-color: #FFFFFF;
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--color-pink);
}



.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo img {
  height: 100px;
  width: auto;
}


.nav {
  display: none;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: var(--space-xl);
  padding: 0;
}

.nav-link {
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--color-heading);
  padding: var(--space-sm) 0;
  position: relative;
}

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

.nav-link:hover,
.nav-link--active {
  color: var(--color-teal-dark);
}

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

/* Dropdown */
.nav-item--has-dropdown {
  position: relative;
}

.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: -1.25rem;
  background: var(--color-white);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-md);
  list-style: none;
  padding: var(--space-sm) 0;
  min-width: 300px;
  z-index: 1001;
  border-top: 3px solid var(--color-teal);
}

.nav-dropdown li {
  margin: 0;
}

.nav-dropdown a {
  display: block;
  padding: 0.6rem var(--space-lg);
  color: var(--color-text);
  font-size: var(--text-sm);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  transition: background-color var(--transition-fast), color var(--transition-fast);
  border-left: 3px solid transparent;
}

.nav-dropdown a:hover {
  background-color: var(--color-pink-light);
  color: var(--color-teal-dark);
  border-left-color: var(--color-teal);
}

.nav-item--has-dropdown:hover .nav-dropdown {
  display: block;
}

/* Header CTA */
.header-cta {
  display: none;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
  z-index: 1002;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-heading);
  transition: all var(--transition-base);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav Open */
.nav--open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-white);
  padding: var(--space-xl);
  z-index: 999;
  overflow-y: auto;
}

.nav--open .nav-list {
  flex-direction: column;
  gap: 0;
}

.nav--open .nav-link {
  display: block;
  padding: var(--space-md) 0;
  font-size: var(--text-lg);
  border-bottom: 1px solid var(--color-medium-gray);
}

.nav--open .nav-dropdown {
  position: static;
  box-shadow: none;
  border-radius: 0;
  padding-left: var(--space-lg);
  border-top: none;
  display: none;
}

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

.nav--open .nav-dropdown a {
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--color-light-gray);
  border-left: none;
}

body.menu-open {
  overflow: hidden;
}

/* ===== 6. BUTTONS ===== */

.btn {
  display: inline-block;
  padding: 0.8rem 2.2rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-base);
  border: 2px solid transparent;
  text-decoration: none;
}

.btn--primary {
  background-color: var(--color-teal);
  color: var(--color-white);
  border-color: var(--color-teal);
}

.btn--primary:hover {
  background-color: var(--color-teal-dark);
  border-color: var(--color-teal-dark);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--secondary {
  background-color: transparent;
  color: var(--color-teal-dark);
  border-color: var(--color-teal-dark);
}

.btn--secondary:hover {
  background-color: var(--color-teal-dark);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--outline-white {
  background-color: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.7);
}

.btn--outline-white:hover {
  background-color: var(--color-white);
  color: var(--color-teal-dark);
  border-color: var(--color-white);
  transform: translateY(-2px);
}

/* ===== 7. HERO ===== */

.hero {
  padding-top: calc(var(--header-height) + var(--space-3xl));
  padding-bottom: var(--space-4xl);
  background-color: var(--color-teal-light);
  position: relative;
  overflow: hidden;
}

.hero--banner {
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-attachment: fixed;
  min-height: 100vh;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  align-items: center;
}

/* padding handled below in merged rule */

.hero--banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 42, 46, 0.78) 0%,
    rgba(51, 104, 115, 0.45) 55%,
    rgba(236, 209, 208, 0.18) 100%
  );
}

.hero--banner .hero-title {
  animation: heroFadeIn 1s ease-out both;
}

.hero--banner .hero-subtitle {
  animation: heroFadeIn 1s ease-out 0.3s both;
}

.hero--banner .btn {
  animation: heroFadeIn 1s ease-out 0.6s both;
}

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

.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: clamp(130px, 15vw, 200px) clamp(1.5rem, 8vw, 100px) var(--space-4xl);
  text-align: center;
}

.hero--banner .hero-content {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.hero--banner .hero-title {
  color: var(--color-white);
}

.hero--banner .hero-subtitle {
  color: rgba(255, 255, 255, 0.88);
  margin: 0 auto var(--space-xl);
}


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

.hero-title {
  font-size: 70px;
  margin-bottom: var(--space-lg);
  color: var(--color-heading);
}

.hero-title--script {
  font-family: var(--font-script);
  font-weight: 400;
  font-size: clamp(2.8rem, 2.2rem + 3.2vw, 4.5rem);
  line-height: 1.25;
  letter-spacing: 0.01em;
}

.hero-title--script span {
  display: block;
  white-space: nowrap;
}

.hero-subtitle {
  font-size: var(--text-lg);
  color: var(--color-dark-gray);
  max-width: 720px;
  margin: 0 auto var(--space-xl);
  line-height: var(--leading-relaxed);
}

.hero-image {
  max-width: 350px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* ===== 8. SERVICE CARDS ===== */

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--color-medium-gray);
  border-left: 1px solid var(--color-medium-gray);
}

.service-card {
  background: var(--color-white);
  border-right: 1px solid var(--color-medium-gray);
  border-bottom: 1px solid var(--color-medium-gray);
  padding: 0;
  transition: box-shadow var(--transition-base);
  text-align: left;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  box-shadow: 0 4px 20px rgba(69, 130, 139, 0.12);
  z-index: 1;
  position: relative;
}

.service-card__image-wrap {
  overflow: hidden;
}

.service-card__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.service-card:hover .service-card__image {
  transform: scale(1.04);
}

.service-card__body {
  padding: var(--space-lg) var(--space-xl) var(--space-xl);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-card__title {
  font-family: 'Axiforma', sans-serif;
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: var(--space-sm);
}

.service-card__excerpt {
  color: var(--color-dark-gray);
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-lg);
  flex: 1;
}

.service-card__link {
  font-family: 'Axiforma', sans-serif;
  font-weight: 600;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  color: var(--color-teal);
  display: inline-flex;
  align-items: center;
  gap: 0.3em;
}

.service-card__link:hover {
  color: var(--color-teal-dark);
}

/* ===== 9. PAGE HEADER ===== */

.page-header {
  padding-top: calc(var(--header-height) + var(--space-3xl));
  padding-bottom: var(--space-3xl);
  background-color: var(--color-teal-light);
  text-align: center;
}

.page-header__title {
  margin-bottom: var(--space-md);
}

.page-header__subtitle {
  color: var(--color-dark-gray);
  font-size: var(--text-lg);
  max-width: 600px;
  margin: 0 auto;
  line-height: var(--leading-relaxed);
}

.page-header--service {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.page-header--service::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(208, 232, 235, 0.92), rgba(248, 248, 247, 0.95));
}

.page-header--service .container {
  position: relative;
  z-index: 1;
}

/* ===== 10. BREADCRUMB ===== */

.breadcrumb {
  padding: var(--space-md) 0;
  padding-top: calc(var(--header-height) + var(--space-md));
  background-color: var(--color-teal-light);
}

.breadcrumb ol {
  display: flex;
  list-style: none;
  padding: 0;
  gap: var(--space-sm);
  font-size: var(--text-sm);
  color: var(--color-dark-gray);
}

.breadcrumb li:not(:last-child)::after {
  content: '/';
  margin-left: var(--space-sm);
  color: var(--color-medium-gray);
}

.breadcrumb a {
  color: var(--color-dark-gray);
}

.breadcrumb a:hover {
  color: var(--color-teal-dark);
}

.breadcrumb [aria-current="page"] {
  color: var(--color-heading);
  font-weight: 700;
}

/* ===== 11. CONTENT SECTIONS ===== */

.service-content {
  line-height: var(--leading-relaxed);
}

.service-content h2 {
  margin-top: var(--space-3xl);
  margin-bottom: var(--space-lg);
}

.service-content h3 {
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
}

.service-content ul {
  margin-bottom: var(--space-lg);
}

.cta-block {
  text-align: center;
  padding: var(--space-3xl) var(--space-xl);
  margin: var(--space-3xl) 0;
  background-color: var(--color-pink-light);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-pink);
}

.cta-block p {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  margin-bottom: var(--space-lg);
  color: var(--color-heading);
}

/* About page */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

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

.about-content h2 {
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
}

.about-content h2:first-child {
  margin-top: 0;
}

.qualifications-list {
  list-style: none;
  padding: 0;
}

.qualifications-list li {
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--color-medium-gray);
  font-size: var(--text-sm);
}

/* ===== 12. CONTACT PAGE ===== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3xl);
}

.contact-info h3 {
  margin-bottom: var(--space-md);
}

.contact-info p {
  margin-bottom: var(--space-lg);
  line-height: var(--leading-relaxed);
}

.contact-info a {
  color: var(--color-teal-dark);
  font-weight: 700;
}

.contact-map {
  width: 100%;
  height: 300px;
  border: none;
  border-radius: var(--radius-md);
  margin-top: var(--space-lg);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.form-group label {
  font-weight: 600;
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--color-heading);
}

.form-group input,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-medium-gray);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  transition: border-color var(--transition-fast);
  background-color: var(--color-white);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-teal);
  box-shadow: 0 0 0 3px rgba(69, 130, 139, 0.2);
}

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

.form-group input.error,
.form-group textarea.error {
  border-color: var(--color-pink-dark);
}

.form-error {
  color: #b04040;
  font-size: var(--text-xs);
}

.form-success {
  text-align: center;
  padding: var(--space-xl);
  background-color: var(--color-pink-light);
  border-radius: var(--radius-md);
  color: var(--color-heading);
}

/* ===== 13. FOOTER ===== */

.site-footer {
  background-color: var(--color-heading);
  color: rgba(255, 255, 255, 0.8);
  padding: var(--space-4xl) 0 var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-3xl);
}

.footer-brand-desc {
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
  color: rgba(255, 255, 255, 0.6);
  margin-top: var(--space-sm);
}

.footer-tagline {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: var(--text-xl);
  margin-bottom: var(--space-sm);
  color: var(--color-pink);
}

.footer-logo-wrap {
  margin-bottom: var(--space-md);
}

.footer-logo-wrap img {
  height: 100px;
  width: auto;
  opacity: 0.9;
  filter: brightness(0) invert(1);
}

.footer-credentials {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.5);
}

.footer-heading {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  color: var(--color-white);
  margin-bottom: var(--space-lg);
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: var(--space-sm);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: var(--text-sm);
  transition: color var(--transition-fast);
}

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

.footer-contact {
  font-style: normal;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--transition-fast);
}

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

.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
  font-size: var(--text-sm);
}

.footer-icon {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--color-teal);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-xl);
  text-align: center;
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.35);
}

/* ===== 14. INTRO / PREVIEW SECTIONS ===== */

.intro-section {
  text-align: center;
  background: linear-gradient(135deg, var(--color-pink-light) 0%, var(--color-teal-xlight) 100%);
}

.intro-section h2 {
  margin-bottom: var(--space-xl);
}

.intro-section p {
  max-width: 700px;
  margin: 0 auto var(--space-md);
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  color: var(--color-dark-gray);
}

.meet-preview {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.meet-preview__image-wrap {
  position: relative;
}

.meet-preview__image-wrap::before {
  content: '';
  position: absolute;
  inset: -12px;
  border: 2px solid var(--color-pink);
  border-radius: var(--radius-lg);
  z-index: 0;
  pointer-events: none;
}

.meet-preview__image {
  max-width: 380px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.meet-preview__content h2 {
  margin-bottom: var(--space-xs);
}

.meet-preview__subtitle {
  font-family: 'Axiforma', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--color-pink) !important;
  margin-bottom: var(--space-lg) !important;
}

.meet-preview__content p {
  color: var(--color-dark-gray);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-lg);
}

.meet-preview__contact-icons {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.meet-contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--color-teal);
  color: var(--color-teal);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.meet-contact-icon:hover {
  background-color: var(--color-teal);
  color: var(--color-white);
}

/* CTA Section */
.cta-section {
  text-align: center;
  background: var(--color-pink-light);
  border-top: 1px solid var(--color-pink);
  border-bottom: 1px solid var(--color-pink);
}

.cta-section h2 {
  margin-bottom: var(--space-md);
}

.cta-section p {
  max-width: 500px;
  margin: 0 auto var(--space-xl);
  color: var(--color-dark-gray);
  font-size: var(--text-lg);
}

.cta-section .contact-details {
  margin-top: var(--space-xl);
  display: flex;
  justify-content: center;
  gap: var(--space-2xl);
  flex-wrap: wrap;
}

.contact-details__item {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-dark-gray);
  transition: color var(--transition-fast);
}

.contact-details__item:hover {
  color: var(--color-teal-dark);
}

.contact-details__item svg {
  color: var(--color-teal-dark);
  flex-shrink: 0;
}

/* Credentials Bar */
.credentials-bar {
  text-align: center;
  padding: var(--space-2xl) 0;
  background-color: var(--color-heading);
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--text-sm);
  letter-spacing: var(--tracking-wider);
}

.credentials-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.credentials-bar .credential-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.credentials-bar .credential-icon {
  color: var(--color-teal);
  flex-shrink: 0;
}

.credentials-bar .credential-divider {
  color: rgba(255, 255, 255, 0.2);
}

/* ===== 15. SECTION DIVIDERS ===== */

.section-divider {
  position: relative;
}

.section-divider::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 48px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  z-index: 1;
}

.section-divider--wave-to-gray::after {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 16C240 40 480 48 720 36S1200 4 1440 16V48H0Z' fill='%23f8f8f7'/%3E%3C/svg%3E");
}

.section-divider--wave-to-white::after {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 16C240 40 480 48 720 36S1200 4 1440 16V48H0Z' fill='%23FFFFFF'/%3E%3C/svg%3E");
}

.section-divider--wave-to-gradient::after {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0' y1='0' x2='1' y2='1'%3E%3Cstop offset='0%25' stop-color='%23f7eeee'/%3E%3Cstop offset='100%25' stop-color='%23e8f4f6'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath d='M0 16C240 40 480 48 720 36S1200 4 1440 16V48H0Z' fill='url(%23g)'/%3E%3C/svg%3E");
}

/* ===== 16. HERO SCROLL INDICATOR ===== */

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255, 255, 255, 0.65);
  animation: heroBounce 2s ease-in-out infinite;
  transition: color var(--transition-fast);
}

.hero-scroll-indicator:hover {
  color: var(--color-white);
}

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

/* ===== 17. HEADING ACCENT UNDERLINES ===== */

.section-title::after,
.intro-section h2::after,
.cta-section h2::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  margin: var(--space-md) auto 0;
  background: linear-gradient(to right, var(--color-teal), var(--color-pink-dark));
  transition: width 0.6s ease;
}

.meet-preview__subtitle::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  margin: var(--space-sm) 0 0;
  background: var(--color-pink);
  transition: width 0.6s ease;
}

.visible .section-title::after,
.visible .intro-section h2::after,
.intro-section.visible h2::after,
.cta-section.visible h2::after {
  width: 60px;
}

.section.visible .meet-preview__subtitle::after {
  width: 60px;
}

/* ===== 18. STAGGERED CARD REVEAL ===== */

.service-card {
  opacity: 0;
  transform: translateY(30px);
}

.services-grid.cards-revealed .service-card {
  animation: cardReveal 0.5s ease-out forwards;
}

.services-grid.cards-revealed .service-card:nth-child(1) { animation-delay: 0s; }
.services-grid.cards-revealed .service-card:nth-child(2) { animation-delay: 0.1s; }
.services-grid.cards-revealed .service-card:nth-child(3) { animation-delay: 0.2s; }
.services-grid.cards-revealed .service-card:nth-child(4) { animation-delay: 0.3s; }
.services-grid.cards-revealed .service-card:nth-child(5) { animation-delay: 0.4s; }
.services-grid.cards-revealed .service-card:nth-child(6) { animation-delay: 0.5s; }

@keyframes cardReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== 19. CARD LINK ARROW ANIMATION ===== */

.service-card__link span {
  display: inline-block;
  transition: transform var(--transition-base);
}

.service-card:hover .service-card__link {
  letter-spacing: calc(var(--tracking-wide) + 0.02em);
}

/* ===== 20. BACK TO TOP BUTTON ===== */

.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background-color: var(--color-teal);
  color: var(--color-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-base);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background-color: var(--color-teal-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ===== 21. MEET LEANIE IMAGE HOVER ===== */

.meet-preview__image {
  transition: all var(--transition-base);
}

.meet-preview__image:hover {
  filter: brightness(1.04);
  box-shadow: 0 16px 40px rgba(26, 42, 46, 0.18);
  transform: scale(1.02);
}

/* ===== 23. GRADIENT TEXT ON HEADINGS ===== */

.section-title,
.intro-section h2,
.meet-preview__content h2,
.cta-section h2 {
  background: linear-gradient(135deg, var(--color-teal-dark) 0%, var(--color-pink-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: var(--color-teal-dark); /* fallback */
}

/* ===== 24. GRAIN TEXTURE OVERLAY ===== */

body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 5000;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* ===== 25. PULL QUOTE BLOCK ===== */

.pull-quote {
  text-align: center;
  padding: var(--space-4xl) var(--container-padding);
  position: relative;
  background: var(--color-teal);
}

.pull-quote blockquote {
  max-width: 720px;
  margin: 0 auto;
  font-family: var(--font-script);
  font-size: clamp(1.8rem, 1.5rem + 1.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-white);
  position: relative;
  padding: 0 var(--space-xl);
}

.pull-quote blockquote::before {
  content: '\201C';
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 7rem;
  line-height: 1;
  position: absolute;
  top: -2.5rem;
  left: -0.5rem;
  color: rgba(255, 255, 255, 0.15);
}

.pull-quote blockquote::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  margin: var(--space-xl) auto 0;
  background: rgba(255, 255, 255, 0.5);
}

.pull-quote cite {
  display: block;
  margin-top: var(--space-lg);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-style: normal;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  color: rgba(255, 255, 255, 0.7);
}

/* ===== 26. PARALLAX BREAK IMAGE ===== */

.parallax-break {
  height: 280px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
}

.parallax-break::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(69, 130, 139, 0.5),
    rgba(236, 209, 208, 0.4)
  );
}

/* ===== 27. ORGANIC SVG DECORATIONS ===== */

.organic-deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.organic-deco--top-right {
  top: 2rem;
  right: 1rem;
  width: 180px;
  height: 180px;
  opacity: 0.07;
  color: var(--color-teal);
}

.organic-deco--bottom-left {
  bottom: 2rem;
  left: 1rem;
  width: 160px;
  height: 160px;
  opacity: 0.07;
  color: var(--color-pink-dark);
  transform: rotate(180deg) scaleX(-1);
}

.intro-section > .container,
.cta-section > .container {
  position: relative;
  z-index: 1;
}

/* ===== 28. ANIMATED NUMBER COUNTERS ===== */

.credential-number {
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}

/* ===== 29. DECORATIVE THIN LINE DIVIDER ===== */

.thin-divider {
  border: none;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-pink), var(--color-teal-light), transparent);
  margin: 0;
}

/* ===== 22. RESPONSIVE ===== */

/* Small tablets (576px+) */
@media (min-width: 576px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablets (768px+) */
@media (min-width: 768px) {
  .hero .container {
    flex-direction: row;
    text-align: left;
  }

  .hero-content {
    text-align: left;
    flex: 1;
  }

  .hero-subtitle {
    margin-left: 0;
  }

  .hero-image {
    max-width: 320px;
  }

  .about-grid {
    grid-template-columns: 1fr 2fr;
  }

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

  .meet-preview {
    grid-template-columns: 380px 1fr;
  }

  .meet-preview__image {
    margin: 0;
  }

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

/* Desktop (992px+) */
@media (min-width: 992px) {
  .nav {
    display: flex;
    align-items: center;
  }

  .mobile-menu-toggle {
    display: none;
  }

  .header-cta {
    display: inline-block;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-image {
    max-width: 380px;
  }
}

/* ===== REDUCED MOTION ===== */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
