/* =========================================================
   Maria Elensky · site-wide motion and polish
   Loaded on every page after the inline brand styles.
   Respects prefers-reduced-motion.
   ========================================================= */

/* ---------- Reveal-on-scroll family ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .85s cubic-bezier(.2,.7,.2,1),
              transform .85s cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.reveal-left  { transform: translateX(-28px); }
.reveal-right { transform: translateX(28px); }
.reveal-left.is-visible,
.reveal-right.is-visible { transform: translateX(0); }

.reveal-zoom  { transform: scale(.96); }
.reveal-zoom.is-visible { transform: scale(1); }

/* Staggered children: each direct child fades up after its siblings */
.stagger > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .75s cubic-bezier(.2,.7,.2,1),
              transform .75s cubic-bezier(.2,.7,.2,1);
}
.stagger.is-visible > *               { opacity: 1; transform: translateY(0); }
.stagger.is-visible > *:nth-child(1)  { transition-delay: 0ms; }
.stagger.is-visible > *:nth-child(2)  { transition-delay: 90ms; }
.stagger.is-visible > *:nth-child(3)  { transition-delay: 180ms; }
.stagger.is-visible > *:nth-child(4)  { transition-delay: 270ms; }
.stagger.is-visible > *:nth-child(5)  { transition-delay: 360ms; }
.stagger.is-visible > *:nth-child(6)  { transition-delay: 450ms; }
.stagger.is-visible > *:nth-child(7)  { transition-delay: 540ms; }
.stagger.is-visible > *:nth-child(8)  { transition-delay: 630ms; }

/* ---------- Hero entrance ---------- */
.hero-enter > * {
  opacity: 0;
  transform: translateY(14px);
  animation: heroIn 1s cubic-bezier(.2,.7,.2,1) forwards;
}
.hero-enter > *:nth-child(1) { animation-delay: .05s; }
.hero-enter > *:nth-child(2) { animation-delay: .20s; }
.hero-enter > *:nth-child(3) { animation-delay: .35s; }
.hero-enter > *:nth-child(4) { animation-delay: .50s; }
.hero-enter > *:nth-child(5) { animation-delay: .65s; }
.hero-enter > *:nth-child(6) { animation-delay: .80s; }
@keyframes heroIn {
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Soft float for hero image ---------- */
.float-soft {
  animation: floatSoft 7s ease-in-out infinite;
}
@keyframes floatSoft {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

/* ---------- Image zoom on hover for cards ---------- */
.zoom-wrap {
  overflow: hidden;
  border-radius: inherit;
}
.zoom-wrap img,
.zoom-wrap .zoom-target {
  transition: transform .9s cubic-bezier(.2,.7,.2,1);
  will-change: transform;
}
.zoom-wrap:hover img,
.zoom-wrap:hover .zoom-target {
  transform: scale(1.06);
}

/* ---------- Underline-grow on text links ---------- */
.link-grow {
  position: relative;
  display: inline-block;
}
.link-grow::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 2px;
  width: 100%;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
}
.link-grow:hover::after { transform: scaleX(1); }

/* ---------- Button shine on hover ---------- */
.btn-shine {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn-shine::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    transparent 30%,
    rgba(255,255,255,.22) 50%,
    transparent 70%
  );
  transform: translateX(-110%);
  transition: transform .8s cubic-bezier(.2,.7,.2,1);
  pointer-events: none;
  z-index: 0;
}
.btn-shine:hover::before { transform: translateX(110%); }

/* ---------- Count-up stat numbers ---------- */
.count-up {
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" on;
}

/* ---------- Card lift on hover (gentle) ---------- */
.lift {
  transition: transform .35s cubic-bezier(.2,.7,.2,1),
              box-shadow .35s ease,
              border-color .35s ease;
}
.lift:hover {
  transform: translateY(-4px);
}

