/* ================================================
   McInnis Mortuary · style.css v1
   Palette: Sage · Cream · Walnut
   Est. 1978 · Eutaw & Livingston, Alabama
   ================================================ */

:root {
  --sage:        #3B5934;
  --sage-mid:    #567A4D;
  --sage-light:  #8BAB84;
  --sage-pale:   #D6E8D2;
  --cream:       #F4EAD8;
  --cream-dark:  #E5D4B8;
  --walnut:      #5C3820;
  --walnut-mid:  #8B5E3C;
  --walnut-light:#C8976A;
  --ink:         #1C1916;
  --text:        #2A2420;
  --text-muted:  #6B5E54;
  --paper:       #FAF5EE;
  --white:       #FFFFFF;

  --f-serif: 'Cormorant Garamond', Georgia, serif;
  --f-sans:  'Inter', 'Helvetica Neue', sans-serif;
  --f-mono:  'JetBrains Mono', 'Courier New', monospace;

  --max-w:  1200px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --radius: 3px;
  --sh:     0 4px 20px rgba(28,25,22,.09);
  --sh-lg:  0 12px 48px rgba(28,25,22,.16);
  --ease:   cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--f-sans);
  background: var(--paper);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ── */
h1,h2,h3,h4,h5 { font-family: var(--f-serif); font-weight: 600; line-height: 1.2; color: var(--ink); }
h1 { font-size: clamp(2.4rem,5vw,4rem); }
h2 { font-size: clamp(1.8rem,3.5vw,2.8rem); }
h3 { font-size: clamp(1.2rem,2vw,1.6rem); }

.eyebrow {
  font-family: var(--f-mono);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--walnut-mid);
  margin-bottom: .75rem;
  display: block;
}
.section { padding: clamp(4rem,8vw,7rem) 0; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }
.text-center { text-align: center; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 2rem; border: 2px solid transparent;
  border-radius: var(--radius); font-family: var(--f-sans);
  font-size: .88rem; font-weight: 600; letter-spacing: .04em;
  cursor: pointer; transition: all .25s var(--ease); text-decoration: none;
}
.btn--sage  { background: var(--sage);   color: var(--white);  border-color: var(--sage); }
.btn--sage:hover { background: var(--sage-mid); border-color: var(--sage-mid); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(59,89,52,.28); }
.btn--ghost { background: transparent; color: var(--cream); border-color: rgba(244,234,216,.55); }
.btn--ghost:hover { background: rgba(244,234,216,.12); border-color: var(--cream); }
.btn--walnut { background: var(--walnut); color: var(--cream); border-color: var(--walnut); }
.btn--walnut:hover { background: var(--walnut-mid); border-color: var(--walnut-mid); transform: translateY(-1px); }
.btn--outline-sage { background: transparent; color: var(--sage); border-color: var(--sage); }
.btn--outline-sage:hover { background: var(--sage); color: var(--white); }

