:root {
  --ink: #16211f;
  --muted: #60716d;
  --green: #24483f;
  --green-2: #3f7166;
  --teal: #dcefe9;
  --teal-2: #edf7f4;
  --copper: #bf7047;
  --paper: #fffdf8;
  --stone: #f4f1ea;
  --line: rgba(22, 33, 31, 0.14);
  --shadow: 0 26px 80px rgba(22, 33, 31, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

.disclosure-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 34px;
  padding: 6px 18px;
  color: rgba(255, 255, 255, 0.9);
  background: #183b34;
  font-size: 12px;
}

.disclosure-bar span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.disclosure-bar svg {
  width: 14px;
  height: 14px;
}

html,
body {
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 76px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(255, 253, 248, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 240px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  background: var(--green);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 25px;
  font-weight: 700;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  line-height: 1.2;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2.2vw, 30px);
  color: #34413f;
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  padding: 8px 0;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  background: var(--teal-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  white-space: nowrap;
}

.language-switcher button {
  min-width: 38px;
  min-height: 34px;
  padding: 0 10px;
  color: var(--green);
  background: transparent;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
}

.language-switcher button.is-active {
  color: #fff;
  background: var(--green);
  box-shadow: 0 8px 18px rgba(36, 72, 63, 0.18);
}

.header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  color: #fff;
  background: var(--green);
  border-radius: 999px;
  font-weight: 850;
  white-space: nowrap;
}

svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 76px));
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--green);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  left: auto;
  width: 58%;
  object-fit: cover;
  object-position: center 38%;
  filter: saturate(0.92);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(16, 27, 25, 0.98) 0%, rgba(16, 27, 25, 0.88) 45%, rgba(16, 27, 25, 0.18) 75%),
    linear-gradient(0deg, rgba(16, 27, 25, 0.45), rgba(16, 27, 25, 0));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 98px);
  padding: 84px 0 120px;
  color: #fff;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--copper);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #fac79d;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 730px;
  margin-bottom: 22px;
  font-size: clamp(44px, 6vw, 78px);
  line-height: 1.06;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.16;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.28;
}

.hero-content p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.89);
  font-size: 18px;
}

.hero-actions,
.hero-email-row,
.hero-points,
.tool-actions,
.inline-actions,
.contact-methods {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 850;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.btn-primary {
  color: #fff;
  background: var(--copper);
  box-shadow: 0 14px 34px rgba(91, 44, 22, 0.24);
}

.btn-light,
.btn-outline {
  color: var(--green);
  background: #fff;
}

.btn-ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.2);
}

.hero-email-row {
  margin-top: 12px;
}

.hero-email-row .btn {
  min-width: min(100%, 330px);
}

.hero-qr-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: min(760px, 100%);
  margin-top: 16px;
}

.hero-wechat-card {
  display: grid;
  grid-template-columns: 126px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 14px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  backdrop-filter: blur(10px);
}

.hero-whatsapp-card {
  background: rgba(220, 239, 233, 0.16);
}

.hero-qr-frame {
  display: grid;
  place-items: center;
  width: 126px;
  height: 126px;
  padding: 8px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

.hero-qr-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-wechat-card span {
  display: inline-flex;
  margin-bottom: 4px;
  color: #fed1ad;
  font-size: 13px;
  font-weight: 950;
}

.hero-wechat-card h3 {
  margin-bottom: 4px;
  color: #fff;
  font-size: 18px;
}

.hero-wechat-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.btn-outline {
  border-color: rgba(36, 72, 63, 0.22);
}

.hero-points {
  margin-top: 26px;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.94);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 14px;
}

.hero-mini-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 850;
}

.hero-mini-proof span {
  position: relative;
  padding-left: 18px;
}

.hero-mini-proof span::before {
  position: absolute;
  left: 0;
  top: 0.8em;
  width: 6px;
  height: 6px;
  content: "";
  background: #fed1ad;
  border-radius: 50%;
  transform: translateY(-50%);
}

.action-strip {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(22, 33, 31, 0.16);
  border-bottom: 1px solid var(--line);
}