/* ---------- Section divider, animated wave ---------- */
.wave-soft {
  position: relative;
  display: block;
  width: 100%;
  height: 56px;
  overflow: hidden;
}
.wave-soft svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* ---------- Focus rings, accessibility ---------- */
:where(a, button, input, textarea, select, [tabindex]):focus-visible {
  outline: 3px solid #c9964a;
  outline-offset: 3px;
  border-radius: 6px;
}

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: #1a3d5c;
  color: #fff;
  padding: 10px 16px;
  border-radius: 0 0 12px 0;
  font-weight: 600;
  z-index: 999;
}
.skip-link:focus { left: 0; }

/* =========================================================
   Enhancements that latch onto existing class names
   ========================================================= */

/* Stagger fade-up cards inside known grid containers */
.services-grid > .fade-up,
.communities-grid > .fade-up,
.testimonials-grid > .fade-up,
.process-grid > .fade-up,
.feature-grid > .fade-up,
.about-grid > .fade-up {
  transition: opacity .8s cubic-bezier(.2,.7,.2,1),
              transform .8s cubic-bezier(.2,.7,.2,1);
}
.services-grid     > .fade-up:nth-child(1)  { transition-delay: 0ms; }
.services-grid     > .fade-up:nth-child(2)  { transition-delay: 90ms; }
.services-grid     > .fade-up:nth-child(3)  { transition-delay: 180ms; }
.services-grid     > .fade-up:nth-child(4)  { transition-delay: 270ms; }
.services-grid     > .fade-up:nth-child(5)  { transition-delay: 360ms; }
.services-grid     > .fade-up:nth-child(6)  { transition-delay: 450ms; }
.communities-grid  > .fade-up:nth-child(1)  { transition-delay: 0ms; }
.communities-grid  > .fade-up:nth-child(2)  { transition-delay: 80ms; }
.communities-grid  > .fade-up:nth-child(3)  { transition-delay: 160ms; }
.communities-grid  > .fade-up:nth-child(4)  { transition-delay: 240ms; }
.communities-grid  > .fade-up:nth-child(5)  { transition-delay: 320ms; }
.communities-grid  > .fade-up:nth-child(6)  { transition-delay: 400ms; }
.communities-grid  > .fade-up:nth-child(7)  { transition-delay: 480ms; }
.communities-grid  > .fade-up:nth-child(8)  { transition-delay: 560ms; }
.testimonials-grid > .fade-up:nth-child(1)  { transition-delay: 0ms; }
.testimonials-grid > .fade-up:nth-child(2)  { transition-delay: 120ms; }
.testimonials-grid > .fade-up:nth-child(3)  { transition-delay: 240ms; }
.process-grid      > .fade-up:nth-child(1)  { transition-delay: 0ms; }
.process-grid      > .fade-up:nth-child(2)  { transition-delay: 100ms; }
.process-grid      > .fade-up:nth-child(3)  { transition-delay: 200ms; }
.process-grid      > .fade-up:nth-child(4)  { transition-delay: 300ms; }

/* Hero card gentle floating motion */
.hero-card { animation: floatSoft 7s ease-in-out infinite; }

/* Hero badge gets a slow rotate-in */
.hero-card-badge {
  animation: badgePop 1.1s cubic-bezier(.2,.7,.2,1) .6s both;
}
@keyframes badgePop {
  0%   { opacity: 0; transform: scale(.75) rotate(-6deg); }
  100% { opacity: 1; transform: scale(1) rotate(0); }
}

/* Card lift refined (kept gentle so it does not collide with inline rules) */
.service-card,
.community-card,
.testimonial-card,
.process-step,
.value-card {
  transition: transform .35s cubic-bezier(.2,.7,.2,1),
              box-shadow .35s ease,
              border-color .35s ease;
}

/* Card link arrow scoot */
.card-link {
  transition: color .25s ease, letter-spacing .25s ease, padding-left .25s ease;
}
.service-card:hover .card-link,
.community-card:hover .card-link,
.testimonial-card:hover .card-link {
  letter-spacing: 0.02em;
}

