/* ============================================================
   GraveCareUkraine — Shared Stylesheet
   styles.css — root folder, linked from every page
   ============================================================ */

/* RESET & ROOT */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  /* Palette — index/brand system */
  --stone:         #393939;
  --stone-mid:     #5A5750;
  --stone-light:   #9E9A8E;
  --parchment:     #F6F3ED;
  --parchment-dark:#E5E0D5;
  --moss:          #2D5226;
  --moss-mid:      #3A6830;
  --moss-light:    #5C9148;
  --cream:         #FEFCF7;
  --white:         #FFFFFF;
  --border:        #DDD8CE;
  --radius:        8px;
  --radius-sm:     4px;

  /* Typography */
  --serif: 'Lora', Georgia, serif;
  --sans:  'Inter', system-ui, sans-ser if;

  /* Layout */
  --max:       1100px;
  --max-narrow: 720px;
}

body {
  font-family: var(--sans);
  font-weight: 400;
  background: var(--cream);
  color: var(--stone);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* GLOBAL LINKS — override browser blue everywhere */
a { color: var(--stone); text-decoration: underline; text-decoration-color: var(--border); text-underline-offset: 3px; transition: color 0.15s, text-decoration-color 0.15s; }
a:hover { color: var(--moss); text-decoration-color: var(--moss-light); }
/* Contextual: inherit parent colour, keep underline (hero, trust bar) */
a.text-link-inherit { color: inherit; text-decoration-color: rgba(0,0,0,0.2); }
a.text-link-inherit:hover { color: inherit; text-decoration-color: currentColor; opacity: 0.8; }

/* ============================================================
   NAV — shared across all pages
   ============================================================ */
nav {
  position: fixed; top: 0; width: 100%; z-index: 100;
  background: rgba(254,252,247,0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  padding: 0 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.nav-logo {
  font-family: var(--serif); font-size: 1.25rem; font-weight: 600;
  color: var(--stone); text-decoration: none; letter-spacing: 0.01em;
  flex-shrink: 0;
}
.nav-logo span { color: var(--moss); }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: 0.875rem; font-weight: 400; color: var(--stone-mid);
  text-decoration: none; transition: color 0.15s;
}
.nav-links a:hover  { color: var(--moss); }
.nav-links a.active { color: var(--moss); font-weight: 500; }
.nav-cta {
  background: var(--moss); color: white !important;
  padding: 0.5rem 1.25rem; border-radius: var(--radius-sm);
  font-size: 0.85rem; font-weight: 500; text-decoration: none;
  transition: background 0.15s; white-space: nowrap; flex-shrink: 0;
}
.nav-cta:hover { background: var(--stone) !important; color: white !important; }
.hamburger {
  display: none; cursor: pointer; flex-direction: column;
  gap: 5px; flex-shrink: 0;
}
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--stone); }

/* ============================================================
   FOOTER — extended (index, about, info)
   ============================================================ */
footer { background: #161614; color: rgba(255,255,255,0.55); padding: 3rem 2.5rem 2rem; }
.footer-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem; padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand { font-family: var(--serif); font-size: 1.3rem; font-weight: 600; color: white; margin-bottom: 0.75rem; }
.footer-brand span { color: var(--moss-light); }
.footer-tagline { font-size: 0.875rem; line-height: 1.8; color: rgba(255,255,255,0.55); }
.footer-what-label {
  color: rgba(255,255,255,0.35); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-top: 1.25rem; margin-bottom: 0.5rem;
}
.footer-col h4 {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.85); margin-bottom: 1rem;
}
.footer-col p { color: rgba(255,255,255,0.5); font-size: 0.875rem; line-height: 1.85; }
.footer-col a {
  display: inline; color: rgba(255,255,255,0.7);
  text-decoration: underline; font-size: 0.875rem; transition: color 0.15s;
}
.footer-col a:hover { color: var(--moss-light); }
/* Payment strip */
.footer-payment {
  border-top: 1px solid rgba(255,255,255,0.07);
  max-width: var(--max); margin: 1.5rem auto 0;
  padding-top: 1.5rem;
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
}
.footer-payment-label {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.3);
}
.footer-payment-badge {
  opacity: 0.4; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.05em;
  color: white; background: rgba(255,255,255,0.12);
  padding: 3px 8px; border-radius: 3px;
}
/* Socials row */
.footer-socials {
  display: flex; gap: 18px; justify-content: center;
  margin: 1.5rem auto 0; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  max-width: var(--max);
}
.footer-socials a { color: rgba(255,255,255,0.35); transition: color 0.2s; display: flex; }
.footer-socials a:hover { color: var(--moss-light); }
/* Bottom bar */
.footer-bottom {
  max-width: var(--max); margin: 0 auto; padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.78rem; flex-wrap: wrap; gap: 0.5rem;
}
.footer-bottom-link { color: rgba(255,255,255,0.4); text-decoration: none; font-size: 0.78rem; border-bottom: 1px solid rgba(255,255,255,0.15); }
.footer-bottom-link:hover { color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.4); }
.first-request-link { color: var(--moss); text-decoration: none; border-bottom: 1px solid var(--moss-light); }
.footer-langs { display: flex; gap: 1rem; }
.footer-langs a { color: rgba(255,255,255,0.35); text-decoration: none; font-size: 0.78rem; transition: color 0.15s; }
.footer-langs a:hover, .footer-langs a.active { color: white; }

