:root {
  --bg: #f7fbff;
  --surface: #ffffff;
  --surface-2: #edf6ff;
  --ink: #203246;
  --muted: #56687b;
  --line: rgba(54, 92, 128, 0.14);
  --primary: #5f86b7;
  --primary-deep: #3d648f;
  --accent: #cfe3f6;
  --shadow: 0 20px 45px rgba(50, 85, 120, 0.12);
  --radius: 24px;
  --radius-sm: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: var(--primary-deep); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 251, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}
.brand-logo { height: 68px; width: auto; }
.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.97rem;
}
.site-nav a { color: var(--ink); }
.nav-cta {
  background: var(--primary-deep);
  color: #fff !important;
  padding: 11px 16px;
  border-radius: 999px;
}
.nav-cta:hover { text-decoration: none; opacity: 0.92; }
.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 10px 14px;
  font: inherit;
  color: var(--ink);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 20%, rgba(255,255,255,0.95), rgba(255,255,255,0) 35%),
    linear-gradient(135deg, #dbeaf8 0%, #bed6ee 38%, #9fbfe1 100%);
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.26);
}
.hero::before {
  width: 540px;
  height: 540px;
  right: -220px;
  top: -180px;
}
.hero::after {
  width: 360px;
  height: 360px;
  left: -120px;
  bottom: -140px;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.3));
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 32px;
  padding: 96px 0 82px;
}
.eyebrow,
.section-kicker,
.strapline {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--primary-deep);
}
.hero h1,
.section h2 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.03;
  margin: 10px 0 18px;
  letter-spacing: -0.02em;
}
.hero h1 { font-size: clamp(2.8rem, 6vw, 5rem); max-width: 11ch; }
.section h2 { font-size: clamp(2.2rem, 4vw, 3.3rem); max-width: 17ch; }
.lead {
  font-size: 1.1rem;
  max-width: 58ch;
  color: #28425d;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 20px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
}
.btn:hover { text-decoration: none; }
.btn-primary {
  background: var(--primary-deep);
  color: #fff;
}
.btn-secondary {
  background: rgba(255,255,255,0.74);
  border: 1px solid rgba(61, 100, 143, 0.16);
  color: var(--ink);
}
.hero-card,
.soft-card {
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(255,255,255,0.6);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}
.hero-card {
  padding: 28px;
  align-self: end;
}
.hero-card h2,
.soft-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  margin: 0 0 10px;
}
.hero-card ul,
.check-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}
.hero-card li,
.check-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
}
.hero-card li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 6px rgba(95, 134, 183, 0.16);
}

.scene-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 230px;
}
.scene {
  position: relative;
  overflow: hidden;
}
.scene::before,
.scene::after {
  content: "";
  position: absolute;
  inset: 0;
}
.scene-cemetery {
  background: linear-gradient(180deg, #dceaf8 0%, #ebf4fd 45%, #d4e6f6 100%);
}
.scene-cemetery::before {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.85), rgba(255,255,255,0) 50%),
    radial-gradient(circle at 20% 25%, rgba(255,255,255,0.7), rgba(255,255,255,0) 22%);
}
.scene-cemetery::after {
  background:
    linear-gradient(to top, #7ea372 0 18%, transparent 18%),
    radial-gradient(circle at 18% 83%, #60765b 0 1.8%, transparent 1.9%),
    radial-gradient(circle at 30% 81%, #71876b 0 2.1%, transparent 2.2%),
    radial-gradient(circle at 44% 82%, #6b8568 0 2%, transparent 2.1%),
    radial-gradient(circle at 57% 80%, #71866c 0 2.2%, transparent 2.3%),
    radial-gradient(circle at 70% 83%, #6c8569 0 2%, transparent 2.1%),
    radial-gradient(circle at 84% 82%, #647a60 0 1.8%, transparent 1.9%),
    linear-gradient(to top, transparent 0 18%, rgba(86, 111, 85, 0.38) 18% 21%, transparent 21%),
    radial-gradient(circle at 23% 76%, #d7dde2 0 2.5%, transparent 2.6%),
    radial-gradient(circle at 35% 75%, #d2d9df 0 2.8%, transparent 2.9%),
    radial-gradient(circle at 48% 76%, #d2d9df 0 2.2%, transparent 2.3%),
    radial-gradient(circle at 61% 75%, #d2d9df 0 2.7%, transparent 2.8%),
    radial-gradient(circle at 74% 76%, #d7dde2 0 2.5%, transparent 2.6%);
  opacity: 0.96;
}
.scene-crematorium {
  background: linear-gradient(180deg, #d8e8f7 0%, #eef6fd 50%, #d7e7f8 100%);
}
.scene-crematorium::before {
  background:
    linear-gradient(to top, #86a57b 0 20%, transparent 20%),
    linear-gradient(90deg, transparent 0 46%, #d7dfe7 46% 78%, transparent 78%),
    linear-gradient(180deg, transparent 0 42%, #bbc7d0 42% 62%, transparent 62%),
    linear-gradient(90deg, transparent 0 59%, #eff4f8 59% 66%, transparent 66%),
    radial-gradient(circle at 80% 24%, rgba(255,255,255,0.72), rgba(255,255,255,0) 18%);
}
.scene-crematorium::after {
  background:
    linear-gradient(90deg, transparent 0 36%, #909ca7 36% 39%, transparent 39%),
    linear-gradient(90deg, transparent 0 76%, #909ca7 76% 79%, transparent 79%),
    linear-gradient(90deg, transparent 0 57%, #8295a8 57% 58.8%, transparent 58.8%),
    linear-gradient(180deg, transparent 0 55%, rgba(92, 114, 137, 0.25) 55% 56.5%, transparent 56.5%),
    linear-gradient(180deg, rgba(255,255,255,0.84), rgba(255,255,255,0) 42%);
}

.section { padding: 88px 0; }
.section-muted { background: var(--surface-2); }
.two-col {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
  align-items: start;
}
.info-panel,
.contact-card,
.sports-card { padding: 28px; }
.info-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.card-grid,
.credentials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 28px;
}
.service-card,
.credential-card { padding: 26px; }
.sports-layout { align-items: center; }
.small-note { color: var(--muted); font-size: 0.95rem; }
.org-logo { height: 88px; width: auto; object-fit: contain; margin-bottom: 10px; }
.text-link { font-weight: 600; }
.contact-band {
  background: linear-gradient(180deg, #d8e8f7 0%, #eef6fd 100%);
}
.contact-layout { align-items: center; }
.site-footer {
  border-top: 1px solid var(--line);
  background: #f2f7fc;
}
.footer-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  align-items: center;
  padding: 28px 0;
}
.footer-logo { height: 70px; width: auto; }
.footer-small { color: var(--muted); font-size: 0.95rem; }

p { margin: 0 0 15px; }
ul { margin: 0; }

@media (max-width: 960px) {
  .hero-grid,
  .two-col,
  .footer-wrap,
  .info-list,
  .card-grid,
  .credentials-grid,
  .scene-strip {
    grid-template-columns: 1fr;
  }

  .scene-strip { min-height: 360px; }
  .hero h1 { max-width: 12ch; }
  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 16px;
    background: rgba(255,255,255,0.98);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 12px;
    min-width: 220px;
    display: none;
    flex-direction: column;
    align-items: stretch;
  }
  .site-nav.open { display: flex; }
  .menu-toggle { display: inline-flex; }
}

@media (max-width: 640px) {
  .brand-logo { height: 56px; }
  .hero-grid { padding: 72px 0 60px; }
  .section { padding: 68px 0; }
  .hero-card,
  .soft-card { border-radius: 20px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
}
