/* =============================================
   THE LISTENING ROOM COUNSELLING
   Global Stylesheet — v4 Warm & Grounded
   ============================================= */

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

/* =============================================
   VARIABLES
   ============================================= */
:root {
  --rose: #b08585;
  --rose-light: #cba8a8;
  --rose-dark: #8a6565;
  --plum: #7a6878;
  --plum-light: #a898b0;
  --plum-dark: #5a4858;
  --cream: #faf7f2;
  --cream-dark: #ede5da;
  --linen: #f5f0e8;
  --warm-white: #fdfaf7;
  --charcoal: #2c2826;
  --charcoal-light: #5a5250;
  --charcoal-mid: #3d3836;
  --white: #ffffff;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
  --max-width: 1160px;
  --transition: all 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--charcoal);
  background-color: var(--warm-white);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.25;
  color: var(--charcoal);
}

h1 { font-size: clamp(2.2rem, 4.5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

em {
  font-style: italic;
  color: var(--rose-dark);
}

p {
  color: var(--charcoal-light);
  max-width: 620px;
  line-height: 1.8;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 14px;
  display: inline-block;
  position: relative;
}

.section-label::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--rose);
  transition: width 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

.reveal.visible .section-label::after,
.visible .section-label::after {
  width: 100%;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-block;
  padding: 12px 28px;
  font-family: var(--font-body);
  font-size: 0.87rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 2px;
  transition: var(--transition);
  cursor: pointer;
}

.btn-hero {
  background-color: rgba(176, 133, 133, 0.85);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(4px);
  padding: 13px 36px;
}

.btn-hero:hover {
  background-color: rgba(176, 133, 133, 1);
  border-color: rgba(255,255,255,0.5);
}

.btn-rose {
  background-color: var(--rose);
  color: var(--white);
  border: none;
}

.btn-rose:hover {
  background-color: var(--rose-dark);
}

.btn-outline {
  background-color: transparent;
  color: var(--charcoal);
  border: 1px solid var(--charcoal-light);
  display: inline-block;
}

.btn-outline:hover {
  border-color: var(--charcoal);
  background-color: rgba(44,40,38,0.04);
}

.btn-ghost {
  background-color: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.35);
}

.btn-ghost:hover {
  background-color: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
}

/* =============================================
   LAYOUT
   ============================================= */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}

/* =============================================
   NAV
   ============================================= */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--warm-white);
  border-bottom: 1px solid var(--cream-dark);
  transition: box-shadow 0.3s ease;
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--charcoal);
  letter-spacing: 0.01em;
  line-height: 1.1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-decoration: none;
}

.nav-logo-sub {
  display: block;
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal-light);
  line-height: 1;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.84rem;
  font-weight: 400;
  color: var(--charcoal-light);
  transition: var(--transition);
  letter-spacing: 0.02em;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--plum-dark);
}

.nav-cta {
  background-color: var(--rose) !important;
  color: var(--white) !important;
  padding: 8px 18px;
  border-radius: 2px;
  font-weight: 500 !important;
  font-size: 0.83rem !important;
}

.nav-cta:hover {
  background-color: var(--rose-dark) !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background-color: var(--charcoal);
  transition: var(--transition);
}

/* =============================================
   HERO
   ============================================= */
.hero-fullbleed {
  position: relative;
  height: 100vh;
  min-height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(100%);
  animation: heroZoom 22s ease forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.12); }
  to { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    170deg,
    rgba(40, 28, 32, 0.3) 0%,
    rgba(40, 28, 32, 0.52) 50%,
    rgba(40, 28, 32, 0.68) 100%
  );
}

.hero-fullbleed-content {
  position: relative;
  z-index: 2;
  max-width: 660px;
  padding: 0 28px;
}

.hero-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 20px;
  font-family: var(--font-body);
}

.hero-fullbleed-content h1 {
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  line-height: 1.08;
  color: var(--white);
  text-shadow: 0 2px 32px rgba(40,28,32,0.35);
  letter-spacing: -0.01em;
  margin-bottom: 0;
}

.hero-em {
  color: #d4a8a8;
  font-style: italic;
}

.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.82);
  max-width: 420px;
  margin: 18px auto 32px;
  line-height: 1.7;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-scroll-indicator span {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  font-family: var(--font-body);
}

.hero-scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.45), transparent);
  animation: scrollLine 2.2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}

/* =============================================
   REASSURANCE STRIP
   ============================================= */
