:root {
    --cream: #f1f8f7;
    --cream-2: #f9fdfd;
    --paper: #ffffff;
    --rose: #2d8c98;
    --rose-dark: #174e5a;
    --rose-deep: #123743;
    --rose-soft: #a7d9dc;
    --blush: #dff1f1;
    --charcoal: #263940;
    --muted: #62777d;
    --line: rgba(23, 78, 90, .18);
    --success: #39745f;
    --danger: #a7464c;
    --shadow-sm: 0 10px 28px rgba(20, 68, 78, .08);
    --shadow: 0 22px 70px rgba(20, 68, 78, .14);
    --radius: 24px;
    --radius-sm: 14px;
    --container: 1240px;
    --serif: Georgia, 'Times New Roman', serif;
    --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--charcoal);
    background: var(--cream-2);
    font-family: var(--sans);
    font-size: 17px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; left: 18px; top: -100px; z-index: 9999; background: #fff; color: #000; padding: 12px 18px; border-radius: 8px; box-shadow: var(--shadow-sm); }
.skip-link:focus { top: 18px; }

h1, h2, h3, h4 { color: var(--rose-deep); font-family: var(--serif); font-weight: 500; line-height: 1.08; margin: 0 0 .75em; letter-spacing: -.02em; }
h1 { font-size: clamp(3rem, 6vw, 5.6rem); }
h2 { font-size: clamp(2.25rem, 4vw, 4rem); }
h3 { font-size: clamp(1.4rem, 2vw, 1.85rem); }
p { margin: 0 0 1.35em; }
ul, ol { margin: 0 0 1.5em; }
.eyebrow { display: inline-block; margin-bottom: 15px; color: var(--rose); font-size: .76rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.centered { text-align: center; }
.muted, .small-note { color: var(--muted); }
.small-note { font-size: .92rem; }

.button { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 13px 24px; border: 1px solid transparent; border-radius: 999px; font-size: .92rem; font-weight: 800; letter-spacing: .02em; transition: .22s ease; }
.button:hover { transform: translateY(-2px); }
.button--primary { color: #fff; background: linear-gradient(135deg, var(--rose), var(--rose-dark)); box-shadow: 0 10px 25px rgba(23, 78, 90, .22); }
.button--primary:hover { box-shadow: 0 14px 30px rgba(23, 78, 90, .3); }
.button--secondary { color: var(--rose-dark); background: rgba(255,255,255,.72); border-color: var(--line); }
.button--light { color: var(--rose-deep); background: #fff; }
.button--outline-light { color: #fff; border-color: rgba(255,255,255,.55); background: transparent; }
.button--full { width: 100%; }
.text-link { display: inline-flex; align-items: center; gap: 9px; color: var(--rose-dark); font-weight: 800; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }

.announcement { background: var(--rose-deep); color: #fff; font-size: .86rem; }
.announcement__inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.announcement a { font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }

.site-header { position: sticky; top: 0; z-index: 1000; background: rgba(255,250,247,.94); border-bottom: 1px solid var(--line); backdrop-filter: blur(18px); }
.header-grid { min-height: 96px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 28px; }
.brand { display: flex; align-items: center; gap: 12px; min-width: 275px; }
.brand img { width: 118px; height: 66px; object-fit: contain; }
.brand-copy { display: flex; flex-direction: column; }
.brand-copy strong { color: var(--rose-deep); font-family: var(--serif); font-size: 1.22rem; font-weight: 500; line-height: 1.1; }
.brand-copy small { color: var(--muted); font-size: .65rem; letter-spacing: .08em; text-transform: uppercase; }
.primary-nav { display: flex; align-items: center; justify-content: center; gap: 23px; font-size: .93rem; font-weight: 700; }
.primary-nav > a, .nav-group__toggle { position: relative; padding: 34px 0; color: #344e55; background: transparent; border: 0; }
.primary-nav > a::after, .nav-group__toggle::after { content: ''; position: absolute; left: 0; bottom: 24px; width: 0; height: 2px; background: var(--rose); transition: width .2s ease; }
.primary-nav > a:hover::after, .nav-group__toggle:hover::after { width: 100%; }
.nav-group { position: relative; }
.nav-dropdown { position: absolute; top: calc(100% - 12px); left: -25px; width: 280px; padding: 12px; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(8px); transition: .2s ease; }
.nav-dropdown a { display: block; padding: 10px 12px; border-radius: 10px; color: var(--charcoal); }
.nav-dropdown a:hover { background: var(--cream); color: var(--rose-dark); }
.nav-group:hover .nav-dropdown, .nav-group.is-open .nav-dropdown { opacity: 1; visibility: visible; transform: none; }
.header-actions { display: flex; align-items: center; gap: 14px; }
.header-phone { display: flex; flex-direction: column; line-height: 1.2; text-align: right; }
.header-phone small { color: var(--muted); font-size: .7rem; text-transform: uppercase; letter-spacing: .08em; }
.header-phone strong { color: var(--rose-deep); font-size: .98rem; }
.menu-toggle { display: none; width: 48px; height: 48px; padding: 12px; border: 1px solid var(--line); border-radius: 12px; background: #fff; }
.menu-toggle span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; background: var(--rose-deep); }

.flash { padding: 12px 0; font-weight: 700; }
.flash--success { color: #fff; background: var(--success); }
.flash--error { color: #fff; background: var(--danger); }

.hero { position: relative; overflow: hidden; padding: 85px 0 88px; background:
    radial-gradient(circle at 15% 10%, rgba(206,235,235,.8), transparent 38%),
    radial-gradient(circle at 90% 80%, rgba(166,215,217,.45), transparent 34%),
    linear-gradient(135deg, #f9fdfd 0%, #e8f5f4 100%); }
.hero::after { content: ''; position: absolute; inset: auto -100px -160px auto; width: 520px; height: 520px; border: 1px solid rgba(45,140,152,.16); border-radius: 50%; box-shadow: 0 0 0 60px rgba(45,140,152,.04), 0 0 0 120px rgba(45,140,152,.025); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.08fr .92fr; gap: 74px; align-items: center; }
.hero h1 { max-width: 800px; }
.hero-lead { max-width: 700px; color: #526970; font-size: 1.18rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 32px 0 38px; }
.hero-trust { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.hero-trust div { padding-right: 18px; border-right: 1px solid var(--line); }
.hero-trust div:last-child { border-right: 0; }
.hero-trust strong, .hero-trust span { display: block; }
.hero-trust strong { color: var(--rose-deep); font-size: .94rem; }
.hero-trust span { color: var(--muted); font-size: .77rem; }
.hero-visual { position: relative; min-height: 610px; }
.hero-photo { position: absolute; inset: 10px 25px 38px 38px; overflow: hidden; border-radius: 230px 230px 45px 45px; border: 10px solid rgba(255,255,255,.74); box-shadow: var(--shadow); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 55% 35%; }
.hero-card { position: absolute; z-index: 3; padding: 16px 20px; border: 1px solid rgba(255,255,255,.7); border-radius: 16px; background: rgba(255,255,255,.91); box-shadow: var(--shadow-sm); backdrop-filter: blur(16px); }
.hero-card span, .hero-card strong { display: block; }
.hero-card span { color: var(--muted); font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; }
.hero-card strong { color: var(--rose-deep); font-family: var(--serif); font-size: 1.22rem; font-weight: 500; }
.hero-card--top { top: 15px; left: 0; }
.hero-card--bottom { right: 0; bottom: 12px; }
.hero-card--bottom a { color: var(--rose-dark); font-size: 1.25rem; font-weight: 900; }

.trust-strip { position: relative; z-index: 5; margin-top: -20px; }
.trust-strip__grid { display: grid; grid-template-columns: repeat(3,1fr); overflow: hidden; border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: var(--shadow-sm); }
.trust-strip__grid > div { display: flex; gap: 15px; padding: 23px 28px; border-right: 1px solid var(--line); }
.trust-strip__grid > div:last-child { border-right: 0; }
.trust-icon { display: grid; flex: 0 0 42px; width: 42px; height: 42px; place-items: center; border-radius: 50%; color: #fff; background: var(--rose); font-weight: 900; }
.trust-strip strong, .trust-strip small { display: block; }
.trust-strip strong { color: var(--rose-deep); font-size: .95rem; }
.trust-strip small { color: var(--muted); font-size: .78rem; line-height: 1.4; }

.section { padding: 105px 0; }
.section-heading { max-width: 720px; margin-bottom: 42px; }
.section-heading.centered { margin-inline: auto; }
.section-heading p { color: var(--muted); font-size: 1.06rem; }
.section-action { margin-top: 35px; }
.services-section { background: var(--cream-2); }
.service-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.service-grid--all { grid-template-columns: repeat(3,1fr); }
.service-card { position: relative; overflow: hidden; min-height: 330px; padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: 0 14px 35px rgba(20,68,78,.06); transition: .25s ease; }
.service-card::after { content: ''; position: absolute; right: -65px; bottom: -65px; width: 160px; height: 160px; border: 1px solid rgba(157,102,100,.17); border-radius: 50%; box-shadow: 0 0 0 35px rgba(45,140,152,.04); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-symbol { display: grid; width: 54px; height: 54px; margin-bottom: 28px; place-items: center; border-radius: 16px; color: #fff; background: linear-gradient(135deg, var(--rose), var(--rose-dark)); font-family: var(--serif); font-size: 1.35rem; }
.service-kicker { color: var(--rose); font-size: .72rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.service-card p { color: var(--muted); }

.split-section { background: #fff; }
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 76px; align-items: center; }
.split-image { position: relative; }
.split-image::before { content: ''; position: absolute; inset: 30px -28px -28px 30px; border-radius: 38px; background: var(--blush); }
.split-image img { position: relative; z-index: 2; width: 100%; min-height: 570px; object-fit: cover; border-radius: 38px; box-shadow: var(--shadow); }
.split-copy p { color: var(--muted); font-size: 1.06rem; }
.feature-list { display: grid; gap: 16px; margin: 30px 0 28px; }
.feature-list div { padding: 18px 20px; border-left: 3px solid var(--rose-soft); background: var(--cream); }
.feature-list strong, .feature-list span { display: block; }
.feature-list strong { color: var(--rose-deep); }
.feature-list span { color: var(--muted); font-size: .9rem; }

.banner-section { padding: 70px 0; background: var(--cream); }
.banner-carousel { position: relative; overflow: hidden; border-radius: 24px; box-shadow: var(--shadow); background: #fff; aspect-ratio: 6 / 1; }
.banner-slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity .65s ease; }
.banner-slide.is-active { opacity: 1; visibility: visible; }
.banner-slide img { width: 100%; height: 100%; object-fit: cover; }
.banner-dots { position: absolute; right: 18px; bottom: 12px; z-index: 5; display: flex; gap: 8px; }
.banner-dots button { width: 9px; height: 9px; padding: 0; border: 0; border-radius: 50%; background: rgba(255,255,255,.55); box-shadow: 0 0 0 1px rgba(80,50,50,.25); }
.banner-dots button.is-active { width: 26px; border-radius: 10px; background: #fff; }

.provider-section { background: linear-gradient(135deg, #fff 0%, var(--cream) 100%); }
.provider-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 70px; align-items: center; }
.provider-copy p { color: var(--muted); font-size: 1.02rem; }
.provider-copy h2 small { display: block; margin-top: 12px; color: var(--rose); font-family: var(--sans); font-size: .85rem; font-weight: 800; letter-spacing: .11em; }
.provider-panel { position: relative; overflow: hidden; padding: 56px; border-radius: 38px; color: #fff; background: linear-gradient(145deg, var(--rose-dark), var(--rose-deep)); box-shadow: var(--shadow); }
.provider-panel::after { content: ''; position: absolute; right: -110px; bottom: -110px; width: 320px; height: 320px; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; box-shadow: 0 0 0 50px rgba(255,255,255,.04), 0 0 0 100px rgba(255,255,255,.025); }
.provider-panel img { width: 270px; margin-bottom: 34px; filter: brightness(0) invert(1); opacity: .95; }
.provider-panel blockquote { position: relative; z-index: 2; margin: 0 0 20px; font-family: var(--serif); font-size: 2rem; line-height: 1.25; }
.provider-panel p { position: relative; z-index: 2; color: rgba(255,255,255,.78); }

.pricing-preview { background: var(--cream); }
.price-preview-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.price-preview-card { padding: 28px; border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: var(--shadow-sm); }
.price-preview-card small { color: var(--rose); font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.price-preview-card p { color: var(--muted); font-size: .9rem; }
.price-row { display: flex; align-items: baseline; gap: 12px; margin: 18px 0; }
.price-row strong { color: var(--rose-dark); font-family: var(--serif); font-size: 2rem; font-weight: 500; }
.price-row span { color: var(--muted); font-size: .82rem; }

.testimonials-section { background: #fff; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.testimonial-card { margin: 0; padding: 34px; border: 1px solid var(--line); border-radius: 22px; background: var(--cream-2); }
.stars { color: #b07b66; letter-spacing: .15em; }
.testimonial-card blockquote { margin: 20px 0; color: var(--rose-deep); font-family: var(--serif); font-size: 1.45rem; line-height: 1.45; }
.testimonial-card figcaption { color: var(--muted); font-size: .85rem; font-weight: 700; }

.faq-section { background: var(--cream); }
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: start; }
.accordion { border-top: 1px solid var(--line); }
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-item button { display: flex; width: 100%; align-items: center; justify-content: space-between; gap: 20px; padding: 23px 0; border: 0; color: var(--rose-deep); background: transparent; text-align: left; font-weight: 800; }
.accordion-item button span:last-child { display: grid; width: 34px; height: 34px; place-items: center; border: 1px solid var(--line); border-radius: 50%; transition: transform .2s ease; }
.accordion-item button[aria-expanded="true"] span:last-child { transform: rotate(45deg); }
.accordion-panel { display: none; padding: 0 55px 22px 0; color: var(--muted); }
.accordion-item.is-open .accordion-panel { display: block; }

.newsletter { padding: 60px 0; background: #fff; border-top: 1px solid var(--line); }
.newsletter-grid { display: grid; grid-template-columns: 1fr .8fr; gap: 60px; align-items: center; }
.newsletter h2 { font-size: clamp(2rem,3vw,3rem); }
.newsletter p { color: var(--muted); }
.newsletter-form { display: flex; gap: 10px; padding: 8px; border: 1px solid var(--line); border-radius: 999px; background: var(--cream-2); }
.newsletter-form input { flex: 1; min-width: 0; padding: 10px 18px; border: 0; outline: 0; background: transparent; }

.page-hero { position: relative; overflow: hidden; padding: 105px 0; color: #fff; background: linear-gradient(135deg, var(--rose-dark), var(--rose-deep)); }
.page-hero::after { content: ''; position: absolute; inset: -50% -10% auto auto; width: 520px; height: 520px; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; box-shadow: 0 0 0 70px rgba(255,255,255,.035), 0 0 0 140px rgba(255,255,255,.02); }
.page-hero__content { position: relative; z-index: 2; max-width: 820px; }
.page-hero h1, .page-hero .eyebrow { color: #fff; }
.page-hero p { max-width: 720px; color: rgba(255,255,255,.82); font-size: 1.15rem; }
.page-hero--pricing { background: linear-gradient(rgba(73,44,46,.84),rgba(73,44,46,.88)), url('../images/casket-jack-catalog.jpg') center/cover; }
.page-hero--contact { background: linear-gradient(135deg, #8f5d5c, #4a2d2f); }
.page-hero--content { background: linear-gradient(135deg, rgba(18,55,67,.94), rgba(23,78,90,.88)), var(--page-image, url('../images/casket-jack-texture.jpg')) center/cover; }

.service-hero { padding: 90px 0; background: linear-gradient(135deg, #fffaf7, #f4e8e3); }
.service-hero__grid { display: grid; grid-template-columns: 1fr .9fr; gap: 70px; align-items: center; }
.service-hero__copy p { color: var(--muted); font-size: 1.15rem; }
.service-hero__visual img { width: 100%; height: 540px; object-fit: cover; border-radius: 220px 40px 40px 220px; box-shadow: var(--shadow); }
.breadcrumb { display: inline-block; margin-bottom: 24px; color: var(--muted); font-size: .85rem; }
.breadcrumb span { color: var(--rose-dark); font-weight: 800; }
.article-section { background: #fff; }
.article-grid { display: grid; grid-template-columns: minmax(0,1fr) 340px; gap: 80px; align-items: start; }
.rich-content { max-width: 780px; }
.rich-content h2 { margin-top: 1.5em; }
.rich-content h3 { margin-top: 1.4em; }
.rich-content p, .rich-content li { color: #536a70; }
.rich-content ul, .rich-content ol { padding-left: 1.25em; }
.rich-content blockquote { margin: 30px 0; padding: 25px 30px; border-left: 4px solid var(--rose); background: var(--cream); color: var(--rose-deep); font-family: var(--serif); font-size: 1.4rem; }
.service-sidebar { position: sticky; top: 130px; display: grid; gap: 18px; }
.sidebar-card { padding: 28px; border: 1px solid var(--line); border-radius: 22px; background: var(--cream-2); box-shadow: var(--shadow-sm); }
.sidebar-card h2 { font-size: 1.8rem; }
.sidebar-card p { color: var(--muted); font-size: .9rem; }
.sidebar-note { padding: 22px; border-radius: 18px; color: #355f68; background: #e2f1f2; }
.sidebar-note p { margin-bottom: 0; font-size: .86rem; }
.sidebar-logo { width: 240px; margin-bottom: 18px; }
.service-lists { background: var(--cream); }
.two-card-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; }
.info-card { padding: 44px; border: 1px solid var(--line); border-radius: 28px; background: #fff; box-shadow: var(--shadow-sm); }
.info-card--warm { background: #e9f5f5; }
.check-list { display: grid; gap: 13px; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 28px; color: #536a70; }
.check-list li::before { content: '✓'; position: absolute; left: 0; color: var(--rose); font-weight: 900; }

.pricing-page { background: var(--cream-2); }
.payment-note { padding: 24px 28px; margin-bottom: 55px; border-left: 4px solid var(--rose); border-radius: 0 16px 16px 0; background: #fff; box-shadow: var(--shadow-sm); }
.price-category { display: grid; grid-template-columns: 300px 1fr; gap: 55px; padding: 55px 0; border-top: 1px solid var(--line); }
.price-category:first-of-type { border-top: 0; }
.price-category__heading { position: sticky; top: 130px; align-self: start; }
.price-category__heading h2 { font-size: 2.6rem; }
.price-category__heading p { color: var(--muted); }
.price-list { display: grid; gap: 16px; }
.price-item { display: grid; grid-template-columns: 1fr auto; gap: 30px; padding: 28px; border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: var(--shadow-sm); }
.price-item h3 { margin-bottom: 10px; font-family: var(--sans); font-size: 1.15rem; font-weight: 800; }
.price-item p { margin-bottom: 8px; color: var(--muted); font-size: .92rem; }
.price-item small { color: #6d858b; }
.price-item__meta { min-width: 105px; text-align: right; }
.price-item__meta strong, .price-item__meta span { display: block; }
.price-item__meta strong { color: var(--rose-dark); font-family: var(--serif); font-size: 2rem; font-weight: 500; }
.price-item__meta span { color: var(--muted); font-size: .8rem; }

.contact-section { background: var(--cream-2); }
.contact-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 55px; align-items: start; }
.contact-details { display: grid; gap: 14px; }
.contact-card { padding: 22px 24px; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: var(--shadow-sm); }
.contact-card small, .contact-card strong, .contact-card a { display: block; }
.contact-card small { color: var(--rose); font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.contact-card strong, .contact-card a { color: var(--rose-deep); font-size: 1.05rem; font-weight: 800; }
.hours-panel { padding: 30px; border-radius: 24px; color: #fff; background: linear-gradient(135deg, var(--rose-dark), var(--rose-deep)); }
.hours-panel h2 { color: #fff; font-size: 2rem; }
.hours-panel p { color: rgba(255,255,255,.8); }
.contact-form { padding: 42px; border: 1px solid var(--line); border-radius: 28px; background: #fff; box-shadow: var(--shadow); }
.contact-form h2 { font-size: 2.7rem; }
.privacy-alert { padding: 17px 19px; margin-bottom: 24px; border-radius: 14px; color: #225b66; background: #e6f3f3; font-size: .88rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label { display: block; margin-bottom: 16px; color: var(--rose-deep); font-size: .84rem; font-weight: 800; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; margin-top: 7px; padding: 13px 15px; border: 1px solid var(--line); border-radius: 12px; color: var(--charcoal); background: var(--cream-2); outline: 0; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--rose); box-shadow: 0 0 0 3px rgba(157,102,100,.1); }
.checkbox-label { display: flex !important; gap: 10px; align-items: flex-start; }
.checkbox-label input { width: auto; margin-top: 4px; }

.portal-hero { padding: 105px 0; background: linear-gradient(135deg, #fffaf7, #f3e4df); }
.portal-grid { display: grid; grid-template-columns: 1fr .8fr; gap: 75px; align-items: center; }
.portal-grid > div:first-child p { color: var(--muted); font-size: 1.1rem; }
.portal-card { padding: 45px; border-radius: 30px; color: #fff; background: linear-gradient(145deg, var(--rose-dark), var(--rose-deep)); box-shadow: var(--shadow); }
.portal-card h2 { color: #fff; }
.portal-card .check-list li { color: rgba(255,255,255,.86); }
.portal-card .check-list li::before { color: #fff; }
.portal-lock { display: grid; width: 58px; height: 58px; margin-bottom: 28px; place-items: center; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; color: #fff; }

.final-cta { padding: 70px 0; color: #fff; background: linear-gradient(135deg, var(--rose), var(--rose-deep)); }
.final-cta__grid { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; }
.final-cta h2, .final-cta .eyebrow { color: #fff; }
.final-cta h2 { margin-bottom: 10px; font-size: clamp(2.2rem,4vw,3.6rem); }
.final-cta p { margin: 0; color: rgba(255,255,255,.8); }
.final-cta__actions { display: flex; gap: 12px; }
.site-footer { padding: 70px 0 26px; background: #241b1c; color: rgba(255,255,255,.76); }
.footer-grid { display: grid; grid-template-columns: 1.25fr 1fr 1fr .8fr; gap: 45px; }
.footer-grid h3 { color: #fff; font-family: var(--sans); font-size: .92rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.footer-grid a:hover { color: #fff; }
.footer-brand img { width: 240px; margin-bottom: 22px; filter: brightness(0) invert(1); }
.footer-links { padding: 0; list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 30px; margin-top: 40px; border-top: 1px solid rgba(255,255,255,.12); font-size: .8rem; }
.footer-bottom p { margin: 0; }
.footer-bottom a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.mobile-actions { display: none; }
.not-found { min-height: 60vh; display: grid; place-items: center; padding: 100px 0; text-align: center; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1120px) {
    .header-grid { grid-template-columns: auto auto 1fr; }
    .menu-toggle { display: block; order: 3; justify-self: end; }
    .primary-nav { position: fixed; left: 20px; right: 20px; top: 112px; display: none; max-height: calc(100vh - 135px); overflow: auto; padding: 18px; border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: var(--shadow); }
    .primary-nav.is-open { display: block; }
    .primary-nav > a, .nav-group__toggle { display: block; width: 100%; padding: 13px 12px; text-align: left; }
    .primary-nav > a::after, .nav-group__toggle::after { display: none; }
    .nav-dropdown { position: static; display: none; width: auto; padding: 0 0 8px 15px; border: 0; box-shadow: none; opacity: 1; visibility: visible; transform: none; }
    .nav-group.is-open .nav-dropdown { display: block; }
    .header-actions { justify-self: end; }
    .header-phone { display: none; }
    .hero-grid { gap: 40px; }
    .hero-visual { min-height: 540px; }
    .price-preview-grid { grid-template-columns: repeat(2,1fr); }
    .service-grid, .service-grid--all { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 860px) {
    body { font-size: 16px; padding-bottom: 58px; }
    .announcement__inner { justify-content: center; text-align: center; }
    .announcement__inner a { display: none; }
    .header-grid { min-height: 80px; grid-template-columns: 1fr auto; gap: 12px; }
    .brand { min-width: 0; }
    .brand img { width: 96px; height: 52px; }
    .brand-copy strong { font-size: 1rem; }
    .brand-copy small { display: none; }
    .menu-toggle { order: initial; }
    .header-actions { display: none; }
    .primary-nav { top: 93px; }
    .hero { padding: 58px 0 70px; }
    .hero-grid, .split-grid, .provider-grid, .newsletter-grid, .faq-grid, .service-hero__grid, .article-grid, .portal-grid, .contact-grid, .final-cta__grid { grid-template-columns: 1fr; }
    .hero-visual { min-height: 460px; }
    .hero-photo { inset: 10px 30px 35px; border-radius: 180px 180px 35px 35px; }
    .hero-trust { grid-template-columns: 1fr; gap: 9px; }
    .hero-trust div { padding: 8px 0; border-right: 0; border-bottom: 1px solid var(--line); }
    .hero-trust div:last-child { border-bottom: 0; }
    .trust-strip { margin-top: 0; }
    .trust-strip__grid { grid-template-columns: 1fr; }
    .trust-strip__grid > div { border-right: 0; border-bottom: 1px solid var(--line); }
    .trust-strip__grid > div:last-child { border-bottom: 0; }
    .section { padding: 75px 0; }
    .service-grid, .service-grid--all, .testimonial-grid, .two-card-grid { grid-template-columns: 1fr; }
    .split-image img { min-height: 430px; }
    .provider-grid { gap: 35px; }
    .provider-panel { padding: 38px; }
    .price-category { grid-template-columns: 1fr; gap: 20px; }
    .price-category__heading, .service-sidebar { position: static; }
    .service-hero__visual img { height: 400px; border-radius: 150px 30px 30px 150px; }
    .article-grid { gap: 35px; }
    .contact-grid { gap: 28px; }
    .final-cta__actions { flex-wrap: wrap; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-bottom { flex-direction: column; }
    .mobile-actions { position: fixed; left: 0; right: 0; bottom: 0; z-index: 2000; display: grid; grid-template-columns: repeat(3,1fr); min-height: 58px; border-top: 1px solid var(--line); background: #fff; box-shadow: 0 -8px 24px rgba(65,38,38,.1); }
    .mobile-actions a { display: grid; place-items: center; border-right: 1px solid var(--line); color: var(--rose-dark); font-weight: 900; }
    .mobile-actions a:last-child { border-right: 0; color: #fff; background: var(--rose-dark); }
}

@media (max-width: 620px) {
    .container { width: min(calc(100% - 28px), var(--container)); }
    h1 { font-size: clamp(2.6rem, 13vw, 4rem); }
    h2 { font-size: clamp(2rem, 10vw, 3.1rem); }
    .brand-copy { display: none; }
    .hero-actions, .final-cta__actions { display: grid; }
    .hero-actions .button, .final-cta__actions .button { width: 100%; }
    .hero-visual { min-height: 395px; }
    .hero-photo { inset: 5px 8px 28px; }
    .hero-card--top { left: 8px; }
    .hero-card--bottom { right: 8px; }
    .hero-card { padding: 12px 15px; }
    .hero-card--bottom a { font-size: 1rem; }
    .service-card { min-height: 0; padding: 28px; }
    .banner-carousel { border-radius: 14px; }
    .price-preview-grid { grid-template-columns: 1fr; }
    .provider-panel { padding: 30px; }
    .provider-panel blockquote { font-size: 1.6rem; }
    .newsletter-form { display: grid; border-radius: 18px; }
    .form-grid { grid-template-columns: 1fr; }
    .contact-form { padding: 27px; }
    .price-item { grid-template-columns: 1fr; }
    .price-item__meta { text-align: left; }
    .footer-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
    .reveal { opacity: 1; transform: none; }
}

/* Complete editable administration integration */
.button--admin { min-height: 42px; padding-inline: 14px; border-color: rgba(109,65,66,.28); color: var(--rose-dark); background: #fff; white-space: nowrap; }
.button--admin:hover { border-color: var(--rose); background: #fbf3f0; }
.article-grid--single { grid-template-columns: minmax(0,1fr); }
.article-grid--single .rich-content { max-width: 920px; margin-inline: auto; }
.source-contact { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 28px; margin-top: 36px; border-top: 1px solid var(--line); }
.source-contact p { margin: 0; font-weight: 800; }
@media (max-width: 1180px) { .button--admin { display: none; } }
@media (max-width: 620px) { .source-contact { align-items: stretch; flex-direction: column; } }

/* Header fit for the public administration button */
@media (min-width: 1121px) {
    .header-grid { gap: 18px; }
    .brand { min-width: 218px; }
    .primary-nav { gap: 15px; font-size: .88rem; }
    .header-actions { gap: 8px; }
    .header-actions .button { min-height: 44px; padding: 10px 14px; font-size: .8rem; }
}
@media (min-width: 1121px) and (max-width: 1280px) { .header-phone { display: none; } }


/* Casket Jack Official Site — dark storefront theme */
:root { --cream:#11161d; --cream-2:#0b0f14; --paper:#171d25; --rose:#f0a43a; --rose-dark:#b86109; --rose-deep:#4a2b0b; --rose-soft:#7a4a16; --blush:#17202a; --charcoal:#e7edf3; --muted:#98a4b0; --line:rgba(255,255,255,.11); --shadow-sm:0 12px 32px rgba(0,0,0,.28); --shadow:0 28px 80px rgba(0,0,0,.48); }
body{color:var(--charcoal);background:var(--cream-2)} h1,h2,h3,h4{color:#f6f1e8;font-family:var(--sans);font-weight:750;letter-spacing:-.035em}.muted,.small-note,.hero-trust span,.trust-strip small{color:var(--muted)}.eyebrow{color:var(--rose)}
.button--primary{color:#15100a;background:linear-gradient(135deg,#ffc260,var(--rose));box-shadow:0 12px 28px rgba(240,164,58,.18)}.button--secondary{color:#f2b75f;background:#171d25;border-color:rgba(240,164,58,.34)}.button--light{color:#17100a;background:#f4ead9}.text-link{color:#f1b458}.announcement{color:#181109;background:linear-gradient(90deg,#d67b17,#f0a43a)}
.site-header{background:rgba(10,14,19,.94);border-color:var(--line)}.brand-copy strong,.header-phone strong{color:#f6f1e8}.brand-copy small,.header-phone small{color:#a8b1bb}.primary-nav>a,.nav-group__toggle{color:#d4dbe2}.nav-dropdown{background:#171d25}.nav-dropdown a{color:#dce2e8}.nav-dropdown a:hover{color:#ffc260;background:#222a34}.menu-toggle{background:#171d25}.menu-toggle span:not(.sr-only){background:#f6f1e8}
.hero{background:radial-gradient(circle at 12% 5%,rgba(240,164,58,.13),transparent 34%),radial-gradient(circle at 90% 85%,rgba(86,189,196,.10),transparent 32%),linear-gradient(135deg,#0b0f14 0%,#151b23 100%)}.hero-lead{color:#aeb8c2}.hero-trust strong{color:#f0a43a}.hero-photo{border-color:rgba(255,255,255,.07);box-shadow:0 32px 90px rgba(0,0,0,.62)}.hero-card{color:#d8dfe6;border-color:rgba(255,255,255,.14);background:rgba(18,24,31,.92)}.hero-card strong{color:#f6f1e8}.hero-card--bottom a{color:#f0a43a}
.trust-strip__grid{background:#151b23}.trust-icon{color:#17100a}.trust-strip strong{color:#f6f1e8}.services-section,.pricing-page,.contact-section{background:#0b0f14}.service-card,.price-preview-card,.testimonial-card,.info-card,.price-item,.contact-card,.contact-form,.payment-note{color:var(--charcoal);background:#171d25;border-color:var(--line);box-shadow:var(--shadow-sm)}.service-card:hover{border-color:rgba(240,164,58,.45)}.service-symbol{color:#17100a;background:linear-gradient(135deg,#ffc260,#e58c22)}.service-kicker,.price-preview-card small{color:#f0a43a}.service-card p,.price-preview-card p,.testimonial-card span{color:#9ea9b5}
.split-section,.testimonials-section,.article-section,.newsletter{background:#10151b}.split-image::before{background:#202934}.feature-list div{background:#171d25;border-left-color:var(--rose)}.feature-list strong{color:#f6f1e8}.banner-section,.pricing-preview,.faq-section,.service-lists{background:#0d1218}.banner-carousel{background:#11161d;border:1px solid var(--line)}.provider-section{background:linear-gradient(135deg,#10151b,#171f28)}.provider-panel{background:linear-gradient(145deg,#202a35,#11161d);border:1px solid rgba(240,164,58,.24)}.price-row strong,.price-item__meta strong{color:#f0a43a}.testimonial-card blockquote,.accordion-item button,.faq-list summary{color:#f6f1e8}.faq-list p{color:#a5afb9}.newsletter-form{background:#171d25}.newsletter-form input{color:#f1f4f7}
.page-hero{background:linear-gradient(135deg,#271807,#11161d)}.page-hero--pricing{background:linear-gradient(rgba(8,11,15,.83),rgba(17,22,29,.92)),url('../images/casket-jack-catalog.jpg') center/cover}.page-hero--contact{background:linear-gradient(135deg,#281907,#111820)}.page-hero--content{background:linear-gradient(135deg,rgba(9,13,18,.92),rgba(25,32,40,.88)),var(--page-image,url('../images/casket-jack-texture.jpg')) center/cover}.service-hero,.portal-hero{background:radial-gradient(circle at 80% 20%,rgba(240,164,58,.10),transparent 30%),linear-gradient(135deg,#0c1015,#171e27)}.service-hero__copy p,.portal-grid>div:first-child p,.rich-content p,.rich-content li,.check-list li{color:#adb6bf}.rich-content blockquote,.sidebar-card{color:var(--charcoal);background:#171d25}.sidebar-note,.info-card--warm,.privacy-alert{color:#c5d2db;background:#17242b}.contact-card strong,.contact-card a,.contact-form label{color:#f4efe6}.hours-panel,.portal-card{background:linear-gradient(145deg,#2b210f,#151b23);border:1px solid rgba(240,164,58,.22)}.contact-form input,.contact-form select,.contact-form textarea{color:#eef2f6;background:#0f141a}.final-cta{background:linear-gradient(135deg,#a85408,#2a1b0c 58%,#11161d)}.site-footer{background:#080b0f}.footer-brand img{filter:none}.button--admin{color:#f0a43a;background:#171d25;border-color:rgba(240,164,58,.28)}
@media(max-width:1120px){.primary-nav{background:#11171e}} @media(max-width:860px){.mobile-actions{background:#11171e}.mobile-actions a{color:#f0a43a}.mobile-actions a:last-child{color:#17100a;background:#f0a43a}}

/* Casket Jack Official Site — final artist theme and gallery */
:root{
  --cream:#171316;--cream-2:#0f0c0f;--paper:#211a1f;--rose:#d69082;--rose-dark:#8f4f4d;
  --rose-deep:#f6e7e2;--rose-soft:#bc776e;--blush:#2c2026;--charcoal:#f4eeec;--muted:#b9aaae;
  --line:rgba(236,191,181,.18);--shadow-sm:0 14px 36px rgba(0,0,0,.28);--shadow:0 30px 85px rgba(0,0,0,.52)
}
body{background:#0f0c0f;color:var(--charcoal)}
h1,h2,h3,h4{color:#fff8f5;font-family:Georgia,'Times New Roman',serif;font-weight:500;letter-spacing:-.025em}
.eyebrow,.text-link,.price-row strong,.price-item__meta strong,.service-kicker,.price-preview-card small{color:#e1a093}
.button--primary{color:#201418;background:linear-gradient(135deg,#f0b9ab,#c9786f);box-shadow:0 12px 30px rgba(214,144,130,.22)}
.button--primary:hover{box-shadow:0 18px 38px rgba(214,144,130,.32)}
.button--secondary{color:#f1c4ba;background:rgba(35,27,32,.92);border-color:rgba(225,160,147,.34)}
.button--light{color:#2a171c;background:#fff4ef}.button--outline-light{border-color:rgba(255,244,239,.55)}
.announcement{color:#2b171b;background:linear-gradient(90deg,#b96d67,#e6a296)}
.site-header{background:rgba(15,12,15,.94);border-color:rgba(236,191,181,.14)}
.brand img{width:120px;height:72px}.brand-copy strong,.header-phone strong{color:#fff7f3}.brand-copy small,.header-phone small{color:#c6b6b9}
.primary-nav>a,.nav-group__toggle{color:#eadfdd}.nav-dropdown{background:#211a1f;border-color:var(--line)}.nav-dropdown a{color:#f0e4e1}.nav-dropdown a:hover{color:#ffd2c8;background:#31242b}
.menu-toggle{background:#211a1f}.menu-toggle span:not(.sr-only){background:#fff5f2}
.hero{background:radial-gradient(circle at 12% 6%,rgba(214,144,130,.17),transparent 35%),radial-gradient(circle at 92% 86%,rgba(136,71,79,.12),transparent 33%),linear-gradient(135deg,#100c0f,#21171c)}
.hero::after{border-color:rgba(214,144,130,.16);box-shadow:0 0 0 60px rgba(214,144,130,.04),0 0 0 120px rgba(214,144,130,.025)}
.hero-lead{color:#c6b7ba}.hero-trust strong{color:#e8aa9e}.hero-photo{border-color:rgba(255,239,234,.08)}
.hero-card{background:rgba(31,23,28,.94);border-color:rgba(239,190,179,.18)}.hero-card strong{color:#fff6f2}.hero-card--bottom a{color:#efb2a6}
.trust-strip__grid{background:#211a1f}.trust-icon{color:#2b171b;background:linear-gradient(135deg,#f2c0b5,#c97a70)}
.services-section,.pricing-page,.contact-section,.banner-section,.pricing-preview,.faq-section,.service-lists,.gallery-page{background:#100d10}
.service-card,.price-preview-card,.testimonial-card,.info-card,.price-item,.contact-card,.contact-form,.payment-note{background:#211a1f;border-color:var(--line)}
.service-card{padding:0 30px 30px;overflow:hidden}.service-card:hover{border-color:rgba(225,160,147,.45)}
.service-card__media{display:block;margin:0 -30px 28px;aspect-ratio:16/10;overflow:hidden;background:#171216}.service-card__media img{width:100%;height:100%;object-fit:cover;transition:transform .45s ease}.service-card:hover .service-card__media img{transform:scale(1.035)}
.service-symbol{color:#2a171b;background:linear-gradient(135deg,#f1b7aa,#bd6e68)}
.service-card p,.price-preview-card p,.testimonial-card span{color:#baabad}
.split-section,.testimonials-section,.article-section,.newsletter-section{background:#171216}.split-image::before{background:#37252d}.feature-list div{background:#211a1f;border-left-color:#d69082}
.provider-section{background:linear-gradient(135deg,#171216,#2a1d23)}.provider-panel{background:linear-gradient(145deg,#33232a,#171216);border-color:rgba(225,160,147,.22)}.provider-panel img{max-height:420px;width:100%;object-fit:cover;border-radius:18px}
.banner-carousel{background:#171216;border-color:var(--line)}.banner-slide img{width:100%;height:auto;aspect-ratio:3/1;object-fit:cover}
.page-hero{background:linear-gradient(135deg,#2e1c22,#120d10)}
.page-hero--pricing{background:linear-gradient(rgba(16,11,14,.78),rgba(24,15,20,.9)),url('../images/casket-jack-catalog.jpg') center/cover}
.page-hero--contact{background:linear-gradient(135deg,#351f27,#130e11)}
.page-hero--gallery{padding:110px 0;background:linear-gradient(rgba(15,10,13,.74),rgba(24,15,20,.9)),url('../images/casket-jack-texture.jpg') center/cover}
.page-hero--content{background:linear-gradient(135deg,rgba(18,12,15,.91),rgba(50,30,39,.85)),var(--page-image,url('../images/casket-jack-texture.jpg')) center/cover}
.service-hero,.portal-hero{background:radial-gradient(circle at 80% 20%,rgba(214,144,130,.13),transparent 32%),linear-gradient(135deg,#100c0f,#271a20)}
.service-hero__visual img{object-fit:cover}.service-hero__copy p,.portal-grid>div:first-child p,.rich-content p,.rich-content li,.check-list li{color:#c1b2b5}
.rich-content blockquote,.sidebar-card{background:#211a1f}.info-card--warm,.privacy-alert{background:#2b1d23;color:#e2d5d3}.hours-panel,.portal-card{background:linear-gradient(145deg,#3a262d,#1b1418);border-color:rgba(225,160,147,.25)}
.contact-form input,.contact-form select,.contact-form textarea{color:#fff3ef;background:#151014;border-color:rgba(236,191,181,.18)}
.final-cta{background:linear-gradient(135deg,#a85f5c,#542d38 58%,#171014)}.site-footer{background:#090709}.footer-brand img{filter:none}
.button--admin{color:#efb1a4;background:#211a1f;border-color:rgba(225,160,147,.28)}
.gallery-preview-section{background:linear-gradient(180deg,#171216,#100d10)}
.gallery-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:24px}.gallery-grid--page{gap:30px}
.gallery-card{position:relative;display:block;overflow:hidden;border:1px solid var(--line);border-radius:22px;background:#211a1f;box-shadow:var(--shadow-sm)}
.gallery-card img{width:100%;aspect-ratio:4/3;object-fit:cover;transition:transform .45s ease}.gallery-card:hover img{transform:scale(1.035)}
.gallery-card span{display:flex;min-height:108px;flex-direction:column;justify-content:center;padding:18px 20px}.gallery-card small{color:#d99589;font-size:.72rem;font-weight:800;letter-spacing:.12em;text-transform:uppercase}.gallery-card strong{color:#fff5f1;font-family:Georgia,'Times New Roman',serif;font-size:1.35rem;font-weight:500}.gallery-card em{margin-top:8px;color:#bcaeb0;font-size:.9rem;font-style:normal}
.demo-disclaimer{padding:20px 24px;margin-top:36px;border:1px solid var(--line);border-radius:16px;color:#d5c7c8;background:#211a1f}
.gallery-dialog{width:min(92vw,1100px);padding:0;border:1px solid rgba(236,191,181,.28);border-radius:20px;color:#fff;background:#120e11;box-shadow:0 30px 100px rgba(0,0,0,.7)}.gallery-dialog::backdrop{background:rgba(5,3,4,.86)}.gallery-dialog img{width:100%;max-height:78vh;object-fit:contain;background:#090709}.gallery-dialog p{padding:16px 22px;margin:0;color:#f1dfdc}.gallery-dialog button{position:absolute;top:12px;right:12px;display:grid;width:42px;height:42px;place-items:center;border:1px solid rgba(255,255,255,.35);border-radius:50%;color:#fff;background:rgba(15,10,13,.78);font-size:1.6rem;line-height:1}
@media(max-width:920px){.gallery-grid{grid-template-columns:1fr 1fr}}
@media(max-width:620px){.gallery-grid{grid-template-columns:1fr}.service-card{padding:0 24px 26px}.service-card__media{margin:0 -24px 24px}.page-hero--gallery{padding:80px 0}}


/* Casket Jack — black, red, steel and grunge theme */
:root{--cream:#08090a;--cream-2:#030405;--paper:#111214;--rose:#b8181d;--rose-dark:#65090d;--rose-deep:#3e0508;--rose-soft:#742027;--blush:#161719;--charcoal:#ededeb;--muted:#9b9b99;--line:rgba(255,255,255,.10);--shadow-sm:0 12px 38px rgba(0,0,0,.42);--shadow:0 34px 100px rgba(0,0,0,.72)}
body{color:#e7e7e5;background:#030405;background-image:linear-gradient(rgba(255,255,255,.012) 1px,transparent 1px);background-size:100% 5px}h1,h2,h3,h4{color:#f5f5f2;font-family:Impact,'Arial Narrow',sans-serif;letter-spacing:.01em;text-transform:uppercase}.eyebrow,.text-link{color:#d32b31}.muted,.small-note,.hero-trust span,.trust-strip small{color:#999}.announcement{color:#fff;background:linear-gradient(90deg,#4d0508,#b8181d,#4d0508)}.site-header{background:rgba(3,4,5,.96);border-color:rgba(184,24,29,.25)}.brand img{max-height:78px}.brand-copy strong,.header-phone strong{color:#f5f5f2}.brand-copy small,.header-phone small,.primary-nav>a,.nav-group__toggle{color:#bdbdbb}.primary-nav>a:hover,.nav-group__toggle:hover{color:#fff}.nav-dropdown{background:#0e0f11;border-color:rgba(184,24,29,.28)}.nav-dropdown a{color:#d2d2d0}.nav-dropdown a:hover{color:#fff;background:#6b0b0f}.button--primary{color:#fff;background:linear-gradient(135deg,#d3242a,#7c090e);box-shadow:0 12px 30px rgba(184,24,29,.22);border:1px solid rgba(255,255,255,.06)}.button--secondary{color:#e1393f;background:#101113;border-color:rgba(184,24,29,.45)}.button--light{color:#fff;background:#b8181d}.text-link span{color:#fff}.hero{background:radial-gradient(circle at 80% 20%,rgba(184,24,29,.14),transparent 30%),linear-gradient(135deg,#020304,#101113)}.hero-lead{color:#b3b3b1}.hero-photo{border-color:rgba(184,24,29,.27);box-shadow:0 35px 110px rgba(0,0,0,.76)}.hero-card{color:#c7c7c5;background:rgba(9,10,11,.95);border-color:rgba(184,24,29,.35)}.hero-card strong,.trust-strip strong{color:#f4f4f1}.hero-card--bottom a,.hero-trust strong{color:#d42a30}.trust-strip__grid{background:#0c0d0f;border-color:rgba(184,24,29,.2)}.trust-icon,.service-symbol{color:#fff;background:linear-gradient(135deg,#d4282e,#69080c)}.services-section,.pricing-page,.contact-section,.banner-section,.pricing-preview,.faq-section,.service-lists,.gallery-page{background:#030405}.service-card,.price-preview-card,.testimonial-card,.info-card,.price-item,.contact-card,.contact-form,.payment-note,.gallery-card{background:#101113;border-color:rgba(255,255,255,.08);box-shadow:var(--shadow-sm)}.service-card:hover,.gallery-card:hover{border-color:rgba(184,24,29,.58)}.service-card p,.price-preview-card p,.testimonial-card span,.gallery-card em{color:#9d9d9b}.service-kicker,.price-preview-card small{color:#d12a30}.split-section,.testimonials-section,.article-section,.newsletter,.gallery-preview-section{background:#08090a}.feature-list div{background:#111214;border-left-color:#b8181d}.provider-section{background:linear-gradient(135deg,#070809,#151517)}.provider-panel,.hours-panel,.portal-card{background:linear-gradient(145deg,#1d1d20,#08090a);border:1px solid rgba(184,24,29,.35)}.page-hero{background:linear-gradient(135deg,#450508,#0a0b0c)}.page-hero--pricing{background:linear-gradient(rgba(2,3,4,.78),rgba(10,10,12,.95)),url('../images/official-merch.jpg') center/cover}.page-hero--gallery{background:linear-gradient(rgba(2,3,4,.74),rgba(10,10,12,.93)),url('../images/banner-posters-art.jpg') center/cover}.page-hero--contact{background:linear-gradient(rgba(2,3,4,.78),rgba(10,10,12,.94)),url('../images/casket-jack-hero.jpg') center/cover}.page-hero--content{background:linear-gradient(135deg,rgba(2,3,4,.92),rgba(15,15,17,.9)),var(--page-image,url('../images/casket-jack-texture.jpg')) center/cover}.service-hero,.portal-hero{background:radial-gradient(circle at 80% 20%,rgba(184,24,29,.12),transparent 30%),linear-gradient(135deg,#020304,#111214)}.rich-content p,.rich-content li,.service-hero__copy p,.portal-grid>div:first-child p{color:#ababaa}.rich-content blockquote,.sidebar-card{color:#ededeb;background:#101113}.contact-form input,.contact-form textarea,.contact-form select{color:#ededeb;background:#060708}.final-cta{background:linear-gradient(135deg,#78090d,#260305 58%,#050607)}.site-footer{background:#010203;border-top:1px solid rgba(184,24,29,.25)}.gallery-dialog{background:#070809;color:#eee}.demo-disclaimer{background:#101113;border-color:rgba(184,24,29,.35)}.price-item__button{display:inline-flex;margin-top:11px;padding:10px 14px;border:1px solid rgba(184,24,29,.62);border-radius:6px;color:#fff;text-decoration:none;font-weight:800;text-transform:uppercase;letter-spacing:.04em;background:#65090d}.price-item__button:hover{background:#b8181d}.price-item__meta strong{color:#e42b31}.banner-carousel{border:1px solid rgba(184,24,29,.22);background:#060708}.newsletter-form{background:#101113}.newsletter-form input{color:#eee}.mobile-actions{border-top:1px solid rgba(184,24,29,.35)}
@media(max-width:1120px){.primary-nav{background:#070809}}@media(max-width:860px){.mobile-actions{background:#070809}.mobile-actions a{color:#e42b31}.mobile-actions a:last-child{color:#fff;background:#8d0c11}}