/* ── Header / NAV ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.1rem 0; transition: all .3s var(--ease);
}
.site-header.scrolled {
  background: var(--sage);
  box-shadow: 0 2px 20px rgba(28,25,22,.22);
  padding: .75rem 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.nav-logo { display: flex; align-items: center; gap: .75rem; flex-shrink: 0; }
.nav-logo img { height: 44px; width: auto; }
.nav-logo-name {
  font-family: var(--f-serif); font-size: 1.05rem; font-weight: 600;
  color: var(--cream); line-height: 1.2;
}
.nav-logo-name span {
  display: block; font-family: var(--f-mono); font-size: .58rem;
  letter-spacing: .15em; text-transform: uppercase; color: rgba(244,234,216,.65); font-weight: 400;
}
.nav-links { display: flex; align-items: center; gap: 1.75rem; }
.nav-links a {
  font-size: .84rem; font-weight: 500; color: rgba(244,234,216,.88);
  letter-spacing: .03em; transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--walnut-light); }
.nav-cta { padding: .55rem 1.3rem; font-size: .8rem; }
.nav-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--cream); transition: all .3s; }

/* Mobile nav */
.nav-mobile {
  display: none; position: fixed; inset: 0;
  background: var(--sage); z-index: 200;
  flex-direction: column; align-items: center; justify-content: center; gap: 2.5rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a { font-family: var(--f-serif); font-size: 2rem; color: var(--cream); font-weight: 600; }
.nav-mobile a:hover { color: var(--walnut-light); }
.nav-close {
  position: absolute; top: 1.5rem; right: 2rem; background: none; border: none;
  font-size: 2rem; color: var(--cream); cursor: pointer; line-height: 1;
}

/* ── HERO ── */
.hero {
  min-height: 100svh;
  background: var(--sage);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: center;
  padding-top: 5rem;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('assets/facility-hero.jpg');
  background-size: cover; background-position: center;
  opacity: .22;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(59,89,52,.9) 0%, rgba(28,25,22,.75) 100%);
}
.hero-pattern {
  position: absolute; inset: 0; opacity: .06;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23F4EAD8' fill-opacity='1' fill-rule='evenodd'%3E%3Cpath d='M0 38.59l2.83-2.83 1.41 1.41L1.41 40H0v-1.41zM0 1.4l2.83 2.83 1.41-1.41L1.41 0H0v1.41zM38.59 40l-2.83-2.83 1.41-1.41L40 38.59V40h-1.41zM40 1.41l-2.83 2.83-1.41-1.41L38.59 0H40v1.41zM20 18.6l2.83-2.83 1.41 1.41L21.41 20l2.83 2.83-1.41 1.41L20 21.41l-2.83 2.83-1.41-1.41L18.59 20l-2.83-2.83 1.41-1.41L20 18.59z'/%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter);
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 4rem; align-items: center;
}
.hero-seal {
  display: inline-flex; align-items: center; gap: .75rem;
  border: 1px solid rgba(244,234,216,.25); border-radius: 2px;
  padding: .45rem .9rem; margin-bottom: 1.75rem;
}
.hero-seal span {
  font-family: var(--f-mono); font-size: .68rem; letter-spacing: .15em;
  text-transform: uppercase; color: var(--walnut-light);
}
.hero h1 { color: var(--cream); font-style: italic; margin-bottom: 1.25rem; }
.hero-sub {
  font-size: clamp(.95rem,1.3vw,1.1rem); color: rgba(244,234,216,.82);
  margin-bottom: 2.25rem; line-height: 1.75; max-width: 480px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-card {
  background: rgba(244,234,216,.08); border: 1px solid rgba(244,234,216,.18);
  border-radius: var(--radius); padding: 2rem;
}
.hero-card-top {
  display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem;
}
.hero-card-logo { height: 52px; width: auto; filter: brightness(0) invert(1) opacity(.9); }
.hero-card-est {
  font-family: var(--f-mono); font-size: .62rem; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(244,234,216,.65);
}
.hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.hero-stat strong {
  display: block; font-family: var(--f-serif); font-size: 2rem;
  color: var(--walnut-light); line-height: 1; margin-bottom: .2rem;
}
.hero-stat span {
  font-family: var(--f-mono); font-size: .62rem; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(244,234,216,.65);
}
.hero-divider {
  border: none; border-top: 1px solid rgba(244,234,216,.15); margin: 1.5rem 0;
}
.hero-phones {}
.hero-phones p {
  font-family: var(--f-mono); font-size: .62rem; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(244,234,216,.5); margin-bottom: .5rem;
}
.hero-phones a {
  display: block; font-family: var(--f-serif); font-size: 1.25rem;
  color: var(--cream); font-weight: 600; margin-bottom: .2rem;
}
.hero-phones a:hover { color: var(--walnut-light); }

/* ── Trust Bar ── */
.trust-bar { background: var(--walnut); padding: 1.4rem 0; }
.trust-bar-inner { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 1.25rem; }
.trust-item { display: flex; align-items: center; gap: .7rem; color: var(--cream); }
.trust-icon { font-size: 1.3rem; opacity: .75; }
.trust-text strong { display: block; font-family: var(--f-serif); font-size: 1.1rem; line-height: 1.1; }
.trust-text span {
  font-size: .65rem; font-family: var(--f-mono); letter-spacing: .1em;
  text-transform: uppercase; opacity: .72;
}

/* ── Promise Band ── */
.promise-band { background: var(--sage); padding: 5rem 0; text-align: center; }
.promise-band blockquote {
  font-family: var(--f-serif); font-size: clamp(1.3rem,2.2vw,1.9rem);
  font-style: italic; color: var(--cream); max-width: 780px;
  margin: 0 auto; line-height: 1.55;
}
.promise-band blockquote::before {
  content: '\201C'; font-size: 4rem; line-height: 0;
  vertical-align: -.4em; color: var(--walnut-light); margin-right: .15rem;
}
.promise-band cite {
  display: block; font-family: var(--f-mono); font-size: .7rem;
  letter-spacing: .15em; text-transform: uppercase; color: var(--sage-pale);
  margin-top: 1.5rem; font-style: normal;
}

/* ── Services ── */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(272px,1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.svc-card {
  background: var(--white); border: 1px solid var(--cream-dark);
  border-radius: var(--radius); padding: 2rem;
  transition: all .28s var(--ease); position: relative; overflow: hidden;
}
.svc-card::after {
  content: ''; position: absolute; left: 0; top: 0;
  width: 3px; height: 100%; background: var(--sage);
  transform: scaleY(0); transform-origin: bottom; transition: transform .3s var(--ease);
}
.svc-card:hover { transform: translateY(-3px); box-shadow: var(--sh); }
.svc-card:hover::after { transform: scaleY(1); }
.svc-icon {
  width: 46px; height: 46px; background: var(--sage-pale); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 1.25rem;
}
.svc-card h3 { font-size: 1.18rem; margin-bottom: .5rem; }
.svc-card p { font-size: .87rem; color: var(--text-muted); line-height: 1.65; }
.svc-link {
  display: inline-flex; align-items: center; gap: .3rem; margin-top: 1rem;
  font-family: var(--f-mono); font-size: .68rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--sage); font-weight: 500; transition: gap .2s;
}
.svc-card:hover .svc-link { gap: .55rem; }

/* ── Story ── */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.story-body p { color: var(--text-muted); margin-bottom: 1.2rem; font-size: .93rem; line-height: 1.8; }
.story-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.story-photo { border-radius: var(--radius); overflow: hidden; box-shadow: var(--sh); }
.story-photo img { width: 100%; height: 200px; object-fit: cover; object-position: center top; transition: transform .4s var(--ease); }
.story-photo:hover img { transform: scale(1.04); }
.story-photo-cap {
  padding: .55rem .75rem; background: var(--walnut);
  color: var(--cream); font-family: var(--f-mono);
  font-size: .6rem; letter-spacing: .1em; text-transform: uppercase;
}
.story-photo.wide { grid-column: 1 / -1; }
.story-photo.wide img { height: 240px; }

/* ── Timeline ── */
.timeline { margin-top: 3.5rem; }
.timeline-item {
  display: grid; grid-template-columns: 1fr 80px 1fr; gap: 1.5rem;
  margin-bottom: 2.5rem; align-items: flex-start;
}
.timeline-item:nth-child(odd) .tl-left { text-align: right; }
.timeline-item:nth-child(even) .tl-left { opacity: 0; }
.timeline-item:nth-child(odd) .tl-right { opacity: 0; }
.tl-center { display: flex; flex-direction: column; align-items: center; gap: .5rem; padding-top: .25rem; }
.tl-year {
  background: var(--walnut); color: var(--cream);
  font-family: var(--f-mono); font-size: .7rem; letter-spacing: .1em;
  padding: .25rem .7rem; border-radius: 2px; white-space: nowrap;
}
.tl-line { flex: 1; width: 2px; background: var(--sage-pale); }
.tl-content h4 { font-family: var(--f-serif); font-size: 1.1rem; margin-bottom: .35rem; }
.tl-content p { font-size: .87rem; color: var(--text-muted); line-height: 1.65; }

/* ── Team ── */
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; margin-top: 3rem; }
.team-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--sh); transition: transform .3s var(--ease); }
.team-card:hover { transform: translateY(-4px); }
.team-card img { width: 100%; height: 280px; object-fit: cover; object-position: center top; }
.team-info { padding: 1.5rem; border-top: 3px solid var(--sage); }
.team-card.memoriam .team-info { border-top-color: var(--walnut-mid); }
.team-info h3 { font-size: 1.2rem; margin-bottom: .2rem; }
.team-title {
  font-family: var(--f-mono); font-size: .63rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--walnut-mid); margin-bottom: .75rem;
}
.team-info p { font-size: .84rem; color: var(--text-muted); line-height: 1.65; }
.memoriam-tag {
  display: inline-flex; align-items: center; gap: .3rem; margin-top: .75rem;
  font-family: var(--f-mono); font-size: .6rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--walnut-mid);
  background: var(--paper); padding: .2rem .65rem; border-radius: 2px;
}

