:root {
  --ink: #17130e;
  --ivory: #f6f1e8;
  --limestone: #ded2bd;
  --sand: #b9a77f;
  --brass: #af8741;
  --olive: #3c472c;
  --white: #fffaf1;
  --shadow: rgba(12, 10, 7, 0.45);
  --surface-dark: #17130e;
  --surface-dark-soft: #16130f;
  --surface-dark-deep: #0f0e0b;
  --surface-warm: #ebe0ce;
  --surface-warm-light: #f5efe4;
  --accent-brass-hover: #c59648;
  --accent-gold-soft: #f0d18c;
  --accent-gold-link: #f2d28f;
  --accent-earth: #5d4928;
  --accent-olive-earth: #4d3e25;
  --divider-ink: rgba(23, 19, 14, 0.16);
  --divider-ink-strong: rgba(23, 19, 14, 0.28);
  --divider-light-faint: rgba(255, 250, 241, 0.16);
  --divider-light-soft: rgba(255, 250, 241, 0.18);
  --divider-light: rgba(255, 250, 241, 0.2);
  --divider-light-strong: rgba(255, 250, 241, 0.24);
  --divider-light-action: rgba(255, 250, 241, 0.48);
  --divider-light-action-strong: rgba(255, 250, 241, 0.66);
  --surface-ink-hover: rgba(23, 19, 14, 0.06);
  --text-ink-muted: rgba(23, 19, 14, 0.62);
  --text-ink-soft: rgba(23, 19, 14, 0.68);
  --text-ink-secondary: rgba(23, 19, 14, 0.72);
  --text-ink-body: rgba(23, 19, 14, 0.78);
  --text-light-secondary: rgba(255, 250, 241, 0.72);
  --text-light-body: rgba(255, 250, 241, 0.74);
  --text-light-muted: rgba(255, 250, 241, 0.75);
  --text-light-strong: rgba(255, 250, 241, 0.84);
  --text-light-high: rgba(255, 250, 241, 0.9);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: clip;
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 22px clamp(20px, 4vw, 64px);
  color: var(--white);
  background: linear-gradient(to bottom, rgba(12, 10, 7, 0.54), rgba(12, 10, 7, 0));
}

.brand img {
  display: block;
  width: 82px;
  height: auto;
}

.desktop-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 34px);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.desktop-nav a,
.header-action {
  opacity: 0.92;
  transition: opacity 180ms ease, color 180ms ease;
}

.desktop-nav a:hover,
.header-action:hover {
  color: var(--accent-gold-soft);
  opacity: 1;
}

.header-action {
  border: 1px solid var(--divider-light-action);
  padding: 11px 15px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  appearance: none;
  background: transparent;
  border: 1px solid var(--divider-light-action);
  width: 44px;
  height: 44px;
  padding: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  color: var(--white);
  transition: border-color 180ms ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  border-color: var(--divider-light-action-strong);
  outline: none;
}

