:root {
  color-scheme: light;
  --paper: #f2f2f0;
  --paper-deep: #e7e7e4;
  --mineral: #fafafa;
  --white: #ffffff;
  --graphite: #111111;
  --graphite-soft: #202020;
  --muted: #5c5c59;
  --green: #9b3034;
  --green-dark: #742327;
  --green-light: #f1dfe0;
  --bronze: #9b3034;
  --line: #d4d4d0;
  --line-dark: #b6b6b1;
  --error: #9b3034;
  --shadow: 0 22px 54px rgba(0, 0, 0, .12);
  --font-display: "Source Serif 4", Georgia, "Times New Roman", Times, serif;
  --font-ui: "Source Sans 3", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --shell: min(90rem, calc(100vw - 64px));
  --header-height: 82px;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--graphite);
  font-family: var(--font-ui);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-is-open {
  overflow: hidden;
}

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

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

button, a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-underline-offset: .2em;
}

p, h1, h2, h3, h4, ol, ul, dl {
  margin-top: 0;
}

h1, h2, h3 {
  text-wrap: balance;
}

h1, h2 {
  font-family: var(--font-display);
  font-weight: 570;
  line-height: 1.04;
  letter-spacing: -.028em;
}

h1 {
  font-size: clamp(3.35rem, 6.7vw, 7.35rem);
}

h2 {
  font-size: clamp(2.45rem, 4.3vw, 4.75rem);
}

h3 {
  font-size: 1.15rem;
  line-height: 1.35;
}

::selection {
  background: var(--green);
  color: var(--white);
}

:focus-visible {
  outline: 3px solid #c5484d;
  outline-offset: 4px;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: .7rem 1rem;
  transform: translateY(-180%);
  background: var(--graphite);
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  margin-bottom: 1rem;
  color: var(--green);
  font-size: .78rem;
  font-weight: 750;
  letter-spacing: .17em;
  line-height: 1.35;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: inline-flex;
  gap: .7rem;
  align-items: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--graphite);
  line-height: 1;
  text-decoration: none;
}

.brand__mark {
  width: 2.2rem;
  height: 2.2rem;
  flex: 0 0 auto;
  color: var(--graphite);
}

.brand__image {
  display: block;
  width: auto;
  max-width: min(15rem, 42vw);
  height: 4.65rem;
  flex: 0 0 auto;
  filter: none;
  object-fit: contain;
}

.brand__text {
  display: grid;
  gap: .18rem;
  letter-spacing: .01em;
}

.brand__text strong {
  font-family: var(--font-display);
  font-size: 1.24rem;
  font-weight: 780;
}

.brand__text span {
  color: #b8b8b5;
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.35rem, 2.6vw, 2.8rem);
}

.site-nav a {
  position: relative;
  font-size: .91rem;
  font-weight: 650;
  text-decoration: none;
  color: var(--graphite);
}

.site-nav > a:not(.site-nav__cta)::after {
  position: absolute;
  right: 0;
  bottom: -.45rem;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: #c84c51;
  content: "";
  transition: transform 180ms ease;
}

.site-nav > a:not(.site-nav__cta):hover::after,
.site-nav > a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav__cta {
  display: inline-flex;
  min-height: 2.85rem;
  align-items: center;
  justify-content: center;
  padding: .6rem 1.1rem;
  border: 1px solid var(--green);
  border-radius: 4px;
  background: var(--green);
  color: var(--white) !important;
}

.site-nav__cta:hover {
  border-color: var(--green-dark);
  background: var(--green-dark);
  color: var(--white) !important;
}

.nav-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  border: 0;
  background: transparent;
  color: var(--graphite);
}

.nav-toggle > span:not(.visually-hidden) {
  display: block;
  width: 1.55rem;
  height: 1px;
  margin: 7px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.nav-toggle[aria-expanded="true"] > span:nth-child(2) {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] > span:nth-child(3) {
  transform: translateY(-4px) rotate(-45deg);
}

.hero {
  display: grid;
  min-height: calc(100svh - var(--header-height));
  grid-template-columns: minmax(0, .84fr) minmax(34rem, 1.16fr);
  gap: clamp(2rem, 5vw, 7rem);
  align-items: center;
  padding-block: clamp(3rem, 6vw, 6.2rem);
}

.hero__copy {
  max-width: 42rem;
  padding-bottom: 3vw;
}

.hero__copy h1 {
  max-width: 8ch;
  margin-bottom: 1.75rem;
}

.hero__lead {
  max-width: 37rem;
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.35vw, 1.3rem);
  line-height: 1.65;
}

.hero__note {
  margin: 1.35rem 0 0;
  color: var(--muted);
  font-size: .82rem;
}

.hero.hero--direct {
  display: block;
  width: 100%;
  min-height: 0;
  padding: 0;
  background: var(--white);
  color: var(--graphite);
}

.hero-direct__inner {
  display: grid;
  min-height: 40rem;
  grid-template-columns: minmax(0, .88fr) minmax(30rem, 1.12fr);
  gap: clamp(2.5rem, 6vw, 7rem);
  align-items: center;
  padding-block: clamp(3rem, 5vw, 5.5rem);
  text-align: left;
}

.hero-direct__copy {
  max-width: 43rem;
  padding-block: 1.5rem;
}

.hero-direct__label {
  margin: 0 0 1rem;
  color: #d46a6e;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.hero--direct h1 {
  max-width: 11ch;
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.4vw, 5.25rem);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: .99;
}

.hero--direct .hero__lead {
  max-width: 47rem;
  margin: 0 0 2rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.62;
}

.hero--direct .button-row {
  justify-content: flex-start;
}