/* ============================================================
   FLOATING WHATSAPP BUTTON
   ============================================================ */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  width: 56px; height: 56px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.4s, visibility 0.4s;
  text-decoration: none; opacity: 0; visibility: hidden;
}
.wa-float.visible { opacity: 1; visibility: visible; }
.wa-float:hover { transform: scale(1.06); box-shadow: 0 6px 24px rgba(0,0,0,0.2); }
.wa-float img { width: 30px; height: 30px; }
.wa-float::before {
  content: ''; position: absolute; width: 56px; height: 56px; border-radius: 50%;
  background: rgba(37,211,102,0.3); animation: wa-pulse 2.4s ease-out infinite;
}
@keyframes wa-pulse {
  0%   { transform: scale(1);   opacity: 0.6; }
  70%  { transform: scale(1.6); opacity: 0; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ============================================================
   COMMON UTILITIES
   ============================================================ */
.section-label {
  font-size: 0.73rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--moss-mid); margin-bottom: 0.9rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.section-label::before { content: ''; display: block; width: 20px; height: 1.5px; background: var(--moss-mid); }
.section-title {
  font-family: var(--serif); font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 600; line-height: 1.25; color: #000;
  margin-bottom: 1rem; letter-spacing: -0.01em;
}
.section-subtitle { font-size: 1rem; color: var(--stone-mid); max-width: 540px; line-height: 1.8; }
.btn-primary {
  background: var(--moss); color: white; padding: 0.85rem 2rem;
  border-radius: var(--radius-sm); font-size: 0.9rem; font-weight: 500;
  text-decoration: none; transition: background 0.15s; display: inline-block;
}
.btn-primary:hover { background: var(--stone); color: white; }
.btn-secondary {
  color: var(--stone-mid); font-size: 0.9rem; font-weight: 400;
  text-decoration: none; border-bottom: 1px solid var(--border);
  padding-bottom: 2px; transition: color 0.15s, border-color 0.15s;
}
.btn-secondary:hover { color: var(--moss); border-color: var(--moss-light); }

/* ============================================================
   DOCUMENT PAGES (privacy, terms, cookies)
   ============================================================ */
.doc-wrap { max-width: var(--max-narrow); margin: 0 auto; padding: 88px 24px 80px; }
.doc-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--moss-mid); margin-bottom: 12px; }
.doc-wrap h1 { font-family: var(--serif); font-size: clamp(1.6rem, 4vw, 2.2rem); font-weight: 400; line-height: 1.25; color: #000; margin-bottom: 8px; }
.doc-meta { font-size: 0.83rem; color: var(--stone-light); margin-bottom: 40px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.doc-wrap h2 { font-family: var(--serif); font-size: 1.15rem; font-weight: 600; color: #000; margin: 36px 0 10px; }

/* ============================================================
   INFO & FIELD NOTES PAGE
   ============================================================ */
.info-hero { background: var(--white); border-bottom: 1px solid var(--border); padding: 56px 0 48px; margin-top: 64px; }
.info-hero-inner { max-width: 680px; margin: 0 auto; padding: 0 24px; }
.info-hero h1 {   font-family: var(--serif); font-size: clamp(1.9rem, 3vw, 2.8rem); font-weight: 600; line-height: 1.25; color: #000; margin-bottom: 1rem; letter-spacing: -0.01em; }

.article-list { max-width: 680px; margin: 0 auto; padding: 48px 24px 80px; font-family: var(--sans); }

.article-row {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.article-row:hover .article-title { color: var(--moss); }
.article-title {
  font-family: var(--serif);
  font-size: 1.15rem; font-weight: 600; color: #000;
  line-height: 1.35; margin-bottom: 8px; transition: color 0.15s;
}
.article-desc { font-size: 0.93rem; color: var(--stone-mid); line-height: 1.6; }

.article-row.soon { opacity: 0.45; pointer-events: none; }
.soon-tag {
  display: inline-block;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.07em;
  text-transform: uppercase; color: var(--stone-light);
  border: 1px solid var(--border); padding: 2px 7px; border-radius: 2px;
  margin-bottom: 8px;
}
.doc-wrap h3 { font-size: 0.83rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--stone-light); margin: 20px 0 6px; }
.doc-wrap p { color: var(--stone-mid); margin-bottom: 14px; font-size: 0.95rem; }
.doc-wrap p:last-child { margin-bottom: 0; }
.doc-wrap ul { color: var(--stone-mid); margin: 6px 0 14px 20px; font-size: 0.95rem; }
.doc-wrap ul li { margin-bottom: 5px; }
.doc-wrap a { color: var(--moss); text-decoration: none; }
.doc-wrap a:hover { text-decoration: underline; }
.doc-box { background: var(--parchment); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 16px 20px; margin: 20px 0; font-size: 0.9rem; color: var(--stone-mid); }
.doc-box strong { color: var(--stone); }
.doc-wrap table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 0.88rem; }
.doc-wrap th { text-align: left; padding: 8px 12px; background: var(--parchment-dark); color: var(--stone); font-weight: 600; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; border: 1px solid var(--border); }
.doc-wrap td { padding: 8px 12px; border: 1px solid var(--border); color: var(--stone-mid); vertical-align: top; }

/* ============================================================
   ARTICLE / POST PAGES (Eleventy — /info/*.html)
   ============================================================ */
.post-body { display: block; }

.info-hero-eyebrow {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--moss); margin-bottom: 14px;
}
.article-date { font-size: 0.83rem; color: var(--stone-light); margin-top: 1.25rem; }
.article-date:empty { display: none; }

/* The converted markdown body reuses .article-desc — scope full
   typography to it only inside the article page, so the short
   listing-page blurb (.article-row .article-desc) is unaffected. */
article.post .article-desc { font-size: 1rem; line-height: 1.75; }
article.post .article-desc > hr:first-child { display: none; } /* stray hr from md frontmatter delimiter */
article.post .article-desc h2 {
  font-family: var(--serif); font-size: 1.4rem; font-weight: 600;
  color: #000; line-height: 1.35; margin: 2.5rem 0 1rem;
}
article.post .article-desc h3 {
  font-family: var(--serif); font-size: 1.05rem; font-weight: 600;
  color: #000; margin: 1.75rem 0 0.6rem;
}
article.post .article-desc p { color: var(--stone-mid); margin-bottom: 1.1rem; }
article.post .article-desc p:last-child { margin-bottom: 0; }
article.post .article-desc ul { color: var(--stone-mid); margin: 0.5rem 0 1.1rem 1.3rem; }
article.post .article-desc li { margin-bottom: 0.4rem; line-height: 1.65; }
article.post .article-desc strong { color: var(--stone); font-weight: 600; }
article.post .article-desc a { color: var(--moss); text-decoration-color: var(--border); }
article.post .article-desc a:hover { color: var(--moss-mid); text-decoration-color: var(--moss-light); }
article.post .article-desc hr { border: none; border-top: 1px solid var(--border); margin: 2.5rem 0; }

@media (max-width: 640px) {
  .info-hero { padding: 40px 0 32px; }
}

/* ============================================================
   MOBILE
   ============================================================ */
@media (max-width: 768px) {
  nav { padding: 0 1rem; gap: 0.5rem; }
  .nav-logo { font-size: 1.05rem; flex-shrink: 1; min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .nav-cta { font-size: 0.72rem; padding: 0.4rem 0.75rem; white-space: nowrap; flex-shrink: 0; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .doc-wrap { padding: 88px 16px 60px; }
}

/* ============================================================
   SUCCESS PAGE — thank-you card after form submission
   ============================================================ */
body.success {
  background: var(--parchment);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.success-card {
  background: var(--white);
  max-width: 480px;
  width: 100%;
  padding: 2.75rem 2.75rem 2.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  text-align: center;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  margin-top: 80px;
}
.check-circle {
  width: 50px; height: 50px;
  background: var(--moss); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.75rem; color: white; font-size: 1.3rem;
}
.success-card h1 {
  font-family: var(--serif); font-size: 1.9rem; font-weight: 600;
  color: var(--stone); margin-bottom: 0.85rem;
}
.success-card .lead { color: var(--stone-mid); font-size: 1rem; margin-bottom: 0.4rem; }
.success-card .divider { border: none; border-top: 1px solid var(--border); margin: 1.75rem 0; }
.success-card .contact-label {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--stone-light); margin-bottom: 1rem;
}
.wa-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: #25D366; color: white; text-decoration: none;
  padding: 0.6rem 1.25rem; border-radius: var(--radius-sm);
  font-size: 0.88rem; font-weight: 500; transition: opacity 0.2s;
}
.wa-link:hover { opacity: 0.88; }
.wa-link svg { width: 16px; height: 16px; fill: white; flex-shrink: 0; }
.qr-block {
  display: flex; align-items: center; gap: 1rem;
  margin-top: 1.25rem; justify-content: center;
  padding: 1rem 1.25rem; background: var(--parchment);
  border-radius: var(--radius-sm); border: 1px solid var(--border); text-align: left;
}
.qr-block img { border-radius: var(--radius-sm); flex-shrink: 0; }
.qr-block p { font-size: 0.82rem; color: var(--stone-mid); line-height: 1.6; }
.back-link {
  display: inline-block; margin-top: 1.75rem; font-size: 0.85rem;
  color: var(--stone-light); text-decoration: none;
  border-bottom: 1px solid var(--border); padding-bottom: 1px; transition: color 0.2s;
}
.back-link:hover { color: var(--moss); }
.brand-mark {
  margin-top: 2rem; font-family: var(--serif);
  font-size: 1rem; color: var(--stone-light);
}
.brand-mark span { color: var(--moss); }
body.success footer { margin-top: 2rem; width: 100%; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
body.about { font-size: 17px; line-height: 1.72; overflow-x: hidden; }

/* Hero */
.about .hero { background: var(--white); border-bottom: 1px solid var(--border); padding: 64px 24px 56px; text-align: center; }
.about .hero-eyebrow { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--moss); margin-bottom: 18px; }
.about .hero h1 { font-family: var(--serif); font-size: clamp(1.75rem, 5vw, 2.8rem); font-weight: 400; line-height: 1.28; color: #000; max-width: 660px; margin: 0 auto 22px; }
.about .hero h1 em { font-style: italic; color: var(--moss); }
.about .hero-lead { font-size: 1rem; color: var(--stone-mid); max-width: 540px; margin: 0 auto 28px; line-height: 1.75; }
.hero-proof-bar { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; padding-top: 24px; border-top: 1px solid var(--border); max-width: 700px; margin: 0 auto; }
.proof-item { font-size: 0.8rem; color: var(--stone-mid); display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.proof-item strong { color: var(--stone); }
.proof-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--moss); flex-shrink: 0; }

/* Layout */
.page-content { max-width: 820px; margin: 0 auto; padding: 0 24px; }
.about section { padding: 60px 0; }
.about section + section { border-top: 1px solid var(--border); }
.about h2 { font-family: var(--serif); font-size: 1.55rem; font-weight: 400; line-height: 1.3; margin-bottom: 22px; color: #000; }
.about h2 em { font-style: italic; color: var(--moss); }
.about p { margin-bottom: 18px; color: var(--stone-mid); }
.about p:last-child { margin-bottom: 0; }
.about p strong { color: var(--stone); font-weight: 600; }

/* Pull quote */
.pull-quote { background: var(--white); border-left: 3px solid var(--moss); padding: 22px 26px; margin: 32px 0; border-radius: 0 4px 4px 0; }
.pull-quote p { font-family: var(--serif); font-size: 1.05rem; font-style: italic; color: var(--stone); margin: 0; line-height: 1.65; }
.pull-quote cite { display: block; font-family: var(--sans); font-size: 0.78rem; font-style: normal; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--stone-light); margin-top: 12px; }

/* Timeline */
.timeline { position: relative; padding-left: 28px; margin-top: 36px; }
.timeline::before { content: ''; position: absolute; left: 5px; top: 6px; bottom: 0; width: 1px; background: var(--border); }
.timeline-item { position: relative; margin-bottom: 48px; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-dot { position: absolute; left: -24px; top: 6px; width: 12px; height: 12px; border-radius: 50%; background: var(--parchment); border: 2px solid var(--moss); }
.timeline-year { font-family: var(--serif); font-size: 0.83rem; font-weight: 600; color: var(--moss); letter-spacing: 0.05em; margin-bottom: 5px; }
.timeline-item h3 { font-family: var(--serif); font-size: 1.05rem; font-weight: 600; color: #000; margin-bottom: 8px; }
.timeline-item p { font-size: 0.95rem; margin-bottom: 10px; }
.timeline-item p:last-child { margin-bottom: 0; }

/* Email proof grid */
.email-proof { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 20px; }
.email-proof-item { background: var(--white); border: 1px solid var(--border); border-radius: 4px; overflow: hidden; display: flex; flex-direction: column; }
.email-screenshot { width: 100%; display: block; border-bottom: 1px solid var(--border); object-fit: cover; object-position: top; max-height: 150px; }
.email-meta { padding: 12px 14px; flex: 1; }
.email-meta-header { display: flex; justify-content: space-between; align-items: baseline; gap: 8px; margin-bottom: 4px; min-width: 0; }
.email-subject { font-weight: 600; color: var(--stone); font-size: 0.82rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; min-width: 0; }
.email-date { font-size: 0.73rem; color: var(--moss); font-weight: 700; white-space: nowrap; flex-shrink: 0; }
.email-to { font-size: 0.71rem; color: var(--stone-light); font-style: italic; margin-bottom: 9px; word-break: break-all; }
.email-quote { font-size: 0.86rem; font-style: italic; color: var(--stone-mid); border-left: 2px solid var(--border); padding-left: 9px; line-height: 1.55; }

/* Proof links */
.proof-links { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }
.proof-link-item { display: flex; align-items: flex-start; gap: 14px; background: var(--white); border: 1px solid var(--border); border-radius: 4px; padding: 14px 18px; text-decoration: none; color: inherit; transition: border-color 0.2s; min-width: 0; }
.proof-link-item:hover { border-color: var(--moss); }
.proof-link-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; display: flex; align-items: flex-start; }
.proof-link-body { min-width: 0; }
.proof-link-label { font-size: 0.73rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--moss); margin-bottom: 2px; }
.proof-link-title { font-weight: 600; color: var(--stone); font-size: 0.93rem; margin-bottom: 3px; }
.proof-link-desc { font-size: 0.84rem; color: var(--stone-mid); line-height: 1.5; }
.proof-link-url { font-size: 0.71rem; color: var(--stone-light); margin-top: 4px; font-style: italic; word-break: break-all; }
.proof-links-inline { margin-top: 14px; }
.proof-note { margin-top: 20px; font-size: 0.92rem; color: var(--stone-mid); }
.email-proof-note { margin-top: 12px; font-size: 0.8rem; color: var(--stone-light); font-style: italic; }

/* Forum proof */
.forum-proof { margin-top: 20px; margin-bottom: 16px; }
.forum-proof-link { display: block; text-decoration: none; color: inherit; border: 1px solid var(--border); border-radius: 4px; overflow: hidden; background: var(--white); transition: border-color 0.2s; }
.forum-proof-link:hover { border-color: var(--moss); }
.forum-screenshot { width: 100%; display: block; border-bottom: 1px solid var(--border); max-height: 260px; object-fit: cover; object-position: top; }
.forum-proof-caption { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; padding: 10px 14px; }
.forum-proof-label { font-size: 0.73rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--moss); white-space: nowrap; }
.forum-proof-title { font-size: 0.88rem; color: var(--stone-mid); font-style: italic; }

/* Commitments */
.commitment-list { list-style: none; margin-top: 22px; }
.commitment-list li { display: flex; gap: 13px; padding: 13px 0; border-bottom: 1px solid var(--border); color: var(--stone-mid); font-size: 0.95rem; }
.commitment-list li:last-child { border-bottom: none; }
.check { color: var(--moss); font-weight: 700; flex-shrink: 0; margin-top: 2px; }

/* CTA banner */
.cta-banner { background: var(--moss); padding: 52px 24px; text-align: center; }
.cta-banner h2 { font-family: var(--serif); font-size: 1.7rem; font-weight: 400; color: white; margin-bottom: 13px; }
.cta-banner p { color: rgba(255,255,255,0.8); max-width: 460px; margin: 0 auto 28px; font-size: 1rem; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-banner .btn-primary { background: white; color: var(--moss-mid); font-weight: 700; font-size: 0.9rem; letter-spacing: 0.04em; text-transform: uppercase; }
.cta-banner .btn-primary:hover { opacity: 0.9; background: white; }
.cta-banner .btn-secondary { border: 2px solid rgba(255,255,255,0.6); color: white; font-weight: 600; font-size: 0.9rem; padding: 11px 26px; }
.cta-banner .btn-secondary:hover { border-color: white; }

/* About mobile */
@media (max-width: 640px) {
  .hero-proof-bar { flex-direction: column; align-items: center; gap: 10px; }
  .email-proof { grid-template-columns: 1fr; }
  .email-subject { white-space: normal; word-break: break-word; }
  .about section { padding: 44px 0; }
  .timeline { padding-left: 22px; }
  .timeline-dot { left: -20px; }
  .proof-link-item { padding: 12px 14px; gap: 10px; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-banner .btn-primary, .cta-banner .btn-secondary { width: 100%; max-width: 280px; text-align: center; }
}

/* ============================================================
   INDEX PAGE
   ============================================================ */

/* Hero */
.hero-index { min-height: 66vh; display: flex; align-items: center; background: var(--parchment); padding: 110px 2.5rem 70px; position: relative; overflow: hidden; }
.hero-index::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(45,82,38,0.06) 0%, transparent 70%); pointer-events: none; }
.hero-inner { max-width: 1100px; margin: 0 auto; width: 100%; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 5rem; align-items: center; position: relative; }
.hero-eyebrow { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--moss-mid); margin-bottom: 1.5rem; display: flex; align-items: center; gap: 0.75rem; }
.hero-eyebrow::before { content: ''; display: block; width: 28px; height: 1px; background: var(--moss-mid); }
.hero-index h1 { font-family: var(--serif); font-size: clamp(1.9rem, 3.2vw, 3rem); font-weight: 600; line-height: 1.25; color: #000; margin-bottom: 1.5rem; letter-spacing: -0.01em; max-width: 640px; }
.hero-index h1 em { font-style: italic; color: var(--moss); }
.hero-lead { font-size: 1.05rem; color: var(--stone-mid); line-height: 1.8; margin-bottom: 2.5rem; max-width: 480px; font-weight: 400; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.hero-messengers { display: flex; gap: 0.75rem; margin-top: 1.5rem; flex-wrap: wrap; }
.messenger-btn { display: flex; align-items: center; gap: 0.5rem; padding: 0.55rem 1.1rem; border-radius: var(--radius-sm); font-size: 0.85rem; font-weight: 500; text-decoration: none; transition: opacity 0.15s; }
.messenger-btn:hover { opacity: 0.85; }
.messenger-btn.whatsapp { background: #25D366; color: white; }
.messenger-btn svg { width: 17px; height: 17px; fill: white; }
.hero-stats { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; box-shadow: 0 2px 16px rgba(0,0,0,0.05); }
.stat-item { text-align: center; }
.stat-num { font-family: var(--serif); font-size: 2.6rem; font-weight: 600; color: var(--moss); line-height: 1; }
.stat-label { font-size: 0.75rem; font-weight: 500; color: var(--stone-light); margin-top: 0.4rem; text-transform: uppercase; letter-spacing: 0.06em; }
.hero-quote { font-family: var(--serif); font-style: italic; font-size: 1.05rem; color: var(--stone-mid); margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border); line-height: 1.7; }

/* Trust bar */
.trust-bar { background: var(--stone); color: white; padding: 0.9rem 2.5rem; display: flex; justify-content: center; gap: 2.5rem; flex-wrap: wrap; }
.trust-item { font-size: 0.78rem; letter-spacing: 0.05em; text-transform: uppercase; opacity: 0.8; display: flex; align-items: center; gap: 0.5rem; }
.trust-item::before { content: '✓'; color: var(--moss-light); font-weight: 600; }

/* Sections */
section { padding: 5rem 2.5rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }

/* Top services */
.top-services-bg { background: var(--cream); padding-bottom: 2rem; }
.how-bg { background: var(--parchment); padding-top: 2rem; }
.top-services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 3rem; }
.top-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem 1.75rem; position: relative; transition: border-color 0.2s, box-shadow 0.2s; }
.top-card:hover { border-color: var(--moss-light); box-shadow: 0 4px 20px rgba(0,0,0,0.07); }
.top-card.featured { border-color: var(--moss); border-width: 2px; }
.top-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--moss); color: white; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 14px; border-radius: 20px; white-space: nowrap; }
.top-tag { display: block; min-height: 1.4em; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--stone-light); margin-bottom: 0.9rem; }
.top-name { font-family: var(--serif); font-size: 1.4rem; font-weight: 600; color: var(--stone); margin-bottom: 0.5rem; }
.top-price { font-family: var(--serif); font-size: 2.1rem; font-weight: 700; color: var(--moss); margin-bottom: 1rem; }
.top-price span { font-size: 1.15rem; font-weight: 600; color: var(--moss); }
.top-period { font-size: 0.8rem; color: var(--stone-light); margin-bottom: 1.25rem; }
.top-desc { font-size: 0.9rem; color: var(--stone-mid); line-height: 1.7; margin-bottom: 1.25rem; }
.top-features { list-style: none; margin-bottom: 1.5rem; border-top: 1px solid var(--border); padding-top: 1.25rem; }
.top-features li { font-size: 0.85rem; color: var(--stone-mid); padding: 0.3rem 0; display: flex; gap: 0.5rem; align-items: flex-start; }
.top-features li::before { content: '✓'; color: var(--moss); font-weight: 700; flex-shrink: 0; }
.top-cta { display: block; text-align: center; background: var(--moss); color: white; padding: 0.75rem; border-radius: var(--radius-sm); font-size: 0.85rem; font-weight: 500; text-decoration: none; transition: background 0.15s, border-color 0.15s; }
.top-cta:hover { background: var(--stone); color: white; }
.top-card:not(.featured) .top-cta { background: var(--white); color: var(--stone); border: 1px solid var(--border); }
.top-card:not(.featured) .top-cta:hover { background: var(--parchment); border-color: var(--stone-light); color: var(--stone); }