/* ── Gospel Sunrise ── */
.gospel-section { background: var(--walnut); padding: 5.5rem 0; color: var(--cream); }
.gospel-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.gospel-text h2 { color: var(--cream); margin-bottom: 1rem; }
.gospel-text p { color: rgba(244,234,216,.8); line-height: 1.75; margin-bottom: 1.25rem; font-size: .93rem; }
.gospel-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--sh-lg); }
.gospel-img img { width: 100%; height: 360px; object-fit: cover; }
.live-badge {
  display: inline-flex; align-items: center; gap: .5rem; margin-bottom: 1.5rem;
  background: rgba(244,234,216,.08); border: 1px solid rgba(244,234,216,.22);
  padding: .5rem 1rem; border-radius: 2px;
  font-family: var(--f-mono); font-size: .68rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--walnut-light);
}
.live-dot { width: 7px; height: 7px; background: #4CAF50; border-radius: 50%; animation: blink 1.6s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.35} }

/* ── Locations ── */
.locations-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; margin-top: 3rem; }
.loc-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--sh); }
.loc-header { background: var(--sage); padding: 1.5rem 2rem; }
.loc-header h3 { color: var(--cream); font-size: 1.4rem; margin-bottom: .2rem; }
.loc-header span { font-family: var(--f-mono); font-size: .63rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(244,234,216,.68); }
.loc-body { padding: 2rem; }
.loc-row { display: flex; gap: .75rem; align-items: flex-start; margin-bottom: .9rem; font-size: .89rem; color: var(--text-muted); }
.loc-row-icon { font-size: 1rem; margin-top: .1rem; flex-shrink: 0; }
.loc-row strong { color: var(--text); }
.loc-cta { margin-top: 1.5rem; }