/* Nav link underline grow on hover */
.nav-links a {
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 12px; right: 12px; bottom: 4px;
  height: 2px;
  background: currentColor;
  opacity: .85;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active::after { transform: scaleX(1); }

/* Subtle gradient sweep on primary buttons on hover */
.btn-primary, .btn-coral, .btn-teal {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn-primary::before,
.btn-coral::before,
.btn-teal::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,.18) 50%, transparent 70%);
  transform: translateX(-110%);
  transition: transform .8s cubic-bezier(.2,.7,.2,1);
  pointer-events: none;
  z-index: 0;
}
.btn-primary:hover::before,
.btn-coral:hover::before,
.btn-teal:hover::before { transform: translateX(110%); }
.btn-primary > *, .btn-coral > *, .btn-teal > * { position: relative; z-index: 1; }

/* Map zone subtle entrance */
#communityMap {
  transition: opacity .8s ease;
}

/* Form focus rings warmer */
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--primary, #1a3d5c) !important;
  box-shadow: 0 0 0 3px rgba(201,150,74,.30);
}

/* =========================================================
   Price-range chips band, lives directly under the hero
   ========================================================= */
.price-band {
  background: #fdf9f2;
  padding: 28px 0;
  border-bottom: 1px solid #ddd6c8;
}
.price-band-inner {
  display: flex;
  align-items: stretch;
  gap: 16px;
  flex-wrap: wrap;
}
.price-band-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6a6a6a;
  align-self: center;
  margin-right: 6px;
}
.price-chip {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 20px;
  background: #fff;
  border: 1.5px solid #ddd6c8;
  border-radius: 14px;
  text-decoration: none;
  transition: transform .25s cubic-bezier(.2,.7,.2,1),
              border-color .25s ease,
              box-shadow .25s ease;
}
.price-chip strong {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.35rem;
  color: #1a3d5c;
  letter-spacing: -0.01em;
  font-weight: 600;
}
.price-chip span {
  font-size: 0.82rem;
  color: #6a6a6a;
  line-height: 1.45;
}
.price-chip:hover {
  transform: translateY(-2px);
  border-color: #1a3d5c;
  box-shadow: 0 12px 24px rgba(26,61,92,0.08);
}
@media (max-width: 720px) {
  .price-band-inner { flex-direction: column; }
  .price-band-label { margin-bottom: 4px; }
}

/* =========================================================
   Mobile sticky CTA bar
   Visible only on small screens, lives at the bottom of body
   ========================================================= */