/* Additional services */
.add-services-bg { background: var(--parchment); }
.add-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 2.5rem; }
.add-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.75rem; }
.add-icon { font-size: 1.6rem; margin-bottom: 0.75rem; }
.add-name { font-family: var(--serif); font-size: 1.05rem; font-weight: 600; color: var(--stone); margin-bottom: 0.4rem; }
.add-desc { font-size: 0.85rem; color: var(--stone-mid); line-height: 1.7; }
.add-price { font-size: 0.8rem; font-weight: 600; color: var(--moss); margin-top: 0.75rem; }

/* Steps */
.steps-bg { background: var(--cream); }
.steps { display: grid; grid-template-columns: repeat(5,1fr); gap: 1.5rem; margin-top: 3rem; position: relative; }
.steps::before { content: ''; position: absolute; top: 27px; left: calc(10% + 14px); right: calc(10% + 14px); height: 1px; background: var(--border); z-index: 0; }
.step { text-align: center; padding: 0 0.5rem; }
.step-num { width: 56px; height: 56px; border-radius: 50%; background: var(--white); border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; font-family: var(--serif); font-size: 1.1rem; font-weight: 600; color: var(--moss); line-height: 1; position: relative; z-index: 1; transition: border-color 0.2s, background 0.2s; }
.step:hover .step-num { border-color: var(--moss); background: rgba(45,82,38,0.04); }
.step-title { font-weight: 600; font-size: 0.88rem; color: var(--stone); margin-bottom: 0.4rem; }
.step-desc { font-size: 0.82rem; color: var(--stone-mid); line-height: 1.65; }
.step::after { display: none; }

