/* Estelle Health is Wealth — style.css */

:root {
  --nav-bg:    #EC008C;
  --pink:      #EC008C;
  --burgundy:  #C41A3C;
  --teal-dark: #0C7E92;
  --slate:     #2A5285;
  --navy:      #0F1B3D;
  --cream:     #E8E4D9;
  --dark:      #2C2C2C;
  /* Contrast-corrected values. The brand pink #EC008C reaches only 3.34:1 on
     cream, which is fine for large display text but fails as small text, so
     small pink text uses --pink-text instead. */
  --teal-text: #0D6B5E;   /* was #138C7A (3.27:1)  ->  5.04:1 */
  --pink-text: #C40074;   /* small text on cream   ->  4.59:1 */
  --turquoise: #1E7C77;   /* was #5DC1B9 (1.88:1)  ->  4.99:1 */
  --pillar-1:  #266E79;   /* Breathe card  5.85:1 */
  --pillar-2:  #A83E4E;   /* Eat card      6.06:1 */
  --pillar-3:  #7A4266;   /* Move card     7.50:1 */
  --pillar-4:  #2C6675;   /* Sleep card    6.43:1 */
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 100%; }

/* Keyboard focus must always be visible */
a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 2.5px solid currentColor; outline-offset: 3px;
}

/* Skip link — first in the tab order, visible only when focused */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 400;
  background: var(--navy); color: #fff; padding: 0.8rem 1.4rem;
  font-family: 'Nunito Sans', sans-serif; font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none;
}
.skip-link:focus { left: 0; }

body {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 300;
  color: var(--dark);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}


/* ━━━━ NAV ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: var(--nav-bg);
  display: flex; align-items: center;
  padding: 0 2.5rem;
  height: 90px;
  gap: 1rem;
}

.nav-logo {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none; flex-shrink: 0;
}
.nav-logo-mark { width: 44px; height: 44px; flex-shrink: 0; display: block; }
.nav-logo-mark svg { display: block; }
.nav-logo-img { height: 74px; width: auto; min-width: 200px; max-width: 300px; display: block; flex-shrink: 1; object-fit: contain; object-position: left center; }
.nav-logo-text { display: flex; flex-direction: column; gap: 2px; }
.nav-brand-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400; font-size: 1.9rem;
  letter-spacing: 0.32em; color: white; text-transform: uppercase;
  line-height: 1;
}
.nav-brand-sub {
  font-family: 'Nunito Sans', sans-serif; font-weight: 300;
  font-size: 0.57rem; letter-spacing: 0.25em;
  color: rgba(255,255,255,0.72); text-transform: uppercase;
}

.nav-links {
  display: flex; align-items: center; justify-content: flex-start; gap: 2rem;
  list-style: none;
  margin-left: 3rem;
}
.nav-links a {
  font-family: 'Nunito Sans', sans-serif; font-weight: 600;
  font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: white; text-decoration: none;
  border-bottom: 1px solid transparent; padding-bottom: 2px;
  transition: border-color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active { border-bottom-color: white; }

.nav-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; position: relative; }
.nav-home-icon { color: white; text-decoration: none; line-height: 0; opacity: 0.85; }
.nav-home-icon:hover { opacity: 1; }
.nav-search {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 20px; padding: 0.3rem 1rem;
  color: white; font-family: 'Nunito Sans', sans-serif; font-size: 0.72rem;
  outline: none; width: 160px;
  transition: border-color 0.2s;
}
.nav-search::placeholder { color: rgba(255,255,255,0.55); }
.nav-search:focus { border-color: rgba(255,255,255,0.85); }

/* Search dropdown */
.search-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  width: 380px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
  overflow: hidden;
  z-index: 300;
}
.search-item {
  display: flex; flex-direction: column;
  padding: 0.85rem 1.1rem;
  text-decoration: none;
  border-bottom: 1px solid #f2f2f2;
  transition: background 0.12s;
}
.search-item:last-child { border-bottom: none; }
.search-item:hover, .search-item.selected { background: #fdf5f9; }
.search-page {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.65rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--pink); margin-bottom: 0.2rem;
}
.search-heading {
  font-family: 'Optima', 'Optima Nova LT', 'Candara', Georgia, sans-serif;
  font-size: 0.95rem; color: var(--dark); line-height: 1.3;
}
.search-snippet {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.75rem; color: #888;
  margin-top: 0.25rem; line-height: 1.4;
}
.search-empty {
  padding: 1rem 1.1rem;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.85rem; color: #999;
}

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
  flex-shrink: 0;
}
.nav-hamburger span { display: block; width: 24px; height: 2px; background: white; transition: transform 0.3s, opacity 0.3s; }
.nav-hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none; position: fixed;
  top: 90px; left: 0; right: 0; z-index: 199;
  background: var(--nav-bg);
  flex-direction: column; padding: 1.2rem 2rem 1.8rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: 'Nunito Sans', sans-serif; font-weight: 600;
  font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: white; text-decoration: none;
  padding: 0.65rem 0; border-bottom: 1px solid rgba(255,255,255,0.15);
}
.mobile-nav a:last-child { border-bottom: none; }