.mobile-cta-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fdf9f2;
  border-top: 1px solid #ddd6c8;
  display: none;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  z-index: 150;
  box-shadow: 0 -4px 18px rgba(26,61,92,0.10);
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.mobile-cta-bar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 10px 6px 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #1a3d5c;
  text-decoration: none;
  text-align: center;
  border-right: 1px solid #ddd6c8;
}
.mobile-cta-bar a:last-child { border-right: 0; }
.mobile-cta-bar a:active { background: #f0ead8; }
.mobile-cta-bar a.primary {
  background: #1a3d5c;
  color: #fff;
}
.mobile-cta-bar svg {
  width: 20px;
  height: 20px;
}
@media (max-width: 720px) {
  .mobile-cta-bar { display: grid; }
  body { padding-bottom: 70px; }
}

/* =========================================================
   Trust strip
   ========================================================= */
.trust-strip {
  background: #f8f3e6;
  border-top: 1px solid #ddd6c8;
  border-bottom: 1px solid #ddd6c8;
  padding: 22px 0;
}
.trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 22px 40px;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: #3d3d3d;
  letter-spacing: 0.02em;
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.trust-item svg {
  width: 18px;
  height: 18px;
  stroke: #2a7a6a;
}

/* =========================================================
   Newsletter form in footer
   ========================================================= */
.newsletter-form {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.newsletter-form input[type="email"] {
  flex: 1 1 180px;
  padding: 10px 14px;
  border: 1.5px solid #ddd6c8;
  border-radius: 10px;
  background: #fdf9f2;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: #1a1a1a;
}
.newsletter-form button {
  padding: 10px 18px;
  background: #1a3d5c;
  color: #fff;
  border: 0;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background .2s ease;
}
.newsletter-form button:hover { background: #264f73; }
.newsletter-note {
  font-size: 0.74rem;
  color: #6a6a6a;
  margin-top: 8px;
  line-height: 1.5;
}
.newsletter-success {
  display: none;
  margin-top: 12px;
  padding: 10px 14px;
  background: rgba(42,122,106,0.12);
  border-radius: 10px;
  color: #2a7a6a;
  font-size: 0.88rem;
}
.newsletter-success.is-on { display: block; }

/* =========================================================
   Reviews CTA inside testimonials section
   ========================================================= */
.reviews-cta {
  margin-top: 56px;
  padding: 32px 36px;
  background: #fdf9f2;
  border: 1px solid #ddd6c8;
  border-radius: 18px;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 28px;
  align-items: center;
}
.reviews-cta h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.55rem;
  color: #1a3d5c;
  margin: 0 0 10px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.reviews-cta p {
  margin: 0;
  font-size: 0.96rem;
  color: #3d3d3d;
  line-height: 1.6;
}
.reviews-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
}
.reviews-cta-actions .btn {
  width: 100%;
  justify-content: center;
}
@media (max-width: 800px) {
  .reviews-cta { grid-template-columns: 1fr; padding: 26px 22px; }
  .reviews-cta-actions { flex-direction: row; flex-wrap: wrap; }
  .reviews-cta-actions .btn { flex: 1 1 180px; }
}

/* =========================================================
   Latest reels teaser section
   ========================================================= */
.reels-teaser-section { background: #fdf9f2; padding-top: 96px; padding-bottom: 96px; }
.reels-teaser {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
  background: linear-gradient(135deg, #1a3d5c 0%, #264f73 100%);
  border-radius: 28px;
  padding: 56px 64px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.reels-teaser::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(42,122,106,.35) 0%, transparent 55%),
    radial-gradient(ellipse at 10% 90%, rgba(232,96,74,.25) 0%, transparent 50%);
  pointer-events: none;
}
.reels-teaser > * { position: relative; }
.reels-teaser .eyebrow {
  color: rgba(255,255,255,0.7);
}
.reels-teaser h2 {
  color: #fff;
  margin: 0 0 18px;
  font-size: clamp(1.8rem, 2.6vw, 2.3rem);
  line-height: 1.18;
}
.reels-teaser p {
  color: rgba(255,255,255,0.86);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 520px;
  margin: 0 0 24px;
}
.reels-teaser-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.reels-teaser-actions .btn-primary {
  background: #e8604a;
  border-color: #e8604a;
  color: #fff;
}
.reels-teaser-actions .btn-primary:hover {
  background: #d44c36;
  border-color: #d44c36;
}
.reels-teaser-actions .btn-outline {
  color: #fff;
  border-color: rgba(255,255,255,0.7);
  background: transparent;
}
.reels-teaser-actions .btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
  color: #fff;
}

.reels-teaser-visual {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
  perspective: 800px;
}
.reel-tile {
  aspect-ratio: 9 / 16;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02)),
    #2a4f70;
  border: 1px solid rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.85);
  transform: translateY(0) rotate(-2deg);
  transition: transform .5s ease;
}
.reel-tile svg { width: 30px; height: 30px; }
.reel-tile-b { transform: translateY(-12px) rotate(0deg); }
.reel-tile-c { transform: translateY(0) rotate(2deg); }
.reels-teaser:hover .reel-tile   { transform: translateY(-4px) rotate(-2deg); }
.reels-teaser:hover .reel-tile-b { transform: translateY(-16px) rotate(0deg); }
.reels-teaser:hover .reel-tile-c { transform: translateY(-4px) rotate(2deg); }