/* Testimonials / gallery */
.testimonials-bg { background: var(--stone); }
.testimonials-bg .section-label { color: var(--moss-light); }
.testimonials-bg .section-label::before { background: var(--moss-light); }
.testimonials-bg .section-title { color: white; }
.pinterest-wrap { margin-top: 3rem; text-align: center; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.08); }
.pinterest-label { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 1.25rem; }

/* Cities */
.cities-bg { background: var(--parchment); }
.cities-grid { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 2rem; }
.city-tag { padding: 0.4rem 1rem; border: 1px solid var(--border); border-radius: 20px; font-size: 0.85rem; color: var(--stone-mid); background: var(--white); }
.city-tag.primary { border-color: var(--moss); color: var(--moss); font-weight: 500; background: rgba(45,82,38,0.05); }

/* Grave search card */
.grave-search-card { background: var(--parchment); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem 2rem; margin-top: 2rem; margin-bottom: 0.75rem; }
.grave-search-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--stone-light); margin-bottom: 0.5rem; }
.grave-search-inner { display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center; }
.grave-search-name { font-family: var(--serif); font-size: 1.25rem; font-weight: 600; color: var(--stone); margin-bottom: 0.4rem; }
.grave-search-desc { font-size: 0.875rem; color: var(--stone-mid); line-height: 1.7; }
.grave-search-price { text-align: right; flex-shrink: 0; }
.grave-search-price-num { font-family: var(--serif); font-size: 1.7rem; font-weight: 600; color: var(--moss); line-height: 1; }
.grave-search-price-note { font-size: 0.78rem; color: var(--stone-light); margin-bottom: 0.85rem; }
.grave-search-btn { display: inline-block; padding: 0.55rem 1.1rem; background: var(--moss); color: white; text-decoration: none; border-radius: var(--radius-sm); font-size: 0.85rem; font-weight: 500; white-space: nowrap; transition: background 0.15s; }
.grave-search-btn:hover { background: var(--stone); color: white; }

