:root {
  --bg: #faf9f6;
  --surface: #ffffff;
  --milk: #f3f0e9;
  --muted: #ebe8e0;
  --line: #dedbd2;
  --text: #2f3030;
  --subtext: #6d706a;
  --olive: #6f8068;
  --olive-dark: #516149;
  --olive-soft: #eef2ea;
  --gold: #b69a67;
  --shadow: 0 24px 70px rgba(57, 57, 49, 0.11);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

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

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(250, 249, 246, 0.84);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(222, 219, 210, 0.68);
  box-shadow: 0 12px 34px rgba(57, 57, 49, 0.045);
}

.header-inner {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
  width: fit-content;
  min-width: 190px;
}

.brand img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 50%;
  mix-blend-mode: multiply;
}

.brand span {
  display: grid;
  gap: 1px;
  line-height: 1.1;
}

.brand strong {
  color: var(--text);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.09em;
}

.brand small {
  color: var(--subtext);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 3px;
  justify-content: center;
  min-height: 44px;
  padding: 5px;
  border: 1px solid rgba(222, 219, 210, 0.78);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--subtext);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.main-nav a:hover {
  background: var(--olive-soft);
}

.main-nav a:hover,
.phone-link:hover,
.footer-grid a:hover {
  color: var(--olive-dark);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: flex-end;
  min-width: 0;
}

.request-form select {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text);
  padding: 8px 28px 8px 10px;
  font: inherit;
  min-height: 38px;
}

.city-picker {
  position: relative;
  z-index: 25;
}

.city-trigger {
  width: 218px;
  min-height: 48px;
  display: grid;
  grid-template-columns: 30px 1fr 18px;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(222, 219, 210, 0.92);
  border-radius: 999px;
  padding: 5px 10px 5px 6px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.92), rgba(250,249,246,0.78)),
    var(--surface);
  color: var(--text);
  box-shadow: 0 10px 24px rgba(57, 57, 49, 0.07);
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.city-trigger:focus {
  outline: none;
}

.city-trigger:focus-visible {
  border-color: rgba(111, 128, 104, 0.6);
  box-shadow: 0 0 0 4px rgba(111, 128, 104, 0.14), 0 14px 30px rgba(57, 57, 49, 0.1);
}

.city-trigger:hover,
.city-picker.is-open .city-trigger {
  border-color: rgba(111, 128, 104, 0.48);
  box-shadow: 0 14px 30px rgba(57, 57, 49, 0.1);
}

.phone-link {
  min-height: 48px;
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(222, 219, 210, 0.92);
  border-radius: 999px;
  padding: 5px 14px 5px 6px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.94), rgba(250,249,246,0.8)),
    var(--surface);
  color: var(--text);
  box-shadow: 0 10px 24px rgba(57, 57, 49, 0.06);
  font-weight: 800;
  white-space: nowrap;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.phone-link:hover {
  border-color: rgba(111, 128, 104, 0.48);
  box-shadow: 0 14px 30px rgba(57, 57, 49, 0.1);
}

.phone-icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--olive);
  color: #fff;
}

.phone-icon svg {
  width: 15px;
  height: 15px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.phone-text {
  display: grid;
  gap: 1px;
  line-height: 1.1;
}

.phone-text small {
  color: var(--subtext);
  font-size: 10px;
  font-weight: 700;
}

.phone-text strong {
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
}

.city-icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--olive-soft);
  color: var(--olive-dark);
}

.city-icon svg,
.city-chevron svg {
  width: 16px;
  height: 16px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.city-icon svg {
  fill: currentColor;
  stroke: none;
}

.city-text {
  display: grid;
  gap: 1px;
  min-width: 0;
}

.city-text small {
  color: var(--subtext);
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
}

.city-text strong {
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.18;
  white-space: nowrap;
}

.city-chevron {
  color: var(--olive-dark);
  transition: transform 0.2s ease;
}

.city-picker.is-open .city-chevron {
  transform: rotate(180deg);
}

.city-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 218px;
  display: grid;
  gap: 4px;
  padding: 8px;
  border: 1px solid rgba(222, 219, 210, 0.9);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 54px rgba(57, 57, 49, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px) scale(0.98);
  transform-origin: top left;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.city-picker.is-open .city-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.city-menu button {
  width: 100%;
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0;
  border-radius: 10px;
  padding: 9px 11px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  text-align: left;
}

.city-menu button:focus {
  outline: none;
}

.city-menu button:focus-visible {
  box-shadow: inset 0 0 0 2px rgba(111, 128, 104, 0.36);
}

.city-menu button:hover,
.city-menu button.is-active {
  background: var(--olive-soft);
  color: var(--olive-dark);
}

.city-menu button.is-active::after {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--olive);
}

