:root {
  --primary: #5e1a1a;
  --primary-dark: #401010;
  --bg: #f5efe1;
  --card: #ffffff;
  --ink: #1a1410;
  --ink-soft: #4a3f35;
  --rule: #c8b896;
  --accent-gold: #9a7530;
  --accent-muted: #8a7e6a;
  --shadow: rgba(26, 20, 16, 0.10);
  --serif: 'Cormorant Garamond', 'Tiempos', 'Playfair Display', Georgia, serif;
  --body: 'Lora', 'Tiempos Text', Georgia, serif;
  --ui: 'Inter', system-ui, -apple-system, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  background-image:
    radial-gradient(circle at 20% 30%, rgba(154, 117, 48, 0.025) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(94, 26, 26, 0.02) 0%, transparent 50%);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--primary); text-decoration-thickness: 1px; text-underline-offset: 0.2em; }
a:hover { color: var(--primary-dark); }

h1, h2, h3, h4 { font-family: var(--serif); color: var(--ink); font-weight: 500; }
h1 { font-size: clamp(2.75rem, 5vw, 4rem); line-height: 1.05; letter-spacing: -0.015em; font-weight: 600; }
h2 { font-size: clamp(1.875rem, 3.5vw, 2.5rem); line-height: 1.15; font-weight: 500; }
h3 { font-size: 1.75rem; font-style: italic; font-weight: 600; line-height: 1.2; }
p { margin-bottom: 1em; }

.smallcaps {
  font-family: var(--ui);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 500;
  color: var(--ink-soft);
}
.smallcaps--gold { color: var(--accent-gold); }

.wrap { max-width: 72rem; margin: 0 auto; padding: 0 1.5rem; }
.wrap--narrow { max-width: 44rem; margin: 0 auto; padding: 0 1.5rem; }

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary-dark);
  color: var(--bg);
  padding: 0.5rem 1rem;
  font-family: var(--ui);
  font-size: 0.85rem;
  z-index: 200;
  text-decoration: none;
}
.skip-link:focus { top: 0; }

.section-label {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}
.section-label::before {
  content: '';
  height: 1px;
  width: 3rem;
  background: var(--accent-gold);
}
.section-label .smallcaps { color: var(--accent-gold); }

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  background: var(--bg);
  z-index: 100;
  transition: box-shadow 0.3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  box-shadow: 0 1px 0 var(--rule), 0 1px 12px var(--shadow);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  gap: 1rem;
}
.wordmark {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.01em;
}
.wordmark sup {
  font-family: var(--ui);
  font-size: 0.7rem;
  color: var(--accent-gold);
  margin-left: 0.4em;
  letter-spacing: 0.1em;
  font-weight: 500;
}
.site-nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.site-nav a {
  font-family: var(--ui);
  font-size: 0.9rem;
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.site-nav a:hover { color: var(--primary); }
.site-nav a.is-current { color: var(--primary-dark); border-bottom: 1px solid var(--accent-gold); padding-bottom: 0.2rem; }
.header-phone { text-align: right; }
.header-phone .smallcaps {
  display: block;
  color: var(--accent-muted);
  margin-bottom: 0.15rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
}
.header-phone-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--primary-dark);
  text-decoration: none;
  font-weight: 500;
}
.menu-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 0.5rem; font-size: 1.4rem; }

@media (max-width: 900px) {
  .site-nav { display: none; }
  .menu-toggle { display: block; }
  .header-phone .smallcaps { display: none; }
}

/* HERO (homepage) */
.hero {
  position: relative;
  height: 80vh;
  min-height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  padding: 4rem 1.5rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(245,239,225,0.35) 0%, rgba(245,239,225,0.55) 60%, rgba(245,239,225,0.85) 100%);
}
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 60rem;
  background: rgba(245, 239, 225, 0.78);
  padding: 3rem 2.5rem;
  backdrop-filter: blur(2px);
}
.hero-eyebrow {
  margin-bottom: 1.5rem;
  color: var(--primary-dark);
  font-weight: 600;
}
.hero h1 { color: var(--ink); margin-bottom: 1.5rem; text-wrap: balance; }
.hero-since {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  color: var(--accent-gold);
  font-weight: 600;
}
.hero-since::before, .hero-since::after {
  content: '';
  width: 2.5rem;
  height: 1px;
  background: var(--accent-gold);
}
@media (max-width: 600px) {
  .hero-content { padding: 2rem 1.5rem; }
}

