/* ============================================
   MIND HEALERS — Main Stylesheet
   Aesthetic: Calm Luxury / Organic Refinement
   Fonts: Cormorant Garamond + DM Sans
   Palette: Deep Teal, Warm Cream, Sage, Gold
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500&display=swap');

/* ─── CSS Variables ─── */
:root {
  --teal:        #1d4a4a;
  --teal-light:  #2a6060;
  --sage:        #7a9e8e;
  --sage-light:  #b4cfc4;
  --cream:       #f7f3ed;
  --warm-white:  #fdfaf6;
  --gold:        #b89b5e;
  --gold-light:  #d4b87a;
  --charcoal:    #2c2c2c;
  --mid-grey:    #6b6b6b;
  --light-grey:  #e8e4de;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;
  --radius:       4px;
  --transition:   0.3s ease;
  --shadow:       0 4px 24px rgba(29,74,74,0.10);
  --shadow-lg:    0 12px 48px rgba(29,74,74,0.16);
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--warm-white);
  color: var(--charcoal);
  line-height: 1.7;
  font-weight: 300;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── Typography ─── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  color: var(--teal);
}
h1 { font-size: clamp(2.6rem, 6vw, 5rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.3rem; }
p  { font-size: 1rem; color: var(--mid-grey); margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

/* ─── Buttons ─── */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}
.btn-primary {
  background: var(--teal);
  color: #fff;
}
.btn-primary:hover { background: var(--teal-light); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-outline {
  background: transparent;
  color: var(--teal);
  border: 1.5px solid var(--teal);
}
.btn-outline:hover { background: var(--teal); color: #fff; }
.btn-gold {
  background: var(--gold);
  color: #fff;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }

/* ─── Navigation ─── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253,250,246,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--light-grey);
  padding: 0 2rem;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.nav-brand-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--teal);
  letter-spacing: 0.02em;
}
.nav-brand-tagline {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--sage);
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--charcoal);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-links a:hover { color: var(--teal); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--teal); font-weight: 500; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 0.3rem; }
.nav-dropdown > a::before {
  content: '▾';
  font-size: 0.6rem;
  margin-left: 0.2rem;
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--warm-white);
  border: 1px solid var(--light-grey);
  border-radius: 6px;
  box-shadow: var(--shadow-lg);
  min-width: 160px;
  padding: 0.5rem 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
  transform: translateX(-50%) translateY(-6px);
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 0.55rem 1.25rem;
  font-size: 0.875rem;
  color: var(--charcoal);
  transition: background var(--transition), color var(--transition);
}
.dropdown-menu a::after { display: none; }
.dropdown-menu a:hover { background: var(--cream); color: var(--teal); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--teal);
  transition: all var(--transition);
}

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--teal);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 70% 50%, rgba(122,158,142,0.25) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 20% 80%, rgba(184,155,94,0.12) 0%, transparent 50%),
    linear-gradient(135deg, #1d4a4a 0%, #163838 60%, #0f2828 100%);
}
/* Subtle noise texture */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-text { animation: fadeUp 0.9s ease both; }
.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.hero h1 { color: var(--cream); margin-bottom: 0.4rem; font-style: italic; }
.hero-sub {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  color: var(--sage-light);
  margin-bottom: 1.8rem;
  font-weight: 300;
}
.hero-body {
  color: rgba(247,243,237,0.75);
  max-width: 480px;
  margin-bottom: 2.2rem;
  font-size: 1rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-card {
  animation: fadeUp 0.9s 0.2s ease both;
}
.hero-qualifications {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 2.5rem;
  backdrop-filter: blur(6px);
}
.hero-qualifications h3 {
  color: var(--cream);
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
  font-style: italic;
}
.qual-list { display: flex; flex-direction: column; gap: 0.8rem; }
.qual-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(247,243,237,0.82);
  font-size: 0.9rem;
}
.qual-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 0.55rem;
  flex-shrink: 0;
}
.hero-cta-box {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-cta-box p {
  color: rgba(247,243,237,0.65);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  font-style: italic;
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(247,243,237,0.4);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero-scroll::after {
  content: '↓';
  font-size: 1rem;
}

/* ─── Section Utilities ─── */
.section { padding: 6rem 2rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}
.section-title { margin-bottom: 0.5rem; }
.section-subtitle {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--mid-grey);
  margin-bottom: 3rem;
  font-style: italic;
}
.text-center { text-align: center; }
.text-center .section-label { justify-content: center; }
.text-center .section-label::before { display: none; }
.cream-bg { background: var(--cream); }
.teal-bg { background: var(--teal); }
.teal-bg h2, .teal-bg h3, .teal-bg h4 { color: var(--cream); }
.teal-bg p { color: rgba(247,243,237,0.75); }
.teal-bg .section-label { color: var(--gold-light); }
.teal-bg .section-label::before { background: var(--gold-light); }

/* ─── Why Card Grid ─── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.why-card {
  background: var(--warm-white);
  border: 1px solid var(--light-grey);
  border-radius: 8px;
  padding: 2rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--sage));
  transform: scaleX(0);
  transition: transform var(--transition);
}
.why-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.why-card:hover::before { transform: scaleX(1); }
.why-icon {
  width: 48px;
  height: 48px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
}
.why-card h4 { margin-bottom: 0.6rem; font-size: 1.15rem; }
.why-card p { font-size: 0.9rem; }

/* ─── Treatments Grid ─── */
.treatments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.treatment-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 2rem;
  transition: all var(--transition);
  cursor: pointer;
}
.treatment-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.treatment-icon { font-size: 2rem; margin-bottom: 1rem; }
.treatment-card h4 { color: var(--cream); font-size: 1.2rem; margin-bottom: 0.6rem; }
.treatment-card p { font-size: 0.88rem; }
.treatment-card .btn {
  margin-top: 1.2rem;
  font-size: 0.78rem;
  padding: 0.55rem 1.25rem;
  background: rgba(184,155,94,0.2);
  color: var(--gold-light);
  border: 1px solid rgba(184,155,94,0.3);
}
.treatment-card .btn:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

/* ─── Testimonial ─── */
.testimonial-block {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: 4rem 2rem;
}
.testimonial-quote {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.5vw, 1.6rem);
  font-style: italic;
  color: var(--teal);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  position: relative;
}
.testimonial-quote::before {
  content: '\201C';
  font-size: 5rem;
  color: var(--sage-light);
  position: absolute;
  top: -1.5rem;
  left: -1rem;
  line-height: 1;
  font-family: Georgia, serif;
}
.testimonial-author {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ─── Addresses / Contact Strip ─── */
.contact-strip {
  background: var(--cream);
  padding: 4rem 2rem;
}
.contact-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.contact-col h4 {
  font-size: 1rem;
  margin-bottom: 0.6rem;
  color: var(--teal);
}
.contact-col p { font-size: 0.88rem; margin-bottom: 0.3rem; }
.contact-col a { color: var(--teal); transition: color var(--transition); }
.contact-col a:hover { color: var(--gold); }

/* ─── Footer ─── */
footer {
  background: var(--teal);
  color: rgba(247,243,237,0.7);
  padding: 3rem 2rem 1.5rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--cream);
  font-style: italic;
}
.footer-socials {
  display: flex;
  gap: 1rem;
}
.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(247,243,237,0.7);
  font-size: 0.9rem;
  transition: all var(--transition);
}
.footer-socials a:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--gold);
  color: var(--gold);
}
.footer-nav {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-nav a {
  font-size: 0.85rem;
  color: rgba(247,243,237,0.6);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--cream); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
}
.accreditations {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.accreditations a {
  font-size: 0.78rem;
  color: rgba(247,243,237,0.5);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  padding: 0.25rem 0.6rem;
  transition: all var(--transition);
}
.accreditations a:hover { color: var(--gold); border-color: var(--gold); }
.footer-phone {
  font-size: 0.85rem;
  color: rgba(247,243,237,0.6);
}

/* ─── Page Hero (inner pages) ─── */
.page-hero {
  background: var(--teal);
  padding: 5rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(122,158,142,0.2) 0%, transparent 60%);
}
.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.breadcrumb {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247,243,237,0.45);
  margin-bottom: 1rem;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.breadcrumb a { color: rgba(247,243,237,0.45); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }
.page-hero h1 { color: var(--cream); font-style: italic; margin-bottom: 0.8rem; }
.page-hero-sub {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--sage-light);
  font-style: italic;
  max-width: 600px;
}

/* ─── Prose Content ─── */
.content-section { padding: 5rem 2rem; }
.content-inner {
  max-width: 760px;
  margin: 0 auto;
}
.content-inner h2 { margin-bottom: 1rem; }
.content-inner h3 { font-size: 1.5rem; margin: 2rem 0 0.8rem; }
.content-inner p { margin-bottom: 1.2em; font-size: 1.02rem; line-height: 1.8; color: var(--charcoal); opacity: 0.85; }
.content-inner .nhs-link {
  color: var(--teal);
  text-decoration: underline;
  text-decoration-color: var(--sage-light);
}
.highlight-box {
  background: var(--cream);
  border-left: 3px solid var(--gold);
  border-radius: 0 6px 6px 0;
  padding: 1.5rem 2rem;
  margin: 2rem 0;
}
.highlight-box p { color: var(--teal); font-style: italic; font-size: 1.05rem; opacity: 1; margin: 0; font-family: var(--font-display); }

/* ─── Treatment Detail ─── */
.treatment-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 2rem;
}
.treatment-sidebar {
  position: sticky;
  top: 90px;
  align-self: start;
}
.sidebar-card {
  background: var(--cream);
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 1.5rem;
}
.sidebar-card h4 { margin-bottom: 1rem; font-size: 1.1rem; }
.sidebar-links { display: flex; flex-direction: column; gap: 0.5rem; }
.sidebar-links a {
  font-size: 0.9rem;
  color: var(--charcoal);
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
  transition: all var(--transition);
  border-left: 2px solid transparent;
}
.sidebar-links a:hover, .sidebar-links a.active {
  background: var(--warm-white);
  color: var(--teal);
  border-color: var(--gold);
  padding-left: 1rem;
}