.messengers {
  display: flex;
  gap: 6px;
}

.messengers a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--olive-dark);
  background: var(--surface);
}

.messengers a:hover {
  border-color: rgba(111, 128, 104, 0.45);
  background: var(--olive-soft);
}

.messengers svg {
  width: 17px;
  height: 17px;
  display: block;
  fill: currentColor;
}

.messengers a[aria-label="WhatsApp"] svg {
  width: 18px;
  height: 18px;
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius);
  padding: 12px 18px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.button-primary {
  background: var(--olive);
  color: #fff;
  box-shadow: 0 12px 24px rgba(81, 97, 73, 0.18);
}

.button-primary:hover {
  background: var(--olive-dark);
}

.button-ghost {
  color: var(--olive-dark);
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--line);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  display: block;
  margin: 5px auto;
  background: var(--text);
}

.section {
  padding: 96px 0;
}

.section-soft {
  background:
    radial-gradient(circle at 88% 14%, rgba(111, 128, 104, 0.13), transparent 30%),
    linear-gradient(180deg, #fff 0%, var(--bg) 72%);
}

.section-muted {
  background: var(--milk);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: min(760px, calc(100vh - 88px));
  display: flex;
  align-items: center;
  padding: 112px 0 96px;
  overflow: hidden;
  background: #f8f6ef;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero::before {
  background: url("assets/hero-memorial-care.jpg") center right / cover no-repeat;
}

.hero::after {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(250, 249, 246, 0.96) 0%, rgba(250, 249, 246, 0.84) 34%, rgba(250, 249, 246, 0.24) 62%, rgba(250, 249, 246, 0.06) 100%),
    linear-gradient(180deg, rgba(250, 249, 246, 0.42) 0%, rgba(250, 249, 246, 0.08) 58%, rgba(250, 249, 246, 0.78) 100%);
}

.hero-grid,
.request-grid,
.process-grid,
.regular-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-grid {
  display: block;
}

.hero-copy {
  max-width: 720px;
}

.hero-copy h1 {
  margin: 0;
  max-width: 680px;
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1.06;
  letter-spacing: 0;
}

.lead {
  max-width: 640px;
  margin: 24px 0 0;
  color: var(--subtext);
  font-size: 18px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--olive-dark);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.trust-row span,
.mini-list span,
.regular-options span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--olive-dark);
  background: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 700;
}

.hero-visual {
  min-height: 560px;
  position: relative;
}

.memorial-scene {
  height: 100%;
  min-height: 560px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(140deg, rgba(250, 249, 246, 0.35), rgba(111, 128, 104, 0.12)),
    linear-gradient(180deg, #f8f6ef 0%, #e9e4da 100%);
  border: 1px solid rgba(222, 219, 210, 0.88);
  box-shadow: var(--shadow);
}

.stone-shape {
  position: absolute;
  left: 16%;
  bottom: 18%;
  width: 42%;
  height: 58%;
  border: 9px solid rgba(47, 48, 48, 0.84);
  border-bottom: 0;
  border-radius: 52% 52% 0 0 / 34% 34% 0 0;
}

.stone-shape::after {
  content: "";
  position: absolute;
  left: -12%;
  right: -14%;
  bottom: -34px;
  height: 24px;
  border: 9px solid rgba(47, 48, 48, 0.84);
  border-top-width: 7px;
}

.branch {
  position: absolute;
  left: 49%;
  bottom: 19%;
  width: 150px;
  height: 230px;
  border-left: 7px solid var(--olive);
  border-radius: 60% 0 0 0;
  transform: rotate(13deg);
}

.branch span {
  position: absolute;
  width: 56px;
  height: 82px;
  border: 7px solid var(--olive);
  border-left: 0;
  border-bottom: 0;
  border-radius: 0 90% 0 90%;
}

.branch span:nth-child(1) { left: -44px; top: 34px; transform: rotate(-62deg); }
.branch span:nth-child(2) { left: 16px; top: 14px; transform: rotate(8deg); }
.branch span:nth-child(3) { left: -34px; top: 112px; transform: rotate(-62deg); }
.branch span:nth-child(4) { left: 32px; top: 98px; transform: rotate(24deg); }

.path-lines {
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background:
    linear-gradient(104deg, transparent 0 31%, rgba(255, 255, 255, 0.45) 31% 35%, transparent 35%),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.34) 0 2px, transparent 2px 44px);
  opacity: 0.72;
}