.hero-direct__media {
  position: relative;
  align-self: stretch;
  min-height: 34rem;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  background: var(--paper-deep);
}

.hero-direct__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .28), transparent 38%), linear-gradient(0deg, rgba(0, 0, 0, .38), transparent 42%);
  content: "";
  pointer-events: none;
}

.hero-direct__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 56%;
}

.hero-direct__media figcaption {
  position: absolute;
  z-index: 1;
  right: 1.25rem;
  bottom: 1rem;
  color: rgba(255, 255, 255, .78);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.button--large {
  min-height: 3.75rem;
  padding-inline: 1.7rem;
}

.hero-link {
  padding: .6rem .1rem;
  border-bottom: 1px solid var(--line-dark);
  color: var(--graphite);
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none;
}

.hero-link:hover {
  border-color: var(--green);
}

.hero-direct__facts {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 2.8rem 0 0;
  padding: .85rem 0 0;
  border-top: 1px solid var(--line-dark);
  color: var(--muted);
  font-size: .78rem;
  list-style: none;
}

.hero-direct__facts li {
  padding: .55rem 0;
  border-bottom: 1px solid var(--line);
}

.hero-direct__facts li:last-child {
  border-bottom: 0;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: center;
}

.button {
  display: inline-flex;
  min-height: 3.35rem;
  align-items: center;
  justify-content: center;
  padding: .78rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 5px;
  font-size: .92rem;
  font-weight: 720;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  transition: background-color 170ms ease, border-color 170ms ease, color 170ms ease, transform 170ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  border-color: var(--green);
  background: var(--green);
  color: var(--white);
}

.button--primary:hover {
  border-color: var(--green-dark);
  background: var(--green-dark);
}

.button--outline {
  border-color: currentColor;
  background: transparent;
  color: var(--graphite);
}

.button--outline:hover {
  background: var(--graphite);
  color: var(--white);
}

.button--light {
  border-color: var(--green);
  background: var(--green);
  color: var(--white);
}

.button--light:hover {
  border-color: var(--green-dark);
  background: var(--green-dark);
  color: var(--white);
}

.text-link {
  display: inline-flex;
  gap: .45rem;
  align-items: center;
  border-bottom: 1px solid var(--line-dark);
  font-size: .93rem;
  font-weight: 700;
  text-decoration: none;
}

.text-link span {
  transition: transform 170ms ease;
}

.text-link:hover span {
  transform: translate(2px, -2px);
}

.hero-stage {
  position: relative;
  min-height: clamp(34rem, 65vw, 46rem);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--mineral);
  box-shadow: var(--shadow);
}

.hero-stage::before,
.hero-stage::after {
  position: absolute;
  z-index: 1;
  width: 52px;
  height: 52px;
  border-style: solid;
  border-color: var(--bronze);
  content: "";
  opacity: .68;
}

.hero-stage::before {
  top: 22px;
  left: 22px;
  border-width: 1px 0 0 1px;
}

.hero-stage::after {
  right: 22px;
  bottom: 22px;
  border-width: 0 1px 1px 0;
}

.hero-stage__wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(128deg, transparent 0 58%, rgba(155, 48, 52, .07) 58% 59%, transparent 59%),
    linear-gradient(0deg, rgba(216, 210, 199, .35), transparent 43%);
}

.hero-stage__drawing {
  position: absolute;
  inset: 1.8rem 2rem 1.5rem;
  width: calc(100% - 4rem);
  height: calc(100% - 3.3rem);
}

.hero-stage__label {
  position: absolute;
  z-index: 2;
  bottom: 2rem;
  left: 2rem;
  display: grid;
  gap: .16rem;
  padding-left: 1rem;
  border-left: 1px solid var(--bronze);
}

.hero-stage__label span {
  color: var(--muted);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.hero-stage__label strong {
  font-size: .88rem;
  font-weight: 700;
}

.hero-stage__index {
  position: absolute;
  top: 1.7rem;
  right: 1.8rem;
  color: var(--bronze);
  font-family: var(--font-display);
  font-size: 1.7rem;
}

.grave-types {
  padding-block: clamp(5.5rem, 9vw, 9rem);
}

.section-heading {
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(18rem, .6fr);
  gap: 3rem;
  align-items: end;
}

.section-heading--split > p,
.section-heading--split > .text-link {
  max-width: 31rem;
  margin: 0 0 .25rem auto;
  color: var(--muted);
}

.grave-type-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.grave-type {
  position: relative;
  display: grid;
  min-height: 27rem;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr auto;
  gap: 1.25rem;
  padding: 1.5rem clamp(1.25rem, 2.4vw, 2.4rem) 1.8rem;
  border-right: 1px solid var(--line-dark);
  color: var(--graphite);
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease;
}

.grave-type:last-child {
  border-right: 0;
}

.grave-type:hover,
.grave-type:focus-visible {
  background: var(--green);
  color: var(--white);
}

.grave-type__number {
  color: var(--bronze);
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.grave-type svg {
  grid-column: 1 / -1;
  width: 100%;
  height: 11rem;
  color: currentColor;
  opacity: .92;
}

.grave-type svg path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  vector-effect: non-scaling-stroke;
}

.grave-type__copy {
  display: grid;
  align-self: end;
  gap: .4rem;
}

.grave-type__copy strong {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.3vw, 2.35rem);
  font-weight: 400;
  letter-spacing: -.02em;
}

.grave-type__copy small {
  max-width: 17rem;
  color: var(--muted);
  font-size: .83rem;
  line-height: 1.45;
}

.grave-type:hover .grave-type__copy small,
.grave-type:focus-visible .grave-type__copy small {
  color: rgba(255, 255, 255, .74);
}