.action-strip a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 70px;
  padding: 12px 14px;
  color: var(--green);
  background: var(--teal);
  font-weight: 850;
  text-align: center;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 24px clamp(18px, 6vw, 86px);
  color: #fff;
  background: var(--green);
}

.proof-strip div {
  display: grid;
  gap: 3px;
  padding: 8px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.proof-strip div:last-child {
  border-right: 0;
}

.proof-strip strong {
  color: #fed1ad;
  font-family: Georgia, "Noto Serif SC", serif;
  font-size: 24px;
}

.proof-strip span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
}

.start-section {
  background: #fff;
}

.path-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.path-card {
  padding: clamp(24px, 4vw, 42px);
  background: var(--teal-2);
  border: 1px solid rgba(36, 72, 63, 0.14);
  border-radius: 12px;
}

.path-card.path-urgent {
  color: #fff;
  background: var(--green);
}

.path-card p,
.path-card li {
  color: var(--muted);
}

.path-card.path-urgent p,
.path-card.path-urgent li {
  color: rgba(255, 255, 255, 0.8);
}

.path-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 18px;
  color: var(--copper);
  font-size: 13px;
  font-weight: 900;
}

.path-urgent .path-label {
  color: #fed1ad;
}

.path-card ol {
  display: grid;
  gap: 10px;
  margin: 22px 0 26px;
  padding-left: 22px;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: center;
}

.about-portrait {
  position: relative;
  min-height: 590px;
  overflow: visible;
}

.about-portrait > img {
  width: 100%;
  height: 590px;
  object-fit: cover;
  object-position: center 38%;
  border-radius: 180px 180px 12px 12px;
  box-shadow: var(--shadow);
}

.experience-card {
  position: absolute;
  right: -24px;
  bottom: 36px;
  display: grid;
  width: 190px;
  padding: 22px;
  color: #fff;
  background: var(--copper);
  border: 8px solid var(--paper);
  border-radius: 12px;
  box-shadow: 0 18px 46px rgba(22, 33, 31, 0.18);
}

.experience-card strong {
  font-family: Georgia, serif;
  font-size: 42px;
  line-height: 1;
}

.experience-card span {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.45;
}

.about-copy > p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 17px;
}

.about-values {
  display: grid;
  gap: 2px;
  margin: 30px 0 24px;
  background: var(--line);
  border: 1px solid var(--line);
}

.about-values article {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr;
  column-gap: 16px;
  padding: 22px;
  background: #fff;
}

.about-values svg {
  grid-row: 1 / 3;
  width: 30px;
  height: 30px;
  color: var(--copper);
}

.about-values h3,
.about-values p {
  margin: 0;
}

.about-values p {
  color: var(--muted);
  font-size: 14px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-weight: 900;
  border-bottom: 2px solid rgba(36, 72, 63, 0.25);
}

.section {
  padding: clamp(64px, 8vw, 108px) clamp(18px, 6vw, 86px);
}

.section-copy,
.section-heading {
  max-width: 790px;
  min-width: 0;
}

.section-copy p,
.section-heading p,
.trust-panel li,
.resource-panel p {
  color: var(--muted);
}

.tool-section,
.trust-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(320px, 1.28fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: start;
}

.tool-panel,
.trust-panel,
.resource-panel,
.contact-form {
  min-width: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(22, 33, 31, 0.06);
}

