/*
 * Cantico site stylesheet.
 * Tokens and components follow the Cantico Design System exactly
 * (paper, ink, green, ochre; EB Garamond + Inter; rules and space, no shadow
 * except on sticky elements).
 */

/* ---------- Fonts (self-hosted, OFL) ---------- */
@font-face { font-family: "EB Garamond"; font-style: normal; font-weight: 400; font-display: swap; src: url(../fonts/eb-garamond-latin-400-normal.woff2) format("woff2"); }
@font-face { font-family: "EB Garamond"; font-style: normal; font-weight: 500; font-display: swap; src: url(../fonts/eb-garamond-latin-500-normal.woff2) format("woff2"); }
@font-face { font-family: "EB Garamond"; font-style: normal; font-weight: 600; font-display: swap; src: url(../fonts/eb-garamond-latin-600-normal.woff2) format("woff2"); }
@font-face { font-family: "EB Garamond"; font-style: italic; font-weight: 400; font-display: swap; src: url(../fonts/eb-garamond-latin-400-italic.woff2) format("woff2"); }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 400; font-display: swap; src: url(../fonts/inter-latin-400-normal.woff2) format("woff2"); }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 500; font-display: swap; src: url(../fonts/inter-latin-500-normal.woff2) format("woff2"); }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 600; font-display: swap; src: url(../fonts/inter-latin-600-normal.woff2) format("woff2"); }

/* ---------- Tokens ---------- */
:root {
  --paper: #faf7f1; --paper-raised: #f3eee5; --paper-sombre: #f4f2ee;
  --ink: #221c17; --ink-muted: #574e44; --ink-faint: #6e6559; --ink-inverse: #faf7f1;
  --rule: #ddd5c8; --rule-strong: #c2b8a6;
  --green: #2f5d4f; --green-deep: #1f4034; --green-tint: #e8efea;
  --ochre: #8a5a22; --ochre-tint: #f5ece0; --whatsapp: #1f6b53;
  --font-serif: "EB Garamond", Georgia, "Times New Roman", serif;
  --font-sans: Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
  --space-1: 4px; --space-2: 8px; --space-3: 12px; --space-4: 16px; --space-5: 24px;
  --space-6: 32px; --space-7: 48px; --space-8: 72px; --measure: 68ch;
  --radius-sm: 2px; --radius-md: 4px;
  --shadow-sticky: 0 1px 8px rgba(34, 28, 23, 0.12);
  --gutter: 120px; --main: 720px; --aside: 300px;
  --ground: var(--paper);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: 24px; }
body { margin: 0; background: var(--ground); color: var(--ink); font-family: var(--font-sans);
  font-size: 17px; line-height: 1.7; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body.is-funeral { --ground: var(--paper-sombre); }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--green-deep); }
:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; }
h1, h2, h3, h4 { font-family: var(--font-serif); color: var(--ink); font-weight: 500; }
strong, b { font-weight: 600; }
.screen-reader-text { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip-link:focus { position: fixed; top: 8px; left: 8px; width: auto; height: auto; clip: auto; z-index: 100; background: var(--paper); padding: 12px 16px; }

/* ---------- Buttons ---------- */
.cn-btn, .wp-block-button__link { display: inline-block; font-family: var(--font-sans); font-size: 16px; font-weight: 600; line-height: 1.2;
  padding: var(--space-4) var(--space-5); border-radius: var(--radius-sm); text-decoration: none; cursor: pointer;
  background: var(--green); color: var(--ink-inverse); border: 1px solid var(--green); }
.cn-btn:hover, .wp-block-button__link:hover { background: var(--green-deep); border-color: var(--green-deep); color: var(--ink-inverse); }
.cn-btn--quiet, .is-style-outline .wp-block-button__link { background: transparent; color: var(--green); border-color: var(--rule-strong); }
.cn-btn--quiet:hover, .is-style-outline .wp-block-button__link:hover { background: var(--green-tint); border-color: var(--green); color: var(--green-deep); }
.cn-btn--whatsapp { background: var(--whatsapp); border-color: var(--whatsapp); }

/* ---------- Header ---------- */
.cn-header { border-bottom: 1px solid var(--rule); background: var(--ground); }
.cn-header__inner { max-width: calc(1200px + 2 * var(--gutter)); margin: 0 auto; height: 88px; padding: 0 var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.cn-brand { flex-shrink: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; color: var(--ink); text-decoration: none; }
.cn-brand__name { font-family: var(--font-serif); font-size: 30px; line-height: 1; font-weight: 500; letter-spacing: .01em; }
.cn-brand__desc { font-size: 12px; line-height: 1.4; color: var(--ink-faint); letter-spacing: .02em; }
.cn-nav { display: flex; align-items: center; gap: 32px; white-space: nowrap; }
.cn-type-home .cn-nav, .cn-type-home .cn-nav ul { gap: 28px; }
.cn-nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 40px; align-items: center; }
.cn-nav li a { font-size: 15px; color: var(--ink-muted); text-decoration: none; display: block; padding: 30px 0 28px; border-bottom: 2px solid transparent; }
.cn-nav li a:hover { color: var(--ink); }
.cn-nav li.current-menu-item > a, .cn-nav li.current-page-ancestor > a, .cn-nav li.cn-current > a { color: var(--ink); font-weight: 600; border-bottom-color: var(--green); }
.cn-nav .cn-btn { padding: 12px 20px; font-size: 15px; }
.cn-nav__wa { display: flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 500; color: var(--whatsapp); text-decoration: none; }
.cn-nav__wa::before { content: ""; width: 8px; height: 8px; border-radius: 4px; background: var(--whatsapp); }
.cn-menu-toggle { display: none; width: 44px; height: 44px; background: none; border: 0; padding: 0 0 0 12px; cursor: pointer; flex-direction: column; justify-content: center; align-items: flex-end; gap: 5px; }
.cn-menu-toggle span { display: block; width: 24px; height: 1.5px; background: var(--ink); }
.is-funeral .cn-header__inner { height: 80px; }
.is-funeral .cn-brand__name { font-size: 28px; }

/* Funeral call bar, sticky above everything */
.cn-callbar-sticky { position: sticky; top: 0; z-index: 20; background: var(--paper-sombre); box-shadow: var(--shadow-sticky); padding: 12px var(--gutter); }
.cn-callbar-sticky .cn-callbar { max-width: 1200px; margin: 0 auto; box-shadow: none; }

/* ---------- Page layout ---------- */
.cn-wrap { max-width: calc(var(--aside) + var(--gutter) + var(--main) + 2 * var(--gutter)); margin: 0 auto; padding: 56px var(--gutter) 96px; }
.cn-layout { display: grid; grid-template-columns: var(--aside) var(--main); column-gap: var(--gutter); justify-content: center; }
.cn-layout > .cn-page-head { grid-column: 2; grid-row: 1; }
.cn-layout > .cn-aside { grid-column: 1; grid-row: 1 / span 2; align-self: start; position: sticky; top: 32px; padding-top: 140px; display: flex; flex-direction: column; gap: 40px; }
.cn-layout > .cn-body { grid-column: 2; grid-row: 2; min-width: 0; }
.cn-layout--single { grid-template-columns: var(--main); }
.cn-layout--single > .cn-page-head, .cn-layout--single > .cn-body { grid-column: 1; }
.admin-bar .cn-layout > .cn-aside { top: 64px; }
.cn-layout--enquiry { grid-template-columns: var(--main) var(--aside); }
.cn-layout--enquiry > .cn-page-head, .cn-layout--enquiry > .cn-body { grid-column: 1; }
.cn-layout--enquiry > .cn-aside { grid-column: 2; position: static; padding-top: 148px; }
.cn-aside--enquiry .cn-steps li { padding-bottom: 16px; }
.cn-aside--enquiry .cn-steps h3 { font-size: 18px; }
.is-funeral .cn-wrap { padding-top: 64px; }

.cn-breadcrumb { font-size: 13px; line-height: 1.5; letter-spacing: .04em; color: var(--ink-faint); margin-bottom: 40px; }
.cn-breadcrumb ol { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; }
.cn-breadcrumb li + li::before { content: "/"; margin: 0 8px; color: var(--rule-strong); }
.cn-breadcrumb a { color: var(--ink-faint); text-decoration: none; }
.cn-breadcrumb a:hover { color: var(--green); }
.cn-breadcrumb [aria-current] { color: var(--ink); }
.cn-kicker { margin: 0 0 12px; font-size: 13px; font-weight: 500; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-faint); }
.cn-title { margin: 0 0 32px; font-size: 44px; line-height: 1.05; font-weight: 500; letter-spacing: -.005em; }
.cn-byline { margin: -12px 0 32px; padding-bottom: 24px; border-bottom: 1px solid var(--rule); font-size: 13px; line-height: 1.5; color: var(--ink-faint); }
.cn-byline span + span::before { content: "·"; margin: 0 8px; color: var(--rule-strong); }

/* ---------- Answer-first block ---------- */
.cn-answer { background: var(--green-tint); border-left: 3px solid var(--green); padding: var(--space-5); border-radius: var(--radius-sm); max-width: var(--measure); }
.cn-answer p { margin: 0; font-size: 20px; line-height: 1.6; color: var(--ink); }
.cn-answer p + p { margin-top: var(--space-3); }
.is-funeral .cn-answer { background: var(--paper-raised); border-left-color: var(--rule-strong); }