/* Divider with label */
.divider-labeled { display: flex; align-items: center; gap: 1rem; margin: 1.75rem 0; }
.divider-labeled-line { flex: 1; height: 1px; background: var(--border); }
.divider-labeled-text { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--stone-light); white-space: nowrap; }

/* Travel note */
.travel-note { margin-top: 1rem; font-size: 0.85rem; color: var(--stone-light); padding: 0.7rem 1rem; background: var(--parchment); border-radius: var(--radius-sm); border-left: 3px solid var(--border); }

/* Secondary services */
.secondary-services { margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.secondary-services-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--stone-light); margin-bottom: 1rem; }
.secondary-services-grid { display: flex; flex-wrap: wrap; gap: 1rem; }
.secondary-service-card { flex: 1; min-width: 190px; padding: 1rem 1.25rem; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-sm); }
.secondary-service-name { font-family: var(--serif); font-size: 0.95rem; font-weight: 600; color: var(--stone); margin-bottom: 0.3rem; }
.secondary-service-desc { font-size: 0.82rem; color: var(--stone-mid); line-height: 1.6; }
.secondary-service-price { font-size: 0.78rem; color: var(--moss-mid); margin-top: 0.5rem; font-weight: 500; }

/* Section subtitle no-margin variant */
.section-subtitle.no-margin { margin-bottom: 0; }