/* ━━━━ HERO CAROUSEL ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.hero {
  position: relative;
  height: 50svh; min-height: 420px;
  overflow: hidden;
  padding-top: 90px;
}

.carousel { position: relative; height: 100%; }

.slide {
  position: absolute; inset: 0;
  display: flex; align-items: center;
  opacity: 0; transition: opacity 0.9s ease;
  pointer-events: none;
  background-size: cover; background-position: center;
}
.slide.active { opacity: 1; pointer-events: auto; }

/* No-JS fallback: without scripting no slide receives .active, so show the
   first and hide the rest rather than leaving the hero blank. */
html:not(.js) .slide { opacity: 1; pointer-events: auto; }
html:not(.js) .slide ~ .slide { display: none; }
html:not(.js) .carousel-dots { display: none; }

.slide-inner {
  display: grid; grid-template-columns: 55fr 45fr;
  width: 100%; height: 100%;
  max-width: 1500px; margin: 0 auto; padding: 0 5rem;
  align-items: center; gap: 2rem;
}

.slide-content { z-index: 2; }

.slide-headline {
  font-family: 'Optima', 'Optima Nova LT', 'Candara', Georgia, sans-serif;
  font-style: normal; font-weight: 400;
  font-size: clamp(2.2rem, 3.8vw, 3.9rem);
  line-height: 1.15; color: white;
}

.slide-image {
  height: 78%; min-height: 200px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}

.img-label {
  font-family: 'Nunito Sans', sans-serif; font-size: 0.66rem;
  font-weight: 300; color: rgba(255,255,255,0.4);
  text-align: center; padding: 1rem; line-height: 1.5;
}

.hero-sunburst {
  position: absolute; top: 0; right: -110px;
  width: 300px; height: 300px;
  opacity: 0.45; pointer-events: none;
}

.carousel-dots {
  position: absolute; bottom: 1.4rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: 9px; z-index: 10;
}
.dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,0.35); border: none; cursor: pointer; padding: 0;
  transition: background 0.3s, transform 0.3s;
}
.dot.active { background: white; transform: scale(1.3); }
.dot:focus-visible { outline: 2px solid white; outline-offset: 3px; }