.reassurance-strip {
  background-color: var(--linen);
  border-bottom: 1px solid var(--cream-dark);
  padding: 0 28px;
}

.reassurance-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reassurance-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 32px;
}

.reassurance-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--rose);
  flex-shrink: 0;
}

.reassurance-item p {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--charcoal);
  max-width: none;
  white-space: nowrap;
  line-height: 1;
}

.reassurance-divider {
  width: 1px;
  height: 22px;
  background-color: var(--cream-dark);
  flex-shrink: 0;
}

/* =============================================
   EQUINE EXPLAINER
   ============================================= */
.equine-explainer {
  padding: 100px 28px;
  background-color: var(--warm-white);
}

.equine-explainer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.equine-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin: 16px 0 24px;
  line-height: 1.2;
}

.equine-text p {
  font-size: 0.97rem;
  line-height: 1.85;
  margin-bottom: 16px;
  max-width: none;
}

.equine-image-stack {
  position: relative;
  height: 500px;
}

.equine-img-main {
  position: absolute;
  top: 0;
  left: 0;
  right: 56px;
  bottom: 56px;
  background-size: cover;
  background-position: center;
  border-radius: 2px;
}

.equine-img-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 52%;
  height: 48%;
  background-size: cover;
  background-position: center;
  border-radius: 2px;
  border: 5px solid var(--warm-white);
  box-shadow: 0 8px 32px rgba(44,40,38,0.12);
}

/* =============================================
   WHO THIS IS FOR
   ============================================= */
.for-you-section {
  padding: 90px 28px;
  background-color: var(--linen);
  border-top: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
}

.for-you-header {
  text-align: center;
  margin-bottom: 52px;
}

.for-you-header h2 {
  margin-top: 12px;
}

.for-you-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
}

.for-you-card {
  background-color: var(--warm-white);
  border: 1px solid var(--cream-dark);
  border-radius: 2px;
  padding: 44px 40px;
  transition: var(--transition);
}

.for-you-card:hover {
  border-color: var(--rose-light);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(176,133,133,0.1);
}

.for-you-card h3 {
  font-size: 1.5rem;
  margin-bottom: 14px;
  color: var(--charcoal);
}

.for-you-card p {
  font-size: 0.95rem;
  line-height: 1.8;
  max-width: none;
  margin-bottom: 22px;
}

.for-you-link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--rose-dark);
  transition: var(--transition);
}

.for-you-link:hover {
  color: var(--charcoal);
}

/* =============================================
   MICHELLE
   ============================================= */
.michelle-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}

.michelle-image {
  position: relative;
  overflow: hidden;
}

.michelle-img-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  transition: transform 10s ease;
}

.michelle-image:hover .michelle-img-bg {
  transform: scale(1.03);
}

.michelle-content {
  padding: 80px;
  background-color: var(--linen);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--cream-dark);
}

.michelle-content h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  margin: 14px 0 20px;
}

.michelle-content p {
  margin-bottom: 14px;
  max-width: none;
  font-size: 0.95rem;
  line-height: 1.82;
}

.michelle-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 22px;
}

.michelle-credentials span {
  font-size: 0.71rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--charcoal-mid);
  background: var(--warm-white);
  border: 1px solid var(--cream-dark);
  padding: 5px 11px;
  border-radius: 2px;
}

/* =============================================
   SERVICES — LIGHT CARDS
   ============================================= */
.services-section {
  padding: 90px 28px;
  background-color: var(--warm-white);
  border-top: 1px solid var(--cream-dark);
}

.services-header {
  text-align: center;
  margin-bottom: 48px;
}

.services-header h2 {
  margin-top: 12px;
}

.services-intro {
  font-size: 0.95rem;
  color: var(--charcoal-light);
  max-width: 480px;
  margin: 12px auto 0;
  text-align: center;
  line-height: 1.75;
}

.services-light-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.service-light-card {
  background-color: var(--warm-white);
  border: 1px solid var(--cream-dark);
  border-radius: 2px;
  overflow: hidden;
  transition: var(--transition);
}

.service-light-card:hover {
  border-color: var(--rose-light);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(176,133,133,0.1);
}

.service-light-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

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

.service-light-body {
  padding: 28px 28px 32px;
}

.service-light-body h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
  color: var(--charcoal);
}

.service-light-body p {
  font-size: 0.92rem;
  max-width: none;
  margin-bottom: 18px;
  line-height: 1.75;
}

/* =============================================
   PROCESS
   ============================================= */