.soft-card {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: min(280px, calc(100% - 48px));
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(222, 219, 210, 0.9);
  box-shadow: 0 18px 42px rgba(57, 57, 49, 0.12);
}

.soft-card strong,
.soft-card small {
  display: block;
}

.soft-card small {
  color: var(--subtext);
  margin-top: 4px;
}

.services-grid {
  display: grid;
  gap: 18px;
}

.service-card,
.faq-list details,
.request-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.icon-mark {
  color: var(--olive);
  font-weight: 800;
  font-size: 13px;
}

h2,
h3,
p {
  overflow-wrap: anywhere;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin: 10px 0 8px;
  font-size: 20px;
  line-height: 1.25;
}

p {
  margin: 0;
  color: var(--subtext);
}

.section-head {
  max-width: 720px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-head.left {
  margin: 0;
  text-align: left;
}

.process-cta {
  margin-top: 34px;
}

.section-head p:not(.eyebrow) {
  margin-top: 14px;
}

.services-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  min-height: 360px;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card:hover {
  transform: translateY(-2px);
  border-color: rgba(111, 128, 104, 0.26);
  box-shadow: 0 18px 46px rgba(57, 57, 49, 0.09);
}

.service-card h3,
.service-card p,
.service-card ul,
.service-footer {
  padding-left: 24px;
  padding-right: 24px;
}

.service-card h3 {
  margin-top: 20px;
}

.service-card ul {
  display: grid;
  gap: 9px;
  margin: 14px 0 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 22px;
  color: var(--subtext);
  line-height: 1.35;
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 50%, var(--olive-dark) 0 2px, transparent 2.5px),
    linear-gradient(135deg, rgba(111, 128, 104, 0.16), rgba(184, 151, 90, 0.24));
  border: 1px solid rgba(111, 128, 104, 0.28);
  box-shadow: 0 0 0 3px rgba(111, 128, 104, 0.06);
  transform: translateY(-50%);
}

.service-footer {
  display: grid;
  gap: 12px;
  margin-top: auto;
  padding-top: 22px;
  padding-bottom: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,0.86));
}

.service-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  min-height: 46px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--olive-dark);
}

.service-price span {
  color: var(--subtext);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.service-price strong {
  color: var(--text);
  font-size: 25px;
  line-height: 1;
  font-weight: 800;
  white-space: nowrap;
}

.service-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 52px;
  padding: 12px 16px;
  border: 1px solid rgba(111, 128, 104, 0.34);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--olive-dark);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
  box-shadow: 0 10px 26px rgba(57, 57, 49, 0.08);
}

.service-cta::after {
  content: "";
  width: 16px;
  height: 16px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 12h14m-6-6 6 6-6 6' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 12h14m-6-6 6 6-6 6' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
}

.service-cta:hover {
  transform: translateY(-1px);
  border-color: rgba(111, 128, 104, 0.52);
  background: var(--olive-soft);
  box-shadow: 0 14px 32px rgba(57, 57, 49, 0.11);
}

.service-before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 240px;
  border-bottom: 1px solid var(--line);
}

.service-photo-comparison {
  position: relative;
  display: block;
  height: 330px;
  min-height: 330px;
  background: var(--milk);
}

.service-photo-comparison img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
}