.tool-panel {
  padding: clamp(20px, 4vw, 34px);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

label {
  display: grid;
  gap: 7px;
  color: #34413f;
  font-size: 14px;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  color: var(--ink);
  background: #fbfaf6;
  border: 1px solid rgba(22, 33, 31, 0.18);
  border-radius: 6px;
}

textarea {
  resize: vertical;
}

.result-box {
  margin-top: 22px;
  padding: clamp(20px, 4vw, 30px);
  color: #fff;
  background: var(--green);
  border-radius: 8px;
}

.result-tag {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 5px 10px;
  color: #fed1ad;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.result-box p {
  color: rgba(255, 255, 255, 0.84);
}

.result-box ul,
.trust-panel ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.result-box li {
  position: relative;
  padding-left: 18px;
}

.result-box li::before {
  position: absolute;
  left: 0;
  content: "•";
  color: #fed1ad;
}

.tool-actions {
  margin-top: 22px;
}

.service-section {
  background: var(--stone);
}

.cards-six {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.cards-six article {
  position: relative;
  min-height: 232px;
  padding: 30px 26px 26px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.process-grid {
  counter-reset: service-step;
}

.process-grid article {
  border-top: 5px solid rgba(36, 72, 63, 0.18);
}

.process-grid article::before {
  position: absolute;
  right: 22px;
  top: 18px;
  content: attr(data-step);
  color: rgba(36, 72, 63, 0.1);
  font-family: Georgia, "Noto Serif SC", serif;
  font-size: 64px;
  font-weight: 900;
  line-height: 1;
}

.process-grid article::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 38%;
  height: 5px;
  content: "";
  background: var(--copper);
}

.process-grid article h3,
.process-grid article p,
.process-grid article svg {
  position: relative;
  z-index: 1;
}

.process-grid article:first-child {
  color: #fff;
  background: var(--green);
  border-color: rgba(255, 255, 255, 0.18);
}

.process-grid article:first-child::before {
  color: rgba(255, 255, 255, 0.12);
}

.process-grid article:first-child p {
  color: rgba(255, 255, 255, 0.78);
}

.process-grid article:first-child svg {
  color: #fed1ad;
}

.cards-six svg {
  width: 32px;
  height: 32px;
  margin-bottom: 18px;
  color: var(--copper);
}

.cards-six p {
  color: var(--muted);
}

.service-area {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(360px, 1.2fr);
  gap: 40px;
  align-items: center;
  margin-top: 38px;
  padding: clamp(24px, 4vw, 38px);
  color: #fff;
  background: var(--green);
  border-radius: 10px;
}

.service-area p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.75);
}