/* ── Pre-planning ── */
.preplanning { background: var(--sage-pale); padding: 5rem 0; text-align: center; }
.preplanning h2 { margin-bottom: .75rem; }
.preplanning p { color: var(--text-muted); max-width: 520px; margin: 0 auto 2rem; font-size: .93rem; }

/* ── Contact Band ── */
.contact-band { background: var(--ink); padding: 4rem 0; text-align: center; color: var(--cream); }
.contact-band h2 { color: var(--cream); margin-bottom: .75rem; }
.contact-band > .container > p { opacity: .75; margin-bottom: 2.5rem; font-size: .93rem; }
.cb-phones { display: flex; justify-content: center; flex-wrap: wrap; gap: 2.5rem; margin-bottom: 2rem; }
.cb-phone { display: flex; flex-direction: column; align-items: center; gap: .2rem; }
.cb-phone a { font-family: var(--f-serif); font-size: 1.65rem; color: var(--walnut-light); font-weight: 600; transition: color .2s; }
.cb-phone a:hover { color: var(--cream); }
.cb-phone span { font-family: var(--f-mono); font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; opacity: .6; }

/* ── Footer ── */
.site-footer { background: var(--sage); color: rgba(244,234,216,.72); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 3rem; margin-bottom: 3rem; }
.footer-logo-wrap { display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem; }
.footer-logo-wrap img { height: 40px; filter: brightness(0) invert(1) opacity(.85); }
.footer-brand-name { font-family: var(--f-serif); font-size: .95rem; color: var(--cream); line-height: 1.2; }
.footer-tagline { font-family: var(--f-serif); font-style: italic; font-size: .9rem; color: rgba(244,234,216,.65); margin-bottom: 1.25rem; }
.footer-social { display: flex; gap: .6rem; }
.footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; background: rgba(244,234,216,.1); border-radius: 50%;
  color: var(--cream); font-size: .85rem; transition: background .2s;
}
.footer-social a:hover { background: var(--walnut-mid); }
.footer-col h4 {
  font-family: var(--f-mono); font-size: .63rem; letter-spacing: .15em;
  text-transform: uppercase; color: var(--walnut-light); margin-bottom: 1.25rem;
}
.footer-col ul li { margin-bottom: .55rem; }
.footer-col ul li a { font-size: .86rem; color: rgba(244,234,216,.68); transition: color .2s; }
.footer-col ul li a:hover { color: var(--cream); }
.footer-addr { font-size: .84rem; line-height: 1.85; }
.footer-addr a { color: var(--walnut-light); transition: color .2s; }
.footer-addr a:hover { color: var(--cream); }
.footer-bottom {
  border-top: 1px solid rgba(244,234,216,.14); padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .75rem;
  font-family: var(--f-mono); font-size: .62rem; letter-spacing: .08em; text-transform: uppercase; opacity: .55;
}
.footer-bottom a { color: var(--walnut-light); transition: color .2s; }
.footer-bottom a:hover { color: var(--cream); }