.nav-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
  transition: transform 220ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 19;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 8px;
  padding: 96px 28px 48px;
  background: linear-gradient(
    180deg,
    rgba(15, 14, 11, 0.98),
    rgba(23, 19, 14, 0.98)
  );
  color: var(--white);
  font-family: var(--serif);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.mobile-nav[data-open="true"] {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav a {
  display: block;
  padding: 18px 4px;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.5px;
  border-bottom: 1px solid var(--divider-light-faint);
  transition: color 180ms ease;
}

.mobile-nav a:last-of-type {
  border-bottom: 0;
}

.mobile-nav a:hover,
.mobile-nav a:focus-visible {
  color: var(--accent-gold-soft);
  outline: none;
}

body.nav-open {
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.hero-image,
.sun-flare,
.sun-flare-fallback,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
  z-index: -3;
}

.sun-flare {
  z-index: 1;
  display: block;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.9;
}

.sun-flare-fallback {
  --sun-glow-start: 0.46;
  --sun-glow-end: 0.72;
  z-index: 1;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: var(--sun-glow-start);
  background:
    radial-gradient(circle at 82% 16%, rgba(255, 246, 190, 0.82) 0 2.2%, rgba(255, 190, 82, 0.46) 4.8%, rgba(255, 190, 82, 0.16) 12%, transparent 25%),
    radial-gradient(circle at 62% 31%, rgba(255, 208, 115, 0.18) 0 2.5%, transparent 7%),
    radial-gradient(circle at 51% 39%, rgba(255, 236, 174, 0.13) 0 2.8%, transparent 8%),
    linear-gradient(131deg, transparent 42%, rgba(255, 220, 138, 0.2) 47%, transparent 58%);
  animation: sun-breathe 8s ease-in-out infinite alternate;
}

.hero.flare-webgl-ready .sun-flare-fallback {
  --sun-glow-start: 0.16;
  --sun-glow-end: 0.28;
  animation-duration: 12s;
}

.hero.flare-webgl-unavailable .sun-flare {
  display: none;
}

@keyframes sun-breathe {
  from {
    opacity: var(--sun-glow-start);
    transform: scale(1);
  }

  to {
    opacity: var(--sun-glow-end);
    transform: scale(1.015);
  }
}

.hero-shade {
  z-index: 0;
  background:
    radial-gradient(circle at 76% 18%, rgba(248, 193, 98, 0.08), transparent 30%),
    linear-gradient(90deg, rgba(10, 9, 7, 0.68) 0%, rgba(10, 9, 7, 0.46) 44%, rgba(10, 9, 7, 0.58) 100%),
    linear-gradient(180deg, rgba(10, 9, 7, 0.26), rgba(10, 9, 7, 0.1) 46%, rgba(10, 9, 7, 0.68));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(980px, calc(100% - 40px));
  margin-top: 56px;
  text-align: center;
}

.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(54px, 8vw, 124px);
  font-weight: 500;
  line-height: 0.91;
  letter-spacing: 0;
  text-wrap: balance;
  text-shadow: 0 20px 60px var(--shadow);
}

.hero p {
  width: min(620px, 100%);
  margin: 30px auto 0;
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.35;
  text-shadow: 0 14px 34px var(--shadow);
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  border: 1px solid var(--divider-light-action-strong);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--brass);
  border-color: var(--brass);
  color: var(--white);
}

.button-primary:hover {
  background: var(--accent-brass-hover);
  border-color: var(--accent-brass-hover);
}

.button-secondary {
  background: rgba(12, 10, 7, 0.3);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.button-secondary:hover {
  background: var(--divider-light-faint);
}

.trust-strip {
  position: absolute;
  z-index: 2;
  left: clamp(20px, 4vw, 64px);
  right: clamp(20px, 4vw, 64px);
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border-top: 1px solid var(--divider-light-strong);
  background: rgba(13, 12, 9, 0.42);
  backdrop-filter: blur(14px);
}

.trust-strip span {
  min-height: 70px;
  display: grid;
  place-items: center;
  padding: 0 14px;
  color: var(--text-light-high);
  font-family: var(--serif);
  font-size: clamp(15px, 1.35vw, 20px);
  border-left: 1px solid var(--divider-light-faint);
  text-align: center;
}

.trust-strip span:first-child {
  border-left: 0;
}

.section-band {
  background: var(--ivory);
}

.section-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.intro {
  padding: clamp(72px, 9vw, 130px) 0;
}

.intro-grid,
.process-grid,
.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: start;
}

.section-label {
  margin: 0 0 14px;
  color: var(--brass);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 5.4vw, 76px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

.intro-copy p,
.section-heading p:not(.section-label),
.gallery-copy p:not(.section-label),
.contact p:not(.section-label) {
  margin: 0;
  color: var(--text-ink-body);
  font-size: clamp(17px, 1.55vw, 21px);
  line-height: 1.7;
}

.section-heading p:not(.section-label) {
  margin-top: 24px;
}

.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.proof-row span {
  padding: 12px 14px;
  background: rgba(175, 135, 65, 0.12);
  border: 1px solid rgba(175, 135, 65, 0.26);
  color: var(--accent-earth);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.credibility {
  padding: 0 0 clamp(76px, 9vw, 120px);
  background: var(--ivory);
}

.credibility-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--divider-ink);
  border-bottom: 1px solid var(--divider-ink);
}

