:root {
  --paper: #f4f0e8;
  --paper-light: #faf8f3;
  --ink: #1f2220;
  --muted: #66675f;
  --rust: #a64f2d;
  --rust-dark: #81381f;
  --stone: #d8d0c3;
  --forest: #26332c;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: Arial, Helvetica, sans-serif; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
::selection { background: #d8a48c; color: #191b19; }

.site-header {
  height: 92px; padding: 0 3.1vw; display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; gap: 32px; border-bottom: 1px solid rgba(31,34,32,.16);
  background: rgba(250,248,243,.94); position: sticky; top: 0; z-index: 50; backdrop-filter: blur(14px);
}
.wordmark { font-size: 21px; letter-spacing: .32em; font-weight: 700; width: max-content; }
.desktop-nav { display: flex; align-items: center; gap: clamp(22px, 2.4vw, 42px); font-size: 14px; }
.desktop-nav a { padding: 34px 0 31px; border-bottom: 2px solid transparent; transition: border-color .2s, color .2s; }
.desktop-nav a:hover, .desktop-nav a:focus-visible { border-color: var(--rust); color: var(--rust-dark); }
.site-header > .button { justify-self: end; }
.mobile-menu { display: none; }

.button {
  min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 12px; border: 1px solid var(--rust);
  background: var(--rust); color: white; padding: 0 25px; font-size: 15px; font-weight: 600; cursor: pointer;
  transition: transform .2s, background .2s, border-color .2s, box-shadow .2s;
}
.button:hover { transform: translateY(-2px); background: var(--rust-dark); border-color: var(--rust-dark); box-shadow: 0 10px 25px rgba(68,34,20,.14); }
.button:focus-visible, a:focus-visible, summary:focus-visible, input:focus-visible, textarea:focus-visible { outline: 2px solid var(--rust); outline-offset: 3px; }
.button-small { min-height: 48px; padding: 0 21px; font-size: 14px; }
.text-link { display: inline-flex; align-items: center; gap: 12px; border-bottom: 1px solid var(--rust); padding-bottom: 7px; font-weight: 600; }
.text-link span { color: var(--rust); transition: transform .2s; }
.text-link:hover span { transform: translate(3px,-3px); }
.text-link.light { color: white; border-color: #c87956; }

.hero { min-height: calc(100vh - 92px); display: grid; grid-template-columns: 1fr 1fr; }
.hero-copy { padding: clamp(70px, 8vw, 128px) 5.5vw 44px 4.1vw; display: flex; flex-direction: column; justify-content: center; }
.eyebrow { margin: 0 0 22px; color: var(--rust); font-size: 12px; line-height: 1.4; letter-spacing: .2em; text-transform: uppercase; font-weight: 700; }
.hero h1 { margin: 0; max-width: 750px; font-size: clamp(49px, 5.25vw, 82px); line-height: 1.04; letter-spacing: -.045em; font-weight: 760; }
.accent-line { width: 70px; height: 4px; background: var(--rust); margin: 38px 0 30px; }
.hero-intro { max-width: 620px; margin: 0; color: #41443f; font-size: clamp(18px, 1.35vw, 22px); line-height: 1.55; }
.hero-actions { display: flex; gap: 35px; align-items: center; margin-top: 39px; }
.trust-row { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: auto; padding-top: 70px; max-width: 670px; }
.trust-row > div { display: flex; align-items: center; gap: 14px; padding-right: 20px; }
.trust-row > div + div { padding-left: 24px; border-left: 1px solid #cbc4b8; }
.trust-row p { font-size: 13px; line-height: 1.35; margin: 0; }
.trust-icon { width: 36px; height: 40px; display: grid; place-items: center; color: var(--rust); border: 1px solid var(--rust); font-size: 12px; font-weight: 700; }
.hero-image, .craft-image { background: #211f1b url('/hero-production.png') center/cover no-repeat; }
.hero-image { min-height: 710px; animation: reveal 1s ease both; }
@keyframes reveal { from { opacity: 0; transform: scale(1.015); } to { opacity: 1; transform: scale(1); } }

.section-pad { padding: 125px 7vw; }
.intro-section { background: var(--paper-light); }
.intro-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 9vw; align-items: start; }
h2 { margin: 0; font-size: clamp(38px, 4.25vw, 67px); line-height: 1.06; letter-spacing: -.04em; }
.intro-grid > div { border-top: 1px solid var(--stone); padding-top: 28px; }
.intro-grid p { margin: 0 0 22px; color: #555750; font-size: 18px; line-height: 1.75; }

.memorial-section { background: #e9e3da; }
.section-heading { display: grid; grid-template-columns: 1.2fr .55fr; gap: 8vw; align-items: end; margin-bottom: 65px; }
.section-heading > p { margin: 0 0 4px; color: var(--muted); font-size: 16px; line-height: 1.7; }
.memorial-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.memorial-card { min-height: 510px; background: var(--paper-light); padding: 28px; display: flex; flex-direction: column; position: relative; overflow: hidden; }
.stone-silhouette { height: 185px; margin: -28px -28px 30px; display: grid; place-items: end center; background: linear-gradient(145deg,#d8d1c7,#bbb2a6); }
.stone-silhouette i { display: block; background: linear-gradient(145deg,#454844,#242725); box-shadow: 14px 14px 25px rgba(31,34,32,.18); }
.stone-silhouette.upright i { width: 118px; height: 135px; border-radius: 55px 55px 4px 4px; border-bottom: 10px solid #69645d; }
.stone-silhouette.slant i { width: 135px; height: 90px; transform: skew(-7deg); border-radius: 5px 5px 1px 1px; }
.stone-silhouette.flat i { width: 155px; height: 26px; transform: perspective(180px) rotateX(52deg); margin-bottom: 15px; }
.stone-silhouette.companion i { width: 170px; height: 115px; border-radius: 50px 50px 4px 4px; border-bottom: 9px solid #69645d; }
.card-number { color: var(--rust); font-size: 12px; font-weight: 700; letter-spacing: .16em; }
.memorial-card h3 { font-size: 23px; margin: 16px 0 14px; letter-spacing: -.02em; }
.memorial-card p { color: var(--muted); font-size: 14px; line-height: 1.65; margin: 0 0 25px; }
.memorial-card a { margin-top: auto; width: max-content; color: var(--rust-dark); font-size: 14px; font-weight: 700; }
.custom-callout { margin-top: 14px; padding: 58px; background: var(--forest); color: white; display: grid; grid-template-columns: .55fr 1.25fr auto; gap: 45px; align-items: center; }
.custom-callout .eyebrow { margin: 0; color: #d69274; }
.custom-callout h3 { font-size: clamp(24px,2.5vw,38px); line-height: 1.2; margin: 0; letter-spacing: -.025em; }

.process-section { background: var(--paper-light); }
.process-title { max-width: 850px; margin-bottom: 70px; }
.steps { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--stone); }
.step { padding: 28px 36px 0 0; }
.step + .step { border-left: 1px solid var(--stone); padding-left: 36px; }
.step > span { color: var(--rust); font-size: 12px; font-weight: 700; letter-spacing: .18em; }
.step h3 { font-size: 21px; margin: 28px 0 14px; }
.step p { color: var(--muted); font-size: 14px; line-height: 1.7; margin: 0; }

.craft-section { min-height: 720px; display: grid; grid-template-columns: 1.05fr .95fr; }
.craft-image { background-position: 36% center; filter: saturate(.8) contrast(1.03); }
.craft-copy { background: var(--forest); color: white; padding: 110px 8vw 100px 7vw; display: flex; flex-direction: column; justify-content: center; }
.craft-copy .eyebrow { color: #d69274; }
.craft-copy p:not(.eyebrow) { color: #d6d8d3; font-size: 17px; line-height: 1.75; margin: 28px 0 24px; }
.craft-copy ul { list-style: none; margin: 0 0 35px; padding: 0; border-top: 1px solid rgba(255,255,255,.2); }
.craft-copy li { padding: 14px 0 14px 25px; border-bottom: 1px solid rgba(255,255,255,.16); position: relative; font-size: 14px; }
.craft-copy li::before { content: ""; position: absolute; width: 7px; height: 7px; border: 1px solid #cf7955; border-radius: 50%; left: 0; top: 19px; }
.craft-copy .text-link { width: max-content; }

.service-section { display: grid; grid-template-columns: 1fr 1fr; gap: 10vw; background: var(--paper); }
.service-copy > p { margin: 0 0 42px; font-size: 18px; line-height: 1.75; color: var(--muted); }
.place-list { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--stone); }
.place-list span { padding: 16px 0; border-bottom: 1px solid var(--stone); font-size: 14px; }

.faq-section { display: grid; grid-template-columns: .75fr 1.25fr; gap: 10vw; background: #ded7cc; }
.faq-heading h2 { font-size: clamp(38px,3.5vw,56px); }
.faq-list { border-top: 1px solid #aaa398; }
.faq-list details { border-bottom: 1px solid #aaa398; }
.faq-list summary { list-style: none; cursor: pointer; padding: 24px 0; font-size: 18px; font-weight: 700; display: flex; justify-content: space-between; gap: 25px; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--rust); font-size: 26px; transition: transform .2s; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { margin: -4px 50px 24px 0; color: var(--muted); line-height: 1.7; }

.contact-section { display: grid; grid-template-columns: .9fr 1.1fr; min-height: 740px; background: var(--ink); color: white; }
.contact-copy { padding: 120px 7vw; background: linear-gradient(145deg,#2e312f,#1f2220); display: flex; flex-direction: column; }
.contact-copy .eyebrow { color: #d88867; }
.contact-copy > p:not(.eyebrow) { color: #c9cbc6; font-size: 17px; line-height: 1.7; max-width: 580px; }
.contact-note { margin-top: auto; display: flex; gap: 30px; color: #aaaDa7; font-size: 13px; }
.contact-form { padding: 95px 8vw 80px 7vw; background: var(--paper-light); color: var(--ink); display: flex; flex-direction: column; gap: 24px; }
.contact-form label { display: flex; flex-direction: column; gap: 9px; font-size: 12px; text-transform: uppercase; letter-spacing: .1em; font-weight: 700; }
.contact-form input, .contact-form textarea { width: 100%; border: 0; border-bottom: 1px solid #a9a398; background: transparent; padding: 10px 0; color: var(--ink); resize: vertical; border-radius: 0; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--rust); outline-offset: 5px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.contact-form .button { width: max-content; margin-top: 5px; }
.contact-form small { color: #787970; line-height: 1.5; }

footer { background: #141614; color: white; padding: 55px 5vw 35px; display: grid; grid-template-columns: 1fr 1fr auto; gap: 35px; align-items: start; }
.footer-mark { font-size: 19px; }
footer > p { color: #aaada8; margin: 0; font-size: 13px; }
footer nav { display: flex; gap: 28px; font-size: 13px; }
.copyright { grid-column: 1 / -1; padding-top: 34px; border-top: 1px solid #373a37; }

@media (max-width: 1050px) {
  .desktop-nav { display: none; }
  .site-header { grid-template-columns: 1fr auto auto; }
  .mobile-menu { display: block; position: relative; }
  .mobile-menu summary { width: 42px; height: 42px; display: grid; place-content: center; gap: 6px; cursor: pointer; list-style: none; }
  .mobile-menu summary::-webkit-details-marker { display: none; }
  .mobile-menu summary span { display: block; width: 22px; height: 1px; background: var(--ink); }
  .mobile-menu nav { position: absolute; right: 0; top: 49px; width: 240px; padding: 18px; background: var(--paper-light); border: 1px solid var(--stone); box-shadow: 0 18px 45px rgba(0,0,0,.12); display: flex; flex-direction: column; }
  .mobile-menu nav a { padding: 12px; }
  .hero { min-height: auto; }
  .hero-copy { padding-top: 85px; }
  .trust-row { grid-template-columns: 1fr; gap: 15px; padding-top: 45px; }
  .trust-row > div + div { padding-left: 0; border-left: 0; }
  .memorial-grid { grid-template-columns: 1fr 1fr; }
  .custom-callout { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; gap: 45px 0; }
  .step:nth-child(3) { border-left: 0; padding-left: 0; }
}

@media (max-width: 760px) {
  .site-header { height: 74px; padding: 0 20px; }
  .wordmark { font-size: 17px; }
  .site-header > .button { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { padding: 72px 24px 45px; min-height: 680px; }
  .hero h1 { font-size: clamp(43px, 12vw, 62px); }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 25px; }
  .hero-image { min-height: 540px; order: -1; background-position: 58% center; }
  .section-pad { padding: 90px 24px; }
  .intro-grid, .section-heading, .service-section, .faq-section, .contact-section, .craft-section { grid-template-columns: 1fr; }
  .intro-grid, .section-heading { gap: 45px; }
  .memorial-grid { grid-template-columns: 1fr; }
  .custom-callout { padding: 38px 28px; }
  .steps { grid-template-columns: 1fr; }
  .step, .step + .step { border-left: 0; padding: 25px 0 0; border-top: 1px solid var(--stone); }
  .craft-image { min-height: 480px; }
  .craft-copy { padding: 80px 24px; }
  .faq-section { gap: 60px; }
  .contact-copy, .contact-form { padding: 80px 24px; }
  .contact-copy { min-height: 560px; }
  .field-row { grid-template-columns: 1fr; gap: 24px; }
  footer { grid-template-columns: 1fr; padding: 50px 24px 30px; }
  footer nav { flex-wrap: wrap; }
  .copyright { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