/* ── Inner Page Hero ── */
.page-hero { background: var(--sage); padding: 7.5rem 0 3.5rem; color: var(--cream); position: relative; overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .12; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(59,89,52,.92) 0%, rgba(28,25,22,.7) 100%); }
.page-hero-inner { position: relative; z-index: 1; }
.page-hero .eyebrow { color: var(--walnut-light); }
.page-hero h1 { color: var(--cream); font-style: italic; }
.page-hero-sub { color: rgba(244,234,216,.78); max-width: 520px; margin-top: 1rem; font-size: .95rem; line-height: 1.75; }

/* ── Deep Blocks (Services page) ── */
.svc-deep { padding: clamp(3rem,5vw,5rem) 0; }
.svc-deep:nth-child(even) { background: var(--white); }
.svc-deep-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.svc-deep:nth-child(even) .svc-deep-inner { direction: rtl; }
.svc-deep:nth-child(even) .svc-deep-text { direction: ltr; }
.svc-deep-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--sh-lg); }
.svc-deep-img img { width: 100%; height: 340px; object-fit: cover; }
.svc-deep-text {}
.svc-deep-text h2 { margin-bottom: 1rem; font-size: clamp(1.6rem,2.5vw,2.2rem); }
.svc-deep-text p { color: var(--text-muted); margin-bottom: 1rem; font-size: .92rem; line-height: 1.75; }
.svc-deep-list { margin: 1.5rem 0; }
.svc-deep-list li {
  display: flex; align-items: flex-start; gap: .6rem;
  font-size: .88rem; color: var(--text-muted); margin-bottom: .6rem; line-height: 1.5;
}
.svc-deep-list li::before { content: '→'; color: var(--sage); flex-shrink: 0; margin-top: .05rem; font-size: .9rem; }