.grave-type__arrow {
  align-self: end;
  font-size: 1.6rem;
}

.configurator-section {
  padding-block: clamp(3.5rem, 5vw, 5.5rem);
  border-top: 1px solid var(--line);
  background: var(--paper);
  color: var(--graphite);
}

.configurator-heading {
  display: grid;
  grid-template-columns: 1fr minmax(18rem, .65fr);
  gap: 3rem;
  align-items: end;
  margin-bottom: 2.2rem;
}

.configurator-heading h2 {
  margin-bottom: 0;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.8vw, 4rem);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: 1.03;
}

.configurator-heading .eyebrow {
  color: #d46a6e;
}

.configurator-heading > p {
  max-width: 36rem;
  margin: 0 0 .3rem auto;
  color: var(--muted);
}

#configurator-root {
  min-height: 46rem;
  border: 1px solid var(--line-dark);
  background: var(--mineral);
  color: var(--graphite);
  box-shadow: none;
}

#configurator-root:empty {
  display: grid;
  place-items: center;
  background:
    linear-gradient(90deg, transparent 49.9%, var(--line) 50%, transparent 50.1%),
    var(--mineral);
}

#configurator-root:empty::before {
  width: min(24rem, 70%);
  padding: 2rem;
  border: 1px solid var(--line);
  color: var(--muted);
  content: "Konfigurator wird vorbereitet …";
  font-size: .9rem;
  text-align: center;
}

.configurator-followup {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 0 0;
}

.configurator-followup > div {
  display: grid;
  gap: .15rem;
}

.configurator-followup strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 750;
}

.configurator-followup span {
  color: var(--muted);
  font-size: .85rem;
}

.lead-section {
  padding-block: clamp(5.5rem, 9vw, 9rem);
  background: var(--mineral);
}

.lead-section__grid {
  display: grid;
  grid-template-columns: minmax(20rem, .62fr) minmax(32rem, 1fr);
  gap: clamp(3rem, 8vw, 9rem);
  align-items: start;
}

.lead-section__intro {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
}

.lead-section__intro h2 {
  max-width: 10ch;
  margin-bottom: 1.6rem;
}

.lead-section__intro h2,
.process-section h2,
.material-feature__copy h2,
.embed-teaser h2,
.closing-cta h2 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: 1.06;
}

.lead-section__intro > p:not(.eyebrow) {
  max-width: 34rem;
  color: var(--muted);
}

.lead-facts {
  display: grid;
  grid-template-columns: 8.5rem 1fr;
  margin: 2.5rem 0 0;
  border-top: 1px solid var(--line-dark);
}

.lead-facts dt,
.lead-facts dd {
  margin: 0;
  padding: .9rem 0;
  border-bottom: 1px solid var(--line);
}

.lead-facts dt {
  padding-right: 1rem;
  font-size: .76rem;
  font-weight: 750;
}

.lead-facts dd {
  color: var(--muted);
  font-size: .82rem;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem 1rem;
  padding: clamp(1.5rem, 4vw, 3.5rem);
  border: 1px solid var(--line-dark);
  background: var(--paper);
}

.lead-form__heading {
  display: flex;
  grid-column: 1 / -1;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: .8rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line-dark);
}

.lead-form__heading span {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 750;
}

.lead-form__heading small {
  color: var(--muted);
  font-size: .72rem;
}

.lead-form__promise {
  margin: -.2rem 0 .25rem;
  padding: .8rem 1rem;
  border-left: 3px solid var(--green);
  background: var(--white);
  color: var(--muted);
  font-size: .82rem;
}

.lead-form__promise strong {
  color: var(--graphite);
}

.form-field {
  display: grid;
  gap: .42rem;
  min-width: 0;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field label,
.contact-choice legend {
  color: var(--graphite);
  font-size: .8rem;
  font-weight: 750;
}

.optional {
  color: var(--muted);
  font-size: .72rem;
  font-weight: 500;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  min-height: 3.35rem;
  border: 1px solid var(--line-dark);
  border-radius: 4px;
  background: var(--white);
  color: var(--graphite);
  padding: .75rem .9rem;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.form-field textarea {
  min-height: 8rem;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(155, 48, 52, .14);
  outline: 0;
}

.form-field input[aria-invalid="true"],
.form-field textarea[aria-invalid="true"],
.form-field select[aria-invalid="true"] {
  border-color: var(--error);
}

.form-field textarea::placeholder {
  color: #858b86;
}

.field-hint,
.field-error {
  min-height: 1.15rem;
  font-size: .72rem;
  line-height: 1.45;
}

.field-hint {
  color: var(--muted);
}

.field-error {
  color: var(--error);
  font-weight: 650;
}

.contact-choice {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin: 0;
  padding: 0;
  border: 0;
}

.contact-choice legend {
  width: 100%;
  margin-bottom: .42rem;
}

.contact-choice label {
  position: relative;
  display: inline-flex;
  min-width: 8.5rem;
  min-height: 3rem;
  align-items: center;
  cursor: pointer;
}

.contact-choice input {
  position: absolute;
  opacity: 0;
}

.contact-choice label span {
  display: inline-flex;
  width: 100%;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-dark);
  border-radius: 4px;
  background: var(--white);
  font-size: .82rem;
  font-weight: 700;
}

.contact-choice input:checked + span {
  border-color: var(--green);
  background: var(--green);
  color: var(--white);
}

.contact-choice input:focus-visible + span {
  outline: 3px solid #c5484d;
  outline-offset: 3px;
}

.privacy-check {
  display: grid;
  min-height: 2.75rem;
  grid-template-columns: auto 1fr;
  gap: .75rem;
  align-items: start;
  margin-top: .2rem;
  padding-block: .3rem;
  color: var(--muted);
  cursor: pointer;
  font-size: .79rem;
  line-height: 1.55;
}

.privacy-check input {
  width: 1.2rem;
  height: 1.2rem;
  margin: .12rem 0 0;
  accent-color: var(--green);
}

.privacy-check a {
  color: var(--green);
  font-weight: 700;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.lead-form__submit {
  display: flex;
  gap: 1.3rem;
  align-items: center;
  margin-top: .4rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line-dark);
}

.lead-form__submit .button {
  flex: 0 0 auto;
  cursor: pointer;
}

.lead-form__submit .button:disabled {
  cursor: wait;
  opacity: .65;
  transform: none;
}

.lead-form__submit p {
  margin: 0;
  color: var(--muted);
  font-size: .72rem;
  line-height: 1.5;
}

.lead-form__status {
  min-height: 1.5rem;
  margin: 0;
  font-size: .85rem;
  font-weight: 700;
}

.lead-form__status:empty {
  display: none;
}

.lead-form__status[data-state="loading"],
.lead-form__status[data-state="pending"] {
  color: var(--green-dark);
}

.lead-form__status[data-state="success"] {
  color: var(--green);
}

.lead-form__status[data-state="error"] {
  color: var(--error);
}

.notice {
  margin: 1rem 0 0;
  padding: 1rem 1.1rem;
  border-left: 3px solid var(--bronze);
  background: var(--mineral);
  color: var(--graphite);
}

.process-section {
  padding-block: clamp(5.5rem, 9vw, 9rem);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-dark);
  list-style: none;
}