.city-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.city-chips span {
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.cemetery-section {
  background:
    radial-gradient(circle at 20% 15%, rgba(220, 239, 233, 0.9), transparent 34%),
    linear-gradient(180deg, #fffdf8 0%, #f5f1e8 100%);
}

.cemetery-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(420px, 1.05fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: start;
  margin-top: 34px;
}

.cemetery-map-card,
.cemetery-card,
.cemetery-alert,
.review-grid article {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 18px 60px rgba(22, 33, 31, 0.08);
}

.cemetery-map-card {
  position: sticky;
  top: 96px;
  padding: clamp(18px, 3vw, 28px);
}

.cemetery-map-title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.cemetery-map-title span {
  color: var(--green);
  font-size: 18px;
  font-weight: 950;
}

.cemetery-map-title small,
.cemetery-map-note {
  color: var(--muted);
}

.gta-map {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background:
    linear-gradient(110deg, rgba(36, 72, 63, 0.14) 0 12%, transparent 12% 100%),
    radial-gradient(circle at 49% 52%, rgba(191, 112, 71, 0.12) 0 7%, transparent 7%),
    linear-gradient(135deg, #edf7f4, #fffaf1);
  border: 1px solid rgba(36, 72, 63, 0.16);
  border-radius: 14px;
}

.gta-map::before,
.gta-map::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.gta-map::before {
  inset: 34px 16px 40px;
  border: 2px dashed rgba(36, 72, 63, 0.18);
  border-radius: 45% 55% 50% 42%;
}

.gta-map::after {
  left: -20%;
  right: -20%;
  bottom: 18%;
  height: 70px;
  background: rgba(63, 113, 102, 0.16);
  transform: rotate(-9deg);
}

.map-city {
  position: absolute;
  z-index: 1;
  color: rgba(36, 72, 63, 0.52);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.map-toronto {
  left: 43%;
  top: 45%;
}

.map-markham {
  right: 10%;
  top: 15%;
}

.map-west {
  left: 8%;
  bottom: 24%;
}

.map-east {
  right: 8%;
  bottom: 22%;
}

.map-pin {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  max-width: 168px;
  padding: 7px 10px 7px 7px;
  color: var(--green);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(36, 72, 63, 0.16);
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(22, 33, 31, 0.15);
  font-size: 12px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.map-pin:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(22, 33, 31, 0.2);
}

.map-pin span,
.cemetery-number {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 28px;
  height: 28px;
  color: #fff;
  background: var(--copper);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 950;
}

.map-pin strong {
  line-height: 1.1;
}

.pin-highland-hills {
  right: 13%;
  top: 25%;
}

.pin-highland-memory {
  right: 30%;
  top: 36%;
}

.pin-elgin {
  right: 16%;
  top: 12%;
}

.pin-york {
  left: 44%;
  top: 37%;
}

.pin-pine-hills {
  right: 13%;
  top: 52%;
}

.pin-resthaven {
  right: 9%;
  top: 67%;
}

.pin-glen-oaks {
  left: 8%;
  bottom: 22%;
}

.pin-pine-ridge {
  right: 4%;
  bottom: 14%;
}

.cemetery-map-note {
  margin: 14px 0 0;
  font-size: 13px;
}

.cemetery-list {
  display: grid;
  gap: 14px;
}

.cemetery-card {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  padding: 20px;
}

.cemetery-card h3 {
  margin-bottom: 4px;
  color: var(--green);
  font-size: 18px;
}

.cemetery-card address {
  margin-bottom: 10px;
  color: var(--ink);
  font-style: normal;
  font-weight: 850;
}

.cemetery-card p {
  margin-bottom: 12px;
  color: var(--muted);
}

.cemetery-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.cemetery-tags span {
  padding: 5px 9px;
  color: var(--green);
  background: var(--teal-2);
  border: 1px solid rgba(36, 72, 63, 0.12);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.cemetery-alert {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  align-items: start;
  margin-top: 24px;
  padding: 22px;
  background: #fff8ef;
}

.cemetery-alert svg {
  width: 30px;
  height: 30px;
  color: var(--copper);
}

.cemetery-alert h3 {
  margin-bottom: 4px;
  color: var(--green);
}

.cemetery-alert p {
  margin-bottom: 0;
  color: var(--muted);
}

.review-section {
  background: var(--paper);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.review-grid article {
  padding: clamp(22px, 3vw, 30px);
}

.stars {
  margin-bottom: 14px;
  color: var(--copper);
  letter-spacing: 2px;
  font-size: 18px;
}

.review-grid p {
  color: #2f3c39;
  font-size: 17px;
}

.review-grid span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.review-disclaimer {
  max-width: 860px;
  margin: 18px auto 0;
  color: var(--muted);
  text-align: center;
  font-size: 13px;
}

.trust-section {
  background: #fff;
}

.trust-panel,
.resource-panel {
  padding: clamp(24px, 4vw, 42px);
}

.trust-panel li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.trust-panel svg {
  flex: 0 0 auto;
  margin-top: 4px;
  color: var(--green-2);
}

.resource-panel {
  display: grid;
  align-content: start;
  gap: 14px;
  background: var(--green);
  color: #fff;
}

.resource-panel a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  font-weight: 850;
}

.resource-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.guide-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(360px, 1.28fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: center;
  background: var(--paper);
}

.guide-cover {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 500px;
  padding: clamp(28px, 5vw, 50px);
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 80% 18%, rgba(255, 255, 255, 0.14), transparent 28%),
    linear-gradient(145deg, #315f55, #173730);
  border-radius: 8px 80px 8px 8px;
  box-shadow: var(--shadow);
}

.guide-cover::after {
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 250px;
  height: 250px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 38px rgba(255, 255, 255, 0.04), 0 0 0 76px rgba(255, 255, 255, 0.03);
}

.guide-cover span {
  color: #fed1ad;
  font-weight: 900;
}

.guide-cover strong {
  position: relative;
  z-index: 1;
  font-family: Georgia, "Noto Serif SC", serif;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.2;
}

.guide-cover small {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.74);
}

.guide-copy ul {
  display: grid;
  gap: 12px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.guide-copy li {
  display: flex;
  gap: 10px;
  color: var(--muted);
}

.guide-copy li svg {
  flex: 0 0 auto;
  margin-top: 4px;
  color: var(--green-2);
}

.guide-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.guide-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
}

.seo-guides-section {
  background: var(--stone);
}

.seo-guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.seo-guide-grid > a {
  min-height: 260px;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 9px;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.seo-guide-grid > a:hover {
  transform: translateY(-3px);
  border-color: rgba(36, 72, 63, 0.34);
  box-shadow: 0 18px 44px rgba(22, 33, 31, 0.09);
}

.seo-guide-grid svg {
  width: 30px;
  height: 30px;
  margin-bottom: 20px;
  color: var(--copper);
}

.seo-guide-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--green-2);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.seo-guide-grid p {
  color: var(--muted);
}

.contact-section {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(36, 72, 63, 0.98), rgba(47, 85, 82, 0.94)),
    var(--green);
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.8);
}

.contact-methods {
  align-items: stretch;
  margin-top: 30px;
}

.contact-methods a,
.contact-methods span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
}

.whatsapp-qr-panel {
  display: grid;
  grid-template-columns: 156px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  margin-top: 28px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
}

.whatsapp-qr-frame {
  display: grid;
  place-items: center;
  width: 156px;
  height: 156px;
  padding: 12px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.16);
}