@media (max-width: 900px) {
  .reels-teaser { grid-template-columns: 1fr; padding: 40px 28px; }
  .reels-teaser-visual { max-width: 320px; }
}

/* =========================================================
   "me" mark, the lowercase italic gold initials for Maria Elensky
   Scaled up generously because italic lowercase reads optically smaller
   than upright sans-serif. Tuned per-context.
   ========================================================= */
.me {
  font-size: 1.32em;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.9;
  display: inline-block;
  transform: translateY(0.06em);
}

/* Slightly brighter gold on dark hero / cta backgrounds, with a soft glow */
.me.on-dark {
  color: #e0b365;
  text-shadow: 0 0 28px rgba(224, 179, 101, 0.22);
}

/* Bigger inside h1 headlines, where it's the visual anchor */
h1 .me,
h1 .me.on-dark {
  font-size: 1.32em;
  font-weight: 600;
}

/* Bigger inside h2 too */
h2 .me {
  font-size: 1.32em;
  font-weight: 600;
}

/* Inside CTA buttons, scale up significantly so it reads with confidence.
   Italic lowercase optically reads smaller than upright caps, so we go big. */
.btn .me,
.btn .me.on-button {
  font-size: 1.85em;
  font-weight: 600;
  line-height: 0.85;
  transform: translateY(0.05em);
  margin: 0 0.05em;
}

/* Inside the eyebrow uppercase label, lift it well above the cap-height */
.eyebrow .me {
  font-size: 1.75em;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.01em;
  line-height: 0.85;
  transform: translateY(0.04em);
  margin: 0 0.05em;
}

/* =========================================================
   Press / "Featured in" section
   ========================================================= */
.press-section {
  padding: 80px 0;
  background: #f8f3e6;
  border-top: 1px solid #ddd6c8;
  border-bottom: 1px solid #ddd6c8;
}
.press-quote {
  max-width: 820px;
  margin: 0 auto;
  background: #fdf9f2;
  border: 1px solid #ddd6c8;
  border-radius: 20px;
  padding: 44px 48px 36px;
  position: relative;
  text-align: center;
}
.press-quote::before {
  content: "\201C";
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 56px;
  background: #1a3d5c;
  color: #e0b365;
  border-radius: 50%;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 3rem;
  line-height: 60px;
  font-weight: 600;
  text-align: center;
}
.press-quote blockquote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.15rem, 1.7vw, 1.45rem);
  font-style: italic;
  color: #1a1a1a;
  line-height: 1.55;
  margin: 0 0 28px;
  font-weight: 400;
}
.press-quote figcaption {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: center;
}
.press-quote figcaption strong {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.96rem;
  color: #1a3d5c;
  letter-spacing: 0.01em;
}
.press-quote figcaption span {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: #6a6a6a;
  letter-spacing: 0.03em;
}
.press-quote .press-source {
  display: inline-block;
  margin-top: 22px;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #c9523a;
  text-decoration: none;
  border-bottom: 1.5px solid transparent;
  padding-bottom: 2px;
  transition: border-color .25s ease, color .25s ease;
}
.press-quote .press-source:hover {
  border-color: #c9523a;
  color: #b03f2c;
}
@media (max-width: 700px) {
  .press-quote { padding: 40px 22px 28px; }
}

/* =========================================================
   "Featured in" small strip for the homepage
   ========================================================= */
.featured-in {
  background: #fdf9f2;
  padding: 28px 0;
  border-top: 1px solid #ddd6c8;
}
.featured-in-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 26px;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: #6a6a6a;
  letter-spacing: 0.04em;
}
.featured-in-label {
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6a6a6a;
}
.featured-in-item {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.15rem;
  color: #1a3d5c;
  font-style: italic;
  font-weight: 500;
}
.featured-in-item a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px dashed #c9964a;
  padding-bottom: 1px;
}
.featured-in-item a:hover {
  color: #c9523a;
  border-color: #c9523a;
}