.process-list li {
  display: grid;
  min-height: 15rem;
  grid-template-columns: auto 1fr;
  gap: clamp(1rem, 2vw, 2rem);
  padding: 2rem clamp(1rem, 2.3vw, 2.3rem);
  border-right: 1px solid var(--line-dark);
}

.process-list li:last-child {
  border-right: 0;
}

.process-list__number {
  color: var(--bronze);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
}

.process-list h3 {
  margin: .2rem 0 .7rem;
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 760;
}

.process-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: .94rem;
}

.material-feature {
  padding-block: clamp(5rem, 8vw, 8rem);
  background: var(--paper-deep);
}

.material-feature__grid {
  display: grid;
  grid-template-columns: minmax(24rem, .7fr) minmax(0, .8fr);
  gap: clamp(3rem, 7vw, 8rem);
  align-items: center;
}

.editorial-image {
  position: relative;
  margin: 0;
  padding: 0 0 2.5rem 2.5rem;
  max-width: 39rem;
}

.editorial-image::before {
  position: absolute;
  z-index: 0;
  bottom: 0;
  left: 0;
  width: 58%;
  height: 68%;
  border: 1px solid var(--bronze);
  content: "";
  opacity: .58;
}

.editorial-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  box-shadow: 0 20px 48px rgba(0, 0, 0, .16);
}

.editorial-image figcaption {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: .35rem .8rem;
  margin: 1rem 0 -1.4rem;
  color: var(--muted);
  font-size: .75rem;
}

.editorial-image figcaption span {
  color: var(--graphite);
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.material-composition {
  position: relative;
  min-height: 36rem;
}

.material-composition::after {
  position: absolute;
  right: 2%;
  bottom: 4%;
  left: 8%;
  height: 4rem;
  border-radius: 50%;
  background: rgba(36, 41, 37, .17);
  content: "";
  filter: blur(24px);
}

.material-slab {
  position: absolute;
  z-index: 1;
  display: flex;
  width: 38%;
  height: 78%;
  align-items: flex-end;
  padding: 1.1rem;
  border: 1px solid rgba(36, 41, 37, .25);
  color: var(--white);
  box-shadow: 0 16px 35px rgba(36, 41, 37, .15);
}

.material-slab span {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.material-slab--dark {
  top: 8%;
  left: 1%;
  background:
    radial-gradient(circle at 19% 21%, rgba(255,255,255,.26) 0 1px, transparent 1.5px),
    radial-gradient(circle at 72% 43%, rgba(255,255,255,.15) 0 1.5px, transparent 2px),
    radial-gradient(circle at 42% 81%, rgba(0,0,0,.32) 0 1px, transparent 1.5px),
    #444b47;
  background-size: 19px 23px, 31px 29px, 27px 21px, auto;
  transform: rotate(-4deg);
}

.material-slab--warm {
  top: 18%;
  left: 31%;
  z-index: 2;
  height: 75%;
  color: var(--graphite);
  background:
    repeating-linear-gradient(103deg, transparent 0 21px, rgba(70,61,48,.06) 22px 24px),
    #b7ac99;
  transform: rotate(2deg);
}

.material-slab--mottled {
  top: 3%;
  right: 1%;
  height: 84%;
  background:
    radial-gradient(ellipse at 25% 35%, rgba(255,255,255,.19), transparent 38%),
    radial-gradient(ellipse at 75% 62%, rgba(28,34,31,.26), transparent 41%),
    #747b77;
  transform: rotate(5deg);
}

.material-feature__copy h2 {
  max-width: 11ch;
  margin-bottom: 1.8rem;
}

.material-feature__copy > p:not(.eyebrow) {
  max-width: 35rem;
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.embed-teaser {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  padding-block: clamp(4.5rem, 7vw, 7rem);
}

.embed-teaser__mark {
  display: grid;
  width: 8.5rem;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid var(--line-dark);
}

.embed-teaser__mark svg {
  width: 58%;
  color: var(--green);
}

.embed-teaser__mark path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.embed-teaser h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 3.5vw, 3.7rem);
}

.embed-teaser p:not(.eyebrow) {
  max-width: 47rem;
  margin-bottom: 0;
  color: var(--muted);
}

.closing-cta {
  border-top: 1px solid var(--line);
  background: var(--paper-deep);
  color: var(--graphite);
}

.closing-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-block: clamp(4rem, 7vw, 6.6rem);
}