.whatsapp-qr-frame img {
  width: 100%;
  height: 100%;
}

.whatsapp-qr-panel h3 {
  color: #fff;
}

.whatsapp-qr-panel p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

.whatsapp-qr-panel .btn {
  width: fit-content;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 4vw, 34px);
  color: var(--ink);
}

.privacy-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
}

.btn-sms {
  color: var(--green);
  background: var(--teal);
  border-color: rgba(36, 72, 63, 0.18);
}

.mobile-bar {
  display: none;
}

.lead-dock {
  position: fixed;
  right: 18px;
  bottom: 24px;
  z-index: 70;
  display: grid;
  gap: 8px;
  width: 178px;
  padding: 14px;
  color: #fff;
  background: rgba(24, 59, 52, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.lead-dock p {
  margin: 0 0 4px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  line-height: 1.45;
}

.lead-dock a,
.lead-dock button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 38px;
  color: var(--green);
  background: #fff;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
}

.lead-dock a:first-of-type {
  color: #fff;
  background: var(--copper);
}

.guide-nudge {
  position: fixed;
  left: 20px;
  bottom: 22px;
  z-index: 72;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px 14px;
  width: min(440px, calc(100vw - 40px));
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.guide-nudge p {
  grid-column: 1 / 3;
  margin: 0;
  color: var(--muted);
}

.guide-nudge strong {
  color: var(--green);
}

.guide-nudge a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  color: #fff;
  background: var(--green);
  border-radius: 999px;
  font-weight: 900;
}

.guide-nudge-close {
  position: absolute;
  right: 8px;
  top: 6px;
  width: 32px;
  height: 32px;
  color: var(--muted);
  background: transparent;
  border: 0;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 26px clamp(18px, 6vw, 86px);
  color: #58625f;
  background: #fff;
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.site-footer p {
  margin: 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
}

.site-footer nav a {
  color: var(--green);
  font-weight: 750;
}

.seo-page {
  background: var(--paper);
}

.seo-page-header {
  padding: clamp(64px, 8vw, 110px) clamp(18px, 7vw, 100px);
  color: #fff;
  background:
    linear-gradient(100deg, rgba(16, 27, 25, 0.98), rgba(36, 72, 63, 0.86)),
    url("assets/amy-wechat-portrait.jpg") 86% 32% / 44% auto no-repeat,
    var(--green);
}

.seo-page-header .breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  color: rgba(255,255,255,.7);
  font-size: 13px;
}

.seo-page-header h1 {
  max-width: 860px;
  font-size: clamp(38px, 6vw, 68px);
}

.seo-page-header > p {
  max-width: 760px;
  color: rgba(255,255,255,.82);
  font-size: 18px;
}

.seo-page-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: clamp(36px, 6vw, 80px);
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(54px, 7vw, 90px) 18px;
}

.seo-article {
  min-width: 0;
}

.seo-article h2 {
  margin-top: 52px;
  font-size: clamp(28px, 4vw, 40px);
}