/* =========================================================
   "My father, Vince" section, on the About page
   Balanced side-by-side: photo left, prose right.
   Aspect-ratio is locked in CSS so the photo never stretches.
   ========================================================= */
.father-section {
  padding: 96px 0;
  background: #fdf9f2;
  border-top: 1px solid #ddd6c8;
}
.father-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
}
.father-photo {
  margin: 0;
  width: 100%;
  aspect-ratio: 1600 / 1306;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #ddd6c8;
  box-shadow: 0 18px 44px rgba(26, 61, 92, 0.10);
  background: #f0ead8;
}
.father-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.father-copy .eyebrow {
  margin-bottom: 14px;
}
.father-copy h2 {
  font-size: clamp(1.7rem, 2.6vw, 2.2rem);
  margin: 0 0 22px;
  color: #1a1a1a;
}
.father-copy p {
  font-size: 1.02rem;
  color: #3d3d3d;
  line-height: 1.75;
  margin: 0 0 1.1rem;
}
.father-copy p strong {
  color: #1a3d5c;
  font-weight: 600;
}
@media (max-width: 900px) {
  .father-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    max-width: 640px;
  }
  .father-section { padding: 64px 0; }
}

/* =========================================================
   Mosaic full-screen menu
   Six vertical strips with photo backgrounds, alternating slide-in,
   serif labels, brand-tinted overlays. Triggered by .mosaic-open button.
   ========================================================= */
.mosaic-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px 9px 18px;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1a1a1a;
  background: transparent;
  border: 1.5px solid #1a3d5c;
  border-radius: 999px;
  cursor: pointer;
  transition: background .25s ease, color .25s ease;
}
.mosaic-trigger:hover { background: #1a3d5c; color: #fff; }
.mosaic-trigger .mosaic-trigger-bars {
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
}
.mosaic-trigger .mosaic-trigger-bars span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: currentColor;
}

.mosaic {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  pointer-events: none;
  visibility: hidden;
}
.mosaic.is-open {
  visibility: visible;
  pointer-events: auto;
}

.mosaic-strip {
  position: relative;
  display: block;
  overflow: hidden;
  background-color: #1a3d5c;
  background-size: cover;
  background-position: center;
  text-decoration: none;
  transform: translateY(-101%);
  transition: transform .65s cubic-bezier(.7,.0,.2,1);
  will-change: transform;
}
.mosaic-strip:nth-child(even) {
  transform: translateY(101%);
}
.mosaic.is-open .mosaic-strip {
  transform: translateY(0);
}
/* Staggered timing for the cascade */
.mosaic.is-open .mosaic-strip:nth-child(1) { transition-delay: 0ms; }
.mosaic.is-open .mosaic-strip:nth-child(2) { transition-delay: 60ms; }
.mosaic.is-open .mosaic-strip:nth-child(3) { transition-delay: 120ms; }
.mosaic.is-open .mosaic-strip:nth-child(4) { transition-delay: 180ms; }
.mosaic.is-open .mosaic-strip:nth-child(5) { transition-delay: 240ms; }
.mosaic.is-open .mosaic-strip:nth-child(6) { transition-delay: 300ms; }

/* Closing reverses the cascade */
.mosaic.is-closing .mosaic-strip:nth-child(1) { transition-delay: 300ms; }
.mosaic.is-closing .mosaic-strip:nth-child(2) { transition-delay: 240ms; }
.mosaic.is-closing .mosaic-strip:nth-child(3) { transition-delay: 180ms; }
.mosaic.is-closing .mosaic-strip:nth-child(4) { transition-delay: 120ms; }
.mosaic.is-closing .mosaic-strip:nth-child(5) { transition-delay: 60ms; }
.mosaic.is-closing .mosaic-strip:nth-child(6) { transition-delay: 0ms; }

