/* ================================================================
   SHIELDS SPEECH — Luxury Redesign 2026
   Warm · Premium · Pediatric Boutique Practice
   ================================================================

   CRITIQUE OF PREVIOUS VERSION:
   ✗ Deep wine/burgundy reads as law firm or adult medical clinic
   ✗ Sharp card borders feel cold and clinical
   ✗ No animations or movement = feels static and dated
   ✗ Cormorant Garamond feels academic, not warm and approachable
   ✗ Trust bar looks like a medical disclaimer strip
   ✗ Zero emotional connection in the visual language

   NEW DIRECTION:
   ✓ Warm cream + muted sage + dusty blue + terracotta
   ✓ Fraunces headline font — warm, premium, slightly expressive
   ✓ Plus Jakarta Sans body — modern, highly readable, friendly
   ✓ Scroll-reveal animations throughout
   ✓ Soft rounded corners everywhere
   ✓ Organic blob shapes, layered depth
   ✓ Copy that speaks to parent emotion, not clinical credentials
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,300;1,9..144,400;1,9..144,500&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

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

:root {
  /* ── WARM BOUTIQUE PALETTE ── */
  --cream:        #FAF6F0;
  --warm-white:   #FFFDF9;
  --off-white:    #F7F3ED;

  --sage:         #7A9E84;
  --sage-mid:     #9DB8A4;
  --sage-light:   #EAF1EB;
  --sage-xlight:  #F3F8F4;
  --sage-dark:    #567A5E;

  --blue:         #7A9BB8;
  --blue-light:   #EAF0F7;
  --blue-dark:    #4E6E8A;

  --taupe:        #A89888;
  --taupe-light:  #F2ECE6;
  --taupe-dark:   #7A6A5A;

  --terra:        #C4826A;
  --terra-light:  #F7EDE8;
  --terra-dark:   #9A5E48;

  --warm-dark:    #2A201C;
  --text:         #382E28;
  --text-mid:     #6A5A50;
  --text-light:   #9A8A80;

  --border:       rgba(58,46,40,0.08);
  --border-mid:   rgba(58,46,40,0.12);

  --shadow-xs:    0 1px 4px rgba(58,40,30,0.06);
  --shadow-sm:    0 2px 16px rgba(58,40,30,0.07);
  --shadow-md:    0 6px 32px rgba(58,40,30,0.09);
  --shadow-lg:    0 16px 56px rgba(58,40,30,0.11);
  --shadow-xl:    0 24px 80px rgba(58,40,30,0.13);

  --radius-sm:    8px;
  --radius:       16px;
  --radius-lg:    24px;
  --radius-xl:    36px;
  --radius-full:  9999px;

  --ease:         all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring:  all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── RESET & BASE ── */
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
  background: var(--warm-white);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; }

/* ── ANIMATIONS ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes floatA {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33%       { transform: translateY(-10px) rotate(1deg); }
  66%       { transform: translateY(-5px) rotate(-0.5deg); }
}
@keyframes floatB {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50%       { transform: translateY(-14px) rotate(-1deg); }
}
@keyframes blobMorph {
  0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
  25%       { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
  50%       { border-radius: 50% 60% 30% 60% / 30% 40% 70% 60%; }
  75%       { border-radius: 60% 30% 50% 40% / 60% 50% 40% 50%; }
}
@keyframes shimmer {
  from { background-position: -200% 0; }
  to   { background-position: 200% 0; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.94); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-32px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(32px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left  { opacity: 0; transform: translateX(-32px); transition: opacity 0.75s ease, transform 0.75s ease; }
.reveal-right { opacity: 0; transform: translateX(32px);  transition: opacity 0.75s ease, transform 0.75s ease; }
.reveal-left.visible, .reveal-right.visible { opacity: 1; transform: translate(0); }
.reveal-scale { opacity: 0; transform: scale(0.95); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-scale.visible { opacity: 1; transform: scale(1); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ── TYPOGRAPHY ── */
.headline {
  font-family: 'Fraunces', Georgia, serif;
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 400;
}
.headline-italic {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  line-height: 1.08;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--sage);
  border-radius: 2px;
}
.section-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(32px, 4vw, 48px);
  color: var(--text);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 400;
  margin-bottom: 16px;
}
.section-title em { font-style: italic; color: var(--sage); }
.section-sub {
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 560px;
  font-weight: 400;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 32px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: var(--ease);
  cursor: pointer;
  border: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
  white-space: nowrap;
}
.btn-sage {
  background: var(--sage);
  color: #fff;
  box-shadow: 0 4px 16px rgba(122,158,132,0.35);
}
.btn-sage:hover {
  background: var(--sage-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(122,158,132,0.45);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border-mid);
}
.btn-outline:hover {
  border-color: var(--sage);
  color: var(--sage-dark);
  background: var(--sage-xlight);
}
.btn-terra {
  background: var(--terra);
  color: #fff;
  box-shadow: 0 4px 16px rgba(196,130,106,0.3);
}
.btn-terra:hover {
  background: var(--terra-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196,130,106,0.4);
}
.btn-white {
  background: #fff;
  color: var(--sage-dark);
  box-shadow: var(--shadow-sm);
}
.btn-white:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.55);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.9);
}
.btn-sm { padding: 10px 22px; font-size: 13px; }
.btn-lg { padding: 18px 40px; font-size: 16px; }