.process-section {
  padding: 90px 28px;
  background-color: var(--linen);
  border-top: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
}

.process-header {
  text-align: center;
  margin-bottom: 60px;
}

.process-header h2 {
  margin-top: 12px;
}

.process-steps {
  display: flex;
  align-items: flex-start;
  max-width: 820px;
  margin: 0 auto;
}

.process-step {
  flex: 1;
  text-align: center;
  padding: 0 20px;
}

.process-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--rose);
  opacity: 0.55;
  line-height: 1;
  margin-bottom: 14px;
}

.process-step h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--charcoal);
}

.process-step p {
  font-size: 0.9rem;
  line-height: 1.75;
  max-width: none;
}

.process-connector {
  flex-shrink: 0;
  width: 48px;
  height: 1px;
  background: linear-gradient(to right, var(--cream-dark), var(--rose-light), var(--cream-dark));
  margin-top: 26px;
  opacity: 0.7;
}

/* =============================================
   CTA WARM
   ============================================= */
.cta-warm {
  background-color: var(--charcoal-mid);
  padding: 96px 28px;
  text-align: center;
}

.cta-warm-inner {
  max-width: 520px;
  margin: 0 auto;
}

.cta-warm-inner h2 {
  color: var(--cream);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  margin: 14px 0 16px;
}

.cta-warm-inner p {
  color: rgba(250,247,242,0.68);
  max-width: none;
  font-size: 0.97rem;
  line-height: 1.8;
}

/* =============================================
   FOOTER
   ============================================= */
footer {
  background-color: var(--charcoal);
  padding: 60px 28px 0;
  color: var(--cream);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand p {
  font-size: 0.87rem;
  line-height: 1.7;
  color: rgba(245,240,232,0.55);
  margin-top: 6px;
  max-width: 260px;
}

.footer-heading {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rose-light);
  margin-bottom: 18px;
}

.footer-links li { margin-bottom: 10px; }

.footer-links a {
  font-size: 0.87rem;
  color: rgba(245,240,232,0.55);
  transition: var(--transition);
}

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

.footer-contact p {
  font-size: 0.87rem;
  color: rgba(245,240,232,0.55);
  max-width: none;
  margin-bottom: 6px;
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 20px 0;
}

.footer-bottom p {
  font-size: 0.76rem;
  color: rgba(245,240,232,0.3);
  max-width: none;
}

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  background-color: var(--linen);
  padding: 76px 28px 56px;
  border-bottom: 1px solid var(--cream-dark);
}

.page-hero h1 { margin-bottom: 16px; }

.page-hero p {
  font-size: 1.02rem;
  max-width: 540px;
  margin-top: 14px;
}

/* =============================================
   INNER PAGE COMPONENTS
   ============================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-grid--reverse { direction: rtl; }
.about-grid--reverse > * { direction: ltr; }
.about-text h2 { margin-bottom: 20px; }
.about-text p { margin-bottom: 16px; max-width: none; }

.animal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.animal-card {
  background-color: var(--warm-white);
  border: 1px solid var(--cream-dark);
  border-radius: 2px;
  overflow: hidden;
  transition: var(--transition);
}

.animal-card:hover {
  border-color: var(--rose-light);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(176,133,133,0.1);
}

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

.animal-info { padding: 26px 28px; }
.animal-info h3 { margin-bottom: 10px; }
.animal-info p { font-size: 0.92rem; max-width: none; }

.approach-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 44px;
}

.approach-card {
  padding: 32px;
  border: 1px solid var(--cream-dark);
  border-radius: 2px;
  background-color: var(--warm-white);
  transition: var(--transition);
}

.approach-card:hover { border-color: var(--rose-light); }
.approach-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.approach-card p { font-size: 0.92rem; max-width: none; }

.location-card {
  padding: 36px;
  background-color: var(--warm-white);
  border-radius: 2px;
  border: 1px solid var(--cream-dark);
}

.location-card h3 { margin-bottom: 12px; }
.location-card p { max-width: none; margin-bottom: 10px; }

.location-hours {
  font-size: 0.8rem !important;
  color: var(--rose-dark) !important;
  font-weight: 500;
}

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.reveal {
  opacity: 0;
  transition: opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: none !important;
}

.reveal-up { transform: translateY(72px); }
.reveal-left { transform: translateX(-72px); }
.reveal-right { transform: translateX(72px); }
.reveal-scale { transform: scale(0.93); }

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.22s; }
.reveal-delay-3 { transition-delay: 0.34s; }

/* =============================================
   MOBILE
   ============================================= */