/* ---------- Aside ---------- */
.cn-jump { border-left: 1px solid var(--rule); padding-left: var(--space-5); }
.cn-jump__label, .cn-meta-label { font-size: 13px; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-faint); margin: 0 0 var(--space-3); font-weight: 500; line-height: 1.5; }
.cn-jump ol { list-style: none; margin: 0; padding: 0; }
.cn-jump li { margin-bottom: var(--space-3); line-height: 1.4; }
.cn-jump a { color: var(--ink-muted); text-decoration: none; font-size: 15px; line-height: 1.4; }
.cn-jump a:hover { color: var(--green); }
.cn-jump a.is-current { color: var(--ink); font-weight: 600; box-shadow: -21px 0 0 -20px var(--green); }
.cn-aside-note { border-top: 1px solid var(--rule-strong); padding-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.cn-aside-note p { margin: 0; font-size: 15px; line-height: 1.6; color: var(--ink-muted); }
.cn-aside-note .cn-meta-label { margin: 0; }
.cn-aside-note .cn-btn { text-align: center; margin-top: 4px; }

/* ---------- Content (block editor output) ---------- */
.cn-body > .cn-content > *:first-child { margin-top: 72px; }
.cn-content { font-size: 17px; line-height: 1.7; }
.cn-content > * { max-width: var(--main); }
.cn-content p { margin: 0 0 16px; }
.cn-content h2 { font-size: 26px; line-height: 1.25; margin: 72px 0 24px; scroll-margin-top: 24px; }
.cn-content h3 { font-size: 20px; line-height: 1.3; font-weight: 600; margin: 32px 0 12px; }
.cn-content h2 + p, .cn-content h3 + p { margin-top: 0; }
.cn-content .is-style-cn-lead, .cn-content .cn-small { font-size: 15px; line-height: 1.6; color: var(--ink-muted); }
.cn-content .cn-table-wrap { margin: 0 0 24px; }
.cn-content .cn-table-wrap + p { color: var(--ink-muted); margin-top: 24px; }

/* Ruled list (default for bullet lists) */
.cn-content ul { list-style: none; margin: 0 0 20px; padding: 0; border-top: 1px solid var(--rule); }
.cn-content ul > li { padding: 14px 0; border-bottom: 1px solid var(--rule); color: var(--ink-muted); }
.cn-content ul > li > strong:first-child { color: var(--ink); }
.cn-content ol { margin: 0 0 20px; padding-left: 1.4em; }
.cn-content ol > li { margin-bottom: 8px; }

/* Ticks: short lists in two columns with a green dash */
.cn-content ul.is-style-cn-ticks { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 32px; }
.cn-content ul.is-style-cn-ticks > li { display: flex; gap: 12px; align-items: baseline; font-size: 15px; line-height: 1.6; color: var(--ink); }
.cn-content ul.is-style-cn-ticks > li::before { content: ""; flex-shrink: 0; width: 12px; height: 1px; background: var(--green); transform: translateY(-4px); }

/* Checklist */
.cn-checklist, .cn-content ul.is-style-cn-checklist { list-style: none; margin: 0 0 20px; padding: 0; max-width: var(--measure); border-top: 0; }
.cn-checklist li, .cn-content ul.is-style-cn-checklist > li { position: relative; padding: var(--space-3) 0 var(--space-3) var(--space-6);
  border-bottom: 1px solid var(--rule); font-size: 15px; line-height: 1.6; color: var(--ink-muted); }
.cn-checklist li::before, .cn-content ul.is-style-cn-checklist > li::before { content: ""; position: absolute; left: 0; top: 20px;
  width: 10px; height: 10px; border: 1px solid var(--ochre); border-radius: var(--radius-sm); }

/* Steps: ordered list, bold lead becomes the step title */
.cn-steps, .cn-content ol.is-style-cn-steps { list-style: none; margin: 0 0 16px; padding: 0; counter-reset: cnstep; max-width: var(--measure); }
.cn-steps li, .cn-content ol.is-style-cn-steps > li { counter-increment: cnstep; position: relative; padding: 0 0 var(--space-5) var(--space-7);
  margin: 0; font-size: 15px; line-height: 1.6; color: var(--ink-muted); }
.cn-steps li::before, .cn-content ol.is-style-cn-steps > li::before { content: counter(cnstep); position: absolute; left: 0; top: -2px;
  font-family: var(--font-serif); font-size: 20px; color: var(--green); font-weight: 600; line-height: 1.3; }
.cn-steps li:not(:last-child)::after, .cn-content ol.is-style-cn-steps > li:not(:last-child)::after { content: ""; position: absolute; left: 9px; top: 30px; bottom: 6px; width: 1px; background: var(--rule); }
.cn-steps h3, .cn-content ol.is-style-cn-steps > li > strong:first-child { display: block; margin: 0 0 var(--space-2);
  font-family: var(--font-serif); font-size: 20px; line-height: 1.3; font-weight: 600; color: var(--ink); }
.cn-steps p { margin: 0; font-size: 15px; line-height: 1.6; color: var(--ink-muted); }

/* Callout note */
.cn-note, .cn-content .is-style-cn-note { background: var(--paper-raised); border: 1px solid var(--rule); border-radius: var(--radius-sm);
  padding: var(--space-5); max-width: var(--measure); margin: 8px 0 24px; }
.cn-note__label, .cn-content .cn-note__label { font-size: 13px; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-faint); margin: 0 0 var(--space-2) !important; font-weight: 500; line-height: 1.5; }
.cn-note p, .cn-content .is-style-cn-note p { margin: 0; font-size: 15px; line-height: 1.6; color: var(--ink-muted); }
.cn-note p + p, .cn-content .is-style-cn-note p + p { margin-top: 12px; }
.cn-note--hardship, .cn-content .is-style-cn-hardship { background: var(--ochre-tint); border: 1px solid var(--ochre); border-radius: var(--radius-sm); padding: var(--space-6); margin: 8px 0 24px; max-width: var(--measure); }
.cn-note--hardship .cn-note__label { color: var(--ochre); }
.cn-note--hardship p, .cn-content .is-style-cn-hardship p { color: var(--ink); font-size: 17px; line-height: 1.7; margin: 0; }
.cn-note--hardship p + p, .cn-content .is-style-cn-hardship p + p { margin-top: 16px; }
.cn-content .is-style-cn-hardship h2 { margin-top: 0; }