/* PAGE HERO (interior pages — shorter) */
.page-hero {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  padding: 6rem 0 3rem;
  overflow: hidden;
}
.page-hero .hero-bg { background-position: center 50%; }
.page-hero-content {
  position: relative;
  z-index: 3;
  max-width: 50rem;
}
.page-hero h1 { font-size: clamp(2.25rem, 4vw, 3.25rem); margin-top: 1rem; }
.breadcrumb {
  font-family: var(--ui);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-soft);
  margin-bottom: 1rem;
}
.breadcrumb a { color: var(--ink-soft); text-decoration: none; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb .sep { margin: 0 0.6rem; color: var(--accent-muted); }

/* TIMELINE */
.timeline {
  background: #ebe2cd;
  padding: 4rem 0 4.5rem;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.timeline-header { text-align: center; margin-bottom: 2.5rem; padding: 0 1.5rem; }
.timeline-header .section-label { justify-content: center; }
.timeline-header h2 { margin-bottom: 0.5rem; }
.timeline-track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0.5rem 1.5rem 1.5rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  justify-content: safe center;
}
.timeline-track::-webkit-scrollbar { height: 4px; }
.timeline-track::-webkit-scrollbar-track { background: rgba(0,0,0,0.05); }
.timeline-track::-webkit-scrollbar-thumb { background: var(--rule); }
.timeline-card {
  flex: 0 0 240px;
  scroll-snap-align: start;
  background: var(--card);
  box-shadow: 0 1px 3px var(--shadow);
}
.timeline-photo {
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.timeline-card-body { padding: 1rem 1.25rem 1.25rem; }
.timeline-year {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--primary-dark);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.timeline-caption {
  font-family: var(--body);
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.4;
  font-style: italic;
}

/* SERVICES THIS WEEK */
.services-week { padding: 5rem 0; }
.services-week-header { margin-bottom: 3rem; max-width: 38rem; }
.services-week-header h2 { margin-bottom: 1rem; color: var(--ink); }
.services-week-header p { color: var(--ink-soft); font-size: 1.0625rem; }
.obit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.obit-card {
  background: var(--card);
  box-shadow: 0 1px 3px var(--shadow);
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
}
.obit-card:hover {
  box-shadow: 0 4px 14px var(--shadow);
  transform: translateY(-2px);
}
.obit-photo {
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center top;
  position: relative;
}
.obit-body { padding: 1.5rem; }
.obit-name {
  font-family: var(--serif);
  font-size: 1.625rem;
  color: var(--primary-dark);
  margin-bottom: 0.4rem;
  line-height: 1.15;
  font-weight: 500;
  font-style: normal;
}
.obit-dates {
  font-family: var(--body);
  font-style: italic;
  color: var(--ink-soft);
  font-size: 1rem;
  margin-bottom: 1rem;
}
.obit-service {
  border-top: 1px solid var(--rule);
  padding-top: 1rem;
  font-family: var(--ui);
  font-size: 0.85rem;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* OUR FAMILY */
.family {
  padding: 6rem 0 5rem;
  background: linear-gradient(180deg, var(--bg) 0%, #ece4cf 100%);
}
.family-header { margin-bottom: 4rem; max-width: 44rem; }
.family-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
.family-portrait {
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center top;
  margin-bottom: 1.5rem;
  position: relative;
}
.family-name {
  font-family: var(--serif);
  font-size: 1.625rem;
  margin-bottom: 0.25rem;
  color: var(--primary-dark);
  font-weight: 500;
  font-style: normal;
}
.family-title {
  font-family: var(--ui);
  font-size: 0.85rem;
  color: var(--accent-muted);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 1rem;
}
.family-bio p {
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
}
.family-bio p:first-of-type::first-letter {
  font-family: var(--serif);
  font-size: 3.5rem;
  float: left;
  line-height: 0.85;
  margin: 0.1em 0.1em 0 0;
  color: var(--primary-dark);
  font-weight: 600;
}

/* WHAT WE OFFER */
.offer { padding: 5rem 0; }
.offer-header { margin-bottom: 3rem; max-width: 44rem; }
.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 2.5rem;
}
.offer-item {
  border-top: 1px solid var(--rule);
  padding-top: 1.5rem;
}
.offer-item h3 {
  margin-bottom: 1rem;
  color: var(--primary-dark);
  font-style: normal;
}
.offer-item p {
  font-size: 1.0625rem;
  color: var(--ink);
  line-height: 1.65;
}
.offer-item-num {
  display: block;
  font-family: var(--ui);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--accent-muted);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.offer-item a.offer-link {
  display: inline-block;
  margin-top: 1rem;
  font-family: var(--ui);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-gold);
  text-decoration: none;
  border-bottom: 1px solid var(--accent-gold);
  padding-bottom: 0.2rem;
}
.offer-item a.offer-link:hover { color: var(--primary); border-bottom-color: var(--primary); }

/* PRE-PLANNING */
.preplan {
  background: var(--primary-dark);
  padding: 5rem 0;
  color: var(--bg);
  position: relative;
  overflow: hidden;
}
.preplan::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(154, 117, 48, 0.18) 0%, transparent 60%),
    radial-gradient(circle at 20% 80%, rgba(154, 117, 48, 0.10) 0%, transparent 60%);
}
.preplan-inner {
  position: relative;
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 4rem;
  align-items: start;
}
.preplan h2 { color: var(--bg); margin-bottom: 1.25rem; }
.preplan .smallcaps { color: var(--accent-gold); }
.preplan p {
  color: rgba(245, 239, 225, 0.85);
  font-size: 1.0625rem;
  line-height: 1.7;
}
.preplan-pdf {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  color: var(--accent-gold);
  font-family: var(--ui);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--accent-gold);
  padding-bottom: 0.2rem;
  text-decoration: none;
  width: fit-content;
}
.preplan-pdf:hover { color: #b58836; border-bottom-color: #b58836; }
.preplan-form {
  background: rgba(245, 239, 225, 0.06);
  border: 1px solid rgba(154, 117, 48, 0.4);
  padding: 2rem;
}
.form-row { margin-bottom: 1.25rem; }
.form-row label {
  display: block;
  font-family: var(--ui);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-muted);
  margin-bottom: 0.4rem;
}
.form-row input, .form-row select, .form-row textarea {
  width: 100%;
  padding: 0.75rem 0;
  background: transparent;
  color: var(--bg);
  border: 0;
  border-bottom: 1px solid rgba(245, 239, 225, 0.3);
  font-family: var(--body);
  font-size: 1rem;
  outline: none;
  resize: vertical;
}
.form-row input::placeholder, .form-row textarea::placeholder { color: rgba(245,239,225,0.4); }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { border-bottom-color: var(--accent-gold); }
.form-submit {
  background: var(--accent-gold);
  color: var(--primary-dark);
  border: 0;
  padding: 0.85rem 1.75rem;
  font-family: var(--ui);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  width: 100%;
  margin-top: 0.5rem;
  transition: background 0.2s;
}
.form-submit:hover { background: #b58836; }

/* Light form (on cream pages, not preplan dark band) */
.form-light .form-row label { color: var(--ink-soft); }
.form-light .form-row input,
.form-light .form-row select,
.form-light .form-row textarea {
  color: var(--ink);
  border-bottom: 1px solid var(--rule);
}
.form-light .form-row input::placeholder,
.form-light .form-row textarea::placeholder { color: var(--accent-muted); }

/* TESTIMONIAL */
.testimonial { padding: 6rem 1.5rem; text-align: center; }
.testimonial-inner { max-width: 50rem; margin: 0 auto; position: relative; }
.testimonial-rule {
  width: 3rem;
  height: 1px;
  background: var(--accent-gold);
  margin: 0 auto 2.5rem;
  border: 0;
}
.testimonial-rule--bottom { margin: 2.5rem auto 0; }
.testimonial blockquote {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.6vw, 2.125rem);
  font-style: italic;
  line-height: 1.4;
  color: var(--primary-dark);
  font-weight: 400;
  text-wrap: balance;
}
.testimonial cite {
  display: block;
  font-family: var(--ui);
  font-style: normal;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-muted);
  margin-top: 1.5rem;
}