.service-before-after > div {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(130deg, rgba(47,48,48,0.16), transparent 42%),
    radial-gradient(circle at 62% 58%, rgba(111,128,104,0.24) 0 16%, transparent 17%),
    linear-gradient(135deg, #d8d2c6, #ece7dd);
}

.service-before-after > div:first-child {
  filter: saturate(0.72);
}

.service-before-after > div:first-child::before,
.service-before-after > div:last-child::before {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 24%;
  height: 9px;
  border-radius: 999px;
  background: rgba(47, 48, 48, 0.5);
}

.service-before-after > div:last-child {
  background:
    linear-gradient(130deg, rgba(255,255,255,0.48), transparent 46%),
    radial-gradient(circle at 64% 54%, rgba(111,128,104,0.36) 0 16%, transparent 17%),
    linear-gradient(135deg, #f7f5ee, #e7dfd0);
}

.service-before-after span,
.service-photo-comparison .before-label,
.service-photo-comparison .after-label {
  position: absolute;
  top: 10px;
  z-index: 2;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--text);
  font-size: 11px;
  font-weight: 800;
}

.service-photo-comparison .before-label {
  left: 10px;
}

.service-photo-comparison .after-label {
  left: calc(50% + 10px);
}

.service-before-after > div span {
  left: 10px;
}

.service-before-after.deep > div:first-child {
  background:
    radial-gradient(circle at 54% 54%, rgba(64,72,56,0.3) 0 20%, transparent 21%),
    repeating-linear-gradient(25deg, rgba(89,92,80,0.16) 0 4px, transparent 4px 18px),
    linear-gradient(135deg, #b9b3a7, #d6d0c2);
}

.service-before-after.paint > div:first-child {
  background:
    linear-gradient(90deg, rgba(47,48,48,0.38) 0 6px, transparent 6px 36px),
    linear-gradient(135deg, #c7beb0, #e3ded4);
}

.service-before-after.paint > div:last-child {
  background:
    linear-gradient(90deg, rgba(111,128,104,0.54) 0 6px, transparent 6px 36px),
    linear-gradient(135deg, #f8f6ef, #e8e0d2);
}

.service-before-after.flowers > div:last-child,
.service-before-after.candle > div:last-child {
  background:
    radial-gradient(circle at 52% 56%, rgba(182,154,103,0.42) 0 13%, transparent 14%),
    radial-gradient(circle at 68% 42%, rgba(111,128,104,0.42) 0 12%, transparent 13%),
    linear-gradient(135deg, #f7f5ee, #e9e0d1);
}

.service-before-after.candle > div:last-child::after {
  content: "";
  position: absolute;
  left: 56%;
  top: 34%;
  width: 16px;
  height: 24px;
  border-radius: 50% 50% 45% 45%;
  background: rgba(182, 154, 103, 0.9);
  box-shadow: 0 0 18px rgba(182, 154, 103, 0.45);
}

.service-before-after.season > div:first-child {
  background:
    radial-gradient(circle at 46% 58%, rgba(182,154,103,0.36) 0 7%, transparent 8%),
    radial-gradient(circle at 64% 44%, rgba(182,154,103,0.3) 0 8%, transparent 9%),
    linear-gradient(135deg, #cfc6b6, #ece5d8);
}

.service-before-after.season > div:last-child {
  background:
    radial-gradient(circle at 60% 50%, rgba(255,255,255,0.76) 0 16%, transparent 17%),
    linear-gradient(135deg, #f8f7f2, #e5ded0);
}

ul {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--subtext);
}

.steps {
  display: grid;
  gap: 14px;
}

.steps article {
  position: relative;
  padding: 22px 22px 22px 76px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.steps span {
  position: absolute;
  left: 22px;
  top: 22px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--olive-soft);
  color: var(--olive-dark);
  font-weight: 800;
}

.steps h3 {
  margin-top: 0;
}

.mini-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.regular-care {
  background: var(--text);
  color: #fff;
}

.regular-care p,
.regular-care .eyebrow {
  color: rgba(255,255,255,0.72);
}

.regular-cta {
  margin-top: 26px;
  background: #fff;
  color: var(--olive-dark);
  border-color: rgba(255,255,255,0.24);
  box-shadow: none;
}

.regular-cta:hover {
  background: var(--olive-soft);
}

.regular-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.regular-options span {
  gap: 10px;
  min-height: 44px;
  padding: 10px 16px 10px 12px;
  color: #fff;
  border-color: rgba(255,255,255,0.18);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.06));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
}

.regular-options svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.88);
}

.regular-options svg path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 920px;
  margin: 0 auto;
}

.faq-head {
  margin-bottom: 30px;
}

.faq-list details {
  padding: 20px 24px;
}

.faq-list summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::after {
  content: "";
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-right: 2px solid var(--olive);
  border-bottom: 2px solid var(--olive);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.faq-list details[open] summary::after {
  transform: rotate(225deg);
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list p {
  margin-top: 12px;
}

.request-section {
  background:
    radial-gradient(circle at 18% 12%, rgba(111,128,104,0.1), transparent 34%),
    var(--milk);
}

.request-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.form-hidden {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.request-form label {
  display: grid;
  gap: 7px;
  color: var(--text);
  font-weight: 800;
  font-size: 13px;
}

.request-form input,
.request-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  font: inherit;
  background: #fff;
  color: var(--text);
}

.request-form textarea {
  resize: vertical;
}

.form-note {
  font-size: 12px;
}

.form-status {
  display: none;
  padding: 12px 14px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 700;
}

.form-status.is-success,
.form-status.is-error {
  display: block;
}

.form-status.is-success {
  background: var(--olive-soft);
  color: var(--olive-dark);
}

.form-status.is-error {
  background: #f5e9e4;
  color: #8a4d3b;
}

.contact-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.contact-strip a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.64);
  font-weight: 800;
  color: var(--olive-dark);
}

.contact-strip svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-strip .fill-icon {
  fill: currentColor;
  stroke: none;
}

.about-section {
  padding: 72px 0;
  background:
    radial-gradient(circle at 82% 14%, rgba(111,128,104,0.09), transparent 30%),
    #fff;
}

.about-content {
  max-width: 1040px;
}

.about-portrait {
  float: left;
  width: min(34vw, 360px);
  margin: 4px 32px 18px 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--milk);
  box-shadow: 0 18px 42px rgba(57, 57, 49, 0.1);
}