.closing-cta .eyebrow {
  color: var(--green);
}

.closing-cta h2 {
  margin-bottom: 0;
  font-size: clamp(2.4rem, 4vw, 4.4rem);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--paper);
  color: var(--graphite);
}

.site-footer__main {
  display: grid;
  grid-template-columns: minmax(14rem, .65fr) minmax(18rem, .8fr) minmax(14rem, .5fr);
  gap: clamp(2.5rem, 6vw, 7rem);
  padding-block: 4.5rem;
  border-bottom: 1px solid var(--line);
}

.brand--footer {
  align-self: start;
  color: var(--graphite);
}

.brand--footer .brand__mark {
  color: #d46a6e;
}

.brand--footer .brand__image {
  max-width: 16rem;
  height: 5.6rem;
}

.brand--footer .brand__text span {
  color: #b8b8b5;
}

.site-footer__main > p {
  max-width: 34rem;
  margin-bottom: 0;
  color: var(--muted);
  font-size: .9rem;
}

.site-footer nav {
  display: grid;
  gap: .55rem;
  align-content: start;
}

.site-footer nav a {
  width: fit-content;
  color: var(--graphite);
  font-size: .88rem;
  text-decoration-color: transparent;
}

.site-footer nav a:hover {
  text-decoration-color: currentColor;
}

.site-footer__meta {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 1.35rem;
  color: var(--muted);
  font-size: .72rem;
  letter-spacing: .04em;
}

/* Inner pages */
.page-hero {
  padding-block: clamp(4.5rem, 8vw, 8rem) clamp(3.5rem, 6vw, 6rem);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  color: var(--graphite);
}

.page-hero--compact {
  padding-bottom: clamp(3rem, 5vw, 5rem);
}

.page-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(19rem, .55fr);
  gap: clamp(3rem, 8vw, 9rem);
  align-items: end;
}

.page-hero h1 {
  max-width: 10ch;
  margin-bottom: 0;
  font-family: var(--font-display);
  font-size: clamp(3.1rem, 6vw, 5.8rem);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: 1;
}

.page-hero__intro {
  max-width: 35rem;
  margin-bottom: .5rem;
  color: var(--muted);
  font-size: 1.1rem;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-bottom: 2.5rem;
  color: var(--muted);
  font-size: .78rem;
}

.breadcrumb a {
  text-decoration-color: var(--line-dark);
}

.breadcrumb span[aria-current="page"] {
  color: var(--graphite);
}

.editorial-layout {
  display: grid;
  grid-template-columns: minmax(14rem, .28fr) minmax(0, .72fr);
  gap: clamp(3rem, 8vw, 9rem);
  padding-block: clamp(4rem, 7vw, 7rem);
}

.editorial-layout > * {
  min-width: 0;
}

.side-index {
  align-self: start;
}

.side-index__inner {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
}

.side-index p {
  margin-bottom: .8rem;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 750;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.side-index nav {
  display: grid;
  border-top: 1px solid var(--line);
}

.side-index a {
  padding: .7rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: .88rem;
  text-decoration: none;
}

.side-index a:hover {
  color: var(--green);
}

.article-content {
  max-width: 54rem;
}

.article-content > section {
  padding-bottom: clamp(3.5rem, 6vw, 6rem);
  scroll-margin-top: calc(var(--header-height) + 2rem);
}

.article-content > section + section {
  padding-top: clamp(3.5rem, 6vw, 6rem);
  border-top: 1px solid var(--line-dark);
}

.article-content h2 {
  max-width: 15ch;
  margin-bottom: 1.7rem;
  font-size: clamp(2.25rem, 4vw, 3.9rem);
}

.article-content h3 {
  margin: 2.2rem 0 .7rem;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 750;
}

.article-content p,
.article-content li,
.article-content dd {
  color: #4f4f4c;
}

.article-content p {
  max-width: 48rem;
}

.article-content ul,
.article-content ol {
  max-width: 47rem;
  padding-left: 1.25rem;
}

.article-content li + li {
  margin-top: .55rem;
}

.article-content a:not(.button) {
  color: var(--green);
  font-weight: 650;
}

.intro-line {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 650;
  line-height: 1.42;
}

.callout {
  margin: 2rem 0;
  padding: 1.4rem 1.6rem;
  border-left: 3px solid var(--bronze);
  background: var(--mineral);
}

.callout p:last-child {
  margin-bottom: 0;
}

.status-banner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  margin-bottom: 3rem;
  padding: 1.2rem 1.4rem;
  border: 1px solid #d6a4a6;
  background: #f7eaea;
}

.status-banner__icon {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border: 1px solid var(--bronze);
  border-radius: 50%;
  color: var(--green-dark);
  font-weight: 800;
}

.status-banner strong {
  display: block;
  margin-bottom: .2rem;
}

.status-banner p {
  margin-bottom: 0;
  color: #59494a;
  font-size: .9rem;
}

.definition-list {
  display: grid;
  grid-template-columns: minmax(10rem, .36fr) minmax(0, .64fr);
  margin: 0;
  border-top: 1px solid var(--line-dark);
}