/* First request note */
.first-request-note { margin-top: 2rem; padding: 0.85rem 1.1rem; background: rgba(45,82,38,0.07); border-left: 3px solid var(--moss-light); border-radius: var(--radius-sm); display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; }
.first-request-tag { font-size: 0.75rem; font-weight: 600; color: var(--moss-mid); text-transform: uppercase; letter-spacing: 0.08em; white-space: nowrap; }
.first-request-text { font-size: 0.85rem; color: var(--stone-mid); }
.first-request-link { color: var(--moss); text-decoration: none; border-bottom: 1px solid var(--moss-light); }
.first-request-link:hover { color: var(--stone); border-color: var(--border); }

/* Returning clients card */
.returning-clients-card { margin-top: 2.5rem; padding: 1.5rem 1.75rem; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); display: flex; gap: 1.5rem; align-items: flex-start; }
.returning-clients-icon { flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%; background: rgba(45,82,38,0.08); display: flex; align-items: center; justify-content: center; }
.returning-clients-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--moss-mid); margin-bottom: 0.5rem; }
.returning-clients-text { font-size: 0.875rem; color: var(--stone-mid); line-height: 1.8; }

/* Testimonials grid */
.section-title.light { color: white; }
.section-subtitle.light { color: rgba(255,255,255,0.6); }
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.testimonial-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 4px; overflow: hidden; }
.testimonial-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.testimonial-photos img { width: 100%; aspect-ratio: 1; object-fit: cover; display: block; }
.testimonial-labels { display: flex; justify-content: space-between; padding: 0.4rem 0.75rem; background: rgba(0,0,0,0.2); font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.35); }
.testimonial-quote-wrap { padding: 1.25rem 1.5rem; }
.testimonial-quote { font-family: var(--serif); font-style: italic; font-size: 0.85rem; color: rgba(255,255,255,0.85); line-height: 1.65; }