.about-portrait img {
  display: block;
  width: 100%;
  height: clamp(360px, 38vw, 480px);
  object-fit: cover;
  object-position: 50% 24%;
}

.about-story {
  margin-top: 16px;
}

.about-story p {
  margin: 0 0 10px;
  color: var(--subtext);
  font-size: 15px;
  line-height: 1.58;
}

.about-signature {
  display: block;
  clear: both;
  width: min(220px, 42vw);
  margin: 18px 0 0 auto;
  opacity: 0.78;
}

.site-footer {
  padding: 54px 0 24px;
  background: #fff;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 42px;
}

.footer-logo {
  width: 150px;
  height: 66px;
  object-fit: contain;
  object-position: left center;
  mix-blend-mode: multiply;
  margin-bottom: 14px;
}

.footer-grid nav,
.footer-contact {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-grid nav a,
.footer-contact a,
.footer-contact span {
  color: var(--subtext);
}

.footer-messengers {
  margin: 2px 0 4px;
}

.footer-messengers a {
  color: var(--olive-dark);
}

.copyright {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--subtext);
  font-size: 13px;
}

@media (max-width: 1080px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 1280px) {
  .header-actions .messengers {
    display: none;
  }
}

@media (max-width: 1120px) {
  .container {
    width: min(100% - 28px, 1240px);
  }

  .header-inner {
    min-height: 72px;
    display: flex;
    flex-wrap: wrap;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .main-nav,
  .header-actions {
    display: none;
    width: 100%;
  }

  body.nav-open .main-nav,
  body.nav-open .header-actions {
    display: grid;
  }

  body.nav-open .main-nav {
    justify-content: flex-start;
    justify-items: start;
    gap: 4px;
    padding-top: 14px;
    border: 0;
    background: transparent;
    box-shadow: none;
    margin-left: 0;
  }

  body.nav-open .main-nav a {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  body.nav-open .header-actions {
    grid-template-columns: 1fr;
    align-items: stretch;
    padding-bottom: 16px;
  }

  body.nav-open .header-actions .messengers {
    display: flex;
    justify-content: flex-start;
  }

  body.nav-open .city-picker,
  body.nav-open .city-trigger,
  body.nav-open .phone-link {
    width: 100%;
  }

  body.nav-open .city-menu {
    position: static;
    width: 100%;
    margin-top: 8px;
    box-shadow: none;
    transform-origin: top center;
    display: none;
  }

  body.nav-open .city-picker.is-open .city-menu {
    display: grid;
  }

  .hero,
  .section {
    padding: 64px 0;
  }

  .hero-grid,
  .request-grid,
  .process-grid,
  .regular-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero-visual,
  .memorial-scene {
    min-height: 420px;
  }

  .services-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    text-align: left;
    margin-left: 0;
  }

  .service-card {
    min-height: auto;
  }

  .service-before-after {
    min-height: 220px;
  }

  .about-portrait {
    float: none;
    width: 100%;
    max-width: 420px;
    margin: 0 0 22px;
  }

  .about-portrait img {
    height: 420px;
  }

  .about-story p {
    font-size: 16px;
  }

  .stone-shape {
    left: 12%;
    width: 48%;
    height: 55%;
    border-width: 7px;
  }

  .stone-shape::after {
    border-width: 7px;
    height: 20px;
  }

  .branch {
    left: 49%;
    height: 190px;
    transform: rotate(12deg) scale(0.82);
    transform-origin: bottom left;
  }
}

@media (max-width: 520px) {
  .site-header {
    position: sticky;
  }

  .brand {
    min-width: 0;
  }

  .brand strong {
    font-size: 16px;
  }

  .brand small {
    font-size: 8px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-copy h1 {
    font-size: 36px;
  }

  .lead {
    font-size: 16px;
  }

  .steps article {
    padding-left: 22px;
    padding-top: 68px;
  }
}