.definition-list dt,
.definition-list dd {
  margin: 0;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.definition-list dt {
  padding-right: 1.2rem;
  font-size: .83rem;
  font-weight: 750;
  letter-spacing: .03em;
}

.definition-list dd {
  overflow-wrap: anywhere;
}

.pending {
  color: var(--error);
  font-weight: 700;
}

.steps-detail {
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps-detail > li {
  display: grid;
  grid-template-columns: 4.2rem 1fr;
  gap: 1.8rem;
  padding: 2.2rem 0;
  border-top: 1px solid var(--line);
}

.steps-detail > li:last-child {
  border-bottom: 1px solid var(--line);
}

.steps-detail__number {
  color: var(--bronze);
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
}

.steps-detail h3 {
  margin: 0 0 .5rem;
}

.steps-detail p {
  margin-bottom: 0;
}

.question-list details {
  border-top: 1px solid var(--line-dark);
}

.question-list details:last-child {
  border-bottom: 1px solid var(--line-dark);
}

.question-list summary {
  position: relative;
  padding: 1.3rem 3rem 1.3rem 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 720;
  list-style: none;
}

.question-list summary::-webkit-details-marker {
  display: none;
}

.question-list summary::after {
  position: absolute;
  top: 50%;
  right: .25rem;
  width: 1rem;
  height: 1rem;
  transform: translateY(-70%) rotate(45deg);
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  content: "";
  transition: transform 170ms ease;
}

.question-list details[open] summary::after {
  transform: translateY(-30%) rotate(225deg);
}

.question-list details > div {
  padding: 0 3rem 1.25rem 0;
}

.material-intro {
  display: grid;
  grid-template-columns: .6fr .4fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
  padding-block: clamp(4rem, 7vw, 7rem);
}

.material-intro h2 {
  margin-bottom: 1.5rem;
}

.material-note {
  padding: 1.5rem;
  border-top: 1px solid var(--bronze);
  border-bottom: 1px solid var(--line-dark);
}

.material-note strong {
  display: block;
  margin-bottom: .5rem;
}

.material-note p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: .9rem;
}

.material-catalog {
  padding-bottom: clamp(4.5rem, 8vw, 8rem);
}

.material-catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
  background: var(--white);
}

.material-catalog-card {
  min-width: 0;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: var(--white);
}

.material-catalog-card img {
  width: 100%;
  aspect-ratio: 1;
  border-bottom: 1px solid var(--line);
  background: #d7d7d4;
  object-fit: cover;
}

.material-catalog-card__copy {
  min-height: 7.6rem;
  padding: 1rem 1.1rem 1.2rem;
}

.material-catalog-card__copy p {
  margin: 0 0 .4rem;
  color: var(--green);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.material-catalog-card__copy h3 {
  margin: 0;
  overflow-wrap: anywhere;
  font-family: var(--font-ui);
  font-size: 1.05rem;
  font-weight: 750;
  line-height: 1.3;
}

.material-study-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.material-study {
  padding: 1.3rem;
  border-right: 1px solid var(--line-dark);
}

.material-study:last-child {
  border-right: 0;
}

.material-study__swatch {
  position: relative;
  aspect-ratio: 4 / 4.6;
  margin-bottom: 1.3rem;
  overflow: hidden;
  border: 1px solid rgba(36, 41, 37, .17);
}

.material-study__swatch::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(255,255,255,.17), transparent 35% 74%, rgba(0,0,0,.08));
  content: "";
}