/* Guide: statements of Church or parish requirements (visibly different from our view) */
.cn-content .is-style-cn-source { background: var(--paper-raised); border-top: 2px solid var(--ink-muted); padding: 24px; margin: 0 0 20px; }
.cn-content .is-style-cn-source p { margin: 0; color: var(--ink); }
.cn-content .is-style-cn-source p + p { margin-top: 12px; }
.cn-content .is-style-cn-source .cn-note__label { color: var(--ink-faint); }
.cn-content .is-style-cn-ours { border-top: 2px solid var(--green); padding-top: 20px; margin: 0 0 24px; }
.cn-content .is-style-cn-ours > .cn-note__label { color: var(--green); }
.cn-content .cn-intro-note { font-size: 15px; line-height: 1.6; color: var(--ink-faint); margin-bottom: 24px; }

/* Columns used as grids: top-aligned */
.cn-content .wp-block-columns[class*="is-style-cn-"] { align-items: start !important; }
.cn-content .wp-block-columns[class*="is-style-cn-"] > .wp-block-column { min-width: 0; }
mark.cn-confirm { background: #fff3d6; color: var(--ochre); padding: 0 4px; }
.cn-callbar-mobile { display: none; }

/* Two labelled lists side by side */
.cn-content .wp-block-columns.is-style-cn-pair { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 48px; margin: 0 0 24px; }
.cn-content .wp-block-columns.is-style-cn-pair ul > li { font-size: 15px; line-height: 1.6; padding: 12px 0; }
.cn-content .wp-block-columns.is-style-cn-pair p.cn-note__label { margin-bottom: 12px !important; }

/* Cross-link cards (three doors, helpful reading) */
.cn-content .wp-block-columns.is-style-cn-cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); column-gap: 48px; border-top: 1px solid var(--rule-strong); padding-top: 24px; margin: 0 0 24px; }
.cn-content .is-style-cn-cards > .wp-block-column { display: flex; flex-direction: column; gap: 10px; padding-right: 48px; border-right: 1px solid var(--rule); }
.cn-content .is-style-cn-cards > .wp-block-column:last-child { border-right: 0; padding-right: 0; }
.cn-content .is-style-cn-cards h3 { margin: 0; }
.cn-content .is-style-cn-cards p { margin: 0; font-size: 15px; line-height: 1.6; color: var(--ink-muted); }
.cn-content .is-style-cn-cards p.cn-card-link { margin-top: 6px; }
.cn-content .is-style-cn-cards.cn-doors { border-top: 0; padding-top: 0; }
.cn-content .is-style-cn-cards.cn-doors h3 { font-size: 26px; line-height: 1.25; font-weight: 500; }
.cn-content .is-style-cn-cards.cn-doors p { font-size: 17px; line-height: 1.7; }
.cn-content .is-style-cn-cards.cn-doors p.cn-card-link { font-size: 15px; }

/* Pull quote */
.cn-content blockquote, .cn-content .wp-block-quote { margin: 0 0 24px; padding: 0 0 0 24px; border-left: 2px solid var(--ochre);
  font-family: var(--font-serif); font-style: italic; font-size: 24px; line-height: 1.4; color: var(--ink); }
.cn-content blockquote p { margin: 0; }

/* Figures */
.cn-content figure.wp-block-image { margin: 48px 0; }
.cn-content figcaption { font-size: 13px; line-height: 1.5; letter-spacing: .02em; color: var(--ink-faint); border-bottom: 1px solid var(--rule); padding-bottom: 12px; margin-top: 12px; }