.credibility article {
  min-height: 188px;
  padding: 26px 24px;
  border-left: 1px solid var(--divider-ink);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.credibility article:first-child {
  border-left: 0;
}

.credibility strong {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 500;
  line-height: 1;
}

.credibility span {
  color: var(--text-ink-soft);
  font-size: 14px;
  line-height: 1.55;
}

.memorials {
  padding: clamp(76px, 9vw, 130px) 0;
  background: var(--surface-dark-soft);
  color: var(--white);
}

.section-heading {
  max-width: 760px;
}

.memorial-list {
  margin-top: clamp(42px, 5vw, 72px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--divider-light-soft);
  border-bottom: 1px solid var(--divider-light-soft);
}

.memorial-list article {
  min-height: 300px;
  padding: 30px 26px;
  border-left: 1px solid var(--divider-light-soft);
}

.memorial-list article:first-child {
  border-left: 0;
}

.memorial-list span {
  color: var(--brass);
  font-family: var(--serif);
  font-size: 28px;
}

.memorial-list h3 {
  margin: 58px 0 18px;
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 500;
  line-height: 1;
}

.memorial-list p {
  margin: 0;
  color: var(--text-light-secondary);
  font-size: 15px;
  line-height: 1.65;
}

.process {
  padding: clamp(76px, 9vw, 130px) 0;
}

.breathing {
  position: relative;
  min-height: clamp(420px, 48vw, 640px);
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--surface-dark-deep);
  isolation: isolate;
}

.breathing::before,
.breathing::after {
  position: absolute;
  inset: 0;
  content: "";
}

.breathing::before {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(15, 14, 11, 0.32), rgba(15, 14, 11, 0.18)),
    url("assets/hero-memorial-park.png") center 58% / cover;
  transform: scale(1.02);
}

.breathing::after {
  z-index: -1;
  background:
    radial-gradient(circle at 70% 24%, rgba(175, 135, 65, 0.22), transparent 34%),
    linear-gradient(180deg, rgba(15, 14, 11, 0.32), rgba(15, 14, 11, 0.7));
}

.breathing-content {
  width: min(900px, calc(100% - 40px));
  text-align: center;
}

.breathing .section-label {
  color: var(--accent-gold-link);
}

.breathing p:not(.section-label) {
  max-width: 760px;
  margin: 0 auto;
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 78px);
  font-weight: 500;
  line-height: 0.98;
  text-wrap: balance;
  text-shadow: 0 20px 60px var(--shadow);
}

.families {
  padding: clamp(76px, 9vw, 130px) 0;
  background: var(--surface-warm);
}

.families-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: start;
}

.families-copy p {
  margin: 0;
  color: var(--text-ink-body);
  font-size: clamp(18px, 1.7vw, 23px);
  line-height: 1.65;
}

.families-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  background: var(--divider-ink);
  border: 1px solid var(--divider-ink);
}

.families-notes span {
  min-height: 76px;
  display: grid;
  place-items: center;
  padding: 14px;
  background: var(--surface-warm);
  color: var(--accent-olive-earth);
  font-family: var(--serif);
  font-size: clamp(18px, 1.8vw, 25px);
  text-align: center;
}

.resources {
  padding: clamp(76px, 9vw, 130px) 0;
  background: var(--surface-warm-light);
}

.resources-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: start;
}

.resource-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--divider-ink);
}

.resource-list article {
  padding: 24px 0;
  border-bottom: 1px solid var(--divider-ink);
}

.resource-list h3 {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 500;
  line-height: 1.05;
}

.resource-list p {
  margin: 0;
  color: var(--text-ink-secondary);
  font-size: 16px;
  line-height: 1.65;
}

.appointment {
  padding: clamp(76px, 9vw, 130px) 0;
  background: var(--surface-dark);
  color: var(--white);
}