/* ── NAVIGATION ── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255,253,249,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(122,158,132,0.1);
  padding: 0 56px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: box-shadow 0.3s ease, background 0.3s ease;
}
.site-nav.scrolled {
  box-shadow: 0 4px 32px rgba(58,46,40,0.08);
  background: rgba(255,253,249,0.98);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo-mark {
  width: 38px;
  height: 38px;
  background: var(--sage);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 500;
  flex-shrink: 0;
  transition: var(--ease);
}
.nav-brand:hover .nav-logo-mark { background: var(--sage-dark); transform: scale(1.05); }
.nav-brand-text {
  font-family: 'Fraunces', serif;
  font-size: 19px;
  font-weight: 400;
  color: var(--text);
  letter-spacing: -0.3px;
}
.nav-brand-text span { color: var(--sage); }
.nav-center {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-center a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-center a:hover, .nav-center a.active { color: var(--sage-dark); }
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.nav-phone-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}
.nav-phone-text span {
  display: block;
  font-size: 10px;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 1px;
}

/* ── ANNOUNCEMENT BAR ── */
.announce-bar {
  background: var(--sage-xlight);
  border-bottom: 1px solid rgba(122,158,132,0.15);
  padding: 10px 56px;
  text-align: center;
  font-size: 13px;
  color: var(--sage-dark);
  font-weight: 500;
}
.announce-bar a { color: var(--sage-dark); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

/* ── SECTIONS ── */
.section     { padding: 100px 56px; }
.section-sm  { padding: 72px 56px; }
.section-xs  { padding: 48px 56px; }

/* ── GRIDS ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }

/* ── SERVICE CARDS — REDESIGNED ── */
.service-card {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(122,158,132,0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(122,158,132,0.12);
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 56px;
  height: 56px;
  background: var(--sage-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 22px;
  transition: transform 0.3s var(--ease-spring);
}
.service-card:hover .service-icon { transform: scale(1.1) rotate(-3deg); }
.service-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.25;
}
.service-card p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 0;
}
.service-card .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--sage-dark);
  margin-top: 18px;
  transition: gap 0.25s ease;
}
.service-card:hover .learn-more { gap: 10px; }