/* Admin-only notes (open decisions), visible to editors only */
.cn-content .cn-admin-only { background: repeating-linear-gradient(135deg, #fff8e6 0 10px, #fff3d6 10px 20px); border: 1px dashed var(--ochre); padding: 16px; font-size: 14px; color: var(--ink); }
.cn-content .cn-admin-only::before { content: "Visible to editors only"; display: block; font-size: 12px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--ochre); margin-bottom: 8px; }
.cn-content .cn-admin-only p { margin: 0 0 6px; }

/* ---------- Arrangement table ---------- */
.cn-table-wrap { overflow-x: auto; }
.cn-table { width: 100%; border-collapse: collapse; font-size: 15px; line-height: 1.5; }
.cn-table caption { text-align: left; font-size: 13px; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-faint); padding-bottom: var(--space-3); }
.cn-table th, .cn-table td { text-align: left; padding: var(--space-3); border-bottom: 1px solid var(--rule); vertical-align: top; }
.cn-table thead th { font-size: 13px; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-faint); font-weight: 500; border-bottom: 1px solid var(--rule-strong); }
.cn-table td:first-child { color: var(--ink); font-weight: 600; }
.cn-table td { color: var(--ink-muted); }
.cn-table .cn-amount { color: var(--ink); white-space: nowrap; font-variant-numeric: tabular-nums; }
.cn-table .cn-notice { color: var(--ink-faint); white-space: nowrap; }
.cn-table .cn-name-note { font-weight: 400; color: var(--ink-faint); }

/* ---------- FAQ ---------- */
.cn-faq-section { margin-top: 72px; }
.cn-faq-section > h2 { font-size: 26px; line-height: 1.25; margin: 0 0 24px; }
.cn-faq { border-top: 1px solid var(--rule); max-width: var(--measure); }
.cn-faq details { border-bottom: 1px solid var(--rule); }
.cn-faq summary { cursor: pointer; list-style: none; padding: var(--space-4) 0; font-family: var(--font-serif); font-size: 20px; line-height: 1.3;
  font-weight: 600; color: var(--ink); display: flex; justify-content: space-between; gap: var(--space-4); align-items: baseline; }
.cn-faq summary::-webkit-details-marker { display: none; }
.cn-faq summary::after { content: "+"; color: var(--green); font-family: var(--font-sans); font-weight: 400; font-size: 22px; }
.cn-faq details[open] summary::after { content: "\2212"; }
.cn-faq .cn-faq-a { padding: 0 0 var(--space-5); font-size: 15px; line-height: 1.6; color: var(--ink-muted); margin: 0; }

/* ---------- CTA ---------- */
.cn-cta { border-top: 1px solid var(--rule-strong); border-bottom: 1px solid var(--rule-strong); padding: var(--space-7) 0; max-width: var(--measure); margin-top: 72px; }
.cn-cta h2 { font-size: 26px; line-height: 1.25; font-weight: 500; margin: 0 0 var(--space-3); }
.cn-cta p { margin: 0 0 var(--space-5); font-size: 17px; line-height: 1.7; color: var(--ink-muted); }
.cn-cta .cn-lead-note { margin: var(--space-4) 0 0; font-size: 15px; color: var(--ink-muted); }

/* ---------- Call bar ---------- */
.cn-callbar { display: flex; align-items: center; justify-content: space-between; gap: var(--space-4); background: var(--whatsapp); color: var(--ink-inverse);
  padding: var(--space-4) var(--space-5); border-radius: var(--radius-md); margin: 24px 0; }
.cn-callbar p { margin: 0; }
.cn-callbar__text { font-size: 15px; line-height: 1.4; color: var(--ink-inverse); }
.cn-callbar__text strong { display: block; font-size: 17px; font-weight: 600; }
.cn-callbar__actions { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.cn-callbar__action { background: var(--ink-inverse); color: var(--whatsapp) !important; text-decoration: none; font-size: 16px; font-weight: 600;
  padding: var(--space-3) var(--space-5); border-radius: var(--radius-sm); white-space: nowrap; }
.cn-callbar__action:hover { background: #fff; }
.cn-callbar__call { color: var(--ink-inverse) !important; font-size: 16px; font-weight: 600; text-decoration: none; }
.cn-callbar__call:hover { text-decoration: underline; }
.cn-callbar-sticky .cn-callbar { margin: 0; }

/* ---------- Forms ---------- */
.cn-form { margin-top: 40px; border-top: 1px solid var(--rule-strong); padding-top: 32px; display: flex; flex-direction: column; gap: 28px; }
.cn-form .cn-grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px 24px; align-items: start; }
.cn-form .cn-grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px 24px; }
.cn-form .cn-contact { border-top: 1px solid var(--rule); padding-top: 28px; }
.cn-field { display: flex; flex-direction: column; gap: 8px; margin: 0; padding: 0; border: 0; min-width: 0; }
.cn-label { font-size: 13px; font-weight: 500; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-faint); padding: 0; }
.cn-optional { text-transform: none; letter-spacing: 0; font-weight: 400; }
.cn-input { width: 100%; min-height: 48px; padding: 10px 12px; font-family: var(--font-sans); font-size: 16px; line-height: 1.5; color: var(--ink);
  background: var(--paper); border: 1px solid var(--rule-strong); border-radius: var(--radius-sm); }