/* ─── Contact Form ─── */
.contact-form {
  background: var(--warm-white);
  border: 1px solid var(--light-grey);
  border-radius: 10px;
  padding: 2.5rem;
  max-width: 600px;
  margin: 0 auto;
}
.form-group { margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.5rem;
}
input, textarea, select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--light-grey);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--warm-white);
  color: var(--charcoal);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
input:focus, textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(29,74,74,0.08);
}
textarea { resize: vertical; min-height: 130px; }
.form-message {
  display: none;
  text-align: center;
  padding: 1rem;
  background: rgba(122,158,142,0.15);
  border-radius: var(--radius);
  color: var(--teal);
  font-size: 0.9rem;
  margin-top: 1rem;
}

/* ─── Contact Page Layout ─── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 2rem;
  align-items: start;
}
.contact-info h3 { margin-bottom: 1rem; }
.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.contact-detail-icon {
  font-size: 1.3rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}
.contact-detail-text p { font-size: 0.9rem; margin-bottom: 0.2rem; }
.contact-detail-text a { color: var(--teal); }
.contact-detail-text strong {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
  font-weight: 500;
}
.social-row { display: flex; gap: 0.75rem; margin-top: 2rem; }
.social-btn {
  padding: 0.5rem 1.1rem;
  border: 1px solid var(--light-grey);
  border-radius: 20px;
  font-size: 0.8rem;
  color: var(--charcoal);
  transition: all var(--transition);
}
.social-btn:hover { border-color: var(--teal); color: var(--teal); background: var(--cream); }

/* ─── About Page ─── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 2rem;
  align-items: center;
}
.about-avatar {
  background: var(--cream);
  border-radius: 12px;
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  color: var(--sage);
  border: 1px solid var(--light-grey);
}
.qual-badge {
  display: inline-block;
  background: var(--cream);
  border: 1px solid var(--light-grey);
  border-radius: 20px;
  padding: 0.35rem 0.9rem;
  font-size: 0.8rem;
  color: var(--teal);
  margin: 0.25rem;
  font-weight: 500;
}

/* ─── Animations ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-card { order: -1; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .treatments-grid { grid-template-columns: 1fr 1fr; }
  .contact-strip-inner { grid-template-columns: 1fr 1fr; }
  .treatment-detail-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-grid { grid-template-columns: 1fr; }
  .about-avatar { aspect-ratio: 1; max-width: 240px; }
}
@media (max-width: 680px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px;
    left: 0; right: 0;
    background: var(--warm-white);
    padding: 1.5rem;
    border-bottom: 1px solid var(--light-grey);
    gap: 1.2rem;
    z-index: 99;
  }
  .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: all;
    box-shadow: none;
    border: none;
    padding: 0 0 0 1rem;
  }
  .why-grid { grid-template-columns: 1fr; }
  .treatments-grid { grid-template-columns: 1fr; }
  .contact-strip-inner { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
}