.swatch--granite {
  background:
    radial-gradient(circle at 17% 14%, #d8dad7 0 1px, transparent 1.8px),
    radial-gradient(circle at 63% 38%, #151a17 0 .9px, transparent 1.7px),
    radial-gradient(circle at 36% 75%, #aeb4af 0 1.4px, transparent 2.2px),
    radial-gradient(circle at 87% 81%, #eee 0 .7px, transparent 1.5px),
    #4c5450;
  background-size: 24px 25px, 31px 29px, 37px 35px, 17px 19px, auto;
}

.swatch--limestone {
  background:
    repeating-linear-gradient(8deg, transparent 0 30px, rgba(76,65,49,.07) 31px 32px),
    radial-gradient(ellipse at 20% 45%, rgba(255,255,255,.2), transparent 32%),
    #b8ae9c;
}

.swatch--marble {
  background:
    linear-gradient(118deg, transparent 0 22%, rgba(75,82,78,.12) 23% 24%, transparent 25% 39%, rgba(255,255,255,.25) 40% 41%, transparent 42%),
    linear-gradient(105deg, transparent 0 58%, rgba(55,64,59,.16) 59% 60%, transparent 61%),
    #8f9692;
}

.material-study__meta {
  margin-bottom: .45rem;
  color: var(--bronze);
  font-size: .68rem;
  font-weight: 750;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.material-study h2,
.material-study h3 {
  margin: 0 0 .55rem;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.4vw, 2.2rem);
  font-weight: 400;
}

.material-study p {
  color: var(--muted);
  font-size: .9rem;
}

.surface-table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid var(--line-dark);
}

.surface-table-wrap {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.surface-table th,
.surface-table td {
  padding: 1rem 1.2rem 1rem 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.surface-table th {
  font-size: .75rem;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.surface-table td {
  color: var(--muted);
}

.legal-meta {
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: .82rem;
}

.code-panel {
  position: relative;
  margin: 1.5rem 0;
  border: 1px solid var(--line-dark);
  background: #101010;
  color: #e9edea;
}

.code-panel__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 3.2rem;
  padding: .55rem .75rem .55rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,.15);
}

.code-panel__bar span {
  color: #aeb9b2;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.copy-button,
.frame-button {
  min-height: 2.25rem;
  padding: .35rem .7rem;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 4px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-size: .77rem;
  font-weight: 700;
}

.copy-button:hover,
.frame-button:hover {
  background: rgba(255,255,255,.1);
}

.code-panel pre {
  max-height: 26rem;
  margin: 0;
  overflow: auto;
  padding: 1.3rem;
  color: #dce5de;
  font: 500 .82rem/1.65 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  tab-size: 2;
}

.copy-status {
  min-height: 1.5rem;
  margin: .3rem 0 0;
  color: var(--muted);
  font-size: .8rem;
}

.embed-workbench {
  padding-block: clamp(4rem, 7vw, 7rem);
}

.embed-workbench__heading {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: end;
  margin-bottom: 2rem;
}

.embed-workbench__heading h2 {
  margin-bottom: 0;
}

.frame-button {
  border-color: var(--green);
  color: var(--green);
}

.frame-button:hover {
  background: var(--green);
  color: var(--white);
}

.embed-frame-shell {
  overflow: hidden;
  border: 1px solid var(--line-dark);
  background: var(--white);
  box-shadow: var(--shadow);
}

.embed-frame-shell__chrome {
  display: flex;
  min-height: 3.25rem;
  align-items: center;
  gap: .55rem;
  padding: .7rem 1rem;
  border-bottom: 1px solid var(--line);
  background: #e8e5df;
}

.embed-frame-shell__chrome i {
  width: .65rem;
  height: .65rem;
  border-radius: 50%;
  background: #b8b3aa;
}

.embed-frame-shell__chrome span {
  min-width: 0;
  margin-left: .5rem;
  overflow: hidden;
  color: var(--muted);
  font-size: .76rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.embed-frame-shell iframe {
  display: block;
  width: 100%;
  height: min(860px, 78svh);
  min-height: 640px;
  border: 0;
}

.embed-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 4rem 0 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.embed-options article {
  padding: 1.5rem;
  border-right: 1px solid var(--line-dark);
}

.embed-options article:last-child {
  border-right: 0;
}

.embed-options h3 {
  margin: 0 0 .6rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
}

.embed-options p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: .86rem;
}

@media (max-width: 1120px) {
  :root {
    --shell: min(100% - 44px, 78rem);
  }

  .hero {
    grid-template-columns: minmax(0, .86fr) minmax(29rem, 1.05fr);
    gap: 2.5rem;
  }

  .hero-stage {
    min-height: 36rem;
  }

  .grave-type {
    min-height: 24rem;
  }

  .material-feature__grid {
    gap: 4rem;
  }

  .material-catalog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 880px) {
  :root {
    --shell: calc(100% - 40px);
    --header-height: 72px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    z-index: 90;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    align-content: start;
    align-items: stretch;
    padding: 2rem var(--shell-side, 20px);
    background: var(--white);
  }

  .site-nav[data-open] {
    display: grid;
  }

  .site-nav a {
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--font-ui);
    font-size: 1.35rem;
    font-weight: 700;
  }

  .site-nav > a:not(.site-nav__cta)::after {
    display: none;
  }

  .site-nav__cta {
    margin-top: 1rem;
    border: 0;
    font-family: var(--font-ui) !important;
    font-size: .95rem !important;
    font-weight: 700 !important;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-block: 4rem 5rem;
  }

  .hero.hero--direct {
    padding-block: 0;
  }

  .hero-direct__inner {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-bottom: 2rem;
  }

  .hero-direct__copy {
    max-width: 46rem;
    padding-block: 2.5rem 0;
  }

  .hero-direct__media {
    min-height: 32rem;
  }

  .hero__copy {
    max-width: 45rem;
    padding-bottom: 0;
  }

  .hero__copy h1 {
    max-width: 10ch;
  }

  .hero-stage {
    width: min(100%, 42rem);
    min-height: 39rem;
    margin-inline: auto;
  }

  .section-heading--split,
  .configurator-heading,
  .page-hero__grid,
  .material-intro,
  .lead-section__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .section-heading--split > p,
  .section-heading--split > .text-link,
  .configurator-heading > p {
    margin-left: 0;
  }

  .lead-section__intro {
    position: static;
  }

  .grave-type-grid {
    grid-template-columns: 1fr;
  }

  .grave-type {
    min-height: 16rem;
    grid-template-columns: auto minmax(0, 1fr) auto;
    grid-template-rows: auto 1fr;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .grave-type:last-child {
    border-bottom: 0;
  }

  .grave-type svg {
    width: 11rem;
    height: 10rem;
    grid-column: 1;
    grid-row: 2;
  }

  .grave-type__copy {
    grid-column: 2;
    grid-row: 2;
    align-self: center;
  }

  .grave-type__arrow {
    grid-column: 3;
    grid-row: 2;
    align-self: center;
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .process-list li {
    min-height: auto;
    padding-inline: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .material-feature__grid {
    grid-template-columns: 1fr;
  }

  .material-composition {
    max-width: 40rem;
    width: 100%;
    min-height: 33rem;
    margin-inline: auto;
  }

  .editorial-image {
    max-width: 44rem;
    margin-inline: auto;
  }

  .embed-teaser {
    grid-template-columns: auto 1fr;
  }

  .embed-teaser .button {
    grid-column: 2;
    width: fit-content;
  }

  .site-footer__main {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__main > p {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .editorial-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .side-index__inner {
    position: static;
  }

  .side-index nav {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem 1.3rem;
    border-top: 0;
  }

  .side-index a {
    padding: .2rem 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .material-study-grid {
    grid-template-columns: 1fr;
  }

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

  .material-study {
    display: grid;
    grid-template-columns: minmax(12rem, .45fr) minmax(0, .55fr);
    gap: 1.5rem;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .material-study:last-child {
    border-bottom: 0;
  }

  .material-study__swatch {
    grid-row: span 4;
    margin-bottom: 0;
  }

  .embed-options {
    grid-template-columns: 1fr;
  }

  .embed-options article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .embed-options article:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 600px) {
  :root {
    --shell: calc(100% - 28px);
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.4rem);
  }

  h2 {
    font-size: clamp(2.25rem, 11vw, 3.5rem);
  }

  .brand__mark {
    width: 2rem;
    height: 2rem;
  }

  .brand__image {
    max-width: 12.5rem;
    height: 3.85rem;
  }

  .brand--footer .brand__image {
    max-width: 14rem;
    height: 4.9rem;
  }

  .hero {
    gap: 2.3rem;
    padding-block: 3.2rem 4rem;
  }

  .hero.hero--direct {
    padding-block: 0;
  }

  .hero-direct__inner {
    min-height: 0;
    padding-block: 0 1rem;
    text-align: left;
  }

  .hero-direct__copy {
    padding-block: 3.5rem 0;
  }

  .hero-direct__media {
    min-height: 27rem;
  }

  .hero--direct h1 {
    max-width: 9ch;
    font-size: clamp(2.65rem, 11.5vw, 3.35rem);
    line-height: 1.02;
  }

  .hero--direct .hero__lead {
    margin-inline: 0;
  }

  .hero--direct .button-row {
    width: 100%;
    align-items: stretch;
  }

  .hero-link {
    width: fit-content;
  }

  .hero-direct__facts {
    grid-template-columns: 1fr;
    margin-top: 2.6rem;
    text-align: left;
  }

  .hero-direct__facts li {
    padding: .6rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-direct__facts li:last-child {
    border-bottom: 0;
  }

  .hero__lead {
    font-size: 1rem;
  }

  .button-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .button-row .button {
    width: 100%;
  }

  .hero__note {
    font-size: .74rem;
    line-height: 1.5;
  }

  .hero-stage {
    min-height: 30rem;
  }

  .hero-stage__drawing {
    inset: 1rem .25rem 1rem;
    width: calc(100% - .5rem);
    height: calc(100% - 2rem);
  }

  .hero-stage__label {
    bottom: 1.2rem;
    left: 1.2rem;
  }

  .hero-stage__index {
    top: 1.1rem;
    right: 1.2rem;
  }

  .grave-type {
    min-height: 15rem;
    gap: .75rem;
    padding-inline: .4rem;
  }

  .grave-type svg {
    width: 8rem;
    height: 8rem;
  }

  .grave-type__copy strong {
    font-size: 1.6rem;
  }

  .grave-type__copy small {
    font-size: .76rem;
  }

  .configurator-section {
    padding-block: 3.5rem;
  }

  .configurator-followup {
    align-items: flex-start;
    flex-direction: column;
  }

  #configurator-root {
    min-height: 39rem;
  }

  .lead-form {
    grid-template-columns: 1fr;
    padding: 1.3rem;
  }

  .form-field,
  .form-field--full,
  .lead-form__heading,
  .contact-choice,
  .privacy-check,
  .lead-form__submit,
  .lead-form__status {
    grid-column: 1;
  }

  .lead-form__submit {
    align-items: stretch;
    flex-direction: column;
  }

  .lead-form__submit .button {
    width: 100%;
  }

  .material-composition {
    min-height: 25rem;
  }

  .material-catalog-card__copy {
    min-height: 7rem;
    padding: .85rem .8rem 1rem;
  }

  .material-catalog-card__copy h3 {
    font-size: .92rem;
  }

  .editorial-image {
    padding: 0 0 1.6rem 1rem;
  }

  .embed-teaser {
    grid-template-columns: 1fr;
  }

  .embed-teaser__mark {
    width: 6rem;
  }

  .embed-teaser .button {
    grid-column: 1;
  }

  .closing-cta__inner,
  .site-footer__meta,
  .embed-workbench__heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer__main {
    grid-template-columns: 1fr;
    padding-block: 3.5rem;
  }

  .site-footer__main > p {
    grid-column: 1;
    grid-row: auto;
  }

  .page-hero {
    padding-block: 3.7rem;
  }

  .page-hero h1 {
    font-size: clamp(2.8rem, 13vw, 4rem);
  }

  .breadcrumb {
    margin-bottom: 1.8rem;
  }

  .editorial-layout {
    padding-block: 3.5rem;
  }

  .definition-list {
    grid-template-columns: 1fr;
  }

  .definition-list dt {
    padding-bottom: .2rem;
    border-bottom: 0;
  }

  .definition-list dd {
    padding-top: .15rem;
  }

  .steps-detail > li {
    grid-template-columns: 2.8rem 1fr;
    gap: 1rem;
  }

  .steps-detail__number {
    font-size: 1.7rem;
  }

  .material-study {
    display: block;
    padding-inline: 0;
  }

  .material-study__swatch {
    aspect-ratio: 16 / 11;
    margin-bottom: 1.3rem;
  }

  .surface-table {
    width: 44rem;
    min-width: 44rem;
    white-space: nowrap;
  }

  .code-panel {
    margin-inline: 0;
  }

  .embed-frame-shell {
    margin-inline: 0;
  }

  .embed-frame-shell iframe {
    min-height: 680px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  .site-header, .site-footer, .closing-cta, .side-index, .button, .text-link {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }

  .shell {
    width: 100%;
  }

  .page-hero, .editorial-layout {
    padding-block: 1.5rem;
  }
}