/* ── Contact Form ── */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; margin-top: 3rem; }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-family: var(--f-mono); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: .5rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: .8rem 1rem; border: 1px solid var(--cream-dark);
  border-radius: var(--radius); background: var(--white); font-family: var(--f-sans);
  font-size: .9rem; color: var(--text); transition: border-color .2s; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--sage); }
.form-group textarea { resize: vertical; min-height: 140px; }
.contact-info {}
.ci-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 2rem; }
.ci-icon { width: 44px; height: 44px; background: var(--sage-pale); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.ci-text h4 { font-family: var(--f-serif); font-size: 1.1rem; margin-bottom: .35rem; }
.ci-text p, .ci-text a { font-size: .9rem; color: var(--text-muted); line-height: 1.7; }
.ci-text a:hover { color: var(--sage); }

/* ── Obituaries ── */
.obit-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(300px,1fr)); gap: 2rem; margin-top: 3rem; }
.obit-card { background: var(--white); border-radius: var(--radius); padding: 2rem; box-shadow: var(--sh); border-left: 3px solid var(--sage); }
.obit-name { font-family: var(--f-serif); font-size: 1.35rem; font-weight: 600; margin-bottom: .3rem; }
.obit-dates { font-family: var(--f-mono); font-size: .65rem; letter-spacing: .1em; text-transform: uppercase; color: var(--walnut-mid); margin-bottom: .75rem; }
.obit-excerpt { font-size: .87rem; color: var(--text-muted); line-height: 1.7; }

/* ── FAQ ── */
.faq-list { margin-top: 3rem; max-width: 760px; margin-left: auto; margin-right: auto; }
.faq-item { border-bottom: 1px solid var(--cream-dark); }
.faq-q {
  width: 100%; background: none; border: none; text-align: left;
  padding: 1.25rem 0; display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; font-family: var(--f-serif); font-size: 1.1rem; color: var(--ink); gap: 1rem;
}
.faq-q span { transition: transform .3s; font-size: 1.2rem; }
.faq-item.open .faq-q span { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-a-inner { padding: 0 0 1.25rem; font-size: .9rem; color: var(--text-muted); line-height: 1.75; }

/* ── Reveal Animations ── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }
.reveal-d4 { transition-delay: .4s; }

/* ── Count-Up ── */
[data-count] {}

/* ── 404 ── */
.not-found { min-height: 80vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 5rem var(--gutter); }
.not-found h1 { font-size: clamp(4rem,12vw,10rem); color: var(--sage-pale); line-height: 1; margin-bottom: 1rem; }
.not-found h2 { margin-bottom: 1rem; }
.not-found p { color: var(--text-muted); margin-bottom: 2rem; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity:1; transform: none; transition: none; }
  .live-dot { animation: none; }
  * { transition-duration: .01ms !important; }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .story-grid { grid-template-columns: 1fr; gap: 3rem; }
  .gospel-inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .svc-deep-inner { grid-template-columns: 1fr; direction: ltr !important; }
  .svc-deep-img { order: -1; }
  .contact-layout { grid-template-columns: 1fr; }
  .timeline-item { grid-template-columns: 1fr; }
  .tl-center { flex-direction: row; }
  .tl-line { width: 100%; height: 2px; flex: unset; flex: 1; }
  .timeline-item:nth-child(odd) .tl-left { text-align: left; }
  .timeline-item:nth-child(even) .tl-left,
  .timeline-item:nth-child(odd) .tl-right { opacity: 1; }
  .tl-right { display: none; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .locations-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .story-photos { grid-template-columns: 1fr; }
  .story-photo.wide { grid-column: 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cb-phones { flex-direction: column; gap: 1.25rem; }
  .trust-bar-inner { justify-content: flex-start; }
}
@media (max-width: 480px) {
  .hero { padding-top: 5rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .svc-deep-img img { height: 240px; }
}