/* Order contact extras */
.order-contact-links { margin-top: 1.75rem; display: flex; flex-direction: column; gap: 0.75rem; }
.order-email-link { font-size: 0.95rem; color: var(--stone); text-decoration: none; display: flex; align-items: center; gap: 0.5rem; font-weight: 500; }
.order-email-link:hover { color: var(--moss); }
.messenger-btn.fit { width: fit-content; }
.form-helper-note { font-size: 0.82rem; color: var(--stone-light); margin-top: 0.4rem; }

/* Cities layout with side panel */
.cities-layout { display: grid; grid-template-columns: 1fr auto; gap: 3rem; align-items: start; margin-top: 2rem; }
.cities-layout .cities-grid { margin-top: 0; }

/* Footer index extras */
.footer-what-label { color: rgba(255,255,255,0.35); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 1.25rem; margin-bottom: 0.5rem; }
.footer-payment { border-top: 1px solid rgba(255,255,255,0.07); max-width: 1100px; margin: 1.5rem auto 0; padding-top: 1.5rem; display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.footer-payment-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.3); }
.footer-payment-badge { opacity: 0.4; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.05em; color: white; background: rgba(255,255,255,0.12); padding: 3px 8px; border-radius: 3px; }
.footer-bottom-link { color: rgba(255,255,255,0.4); text-decoration: none; font-size: 0.78rem; border-bottom: 1px solid rgba(255,255,255,0.15); }
.footer-bottom-link:hover { color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.4); }