.seo-article h2:first-child {
  margin-top: 0;
}

.seo-article h3 {
  margin-top: 28px;
}

.seo-article p,
.seo-article li {
  color: #4d5e5a;
  font-size: 17px;
}

.seo-article ul,
.seo-article ol {
  display: grid;
  gap: 10px;
}

.answer-box {
  margin: 26px 0;
  padding: 24px;
  background: var(--teal-2);
  border-left: 4px solid var(--green-2);
}

.answer-box strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
}

.seo-sidebar {
  position: sticky;
  top: 104px;
  align-self: start;
  display: grid;
  gap: 14px;
}

.seo-sidebar-card {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 9px;
  box-shadow: 0 16px 42px rgba(22, 33, 31, 0.06);
}

.seo-sidebar-card.is-call {
  color: #fff;
  background: var(--green);
}

.seo-sidebar-card.is-call p {
  color: rgba(255,255,255,.76);
}

.seo-sidebar-card .btn {
  width: 100%;
}

.related-links {
  display: grid;
  gap: 10px;
}

.related-links a {
  color: var(--green);
  font-weight: 800;
}

.seo-cta {
  margin-top: 54px;
  padding: clamp(26px, 5vw, 44px);
  color: #fff;
  background: var(--green);
  border-radius: 10px;
}

.seo-cta p {
  color: rgba(255,255,255,.78);
}

@media (max-width: 1050px) {
  .nav-links {
    display: none;
  }

  .tool-section,
  .about-section,
  .trust-section,
  .contact-section,
  .guide-section,
  .cemetery-layout,
  .service-area {
    grid-template-columns: 1fr;
  }

  .cemetery-map-card {
    position: static;
  }

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

  .review-grid {
    grid-template-columns: 1fr;
  }

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

  .seo-page-main {
    grid-template-columns: 1fr;
  }

  .seo-sidebar {
    position: static;
  }
}