.appointment-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: start;
}

.appointment p:not(.section-label) {
  max-width: 680px;
  margin: 28px 0 0;
  color: var(--text-light-body);
  font-size: clamp(17px, 1.55vw, 21px);
  line-height: 1.7;
}

.appointment-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--divider-light);
}

.appointment-list span {
  padding: 22px 0;
  border-bottom: 1px solid var(--divider-light);
  color: var(--text-light-strong);
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 31px);
  line-height: 1.1;
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--divider-ink);
}

.steps li {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 26px;
  padding: 26px 0;
  border-bottom: 1px solid var(--divider-ink);
}

.steps strong {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
}

.steps span {
  color: var(--text-ink-secondary);
  font-size: 16px;
  line-height: 1.65;
}

.gallery {
  min-height: 700px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  background: var(--surface-dark-deep);
  color: var(--white);
}

.gallery-image {
  min-height: 620px;
  background:
    linear-gradient(90deg, rgba(15, 14, 11, 0.08), rgba(15, 14, 11, 0.16)),
    url("assets/hero-memorial-park.png") center / cover;
}

.gallery-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 6vw, 96px);
}

.gallery-copy p:not(.section-label) {
  color: var(--text-light-muted);
  margin-top: 26px;
}

.text-link {
  width: max-content;
  margin-top: 32px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--brass);
  color: var(--accent-gold-link);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact {
  padding: clamp(76px, 9vw, 130px) 0;
  background: var(--surface-warm);
}

.contact-panel {
  align-items: center;
  padding-top: 64px;
  border-top: 1px solid var(--divider-ink);
}

.contact .button {
  color: var(--white);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.contact-actions .button {
  margin-top: 0;
}

.button-outline {
  border-color: var(--divider-ink-strong);
  color: var(--ink);
  background: transparent;
}

.button-outline:hover {
  background: var(--surface-ink-hover);
}

.contact .button-outline {
  color: var(--ink);
}

.contact-detail {
  margin-top: 22px !important;
  color: var(--text-ink-muted) !important;
  font-size: 14px !important;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.contact-form {
  margin-top: clamp(56px, 7vw, 88px);
  padding-top: clamp(48px, 6vw, 72px);
  border-top: 1px solid var(--divider-ink);
}

.contact-form-bot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form-header {
  max-width: 640px;
  margin: 0 0 clamp(36px, 4vw, 56px);
}

.contact-form-header h3 {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: clamp(32px, 3.8vw, 48px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0;
  text-wrap: balance;
}

.contact-form-note {
  margin: 0 !important;
  color: var(--text-ink-body) !important;
  font-size: clamp(15px, 1.3vw, 17px) !important;
  line-height: 1.6 !important;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 2.2vw, 28px);
}

.field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.field-full {
  grid-column: 1 / -1;
}

.field-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
}

.field-optional {
  color: var(--text-ink-muted);
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.field input,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--divider-ink);
  border-radius: 2px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.4;
  transition: border-color 180ms ease, background 180ms ease;
}

.field textarea {
  resize: vertical;
  min-height: 120px;
  font-family: var(--sans);
}

.field input:hover,
.field textarea:hover {
  border-color: var(--divider-ink-strong);
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--brass);
  background: var(--surface-warm-light);
}

.field input:invalid:not(:placeholder-shown),
.field textarea:invalid:not(:placeholder-shown) {
  border-color: var(--accent-earth);
}

.contact-form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 28px;
  margin-top: clamp(28px, 3vw, 40px);
}

.contact-form-actions .button {
  margin: 0;
}

.contact-form-privacy {
  margin: 0 !important;
  flex: 1 1 240px;
  color: var(--text-ink-muted) !important;
  font-size: 13px !important;
  line-height: 1.5 !important;
}

.thank-you-page {
  min-height: 100vh;
  background: var(--ivory);
  display: grid;
  place-items: center;
  padding: 140px 20px 80px;
}

.thank-you {
  width: min(720px, 100%);
}