/* ── TESTIMONIAL CARDS ── */
.testimonial-card {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}
.star { color: #F0B429; font-size: 15px; }
.testimonial-text {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-footer { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 18px;
  color: var(--sage-dark);
  flex-shrink: 0;
}
.testimonial-author { font-size: 13px; font-weight: 700; color: var(--text); }
.testimonial-role   { font-size: 12px; color: var(--text-light); margin-top: 2px; }

/* ── HOW IT WORKS ── */
.hiw-step {
  text-align: center;
  padding: 0 16px;
  position: relative;
}
.hiw-num {
  width: 64px;
  height: 64px;
  background: var(--sage-light);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--sage-dark);
  margin: 0 auto 20px;
  transition: var(--ease-spring);
  box-shadow: var(--shadow-xs);
}
.hiw-step:hover .hiw-num {
  background: var(--sage);
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(122,158,132,0.35);
}
.hiw-step h4 {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 10px;
}
.hiw-step p { font-size: 14px; line-height: 1.75; color: var(--text-mid); }

/* ── CTA STRIP ── */
.cta-strip {
  background: var(--sage);
  padding: 96px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  top: -200px;
  right: -100px;
  pointer-events: none;
}
.cta-strip::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  bottom: -150px;
  left: -80px;
  pointer-events: none;
}
.cta-strip h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 5vw, 54px);
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.1;
  font-weight: 400;
  position: relative;
  z-index: 1;
}
.cta-strip p {
  font-size: 18px;
  color: rgba(255,255,255,0.82);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.75;
  position: relative;
  z-index: 1;
}
.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.cta-note {
  margin-top: 22px;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  position: relative;
  z-index: 1;
}
.cta-note strong { color: rgba(255,255,255,0.9); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(160deg, var(--sage-xlight) 0%, var(--cream) 100%);
  padding: 80px 56px 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(122,158,132,0.1);
}
.page-hero .eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 14px;
  display: block;
}
.page-hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(40px, 6vw, 60px);
  color: var(--text);
  margin-bottom: 18px;
  line-height: 1.08;
  font-weight: 400;
}
.page-hero p {
  font-size: 18px;
  color: var(--text-mid);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ── CREDENTIAL CHIPS ── */
.chip-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.chip {
  background: var(--sage-light);
  color: var(--sage-dark);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  transition: var(--ease);
}
.chip:hover { background: var(--sage); color: #fff; }
.chip-terra  { background: var(--terra-light); color: var(--terra-dark); }
.chip-blue   { background: var(--blue-light); color: var(--blue-dark); }
.chip-taupe  { background: var(--taupe-light); color: var(--taupe-dark); }

/* ── QUOTE BLOCK ── */
.quote-block {
  border-left: 3px solid var(--sage);
  padding: 20px 24px;
  background: var(--sage-xlight);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 28px 0;
}
.quote-block blockquote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 20px;
  color: var(--text);
  line-height: 1.6;
  font-weight: 300;
}
.quote-block cite {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-style: normal;
  font-size: 12px;
  color: var(--text-light);
  margin-top: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ── CONTACT FORM ── */
.form-group { margin-bottom: 22px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 18px;
  border: 1.5px solid var(--border-mid);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text);
  background: var(--warm-white);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 4px rgba(122,158,132,0.1);
  background: #fff;
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── RESOURCE CARDS ── */
.resource-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.resource-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.resource-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
}
.tag-sage    { background: var(--sage-light); color: var(--sage-dark); }
.tag-terra   { background: var(--terra-light); color: var(--terra-dark); }
.tag-blue    { background: var(--blue-light); color: var(--blue-dark); }
.tag-taupe   { background: var(--taupe-light); color: var(--taupe-dark); }
.resource-card h3 { font-family: 'Fraunces', serif; font-size: 17px; font-weight: 500; color: var(--text); margin-bottom: 8px; }
.resource-card p  { font-size: 14px; line-height: 1.75; color: var(--text-mid); flex: 1; }
.resource-card .card-footer { margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.resource-card .card-link { font-size: 13px; font-weight: 600; color: var(--sage-dark); display: flex; align-items: center; gap: 5px; }

/* ── DARK / CHARCOAL CARDS ── */
.dark-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--ease);
}
.dark-card:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); transform: translateY(-3px); }
.dark-card h3 { font-size: 16px; font-weight: 600; color: #fff; margin-bottom: 8px; }
.dark-card p  { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.7; }

/* ── SOCIAL PROOF STRIP ── */
.social-proof-strip {
  background: var(--cream);
  border-top: 1px solid rgba(122,158,132,0.1);
  border-bottom: 1px solid rgba(122,158,132,0.1);
  padding: 40px 56px;
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  overflow: hidden;
}
.proof-item {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 200px;
  padding-right: 40px;
  margin-right: 40px;
  border-right: 1px solid rgba(122,158,132,0.15);
}
.proof-item:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.proof-icon {
  width: 44px;
  height: 44px;
  background: var(--sage-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  transition: var(--ease-spring);
}
.proof-item:hover .proof-icon { transform: scale(1.1) rotate(-5deg); }
.proof-label { font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.proof-sub   { font-size: 12px; color: var(--text-mid); line-height: 1.4; }

/* ── PHOTO PLACEHOLDER ── */
.photo-block {
  background: linear-gradient(160deg, #d4c4be 0%, #b8a4a0 100%);
  width: 100%;
  height: 100%;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.photo-fig {
  width: 68%;
  max-width: 300px;
  background: linear-gradient(180deg, #ead6c8 0%, #cba88a 100%);
  border-radius: 50% 50% 0 0 / 40% 40% 0 0;
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.photo-fig::before {
  content: '';
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 44%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(160deg, #eac8b0, #cb956e);
}

/* ── FOOTER ── */
.site-footer { background: var(--warm-dark); color: #fff; padding: 72px 56px 44px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 36px;
}
.footer-brand {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}
.footer-brand span { color: var(--sage-mid); }
.footer-tagline { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.8; margin-bottom: 28px; max-width: 280px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.footer-contact-icon { font-size: 14px; opacity: 0.4; margin-top: 1px; }
.footer-contact-text { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.6; }
.footer-col-title { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--sage-mid); margin-bottom: 20px; }
.footer-col a, .footer-col span { display: block; font-size: 14px; color: rgba(255,255,255,0.5); margin-bottom: 11px; transition: color 0.2s; line-height: 1.5; }
.footer-col a:hover { color: rgba(255,255,255,0.9); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy  { font-size: 12px; color: rgba(255,255,255,0.25); }
.footer-badge { font-size: 12px; color: rgba(255,255,255,0.25); }

/* ── UTILITY ── */
.text-sage  { color: var(--sage); }
.text-terra { color: var(--terra); }
.text-center { text-align: center; }
.italic { font-style: italic; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .site-nav { padding: 0 24px; height: 68px; }
  .nav-center, .nav-phone-text { display: none; }
  .announce-bar { padding: 10px 24px; font-size: 12px; }
  .section, .section-sm, .section-xs { padding: 64px 24px; }
  .social-proof-strip { padding: 28px 24px; gap: 20px; }
  .proof-item { min-width: 45%; border-right: none; padding: 0; margin: 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; gap: 24px; }
  .page-hero { padding: 56px 24px 48px; }
  .cta-strip { padding: 64px 24px; }
  .site-footer { padding: 48px 24px 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .form-row { grid-template-columns: 1fr; }
}