@media (max-width: 768px) {

  nav .nav-logo-sub {
    font-size: 0.72rem;
    letter-spacing: 0.24em;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 66px;
    left: 0;
    right: 0;
    background: var(--warm-white);
    flex-direction: column;
    padding: 24px 28px;
    gap: 18px;
    border-bottom: 1px solid var(--cream-dark);
    box-shadow: 0 8px 24px rgba(44,40,38,0.08);
    z-index: 99;
  }

  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }

  .hero-fullbleed-content h1 { font-size: 2.6rem; }
  .hero-sub { font-size: 0.95rem; }

  .reassurance-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 4px 0;
  }

  .reassurance-divider { display: none; }
  .reassurance-item { padding: 10px 0; }
  .reassurance-item p { white-space: normal; }

  .equine-explainer { padding: 60px 24px; }
  .equine-explainer-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .equine-image-stack { height: 260px; }
  .equine-img-main { right: 36px; bottom: 36px; }
  .equine-img-accent { width: 48%; height: 46%; }

  .for-you-section { padding: 60px 24px; }
  .for-you-grid { grid-template-columns: 1fr; }
  .for-you-card { padding: 32px 28px; }

  .michelle-section { grid-template-columns: 1fr; min-height: auto; }
  .michelle-image { height: 320px; position: relative; }
  .michelle-img-bg { position: absolute; inset: 0; }
  .michelle-content { padding: 52px 24px; border-left: none; border-top: 1px solid var(--cream-dark); }

  .services-section { padding: 60px 24px; }
  .services-light-grid { grid-template-columns: 1fr; }

  .process-section { padding: 60px 24px; }
  .process-steps { flex-direction: column; gap: 36px; align-items: center; }
  .process-connector {
    width: 1px;
    height: 36px;
    background: linear-gradient(to bottom, var(--cream-dark), var(--rose-light), var(--cream-dark));
  }

  .cta-warm { padding: 72px 24px; }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 32px;
  }

  .about-grid,
  .about-grid--reverse,
  .approach-grid,
  .animal-grid {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 28px;
  }

  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.75rem; }

  [style*="grid-template-columns"] { display: block !important; }
  [style*="height: 420px"],
  [style*="height: 480px"] { height: 240px !important; }
  [style*="position: sticky"] { position: relative !important; top: auto !important; }

  input, select, textarea { font-size: 1rem !important; }
}

/* =============================================
   IMAGE POSITIONING FIXES
   Add these rules to the END of style.css
   (they will override the existing rules)
   ============================================= */

/* ─── FIX 1: Equine image stack ─────────────────
   Problem: the stack column has no min-height
   guarantee inside the grid, causing the
   absolutely-positioned images to collapse
   at mid-viewport widths. Also tighten the
   accent image so it doesn't clip awkwardly.
   ─────────────────────────────────────────── */
.equine-image-stack {
  position: relative;
  height: 480px;        /* was 500px — slightly tighter */
  min-height: 420px;    /* prevent collapse on mid viewports */
  align-self: stretch;  /* fill full grid row height */
}

.equine-img-main {
  position: absolute;
  top: 0;
  left: 0;
  right: 60px;          /* was 56px — slight tweak */
  bottom: 60px;         /* was 56px */
  background-size: cover;
  background-position: center;
  border-radius: 2px;
}

.equine-img-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;           /* was 52% — pulls it in slightly */
  height: 46%;          /* was 48% */
  background-size: cover;
  background-position: center top;   /* show top of image, not centre */
  border-radius: 2px;
  border: 5px solid var(--warm-white);
  box-shadow: 0 8px 32px rgba(44,40,38,0.12);
  z-index: 2;           /* ensure accent sits above main */
}

/* ─── FIX 2: Michelle section image ─────────────
   Problem: .michelle-image has no explicit height.
   It relies on the grid row to size it, but without
   a height the absolutely-positioned .michelle-img-bg
   has nothing to fill. Force the image column to
   always have a resolved height.
   ─────────────────────────────────────────── */
.michelle-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}

.michelle-image {
  position: relative;
  overflow: hidden;
  min-height: 520px;    /* guarantees .michelle-img-bg has height to fill */
}

.michelle-img-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;  /* show face/upper body, not mid */
  transition: transform 10s ease;
}

/* ─── FIX 3: Service card image overflow ────────
   Problem: the scale() on hover bleeds outside the
   card because overflow:hidden is on the card but
   the transform is on the image div inside.
   Add overflow:hidden directly on the image wrapper.
   ─────────────────────────────────────────── */