/* ━━━━ INNER PAGE HERO ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.hero-single {
  position: relative;
  height: 36svh; min-height: 300px;
  display: flex; align-items: flex-end;
  overflow: hidden; padding-top: 90px; padding-bottom: 3.5rem;
}
.hero-single-inner {
  max-width: 1500px; width: 100%;
  margin: 0 auto; padding: 0 5rem;
  position: relative; z-index: 2;
}
.hero-single h1 {
  font-family: 'Optima', 'Optima Nova LT', 'Candara', Georgia, sans-serif;
  font-style: normal; font-weight: 400;
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  color: white; line-height: 1.05;
}
.hero-single .hero-sunburst { top: 90px; }


/* ━━━━ SECTIONS ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.section { padding: 6rem 5rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-cream { background: var(--cream); }


/* ━━━━ TYPOGRAPHY ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.eyebrow-pink {
  font-family: 'Nunito Sans', sans-serif; font-weight: 600;
  font-size: 1.05rem; color: var(--pink);
  margin-bottom: 0.6rem; display: block;
}

.heading-teal {
  font-family: 'Optima', 'Optima Nova LT', 'Candara', Georgia, sans-serif;
  font-style: normal; font-weight: 400;
  font-size: clamp(1.6rem, 2.6vw, 2.3rem);
  color: var(--teal-text); line-height: 1.3; margin-bottom: 1.6rem;
}

.heading-pink {
  font-family: 'Optima', 'Optima Nova LT', 'Candara', Georgia, sans-serif;
  font-style: normal; font-weight: 400;
  font-size: clamp(1.6rem, 2.6vw, 2.3rem);
  color: var(--pink); line-height: 1.3; margin-bottom: 1.6rem;
}

.heading-white {
  font-family: 'Optima', 'Optima Nova LT', 'Candara', Georgia, sans-serif;
  font-style: normal; font-weight: 400;
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  color: white; line-height: 1.3; margin-bottom: 1.2rem;
}

.subheading-pink {
  font-family: 'Nunito Sans', sans-serif; font-weight: 600;
  font-size: 0.95rem; color: var(--pink-text); line-height: 1.7;
  margin-bottom: 1.6rem;
}

.body-text {
  font-family: 'Nunito Sans', sans-serif; font-weight: 300;
  font-size: 0.95rem; line-height: 1.85; color: var(--dark);
  margin-bottom: 1.4rem;
}

.body-light {
  font-family: 'Nunito Sans', sans-serif; font-weight: 300;
  font-size: 0.95rem; line-height: 1.85;
  color: rgba(255,255,255,0.97); margin-bottom: 1.4rem;
}

.label-upper {
  font-family: 'Nunito Sans', sans-serif; font-weight: 600;
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--dark); margin-bottom: 0.9rem; margin-top: 2.5rem;
  display: block;
}
.label-upper-white { color: white; }
.label-upper:first-child { margin-top: 0; }

.pull-pink {
  font-family: 'Optima', 'Optima Nova LT', 'Candara', Georgia, sans-serif;
  font-style: normal; font-weight: 400;
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
  color: var(--pink); line-height: 1.35; margin-bottom: 1.4rem;
}

.accent-italic {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic; font-size: 1.15rem;
  color: var(--teal-text); display: block; margin-bottom: 1.4rem;
}

.text-link {
  font-family: 'Nunito Sans', sans-serif; font-weight: 600;
  font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--pink-text); text-decoration: none;
  border-bottom: 1px solid var(--pink-text); padding-bottom: 1px;
  transition: opacity 0.2s; display: inline-block;
}
.text-link:hover { opacity: 0.65; }


/* ━━━━ LISTS ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.bullet-list { list-style: disc; padding-left: 1.2rem; margin-bottom: 1.6rem; }
.bullet-list li {
  font-family: 'Nunito Sans', sans-serif; font-weight: 300;
  font-size: 0.93rem; line-height: 1.75; color: inherit;
  margin-bottom: 0.25rem;
}

.dash-list { list-style: none; margin-bottom: 1.6rem; }
.dash-list li {
  font-family: 'Nunito Sans', sans-serif; font-weight: 300;
  font-size: 0.93rem; line-height: 1.75; color: var(--dark);
  padding-left: 1.4rem; position: relative; margin-bottom: 0.3rem;
}
.dash-list li::before { content: '—'; position: absolute; left: 0; color: var(--pink); }
.dash-list li strong { font-weight: 600; }
.dash-list-white li { color: rgba(255,255,255,0.97); }
.dash-list-white li::before { color: var(--nav-bg); }


/* ━━━━ TWO-COLUMN LAYOUTS ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.two-col {
  display: grid; grid-template-columns: 55fr 45fr;
  gap: 5rem; align-items: center;
}
.two-col-equal {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: start;
}


/* ━━━━ MISSION SECTION ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.mission-inner { max-width: 900px; }


/* ━━━━ WHY ESTELLE ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.why-section { background: var(--slate); }


/* ━━━━ TWO DOORS IN ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.two-doors-dark { position: relative; overflow: hidden; }
.two-doors-quote {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100%; max-width: 820px;
  padding: 3rem 5rem; text-align: center;
  z-index: 2; border-radius: 28px;
  /* Keeps the pink quote legible wherever the photograph underneath happens
     to be bright, without flattening the whole image. */
  background: radial-gradient(ellipse at center,
              rgba(6,10,26,0.76) 0%, rgba(6,10,26,0.60) 52%, rgba(6,10,26,0) 80%);
}
.two-doors-col { border-top: 2px solid var(--pink); padding-top: 1.8rem; }


