/* =============================================
   SaM Therapy — Main Stylesheet
   Brand colours from logo: teal (#3EC4CA) + dark teal (#2B7A8C) + pink (#E8579A)
   ============================================= */

/* --- CSS Variables — Brand colours from SaM Therapy logo --- */
/* Logo: teal speech bubble (#3EC4CA), dark teal outline (#2B7A8C), hot pink bg (#E8579A) */
:root {
  --primary:        #3EC4CA;
  --primary-dark:   #2B7A8C;
  --primary-light:  #90D9DE;
  --primary-xlight: #E6F7F8;
  --accent:         #E8579A;
  --accent-dark:    #C43D80;
  --bg:             #F5FBFB;
  --surface:        #FFFFFF;
  --text-dark:      #1A3D47;
  --text-medium:    #3A6B78;
  --text-light:     #7AB5C0;
  --border:         #C5E6EA;
  --shadow:         0 2px 16px rgba(43, 122, 140, 0.10);
  --shadow-md:      0 4px 28px rgba(43, 122, 140, 0.15);
  --radius:         12px;
  --radius-lg:      20px;
  --font-body:      'Lato', 'Helvetica Neue', Arial, sans-serif;
  --font-heading:   'Playfair Display', Georgia, serif;
  --max-width:      1100px;
  --nav-height:     88px;
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--text-dark);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--primary-dark); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent); }

ul { list-style: none; }

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

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin-bottom: 0.5em; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); margin-bottom: 0.4em; }
h4 { font-size: 1.15rem; margin-bottom: 0.3em; }

p { margin-bottom: 1.1em; color: var(--text-medium); }
p:last-child { margin-bottom: 0; }

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

.section {
  padding: 5rem 0;
}

.section--alt {
  background-color: var(--surface);
}

.section--tinted {
  background-color: var(--primary-xlight);
}

.section__header {
  text-align: center;
  margin-bottom: 3rem;
}

.section__header p {
  max-width: 680px;
  margin: 0.75rem auto 0;
  font-size: 1.1rem;
}

.section__divider {
  width: 56px;
  height: 3px;
  background: var(--primary);
  border-radius: 99px;
  margin: 0.75rem auto 0;
}

/* --- Google Fonts Load (inline fallback) --- */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Playfair+Display:wght@400;600;700&display=swap');

/* =============================================
   HEADER & NAVIGATION
   ============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(75,122,106,0.07);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  gap: 1rem;
  padding-bottom: 6px; /* space for speech-bubble tails */
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.site-logo__img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.site-logo__text {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--primary-dark);
  line-height: 1.2;
  font-weight: 700;
}

.site-logo__text span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--text-light);
  text-transform: uppercase;
}

/* Speech-Bubble Navigation — styled to echo the logo */
.site-nav { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }

.speech-btn {
  position: relative;
  display: inline-block;
  padding: 0.5rem 1.15rem 0.5rem;
  background: var(--primary-xlight);
  color: var(--primary-dark);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  /* Rounder corners to match the logo's bubbly speech bubble */
  border-radius: 22px;
  border: 2px solid var(--primary-light);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
  text-decoration: none;
  margin-bottom: 8px; /* room for the tail */
}

/* Speech-bubble tail — pointing down, like the logo */
.speech-btn::after {
  content: '';
  position: absolute;
  bottom: -9px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 9px solid var(--primary-xlight);
}

/* Thin outline ring behind the tail to match border */
.speech-btn::before {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 11px solid var(--primary-light);
}

.speech-btn:hover,
.speech-btn:focus {
  background: var(--primary);
  color: var(--surface);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(62, 196, 202, 0.35);
  outline: 2px solid transparent;
}

.speech-btn:hover::after { border-top-color: var(--primary); }
.speech-btn:hover::before { border-top-color: var(--primary); }

.speech-btn.active,
.speech-btn[aria-current="page"] {
  background: var(--primary-dark);
  color: var(--surface);
  border-color: var(--primary-dark);
  box-shadow: 0 3px 10px rgba(43, 122, 140, 0.3);
}

.speech-btn.active::after  { border-top-color: var(--primary-dark); }
.speech-btn.active::before { border-top-color: var(--primary-dark); }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 8px;
  transition: background 0.2s;
}

.nav-toggle:hover { background: var(--primary-xlight); }

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--primary-dark);
  border-radius: 99px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
  color: var(--surface);
  overflow: hidden;
  padding: 5rem 0 4rem;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/background-calm.jpg') center/cover no-repeat;
  opacity: 0.18;
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero__content { max-width: 580px; }

.hero__tagline {
  display: inline-block;
  background: rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.95);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 99px;
  margin-bottom: 1.2rem;
  border: 1px solid rgba(255,255,255,0.25);
}