/* SERVICE AREA — REAL MAP */
.area { padding: 5rem 0; background: #ece4cf; border-top: 1px solid var(--rule); }
.area-grid {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 4rem;
  align-items: start;
}
.area-map-frame {
  aspect-ratio: 4 / 3;
  width: 100%;
  border: 0;
  filter: saturate(0.85) sepia(0.08);
  box-shadow: 0 1px 3px var(--shadow);
  background: #d4c8a8;
}
.area-info h2 { margin-bottom: 1.5rem; }
.area-address {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.5rem;
  line-height: 1.4;
  color: var(--primary-dark);
  margin: 1rem 0 1.5rem;
}
.area-meta {
  border-top: 1px solid var(--rule);
  padding-top: 1.5rem;
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.7;
}
.area-meta strong { font-style: normal; color: var(--ink); }

/* FOOTER */
.footer { background: var(--primary-dark); color: var(--bg); padding: 4.5rem 0 2rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 5fr 4fr 4fr;
  gap: 4rem;
  margin-bottom: 3rem;
}
.footer h3 {
  font-family: var(--ui);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
  font-weight: 600;
  font-style: normal;
}
.footer .wordmark {
  color: var(--bg);
  font-size: 1.6rem;
  display: inline-block;
  margin-bottom: 1.25rem;
}
.footer .wordmark sup { color: var(--accent-gold); }
.founders {
  font-family: var(--body);
  font-size: 0.95rem;
  color: rgba(245, 239, 225, 0.7);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 1.75rem;
}
.badges {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.badge {
  border: 1px solid rgba(245, 239, 225, 0.3);
  padding: 0.45rem 0.85rem;
  font-family: var(--ui);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 239, 225, 0.8);
}
.footer-nav { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-nav a {
  color: rgba(245, 239, 225, 0.75);
  text-decoration: none;
  font-family: var(--body);
  font-size: 1rem;
}
.footer-nav a:hover { color: var(--accent-gold); }
.nap {
  font-family: var(--body);
  color: rgba(245, 239, 225, 0.85);
  line-height: 1.7;
  font-size: 1rem;
}
.nap p { margin-bottom: 0.5rem; }
.nap-phone {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--bg);
  text-decoration: none;
}
.footer-bottom {
  border-top: 1px solid rgba(245, 239, 225, 0.15);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-family: var(--ui);
  font-size: 0.8rem;
  color: rgba(245, 239, 225, 0.5);
}
.footer-bottom em { font-style: italic; color: rgba(245, 239, 225, 0.6); }

/* ARTICLE / LONG-FORM PAGES */
.article-section { padding: 5rem 0; }
.article-section + .article-section { padding-top: 0; }
.article-prose {
  font-family: var(--body);
  font-size: 1.1875rem;
  line-height: 1.75;
  color: var(--ink);
}
.article-prose p { margin-bottom: 1.25rem; }
.article-prose h2 { margin: 3rem 0 1.25rem; }
.article-prose h3 { margin: 2.5rem 0 1rem; color: var(--primary-dark); }
.article-prose blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--primary-dark);
  border-left: 2px solid var(--accent-gold);
  padding: 0.5rem 0 0.5rem 1.5rem;
  margin: 2rem 0;
  line-height: 1.4;
}
.article-prose ul { margin: 1rem 0 1.5rem 1.5rem; }
.article-prose li { margin-bottom: 0.4rem; }