/* ━━━━ FOUR PILLARS ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.pillars-section {
  /* background image is set per-page on the section itself */
  background-size: cover; background-position: center;
  padding: 4rem 4rem 5rem;
  position: relative; overflow: hidden;
}

.pillar-heading-box {
  background: rgba(33,66,85,0.88);
  border-radius: 12px; padding: 2.4rem 3rem;
  max-width: 1100px; margin: 0 auto 2.5rem;
  text-align: center;
  backdrop-filter: blur(6px);
}
.pillar-heading-box .heading-white { font-size: clamp(1.6rem, 2.5vw, 2.4rem); margin-bottom: 0.8rem; }
.pillar-heading-box .body-light { margin: 0; font-size: 0.9rem; }

.pillars-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.4rem; max-width: 1100px; margin: 0 auto;
}

.pillar-card {
  border-radius: 18px; padding: 2.6rem 2rem; text-align: center;
}
.pillar-title {
  font-family: 'Nunito Sans', sans-serif; font-weight: 700;
  font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: white; margin-bottom: 1.1rem;
}
.pillar-text {
  font-family: 'Nunito Sans', sans-serif; font-weight: 300;
  font-size: 0.88rem; line-height: 1.75; color: #fff;
}

.pillars-cream { background: var(--cream); padding: 6rem 5rem; }
.pillars-cream .pillar-heading-box {
  background: rgba(44,44,44,0.06);
  border: 1px solid rgba(44,44,44,0.1);
}
.pillars-cream .pillar-heading-box .heading-white { color: var(--teal-text); }
.pillars-cream .pillar-heading-box .body-light { color: var(--dark); }
.pillar-card-solid { border-radius: 18px; padding: 2.4rem 2rem; text-align: center; }
.pillar-card-solid .pillar-text { color: #fff; }


/* ━━━━ TEAM ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; margin-top: 3.5rem; }

.founder-row {
  display: grid; grid-template-columns: 1fr 2fr;
  gap: 3.5rem; align-items: start; margin-top: 3rem;
}
.founder-row + .founder-row { margin-top: 4rem; }
.team-name { font-family: 'Optima', 'Optima Nova LT', 'Candara', Georgia, sans-serif; font-style: normal; font-weight: 400; font-size: 1.65rem; color: var(--teal-text); margin-bottom: 0.2rem; }
.team-role { font-family: 'Nunito Sans', sans-serif; font-weight: 600; font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--pink); margin-bottom: 1rem; }
/* ━━━━ ACCENT BANDS ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.band-pink {
  border-left: 3px solid var(--pink); background: rgba(236,0,140,0.08);
  padding: 1.3rem 1.8rem; margin: 2rem 0; border-radius: 0 4px 4px 0;
}
.band-teal {
  border-left: 3px solid var(--teal-text); background: rgba(13,107,94,0.08);
  padding: 1.3rem 1.8rem; margin: 2rem 0; border-radius: 0 4px 4px 0;
}


/* ━━━━ FOOTER ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.site-footer {
  background: var(--navy); color: rgba(255,255,255,0.68);
  padding: 2.2rem 5rem;
  display: flex; align-items: center; justify-content: space-between;
  font-family: 'Nunito Sans', sans-serif; font-weight: 300; font-size: 0.73rem;
}
.footer-left { display: flex; align-items: center; gap: 12px; }
.footer-mark { width: 28px; height: 28px; flex-shrink: 0; }
.footer-logo-img { height: 36px; width: auto; display: block; opacity: 0.9; }
.footer-brand { font-family: 'Nunito Sans', sans-serif; font-weight: 600; font-size: 0.76rem; letter-spacing: 0.2em; color: white; text-transform: uppercase; }
.footer-sub { font-size: 0.58rem; letter-spacing: 0.15em; }
.footer-right { text-align: right; }
.footer-links { display: flex; gap: 1.4rem; justify-content: flex-end; margin-bottom: 0.4rem; }
.footer-links a { color: rgba(255,255,255,0.62); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: #fff; }


/* ━━━━ FADE-IN ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.js .fi { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.js .fi.on { opacity: 1; transform: none; }
.js .fi[data-d="1"] { transition-delay: 0.1s; }
.js .fi[data-d="2"] { transition-delay: 0.2s; }
.js .fi[data-d="3"] { transition-delay: 0.3s; }
.js .fi[data-d="4"] { transition-delay: 0.4s; }


/* ━━━━ REDUCED MOTION ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

@media (prefers-reduced-motion: reduce) {
  .fi, .js .fi { opacity: 1; transform: none; transition: none; }
  .slide { transition: none; }
  html { scroll-behavior: auto; }
}


/* ━━━━ RESPONSIVE ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

@media (max-width: 1400px) {
  .nav-links { gap: 1.2rem; }
}

@media (max-width: 1150px) {
  .site-nav { padding: 0 1.5rem; }
  .nav-links { gap: 0.6rem; }
  .nav-links a { font-size: 0.61rem; letter-spacing: 0.1em; }
}

@media (max-width: 1050px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}

@media (max-width: 900px) {
  .section { padding: 4rem 1.6rem; }
  .hero { height: 55svh; }
  .slide-inner { grid-template-columns: 1fr; padding: 0 1.6rem; }
  .slide-image { display: none; }
  .slide-headline { font-size: clamp(2rem, 7vw, 3rem); }

  .hero-single-inner { padding: 0 1.6rem; }

  .two-col, .two-col-equal, .founder-row { grid-template-columns: 1fr; gap: 2rem; }
  .team-grid { grid-template-columns: 1fr; }
  .pillars-section { padding: 3rem 1.6rem 4rem; }
  .pillars-grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .pillars-cream { padding: 4rem 1.6rem; }
  .pillar-heading-box { padding: 1.8rem 1.6rem; }
  .two-doors-quote { padding: 2.5rem 1.6rem; }
  .story-inner { padding: 4rem 1.6rem; }

  .site-footer { flex-direction: column; gap: 1.4rem; text-align: center; padding: 2rem 1.6rem; }
  .footer-links { justify-content: center; }
  .footer-right { text-align: center; }
}

@media (max-width: 480px) {
  .hero { min-height: 360px; height: 58svh; }
  .hero-single { min-height: 260px; }
  .site-nav { padding: 0 1rem; }
  .nav-brand-sub { display: none; }
  .nav-brand-name { font-size: 1.3rem; }
  .hero-sunburst { width: 180px; height: 180px; right: -70px; }
}

/* ━━━━ MOBILE ADDITIONS (new layouts) ━━━━━━━━━━━━━━━━━━━━━━ */

@media (max-width: 900px) {
  /* Story two-col grid on homepage */
  .story-grid {
    display: block !important;
  }
  .story-grid img {
    width: 100%;
    height: 280px !important;
    margin-bottom: 2rem;
  }

  /* Hero single paint headers */
  .hero-single { min-height: 180px; }
.hero-single-inner h1 { font-size: clamp(2rem, 8vw, 3rem); }

  /* Quote carousel */
  .quote-carousel { padding: 3rem 1.2rem !important; }
  .quote-slide { padding: 2rem 1.2rem !important; }
  .quote-text { font-size: clamp(1.1rem, 4.5vw, 1.5rem); }

  /* Two-doors quote */
  .two-doors-dark { height: auto !important; min-height: 300px; }
  .two-doors-quote { padding: 3rem 1.6rem; }

  /* Experts / founders single col — show full image, no crop */
  .founder-row > div:first-child img {
    height: auto !important;
    object-fit: unset !important;
    aspect-ratio: unset !important;
  }

  /* Section inner max-width override */
  .section-inner { padding: 0 0.2rem; }
}

@media (max-width: 480px) {
  .section { padding: 3rem 1.2rem; }
  .pull-pink { font-size: clamp(1.4rem, 6vw, 2rem); }
  .heading-teal, .heading-white { font-size: clamp(1.6rem, 7vw, 2.5rem); }
  .body-text, .body-light { font-size: 0.9rem; line-height: 1.7; }
  .pillar-card { padding: 1.4rem 1.2rem; }
  .founder-row > div:first-child img { height: auto !important; }
  .two-col-equal { gap: 1.4rem; }
}