/* Order form */
.order-bg { background: var(--cream); }
.order-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; margin-top: 3rem; align-items: start; }
.order-guarantee { margin-bottom: 2rem; padding: 1.5rem; border: 1px solid var(--border); border-radius: var(--radius); background: var(--white); }
.order-guarantee h4 { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--moss-mid); margin-bottom: 0.75rem; }
.order-guarantee p { font-size: 0.9rem; color: var(--stone-mid); line-height: 1.8; margin-bottom: 0.75rem; }
.order-guarantee p:last-child { margin-bottom: 0; }
.order-form { background: var(--white); border-radius: var(--radius); padding: 2.5rem; border: 1px solid var(--border); box-shadow: 0 4px 32px rgba(0,0,0,0.06); }
.form-title { font-family: var(--serif); font-size: 1.6rem; font-weight: 600; color: var(--stone); margin-bottom: 1.75rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: 0.75rem; font-weight: 600; color: var(--stone-mid); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 0.4rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 0.75rem 1rem; border: 1px solid var(--border); border-radius: var(--radius-sm); font-family: var(--sans); font-size: 0.9rem; color: var(--stone); background: var(--cream); transition: border-color 0.15s; outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--moss); background: var(--white); }
.form-group textarea { min-height: 100px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit { width: 100%; padding: 0.95rem; background: var(--moss); color: white; border: none; font-family: var(--sans); font-size: 0.9rem; font-weight: 600; cursor: pointer; border-radius: var(--radius-sm); transition: background 0.15s; margin-top: 0.5rem; }
.form-submit:hover { background: var(--stone); }
.form-note { font-size: 0.78rem; color: var(--stone-light); margin-top: 0.75rem; text-align: center; }
.wa-qr-block { margin-top: 2rem; display: flex; align-items: center; gap: 1.25rem; }
.wa-qr-block img { border-radius: var(--radius-sm); border: 1px solid var(--border); flex-shrink: 0; }
.wa-qr-block p { font-size: 0.85rem; color: var(--stone-mid); line-height: 1.6; }

/* Index mobile */
@media (max-width: 768px) {
.order-bg { background: var(--cream); }
.order-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; margin-top: 3rem; align-items: start; }
.order-guarantee { margin-bottom: 2rem; padding: 1.5rem; border: 1px solid var(--border); border-radius: var(--radius); background: var(--white); }
.order-guarantee h4 { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--moss-mid); margin-bottom: 0.75rem; }
.order-guarantee p { font-size: 0.9rem; color: var(--stone-mid); line-height: 1.8; margin-bottom: 0.75rem; }
.order-guarantee p:last-child { margin-bottom: 0; }
.order-form { background: var(--white); border-radius: var(--radius); padding: 2.5rem; border: 1px solid var(--border); box-shadow: 0 4px 32px rgba(0,0,0,0.06); }
.form-title { font-family: var(--serif); font-size: 1.6rem; font-weight: 600; color: var(--stone); margin-bottom: 1.75rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: 0.75rem; font-weight: 600; color: var(--stone-mid); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 0.4rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 0.75rem 1rem; border: 1px solid var(--border); border-radius: var(--radius-sm); font-family: var(--sans); font-size: 0.9rem; color: var(--stone); background: var(--cream); transition: border-color 0.15s; outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--moss); background: var(--white); }
.form-group textarea { min-height: 100px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit { width: 100%; padding: 0.95rem; background: var(--moss); color: white; border: none; font-family: var(--sans); font-size: 0.9rem; font-weight: 600; cursor: pointer; border-radius: var(--radius-sm); transition: background 0.15s; margin-top: 0.5rem; }
.form-submit:hover { background: var(--stone); }
.form-note { font-size: 0.78rem; color: var(--stone-light); margin-top: 0.75rem; text-align: center; }
.wa-qr-block { margin-top: 2rem; display: flex; align-items: center; gap: 1.25rem; }
.wa-qr-block img { border-radius: var(--radius-sm); border: 1px solid var(--border); flex-shrink: 0; }
.wa-qr-block p { font-size: 0.85rem; color: var(--stone-mid); line-height: 1.6; }

/* Index mobile */
@media (max-width: 768px) {
  .hero-index { padding: 100px 1.25rem 60px; overflow: visible; }
  .hero-index h1 { max-width: 100%; font-size: clamp(1.7rem, 7vw, 2.2rem); }
  .hero-lead { max-width: 100%; font-size: 0.95rem; }
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-stats { grid-template-columns: repeat(3,1fr); gap: 0.5rem; padding: 1.25rem 0.75rem; }
  .stat-num { font-size: 1.8rem; }
  .stat-label { font-size: 0.65rem; letter-spacing: 0.03em; }
  .order-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .trust-bar { gap: 0.75rem; padding: 0.9rem 1rem; }
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .step { text-align: left; padding: 1.25rem 0; border-top: 1px solid var(--border); display: flex; gap: 1rem; align-items: flex-start; }
  .step:first-child { border-top: none; }
  .step-num { width: 40px; height: 40px; font-size: 0.9rem; flex-shrink: 0; margin: 0; }
  .top-services-grid { grid-template-columns: 1fr; }
  .wa-qr-block { display: none; }
  section { padding: 3.5rem 1.25rem; }
  .grave-search-inner { grid-template-columns: 1fr !important; gap: 1rem !important; }
  .grave-search-price { text-align: left !important; }
  .grave-search-btn { display: block !important; text-align: center !important; white-space: normal !important; }
}