.hero h1 {
  color: var(--surface);
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.12);
}

.hero p {
  color: rgba(255,255,255,0.92);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.hero__ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.hero__image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.hero__placeholder {
  width: 100%;
  height: 420px;
  background: rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  border: 2px dashed rgba(255,255,255,0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  text-align: center;
  padding: 2rem;
}

.hero__placeholder svg { margin-bottom: 1rem; opacity: 0.6; }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-block;
  padding: 0.78rem 1.8rem;
  border-radius: 99px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.15s;
  border: 2px solid transparent;
  text-decoration: none;
  line-height: 1;
}

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

.btn--primary {
  background: var(--surface);
  color: var(--primary-dark);
  border-color: var(--surface);
}

.btn--primary:hover {
  background: var(--primary-xlight);
  color: var(--primary-dark);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  transform: translateY(-1px);
}

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

.btn--outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--surface);
  color: var(--surface);
  transform: translateY(-1px);
}

.btn--green {
  background: var(--primary);
  color: var(--surface);
  border-color: var(--primary);
}

.btn--green:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  box-shadow: 0 4px 16px rgba(75,122,106,0.3);
  transform: translateY(-1px);
}

.btn--accent {
  background: var(--accent);
  color: var(--surface);
  border-color: var(--accent);
}

.btn--accent:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-1px);
}

/* =============================================
   INTRO STRIP / QUICK CONSULT BANNER
   ============================================= */
.consult-banner {
  background: var(--accent);
  color: var(--surface);
  text-align: center;
  padding: 1rem 1.5rem;
}

.consult-banner p {
  color: var(--surface);
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
}

.consult-banner a {
  color: var(--surface);
  text-decoration: underline;
}

/* =============================================
   FEATURE CARDS
   ============================================= */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: box-shadow 0.2s, transform 0.2s;
}

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

.card__icon {
  width: 52px;
  height: 52px;
  background: var(--primary-xlight);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.card__icon svg { color: var(--primary-dark); }

.card h3 { color: var(--primary-dark); margin-bottom: 0.6rem; }

.card .btn { margin-top: 1.25rem; }

/* =============================================
   ISSUES LIST
   ============================================= */
.issues-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.65rem;
}

.issues-list li {
  background: var(--surface);
  border-left: 3px solid var(--primary);
  padding: 0.65rem 1rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.95rem;
  color: var(--text-medium);
  font-weight: 400;
}

/* =============================================
   ABOUT / PROFILE
   ============================================= */
.profile-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 3.5rem;
  align-items: start;
}

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

.profile-image img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

.img-placeholder {
  background: var(--primary-xlight);
  border: 2px dashed var(--primary-light);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.88rem;
  text-align: center;
  padding: 2rem 1.5rem;
  min-height: 300px;
  gap: 0.75rem;
}

.img-placeholder svg { opacity: 0.5; }

/* Qualifications list */
.qual-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-medium);
  font-size: 0.95rem;
}

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

.qual-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.55em;
}

/* Credentials badge */
.credentials {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}

.badge {
  display: inline-block;
  padding: 0.3rem 0.85rem;
  background: var(--primary-xlight);
  color: var(--primary-dark);
  border-radius: 99px;
  font-size: 0.82rem;
  font-weight: 700;
  border: 1px solid var(--primary-light);
}

/* =============================================
   FEES TABLE/CARDS
   ============================================= */
.fees-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.fee-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow);
  border: 2px solid var(--border);
  text-align: center;
}

.fee-card--featured {
  border-color: var(--primary);
  position: relative;
}

.fee-card h3 {
  color: var(--primary-dark);
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}

.fee-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  text-align: left;
}

.fee-item:last-child { border-bottom: none; }

.fee-item__icon {
  width: 32px;
  height: 32px;
  background: var(--primary-xlight);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fee-item__text { font-size: 0.95rem; color: var(--text-medium); }

.fee-price {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  color: var(--primary-dark);
  font-weight: 700;
  line-height: 1;
  margin: 1rem 0 0.25rem;
}

.fee-price small {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-light);
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.contact-info h3 { color: var(--primary-dark); }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-detail__icon {
  width: 44px;
  height: 44px;
  background: var(--primary-xlight);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail__text { font-size: 0.95rem; color: var(--text-medium); }
.contact-detail__text strong { color: var(--text-dark); display: block; margin-bottom: 0.2rem; }

/* Contact Form */
.contact-form {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.contact-form h3 { margin-bottom: 1.5rem; color: var(--primary-dark); }

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--bg);
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(107,158,142,0.18);
}

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

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238BA898' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.5rem;
}