.service-light-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
  overflow: hidden;     /* contain the scale transform */
  border-radius: 0;     /* flush to card edge */
  flex-shrink: 0;       /* prevent collapsing in any flex context */
}

/* ─── FIX 4: Mobile equine stack ───────────────
   The mobile styles already exist but need
   the z-index added to keep accent on top.
   ─────────────────────────────────────────── */
@media (max-width: 768px) {
  .equine-image-stack {
    height: 280px;
    min-height: 240px;
  }

  .equine-img-main {
    right: 40px;
    bottom: 40px;
  }

  .equine-img-accent {
    width: 46%;
    height: 44%;
    z-index: 2;
  }

  .michelle-image {
    min-height: 320px;
    height: 320px;
  }
}

/* =============================================
   MOBILE FIXES — add to bottom of style.css
   ============================================= */

@media (max-width: 768px) {

  /* ── Michelle split section ─────────────────
     Force single column stack on mobile.
     The grid needs to collapse fully.          */
  .michelle-section {
    display: block !important;
  }

  .michelle-image {
    height: 320px !important;
    min-height: 320px !important;
    width: 100% !important;
    display: block;
    position: relative;
    overflow: hidden;
  }

  .michelle-img-bg {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
  }

  .michelle-content {
    padding: 48px 24px !important;
    border-left: none !important;
    border-top: 1px solid var(--cream-dark);
    width: 100% !important;
  }

  /* ── Credential badges ───────────────────────
     Stop badges stretching full width.
     Let them wrap naturally at content width.  */
  .michelle-credentials {
    gap: 6px !important;
  }

  .michelle-credentials span {
    flex: 0 1 auto !important;
    width: auto !important;
    white-space: normal;
    font-size: 0.69rem !important;
  }

  /* ── About page animal grids ─────────────────
     3-col horse grid → 1 col
     2-col coming soon → 1 col
     3-col companions → 1 col                   */
  .horse-grid {
    grid-template-columns: 1fr !important;
  }

  .coming-soon-grid {
    grid-template-columns: 1fr !important;
  }

  .coming-soon-card {
    grid-template-columns: 1fr !important;
    flex-direction: column !important;
  }

  .coming-soon-img {
    height: 220px !important;
    width: 100% !important;
  }

  .companions-grid {
    grid-template-columns: 1fr !important;
  }

  /* ── Approach grid → 1 col ──────────────────  */
  .approach-grid-4 {
    grid-template-columns: 1fr !important;
  }

  /* ── Supervision grid → 1 col ───────────────  */
  .supervision-inner {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
  }

  /* ── Credential bar → wrap nicely ───────────  */
  .credential-bar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .credential-bar-divider {
    display: none;
  }

  .credential-bar-item {
    padding: 4px 0;
  }

  .credential-bar-item p {
    white-space: normal !important;
    font-size: 0.76rem;
  }

  /* ── Counselling page service features ───────  */
  .service-feature-inner,
  .service-feature-inner.reverse {
    grid-template-columns: 1fr !important;
    direction: ltr !important;
    gap: 32px !important;
  }

  .service-feature-img img {
    height: 260px !important;
  }

  /* ── Issues grid → 2 col ────────────────────  */
  .issues-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* ── Expect grid → 1 col ────────────────────  */
  .expect-grid {
    grid-template-columns: 1fr !important;
  }

  /* ── Contact grid → 1 col ───────────────────  */
  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 52px !important;
  }

  /* ── Gallery grids ──────────────────────────  */
  .horse-grid,
  .gallery-grid-3,
  .companions-grid {
    grid-template-columns: 1fr !important;
  }

  .gallery-grid-feature {
    grid-template-columns: 1fr !important;
  }

  .gallery-grid-feature .gallery-item:first-child {
    grid-row: span 1 !important;
    min-height: 260px !important;
  }

  .coming-soon-grid {
    grid-template-columns: 1fr !important;
  }

}

/* Bigger masthead logo */
nav .nav-logo {
  font-size: clamp(1.4rem, 2.5vw, 2.5rem);
  align-items: center;
}
nav .nav-logo-sub {
  font-size: 1.08rem;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-top: 4px;
  letter-spacing: 0.34em;
  text-indent: 0.34em;
}

@media (max-width: 768px) {
  nav .nav-logo-sub { font-size: 0.72rem !important; letter-spacing: 0.24em; }
}