.mosaic-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(26, 61, 92, 0.30) 0%,
    rgba(26, 61, 92, 0.55) 100%);
  transition: background .35s ease;
}
.mosaic-strip:hover::before {
  background: linear-gradient(180deg,
    rgba(26, 61, 92, 0.10) 0%,
    rgba(26, 61, 92, 0.35) 100%);
}
.mosaic-strip .mosaic-label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 16px;
  color: #fff;
  z-index: 2;
}
.mosaic-strip .mosaic-label-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  opacity: .8;
  margin-bottom: 14px;
}
.mosaic-strip .mosaic-label-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.6rem, 3.2vw, 3rem);
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: -0.01em;
  max-width: 14ch;
}
.mosaic-strip .mosaic-label-arrow {
  margin-top: 22px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.75);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}
.mosaic-strip:hover .mosaic-label-arrow {
  background: #fff;
  color: #1a3d5c;
  transform: translateY(-2px);
}

.mosaic-close {
  position: fixed;
  top: 22px;
  right: 22px;
  z-index: 1010;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.4);
  background: rgba(26, 61, 92, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  transform: scale(.85);
  transition: opacity .35s ease, transform .35s ease, background .25s ease;
  pointer-events: none;
}
.mosaic.is-open ~ .mosaic-close {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  transition-delay: .25s;
}
.mosaic-close:hover { background: rgba(232, 96, 74, 0.85); }
.mosaic-close::before {
  content: "";
  position: absolute;
  inset: 14px;
  background:
    linear-gradient(45deg, transparent calc(50% - 1px), #fff calc(50% - 1px), #fff calc(50% + 1px), transparent calc(50% + 1px)),
    linear-gradient(-45deg, transparent calc(50% - 1px), #fff calc(50% - 1px), #fff calc(50% + 1px), transparent calc(50% + 1px));
}

/* Lock body scroll when mosaic is open */
body.mosaic-locked { overflow: hidden; }

@media (max-width: 820px) {
  /* On mobile, stack to 3 columns × 2 rows */
  .mosaic { grid-template-columns: repeat(3, 1fr); grid-template-rows: 1fr 1fr; }
  .mosaic-strip:nth-child(odd) { transform: translateY(-101%); }
  .mosaic-strip:nth-child(even) { transform: translateY(101%); }
  .mosaic.is-open .mosaic-strip { transform: translateY(0); }
  .mosaic-strip .mosaic-label-text { font-size: clamp(1.3rem, 5vw, 1.8rem); }
}
@media (max-width: 520px) {
  /* On phones, 2 columns × 3 rows */
  .mosaic { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, 1fr); }
}

/* Tint each strip slightly with its brand accent on top of the photo */
.mosaic-strip[data-accent="teal"]::before    { background: linear-gradient(180deg, rgba(42,122,106,.32) 0%, rgba(26,61,92,.65) 100%); }
.mosaic-strip[data-accent="coral"]::before   { background: linear-gradient(180deg, rgba(232,96,74,.28) 0%, rgba(26,61,92,.65) 100%); }
.mosaic-strip[data-accent="gold"]::before    { background: linear-gradient(180deg, rgba(201,150,74,.30) 0%, rgba(26,61,92,.65) 100%); }
.mosaic-strip[data-accent="sky"]::before     { background: linear-gradient(180deg, rgba(107,163,196,.28) 0%, rgba(26,61,92,.65) 100%); }
.mosaic-strip[data-accent="seafoam"]::before { background: linear-gradient(180deg, rgba(137,196,176,.30) 0%, rgba(26,61,92,.65) 100%); }
.mosaic-strip[data-accent="navy"]::before    { background: linear-gradient(180deg, rgba(26,61,92,.45) 0%, rgba(15,38,60,.80) 100%); }

@media (prefers-reduced-motion: reduce) {
  .mosaic-strip { transition: none !important; transform: translateY(0) !important; }
  .mosaic-close { transition: none !important; }
}

/* =========================================================
   Market Pulse, live feeds on /market-updates/
   ========================================================= */
.market-pulse { background: #fdf9f2; }
.pulse-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}
.pulse-header h2 { margin: 8px 0 0; }
.pulse-updated {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.10em;
  color: #6a6a6a;
  text-transform: uppercase;
}

.pulse-indicators {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 56px;
}
.indicator-card {
  background: #fff;
  border: 1px solid #ddd6c8;
  border-radius: 16px;
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.indicator-card:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(26,61,92,0.06); }
.indicator-label {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #6a6a6a;
}
.indicator-value {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.2rem;
  line-height: 1;
  font-weight: 500;
  color: #1a3d5c;
  letter-spacing: -0.02em;
}
.indicator-value.indicator-link {
  font-size: 1.5rem;
  color: #c9523a;
  text-decoration: none;
  border-bottom: 1.5px solid transparent;
  width: max-content;
}
.indicator-value.indicator-link:hover { border-bottom-color: #c9523a; }
.indicator-meta { font-size: 0.78rem; color: #6a6a6a; line-height: 1.45; }
@media (max-width: 900px) { .pulse-indicators { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .pulse-indicators { grid-template-columns: 1fr; } }

.pulse-feeds {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 56px;
}
.feed-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.45rem;
  color: #1a3d5c;
  margin: 0 0 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  padding-bottom: 10px;
  border-bottom: 2px solid #ddd6c8;
}
.feed-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.feed-item {
  background: #fff;
  border: 1px solid #ddd6c8;
  border-radius: 12px;
  padding: 14px 18px;
  display: block;
  text-decoration: none;
  transition: border-color .2s ease, transform .2s ease;
}
.feed-item:hover { border-color: #1a3d5c; transform: translateY(-1px); }
.feed-item .feed-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6a6a6a;
  margin-bottom: 4px;
}
.feed-item .feed-source { color: #2a7a6a; font-weight: 600; }
.feed-item h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem;
  line-height: 1.3;
  color: #1a3d5c;
  margin: 0;
  font-weight: 500;
  letter-spacing: -0.005em;
}
.feed-item:hover h4 { color: #c9523a; }
.feed-empty {
  font-size: 0.92rem;
  color: #6a6a6a;
  padding: 20px 0;
  font-style: italic;
}
@media (max-width: 800px) { .pulse-feeds { grid-template-columns: 1fr; } }

.pulse-commentary {
  background: #f0ead8;
  border-radius: 18px;
  padding: 32px 36px 28px;
}
.commentary-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}
.commentary-header h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.6rem;
  color: #1a3d5c;
  margin: 0;
  font-weight: 500;
}
.commentary-meta { font-size: 0.84rem; color: #6a6a6a; font-style: italic; }
.commentary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.commentary-card {
  background: #fdf9f2;
  border: 1px solid #ddd6c8;
  border-radius: 14px;
  padding: 22px 24px;
}
.commentary-card.commentary-placeholder { border-style: dashed; }
.commentary-card .commentary-date {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #c9964a;
  display: block;
  margin-bottom: 6px;
}
.commentary-card h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.2rem;
  margin: 0 0 8px;
  color: #1a3d5c;
  font-weight: 500;
}
.commentary-card p { font-size: 0.92rem; color: #3d3d3d; margin: 0; line-height: 1.6; }
@media (max-width: 700px) {
  .commentary-grid { grid-template-columns: 1fr; }
  .pulse-commentary { padding: 24px 22px; }
}

/* ---------- Reduced motion respect ---------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .stagger > *, .hero-enter > * {
    opacity: 1 !important;
    transform: none !important;
  }
  .float-soft { animation: none !important; }
}