.article-figure { margin: 3rem 0; }
.article-figure img,
.article-figure .figure-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
  display: block;
}
.article-figure figcaption {
  font-family: var(--ui);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-muted);
  margin-top: 0.75rem;
}

/* OBIT DETAIL */
.obit-detail-hero {
  padding: 5rem 0 2rem;
  background: var(--bg);
}
.obit-detail-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 4rem;
  align-items: start;
}
.obit-detail-portrait {
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center top;
  box-shadow: 0 2px 8px var(--shadow);
}
.obit-detail-info h1 {
  font-size: clamp(2.5rem, 4.5vw, 3.5rem);
  margin: 0.5rem 0 1rem;
  color: var(--primary-dark);
  text-wrap: balance;
}
.obit-detail-dates {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--ink-soft);
  margin-bottom: 2rem;
}
.obit-meta-card {
  background: var(--card);
  padding: 1.75rem;
  border: 1px solid var(--rule);
  margin-top: 2rem;
}
.obit-meta-card dl {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 0.75rem 1.5rem;
}
.obit-meta-card dt {
  font-family: var(--ui);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-muted);
  align-self: center;
}
.obit-meta-card dd {
  font-family: var(--body);
  font-size: 1rem;
  color: var(--ink);
}
.obit-cta-row {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.btn {
  font-family: var(--ui);
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.85rem 1.5rem;
  border: 1px solid var(--primary-dark);
  color: var(--primary-dark);
  font-weight: 500;
  background: transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.btn:hover { background: var(--primary-dark); color: var(--bg); }
.btn--primary { background: var(--primary-dark); color: var(--bg); }
.btn--primary:hover { background: var(--primary); color: var(--bg); }
.btn--gold { border-color: var(--accent-gold); color: var(--accent-gold); }
.btn--gold:hover { background: var(--accent-gold); color: var(--primary-dark); }

/* CONDOLENCE WALL */
.condolences { padding: 5rem 0; background: #ece4cf; border-top: 1px solid var(--rule); }
.condolence-list { display: grid; gap: 1.5rem; margin-top: 2rem; }
.condolence-card {
  background: var(--card);
  padding: 1.5rem 1.75rem;
  border-left: 2px solid var(--accent-gold);
  box-shadow: 0 1px 3px var(--shadow);
}
.condolence-card p {
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  font-style: italic;
  margin-bottom: 0.75rem;
}
.condolence-meta {
  font-family: var(--ui);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-muted);
}
.condolence-form {
  background: var(--card);
  padding: 2rem;
  border: 1px solid var(--rule);
  margin-top: 2rem;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .obit-grid, .family-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .offer-grid, .preplan-inner, .area-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .obit-detail-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero { height: auto; min-height: auto; padding: 5rem 1.5rem; }
  .preplan { padding: 4rem 0; }
  .footer { padding: 3rem 0 1.5rem; }
}
@media (max-width: 600px) {
  .timeline-track { padding-left: 1.5rem; }
  .timeline-card { flex: 0 0 200px; }
  .obit-card .obit-body { padding: 1.25rem; }
  .preplan-form { padding: 1.5rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