textarea.cn-input { resize: vertical; padding: 12px 14px; }
.cn-input:focus { outline: 2px solid var(--green); outline-offset: 0; border-color: var(--green); }
.cn-help { margin: 0; font-size: 13px; line-height: 1.5; color: var(--ink-faint); }
.cn-options { display: flex; gap: 12px; flex-wrap: wrap; }
.cn-option { flex: 1 1 0; min-width: 150px; display: flex; align-items: center; gap: 10px; padding: 12px 14px; border: 1px solid var(--rule-strong);
  border-radius: var(--radius-sm); background: var(--paper); font-size: 16px; cursor: pointer; }
.cn-option input { width: 18px; height: 18px; accent-color: var(--green); margin: 0; }
.cn-option:has(input:checked) { border-color: var(--green); background: var(--green-tint); }
.cn-submit { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.cn-submit p { margin: 0; font-size: 15px; color: var(--ink-muted); }
.cn-submit .cn-btn { padding: 16px 28px; }
.cn-field-error { margin: 0; font-size: 14px; color: #9b2c1f; }
.cn-field.has-error .cn-input { border-color: #9b2c1f; }
.cn-form-errors { border: 1px solid #9b2c1f; background: #fbeeea; padding: 12px 16px; border-radius: var(--radius-sm); }
.cn-form-errors p { margin: 0; }
.cn-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.cn-funeral-prompt .cn-callbar { margin: 0; }
[hidden] { display: none !important; }
.cn-form--funeral { margin-top: 12px; }

/* ---------- Home ---------- */
.cn-home-hero { max-width: calc(1200px + 2 * var(--gutter)); margin: 0 auto; padding: 88px var(--gutter) 64px; display: flex; gap: 96px; align-items: flex-start; }
.cn-home-hero__main { flex: 0 1 860px; min-width: 0; }
.cn-home-hero h1 { margin: 0 0 20px; font-size: 60px; line-height: 1.02; letter-spacing: -.008em; }
.cn-home-hero .cn-brandline { margin: 0 0 32px; font-family: var(--font-serif); font-style: italic; font-size: 24px; line-height: 1.4; color: var(--ink-muted); }
.cn-home-hero .cn-actions { display: flex; align-items: center; gap: 16px; margin-top: 32px; flex-wrap: wrap; }
.cn-home-hero__side { flex: 1 1 200px; padding: 12px 0 0 32px; border-left: 1px solid var(--rule); display: flex; flex-direction: column; gap: 12px; }
.cn-home-hero__side p { margin: 0; font-size: 15px; line-height: 1.8; color: var(--ink-muted); }
.cn-home-hero__side .cn-meta-label + p { margin-top: -6px; }
.cn-home-hero__side .cn-meta-label:not(:first-child) { margin-top: 12px; }
.cn-home-figure { margin: 0; }
.cn-home-figure img { width: 100%; max-height: 520px; object-fit: cover; object-position: center 44%; }
.cn-home-figure figcaption { max-width: calc(1200px + 2 * var(--gutter)); margin: 12px auto 0; padding: 0 var(--gutter); font-size: 13px; letter-spacing: .02em; color: var(--ink-faint); }
.cn-home-body { max-width: calc(1200px + 2 * var(--gutter)); margin: 0 auto; padding: 0 var(--gutter) 96px; }
.cn-home-body .cn-content > * { max-width: none; }
.cn-home-body .cn-content > .wp-block-group.is-style-cn-split { display: grid; grid-template-columns: var(--aside) var(--main); column-gap: 96px; margin-top: 72px; }
.cn-home-body .is-style-cn-split > .cn-split-head { grid-column: 1; }
.cn-home-body .is-style-cn-split > .cn-split-body { grid-column: 2; min-width: 0; }
.cn-home-body .cn-split-head h2 { margin: 0 0 12px; font-size: 34px; line-height: 1.15; }
.cn-home-body .cn-split-head p { font-size: 17px; line-height: 1.7; color: var(--ink-muted); margin: 0; }
.cn-home-body .cn-split-head p.cn-note__label { margin-top: 0; }
.cn-home-body .cn-split-body > *:last-child { margin-bottom: 0; }
.cn-home-body .cn-split-body > p.cn-small { margin-top: 20px; }
.cn-home-body .cn-split-body ul > li { padding: 20px 0; }
.cn-home-body .cn-content > h2 { font-size: 26px; margin-top: 72px; }
.cn-home-body .wp-block-columns.is-style-cn-cards.cn-doors { margin-top: 72px; }
.cn-home-body .cn-content > .is-style-cn-note { max-width: none; margin-top: 48px; }
.cn-home-body .wp-block-columns.is-style-cn-halves { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 96px; margin-top: 72px; }
.cn-home-body .is-style-cn-halves h2 { font-size: 34px; line-height: 1.15; margin: 0 0 16px; }
.cn-home-body .is-style-cn-halves > .wp-block-column.cn-funeral-panel { background: var(--paper-sombre); border-top: 1px solid var(--rule-strong); padding: 32px; align-self: start; }
.cn-funeral-panel .cn-callbar { flex-direction: column; align-items: stretch; }
.cn-funeral-panel .cn-callbar__actions { justify-content: space-between; }
.cn-home-body .cn-cta { margin-left: auto; margin-right: auto; width: 720px; max-width: 100%; }

/* ---------- Guides and churches index ---------- */
.cn-index { list-style: none; margin: 40px 0 0; padding: 0; border-top: 1px solid var(--rule-strong); }
.cn-index li { padding: 24px 0; border-bottom: 1px solid var(--rule); }
.cn-index h2 { margin: 0 0 8px; font-size: 26px; line-height: 1.25; }
.cn-index h2 a { color: var(--ink); text-decoration: none; }
.cn-index h2 a:hover { color: var(--green); }
.cn-index p { margin: 0; color: var(--ink-muted); font-size: 15px; line-height: 1.6; }
.cn-index .cn-verified { margin-top: 8px; font-size: 13px; color: var(--ink-faint); }

.cn-sources { margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--rule); font-size: 15px; line-height: 1.6; color: var(--ink-muted); }
.cn-sources h2 { font-size: 20px; margin: 0 0 12px; font-weight: 600; }
.cn-sources ul { padding-left: 1.2em; margin: 0; }
.cn-verified-line { font-size: 13px; color: var(--ink-faint); margin-top: 16px; }

/* ---------- Footer ---------- */
.cn-footer { border-top: 1px solid var(--rule-strong); background: var(--paper-raised); }
.cn-footer__inner { max-width: calc(1200px + 2 * var(--gutter)); margin: 0 auto; padding: 64px var(--gutter) 40px; display: flex; flex-direction: column; gap: 48px; }
.cn-footer__grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: 24px; row-gap: 32px; }
.cn-footer__brand { grid-column: span 4; display: flex; flex-direction: column; gap: 12px; }
.cn-footer__brand .cn-brand__name { font-size: 30px; }
.cn-footer__brand p { margin: 0; font-size: 15px; line-height: 1.6; color: var(--ink-muted); max-width: 34ch; }
.cn-footer__brand .cn-brandline { margin-top: 8px; font-family: var(--font-serif); font-style: italic; font-size: 18px; line-height: 1.4; }
.cn-footer__col { grid-column: span 2; display: flex; flex-direction: column; gap: 10px; }
.cn-footer__col .cn-meta-label { margin: 0 0 6px; }
.cn-footer__col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.cn-footer__col a, .cn-footer__col span { font-size: 15px; line-height: 1.5; color: var(--ink); text-decoration: none; }
.cn-footer__col a:hover { color: var(--green); text-decoration: underline; }
.cn-footer__col a.cn-link-green { color: var(--green); text-decoration: underline; }
.cn-footer__base { border-top: 1px solid var(--rule); padding-top: 20px; display: flex; justify-content: space-between; font-size: 13px; line-height: 1.5; color: var(--ink-faint); }
.cn-footer--compact .cn-footer__inner { padding: 40px var(--gutter) 32px; flex-direction: row; align-items: flex-end; justify-content: space-between; gap: 48px; }
.cn-footer--compact .cn-footer__links { display: flex; gap: 32px; flex-wrap: wrap; font-size: 15px; }
.cn-footer--compact .cn-footer__links a { color: var(--ink); }

/* Phone sticky action bar */
.cn-mobile-bar { display: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1280px) {
  :root { --gutter: 64px; }
  .cn-layout { column-gap: 64px; }
}
@media (max-width: 1100px) {
  :root { --gutter: 40px; }
  .cn-layout { grid-template-columns: minmax(0, var(--main)); }
  .cn-layout > .cn-page-head, .cn-layout > .cn-aside, .cn-layout > .cn-body { grid-column: 1; grid-row: auto; }
  .cn-layout > .cn-aside { position: static; padding-top: 32px; gap: 0; }
  .cn-aside-note { display: none; }
  .cn-jump { border-left: 0; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); padding: 16px 0 4px; }
  .cn-body > .cn-content > *:first-child { margin-top: 48px; }
  .cn-nav ul, .cn-nav .cn-nav__wa { gap: 24px; }
  .cn-home-hero { flex-direction: column; gap: 32px; }
  .cn-home-hero__side { border-left: 0; border-top: 1px solid var(--rule); padding: 20px 0 0; }
  .cn-home-body .cn-content > .wp-block-group.is-style-cn-split { grid-template-columns: 1fr; }
  .cn-home-body .is-style-cn-split > * { grid-column: 1 !important; }
  .cn-home-body .cn-split-head { margin-bottom: 16px; }
}
@media (max-width: 900px) {
  .cn-menu-toggle { display: flex; }
  .cn-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; z-index: 30; background: var(--ground); border-bottom: 1px solid var(--rule);
    box-shadow: var(--shadow-sticky); flex-direction: column; align-items: stretch; gap: 0; padding: 8px 20px 20px; }
  .cn-header { position: relative; }
  .cn-nav.is-open { display: flex; }
  .cn-nav ul { flex-direction: column; align-items: stretch; gap: 0; }
  .cn-nav li a { padding: 14px 0; border-bottom: 1px solid var(--rule); font-size: 17px; }
  .cn-nav li.current-menu-item > a { border-bottom-color: var(--rule); color: var(--green); }
  .cn-nav .cn-btn, .cn-nav .cn-nav__wa { margin-top: 16px; text-align: center; justify-content: center; }
  .cn-footer__brand { grid-column: span 12; }
  .cn-footer__col { grid-column: span 6; }
  .cn-content .wp-block-columns.is-style-cn-cards, .cn-home-body .wp-block-columns.is-style-cn-halves { grid-template-columns: minmax(0, 1fr); row-gap: 32px; }
  .cn-content .is-style-cn-cards > .wp-block-column { border-right: 0; padding-right: 0; border-bottom: 1px solid var(--rule); padding-bottom: 24px; }
}
@media (max-width: 640px) {
  :root { --gutter: 20px; }
  body { font-size: 17px; }
  .cn-header__inner { height: 64px; }
  .cn-brand__name { font-size: 26px; }
  .cn-brand__desc { display: none; }
  .cn-callbar-sticky { display: none; }
  .cn-callbar-mobile { display: block; padding: 16px var(--gutter) 0; }
  .cn-callbar-mobile .cn-callbar { margin: 0; }
  .cn-table, .cn-table tbody { display: block; width: 100%; }
  .cn-table caption { display: block; }
  .cn-wrap { padding-top: 24px; padding-bottom: 48px; }
  .cn-breadcrumb { margin-bottom: 20px; }
  .cn-title { font-size: 34px; line-height: 1.1; margin-bottom: 20px; }
  .cn-answer { padding: 20px; }
  .cn-answer p { font-size: 19px; }
  .cn-content h2 { margin-top: 48px; }
  .cn-body > .cn-content > *:first-child { margin-top: 40px; }
  .cn-content ul.is-style-cn-ticks, .cn-content .wp-block-columns.is-style-cn-pair { grid-template-columns: 1fr; }
  .cn-content .wp-block-columns.is-style-cn-pair > .wp-block-column + .wp-block-column { margin-top: 24px; }
  .cn-faq summary { font-size: 18px; }
  .cn-cta, .cn-faq-section { margin-top: 48px; }
  .cn-callbar { flex-direction: column; align-items: stretch; gap: 12px; }
  .cn-callbar__actions { gap: 8px; }
  .cn-callbar__action, .cn-callbar__call { flex: 1 1 0; text-align: center; }
  .cn-callbar__call { border: 1px solid var(--ink-inverse); border-radius: var(--radius-sm); padding: var(--space-3) var(--space-4); }
  .cn-form .cn-grid-2, .cn-form .cn-grid-3 { grid-template-columns: 1fr; }
  .cn-option { min-width: 100%; }
  .cn-home-hero { padding-top: 40px; padding-bottom: 40px; }
  .cn-home-hero h1 { font-size: 36px; line-height: 1.08; }
  .cn-home-hero .cn-brandline { font-size: 20px; }
  .cn-home-hero .cn-actions .cn-btn { width: 100%; text-align: center; }
  .cn-home-body .cn-split-head h2, .cn-home-body .is-style-cn-halves h2 { font-size: 30px; }
  .cn-home-body .is-style-cn-halves > .wp-block-column.cn-funeral-panel { padding: 24px 20px; }
  .cn-footer__inner { padding: 32px var(--gutter) 100px; }
  .cn-footer--compact .cn-footer__inner { flex-direction: column; align-items: flex-start; padding-bottom: 100px; }
  .cn-footer__col { grid-column: span 12; }
  .cn-footer__base { flex-direction: column; gap: 4px; }
  .cn-mobile-bar { display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 25; gap: 10px; padding: 12px 16px 16px;
    background: var(--ground); border-top: 1px solid var(--rule); box-shadow: var(--shadow-sticky); }
  .cn-mobile-bar .cn-btn { flex-grow: 1; text-align: center; padding: 16px; }
  .cn-mobile-bar__call { flex-shrink: 0; display: flex; align-items: center; justify-content: center; width: 56px; height: 56px; border: 1px solid var(--rule-strong); border-radius: var(--radius-sm); color: var(--whatsapp); }
  .cn-table thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .cn-table tr { display: block; border-bottom: 1px solid var(--rule-strong); padding: var(--space-4) 0; }
  .cn-table td { display: flex; justify-content: space-between; gap: var(--space-4); border: 0; padding: var(--space-1) 0; }
  .cn-table td::before { content: attr(data-label); color: var(--ink-faint); font-size: 13px; letter-spacing: .04em; text-transform: uppercase; flex: 0 0 auto; }
  .cn-table td:first-child { display: block; font-size: 17px; padding-bottom: var(--space-2); }
  .cn-table td:first-child::before { content: none; }
}

@media print {
  .cn-header, .cn-footer, .cn-aside, .cn-mobile-bar, .cn-callbar-sticky { display: none !important; }
}