.form-honeypot { display: none !important; visibility: hidden; }

.gdpr-notice {
  background: var(--primary-xlight);
  border-left: 3px solid var(--primary);
  padding: 0.9rem 1rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.84rem;
  color: var(--text-medium);
  margin-bottom: 1.5rem;
}

.gdpr-notice p { margin: 0; }

/* Form messages */
.form-message {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  display: none;
}

.form-message--success {
  background: #E6F4ED;
  border: 1px solid #7BC89B;
  color: #2D6B45;
}

.form-message--error {
  background: #FDE8E8;
  border: 1px solid #F09090;
  color: #7B2D2D;
}

/* Map */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 350px;
  background: var(--primary-xlight);
  border: 2px dashed var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-container iframe {
  width: 100%;
  height: 350px;
  border: none;
  display: block;
}

.map-placeholder {
  text-align: center;
  padding: 2rem;
  color: var(--text-light);
}

.map-placeholder p { color: var(--text-light); margin-bottom: 0.5rem; font-size: 0.9rem; }

/* =============================================
   PAGE HEADER (inner pages)
   ============================================= */
.page-header {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 3.5rem 0 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -40px; right: -60px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: -50px; left: -40px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}

.page-header h1 { color: var(--surface); position: relative; }
.page-header p { color: rgba(255,255,255,0.85); position: relative; max-width: 580px; margin: 0.75rem auto 0; font-size: 1.05rem; }

/* =============================================
   CRISIS DISCLAIMER
   ============================================= */
.crisis-disclaimer {
  background: #FFF8F0;
  border: 1px solid #F0D0A8;
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1rem 1.25rem;
  margin: 2rem 0;
}

.crisis-disclaimer p {
  margin: 0;
  font-size: 0.88rem;
  color: #6B4C2A;
}

.crisis-disclaimer strong { color: #4A3010; }

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.75);
  padding: 3.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 1.5rem;
}

.footer-brand .site-logo__text {
  color: rgba(255,255,255,0.95);
  font-size: 1.2rem;
}

.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  margin-top: 0.75rem;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}

.footer-col ul li { margin-bottom: 0.5rem; }

.footer-col ul li a {
  color: rgba(255,255,255,0.75);
  font-size: 0.92rem;
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--primary-light); }

.footer-col address {
  font-style: normal;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer-col address a {
  color: rgba(255,255,255,0.7);
}

.footer-col address a:hover { color: var(--primary-light); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

.footer-bottom a { color: rgba(255,255,255,0.55); }
.footer-bottom a:hover { color: var(--primary-light); }

/* =============================================
   TESTIMONIAL / QUOTE BLOCK
   ============================================= */
.quote-block {
  border-left: 4px solid var(--primary);
  padding: 1.5rem 2rem;
  background: var(--surface);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  margin: 2rem 0;
}

.quote-block p {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--text-dark);
  font-style: italic;
  margin: 0;
  line-height: 1.5;
}

/* =============================================
   INFO STRIPS / HIGHLIGHT BOXES
   ============================================= */
.highlight-box {
  background: var(--primary-xlight);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  border: 1px solid var(--primary-light);
}

.highlight-box h3 { color: var(--primary-dark); }

/* Two-column list */
.two-col-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 2rem;
}

.two-col-list li {
  position: relative;
  padding-left: 1.2rem;
  font-size: 0.95rem;
  color: var(--text-medium);
}

.two-col-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__image, .hero__placeholder { display: none; }
  .profile-grid { grid-template-columns: 1fr; }
  .profile-image img { height: 300px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .two-col-list { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .site-nav {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1rem 1.5rem 1.5rem;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.6rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.09);
  }

  .site-nav.is-open { display: flex; }

  .nav-toggle { display: flex; }

  .speech-btn {
    padding: 0.55rem 1rem;
    font-size: 0.9rem;
  }

  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 3rem 0; }
  .hero { padding: 3rem 0; }
  .fees-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.4rem; }
  .contact-form { padding: 1.5rem; }
  .fee-card { padding: 1.75rem 1.25rem; }
}

/* =============================================
   UTILITIES
   ============================================= */
.text-center { text-align: center; }
.text-primary { color: var(--primary-dark); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 2rem; }

/* Skip to main (accessibility) */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary-dark);
  color: var(--surface);
  padding: 0.5rem 1rem;
  text-decoration: none;
  border-radius: 0 0 var(--radius) 0;
  font-weight: 700;
  z-index: 9999;
  transition: top 0.2s;
}

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

/* Print */
@media print {
  .site-header, .site-footer, .crisis-disclaimer { display: none; }
  body { background: white; color: black; }
}