.thank-you-inner {
  background: var(--white);
  padding: clamp(40px, 5vw, 72px);
  border: 1px solid var(--divider-ink);
  text-align: center;
}

.thank-you h1 {
  margin: 14px 0 22px;
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
}

.thank-you-lead {
  margin: 0 0 14px;
  color: var(--text-ink-body);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.65;
}

.thank-you-secondary {
  margin: 0 0 32px;
  color: var(--text-ink-muted);
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.6;
}

.thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 28px;
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: auto 1fr auto auto;
    gap: 12px;
  }

  .desktop-nav {
    display: none;
  }

  .header-action {
    justify-self: end;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .hero-content {
    padding-bottom: 120px;
  }

  .trust-strip {
    left: 0;
    right: 0;
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-strip span {
    min-height: 54px;
  }

  .intro-grid,
  .process-grid,
  .contact-panel,
  .resources-grid,
  .families-grid,
  .appointment-grid,
  .gallery {
    grid-template-columns: 1fr;
  }

  .credibility-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .credibility article:nth-child(odd) {
    border-left: 0;
  }

  .memorial-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .memorial-list article:nth-child(odd) {
    border-left: 0;
  }

  .gallery-copy {
    padding: 56px 20px 72px;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-form-actions .button {
    width: 100%;
  }

  .contact-form-privacy {
    text-align: center;
  }
}

@media (max-width: 620px) {
  .site-header {
    width: 100%;
    padding: 16px 18px;
    gap: 14px;
  }

  .brand img {
    width: 66px;
  }

  .header-action {
    padding: 9px 10px;
    font-size: 10px;
    white-space: nowrap;
  }

  .hero {
    min-height: max(100svh, 860px);
    place-items: start center;
  }

  .hero-image {
    object-position: 64% center;
  }

  .sun-flare {
    opacity: 0.62;
  }

  .sun-flare-fallback {
    --sun-glow-start: 0.32;
    --sun-glow-end: 0.48;
    background:
      radial-gradient(circle at 78% 14%, rgba(255, 242, 190, 0.72) 0 2.4%, rgba(255, 190, 82, 0.32) 5%, rgba(255, 190, 82, 0.11) 13%, transparent 26%),
      radial-gradient(circle at 54% 30%, rgba(255, 208, 115, 0.14) 0 3%, transparent 8%),
      linear-gradient(132deg, transparent 42%, rgba(255, 220, 138, 0.15) 48%, transparent 60%);
  }

  .hero.flare-webgl-ready .sun-flare-fallback {
    --sun-glow-start: 0.12;
    --sun-glow-end: 0.22;
  }

  .hero-content {
    width: calc(100% - 32px);
    margin-top: 0;
    padding-top: clamp(190px, 30svh, 260px);
    padding-bottom: 140px;
    text-align: left;
  }

  .hero h1 {
    font-size: clamp(48px, 15vw, 68px);
  }

  .hero p {
    max-width: 100%;
    margin-left: 0;
    font-size: 19px;
    text-wrap: pretty;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .button {
    width: 100%;
  }

  .trust-strip {
    grid-template-columns: 1fr 1fr;
  }

  .trust-strip span {
    font-size: 14px;
    overflow-wrap: normal;
  }

  .memorial-list {
    grid-template-columns: 1fr;
  }

  .credibility-grid,
  .families-notes {
    grid-template-columns: 1fr;
  }

  .credibility article {
    min-height: 150px;
    border-left: 0;
    border-top: 1px solid var(--divider-ink);
  }

  .credibility article:first-child {
    border-top: 0;
  }

  .memorial-list article {
    min-height: 240px;
    border-left: 0;
    border-top: 1px solid var(--divider-light-soft);
  }

  .memorial-list article:first-child {
    border-top: 0;
  }

  .steps li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .breathing {
    min-height: 430px;
  }

  .breathing-content {
    text-align: left;
  }

  .breathing p:not(.section-label) {
    font-size: clamp(38px, 12vw, 54px);
  }

  .gallery-image {
    min-height: 430px;
  }
}