@media (max-width: 700px) {
  body {
    padding-bottom: 72px;
  }

  .site-header {
    min-height: 74px;
    padding: 12px 18px;
  }

  .disclosure-bar {
    justify-content: flex-start;
    min-height: 30px;
    overflow: hidden;
    white-space: nowrap;
  }

  .disclosure-bar span:last-child {
    display: none;
  }

  .brand {
    min-width: 0;
  }

  .brand small,
  .header-call {
    display: none;
  }

  .language-switcher {
    margin-left: auto;
  }

  .language-switcher button {
    min-width: 34px;
    min-height: 32px;
    padding: 0 8px;
    font-size: 12px;
  }

  .hero {
    min-height: 900px;
    align-items: end;
  }

  .hero-image {
    left: 0;
    width: 100%;
    object-position: center 30%;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(16, 27, 25, 0.96) 0%, rgba(16, 27, 25, 0.84) 58%, rgba(16, 27, 25, 0.24) 100%),
      linear-gradient(90deg, rgba(16, 27, 25, 0.34), rgba(16, 27, 25, 0.12));
  }

  .hero-content {
    width: auto;
    max-width: 360px;
    margin: 0 18px;
    padding: 160px 0 42px;
  }

  .hero-wechat-card {
    grid-template-columns: 116px minmax(0, 1fr);
    gap: 12px;
    padding: 12px;
  }

  .hero-qr-grid {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .hero-qr-frame {
    width: 116px;
    height: 116px;
    border-radius: 14px;
  }

  .hero-wechat-card h3 {
    font-size: 16px;
  }

  .hero-wechat-card p {
    font-size: 13px;
  }

  h1 {
    font-size: 38px;
    line-height: 1.1;
    word-break: break-all;
  }

  h2 {
    font-size: 31px;
    max-width: 100%;
    word-break: break-all;
    overflow-wrap: anywhere;
  }

  h3,
  p,
  a,
  button,
  summary,
  label,
  li,
  .hero-content p,
  .section p {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-all;
  }

  .hero-content p,
  .section p {
    font-size: 16px;
  }

  .btn,
  .hero-points span,
  .contact-methods a,
  .contact-methods span {
    width: 100%;
  }

  .action-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    overflow: hidden;
  }

  .action-strip a {
    flex-direction: column;
    min-height: 62px;
    min-width: 0;
    gap: 4px;
    line-height: 1.25;
    font-size: 14px;
  }

  .proof-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 16px 12px;
  }

  .proof-strip div {
    padding: 12px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .proof-strip strong {
    font-size: 20px;
  }

  .section,
  .tool-section,
  .trust-section,
  .contact-section,
  .cemetery-section,
  .review-section,
  .service-section {
    width: 100vw;
    max-width: 100vw;
    overflow: hidden;
  }

  .section > *,
  .contact-section > * {
    max-width: calc(100vw - 36px);
  }

  .section-copy,
  .section-heading,
  .tool-panel,
  .trust-panel,
  .resource-panel,
  .contact-copy,
  .contact-form {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .about-section {
    gap: 38px;
  }

  .about-portrait {
    min-height: 430px;
  }

  .about-portrait > img {
    height: 430px;
    border-radius: 120px 120px 8px 8px;
  }

  .experience-card {
    right: 12px;
    bottom: 18px;
    width: 164px;
    padding: 18px;
    border-width: 5px;
  }

  .experience-card strong {
    font-size: 34px;
  }

  .about-values article {
    grid-template-columns: 36px 1fr;
    padding: 18px;
  }

  .field-grid,
  .cards-six,
  .path-cards,
  .cemetery-card,
  .seo-guide-grid {
    grid-template-columns: 1fr;
  }

  .gta-map {
    min-height: 560px;
  }

  .map-city {
    display: none;
  }

  .map-pin {
    max-width: 136px;
    padding-right: 9px;
    font-size: 11px;
  }

  .map-pin span {
    width: 24px;
    height: 24px;
    font-size: 12px;
  }

  .pin-elgin {
    right: 8%;
    top: 7%;
  }

  .pin-highland-hills {
    right: 10%;
    top: 18%;
  }

  .pin-highland-memory {
    left: 14%;
    top: 27%;
  }

  .pin-york {
    left: 20%;
    top: 38%;
  }

  .pin-pine-hills {
    right: 10%;
    top: 49%;
  }

  .pin-resthaven {
    right: 8%;
    top: 60%;
  }

  .pin-glen-oaks {
    left: 8%;
    bottom: 16%;
  }

  .pin-pine-ridge {
    right: 8%;
    bottom: 8%;
  }

  .cemetery-card {
    gap: 10px;
  }

  .cemetery-number {
    width: 30px;
    height: 30px;
  }

  .cards-six article {
    min-height: auto;
  }

  .tool-actions {
    display: grid;
  }

  .guide-cover {
    min-height: 400px;
  }

  .guide-actions {
    display: grid;
  }

  .seo-page-header {
    padding-top: 52px;
    background:
      linear-gradient(100deg, rgba(16, 27, 25, 0.97), rgba(36, 72, 63, 0.88)),
      var(--green);
  }

  .seo-page-header h1 {
    font-size: 38px;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .mobile-bar {
    position: fixed;
    left: 12px;
    right: auto;
    bottom: 12px;
    width: calc(100vw - 24px);
    z-index: 80;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: hidden;
    background: var(--green);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    box-shadow: var(--shadow);
  }

  .mobile-bar a {
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    min-height: 52px;
    color: #fff;
    font-size: 14px;
    font-weight: 850;
  }

  .mobile-bar button {
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    min-height: 52px;
    color: #fff;
    background: transparent;
    border: 0;
    font-size: 14px;
    font-weight: 850;
  }

  .whatsapp-qr-panel {
    grid-template-columns: 1fr;
  }

  .whatsapp-qr-frame {
    width: 188px;
    height: 188px;
  }

  .lead-dock,
  .guide-nudge {
    display: none !important;
  }
}

@media print {
  .site-header,
  .hero,
  .action-strip,
  .service-section,
  .trust-section,
  .contact-section,
  .mobile-bar,
  .lead-dock,
  .guide-nudge,
  .site-footer {
    display: none !important;
  }

}
