:root {
  color-scheme: light;
  --ink: #24231f;
  --muted: #625f57;
  --soft: #f4efe5;
  --paper: #fffaf0;
  --stone: #d8cbbc;
  --line: rgba(36, 35, 31, 0.14);
  --olive: #31463e;
  --olive-dark: #20332d;
  --clay: #9c7e58;
  --white: #fffdf8;
  --shadow: 0 20px 55px rgba(32, 51, 45, 0.12);
  --radius: 8px;
  --header-height: 76px;
  font-family: Inter, "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  background: rgba(49, 70, 62, 0.18);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-140%);
  padding: 10px 14px;
  background: var(--olive);
  color: var(--white);
  border-radius: var(--radius);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 14px 42px;
  color: var(--white);
  transition: background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(255, 250, 240, 0.94);
  color: var(--ink);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-grid;
  gap: 0;
  min-width: 130px;
}

.brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 1;
  letter-spacing: 0;
}

.brand-line {
  font-size: 0.72rem;
  color: currentColor;
  opacity: 0.8;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.9rem;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: inherit;
  place-items: center;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  background: currentColor;
  transition: transform 160ms ease;
}

.nav-toggle span + span {
  margin-top: 6px;
}

.site-header.is-open .nav-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.site-header.is-open .nav-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 84svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 24, 21, 0.44);
  z-index: -1;
}

.hero-content {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
  padding: 132px 0 92px;
}

.eyebrow,
.section-kicker,
.product-label,
.article-number {
  margin: 0 0 14px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: rgba(255, 253, 248, 0.86);
}

.hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 5rem;
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 650px;
  margin: 22px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  line-height: 1.25;
}

.hero-actions,
.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 700;
  line-height: 1.2;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

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

.hero .button-primary {
  background: var(--white);
  color: var(--olive-dark);
  border-color: var(--white);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 253, 248, 0.66);
  background: rgba(255, 253, 248, 0.08);
}

.button-secondary {
  color: var(--olive-dark);
  border-color: rgba(49, 70, 62, 0.28);
  background: transparent;
}

.hero-cue {
  position: absolute;
  left: 42px;
  bottom: 28px;
  font-size: 0.85rem;
  color: rgba(255, 253, 248, 0.84);
  writing-mode: vertical-rl;
}

.section {
  padding: 96px 42px;
  scroll-margin-top: var(--header-height);
}

.section h2 {
  margin: 0;
  max-width: 850px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.75rem;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0;
}

.section h3 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1.18;
}

.split,
.section-heading,
.why,
.order-section,
.contact,
.site-footer {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: 72px;
  align-items: start;
}

.text-flow p,
.section-heading p,
.order-copy p,
.why-copy p,
.manifesto p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.text-flow p + p {
  margin-top: 18px;
}

.manifesto {
  background: var(--olive);
  color: var(--white);
}

.manifesto-inner {
  width: min(980px, 100%);
  margin: 0 auto;
}

.manifesto .section-kicker {
  color: rgba(255, 253, 248, 0.72);
}

.manifesto p {
  max-width: 790px;
  margin-top: 22px;
  color: rgba(255, 253, 248, 0.78);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.6fr);
  gap: 56px;
  align-items: end;
  margin-bottom: 42px;
}

.section-heading.compact {
  display: block;
  margin-bottom: 34px;
}

.product-grid,
.reason-grid,
.pro-grid,
.article-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

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

.product-card,
.reason-grid article,
.pro-grid article,
.article-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.product-card {
  display: grid;
  min-height: 100%;
  transition: box-shadow 160ms ease, transform 160ms ease, border-color 160ms ease;
}

.product-card.is-active,
.product-card:hover {
  border-color: rgba(49, 70, 62, 0.36);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.product-card:nth-child(3) img {
  object-position: center 40%;
}

.product-copy {
  display: grid;
  align-content: start;
  padding: 24px;
  min-height: 238px;
}

.product-copy p {
  margin: 0 0 18px;
  color: var(--muted);
}

.product-copy .product-label {
  margin-bottom: 10px;
  color: var(--clay);
}

.text-button {
  justify-self: start;
  align-self: end;
  margin-top: 8px;
  padding: 0 0 4px;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--olive-dark);
  font-weight: 700;
}

.detail-panel {
  width: min(1180px, 100%);
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
  padding: 28px;
  background: #ede6da;
  border: 1px solid rgba(36, 35, 31, 0.1);
  border-radius: var(--radius);
}

.detail-media {
  min-height: 420px;
  border-radius: var(--radius);
  overflow: hidden;
}

.detail-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.detail-copy h3 {
  font-size: 2.35rem;
}

.detail-copy p {
  color: var(--muted);
}

.quiet-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.quiet-list li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
}

.quiet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--olive);
}

.technical {
  background: #fbf7ee;
}

.size-table {
  width: min(1180px, 100%);
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}

.table-row {
  display: grid;
  grid-template-columns: 0.55fr repeat(5, 1fr);
  border-top: 1px solid var(--line);
}

.table-row:first-child {
  border-top: 0;
}

.table-row span {
  padding: 16px 14px;
  border-left: 1px solid var(--line);
  min-width: 0;
}

.table-row span:first-child {
  border-left: 0;
  font-weight: 700;
}

.table-head {
  background: var(--olive);
  color: var(--white);
  font-weight: 700;
}

.material-band {
  width: min(1180px, 100%);
  margin: 22px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.material-band > div {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.material-band p,
.process-list p,
.reason-grid p,
.pro-grid p,
.article-grid p {
  margin: 0;
  color: var(--muted);
}

.process-list {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  list-style: none;
}

.process-list li {
  min-height: 236px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.process-list span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 32px;
  border-radius: 50%;
  background: var(--olive);
  color: var(--white);
  font-weight: 700;
}

.process-list strong {
  display: block;
  margin-bottom: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  font-weight: 400;
}

.why {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1fr);
  gap: 58px;
  align-items: center;
}

.why-image {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--stone);
}

.why-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.why-copy h2 {
  margin-bottom: 22px;
}

.reason-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.reason-grid article,
.pro-grid article,
.article-grid article {
  padding: 24px;
}

.order-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1fr);
  gap: 64px;
  align-items: start;
}

.order-copy {
  position: sticky;
  top: 110px;
}

.order-copy h2 {
  margin-bottom: 22px;
}

.order-note {
  margin-top: 22px;
  padding: 18px;
  border-left: 3px solid var(--olive);
  background: #f8f1e4;
}

.order-form {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.order-form fieldset {
  min-width: 0;
  margin: 0 0 22px;
  padding: 0;
  border: 0;
}

.order-form legend {
  margin-bottom: 10px;
  font-weight: 700;
}

.segmented {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.segmented label {
  display: block;
}

.segmented input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.segmented span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8f4ec;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
}

.segmented input:checked + span {
  background: var(--olive);
  border-color: var(--olive);
  color: var(--white);
}

.segmented input:focus-visible + span {
  outline: 2px solid var(--clay);
  outline-offset: 2px;
}

.form-hint,
.form-status {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.order-form label {
  display: grid;
  gap: 7px;
  margin-bottom: 16px;
  font-weight: 700;
}

.order-form input,
.order-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  background: #fffdfa;
  color: var(--ink);
  resize: vertical;
}

.order-form input:focus,
.order-form textarea:focus {
  outline: 2px solid rgba(49, 70, 62, 0.32);
  border-color: rgba(49, 70, 62, 0.52);
}

.engraving-preview {
  margin: 22px 0 24px;
  padding: 18px;
  border: 1px solid rgba(49, 70, 62, 0.18);
  border-radius: var(--radius);
  background: #f5efe4;
}

.preview-toolbar {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.preview-toolbar .section-kicker {
  margin-bottom: 6px;
}

.preview-toolbar h3 {
  margin: 0;
  font-size: 1.35rem;
}

.preview-toolbar p:last-child {
  margin: 0;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--olive-dark);
  background: rgba(255, 253, 248, 0.72);
  font-weight: 700;
  line-height: 1.2;
}

.preview-stage {
  min-height: 348px;
  display: grid;
  place-items: end center;
  padding: 20px 16px 26px;
  border-radius: var(--radius);
  background: #e5dccf;
  overflow: hidden;
}

.stone-preview {
  position: relative;
  width: min(260px, 76%);
  aspect-ratio: 0.78;
  border-radius: 53% 47% 32% 34% / 58% 55% 27% 27%;
  background-color: #d9cabb;
  box-shadow:
    inset 20px 16px 34px rgba(255, 253, 248, 0.46),
    inset -22px -18px 34px rgba(89, 77, 62, 0.12),
    0 24px 34px rgba(45, 40, 32, 0.16);
}

.stone-preview::before {
  content: "";
  position: absolute;
  inset: 9%;
  border-radius: inherit;
  background-image:
    repeating-linear-gradient(17deg, rgba(75, 66, 54, 0.08) 0 1px, transparent 1px 7px),
    repeating-linear-gradient(97deg, rgba(255, 253, 248, 0.16) 0 1px, transparent 1px 9px);
  opacity: 0.52;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.preview-stage[data-preview-model="etoile"] .stone-preview {
  border-radius: 50% 48% 31% 32% / 57% 55% 27% 27%;
}

.preview-stage[data-preview-model="constellation"] .stone-preview {
  border-radius: 49% 51% 32% 34% / 54% 58% 27% 27%;
}

.preview-base {
  width: min(330px, 88%);
  height: 34px;
  margin-top: -3px;
  border-radius: 7px;
  background: #d1c1af;
  box-shadow: inset 10px 8px 18px rgba(255, 253, 248, 0.38), 0 18px 26px rgba(45, 40, 32, 0.12);
}

.preview-star {
  display: none;
  position: absolute;
  top: 17%;
  right: 19%;
  width: 54px;
  aspect-ratio: 1;
  clip-path: polygon(50% 0, 61% 35%, 98% 35%, 68% 56%, 79% 91%, 50% 69%, 21% 91%, 32% 56%, 2% 35%, 39% 35%);
  background: rgba(96, 82, 67, 0.24);
  box-shadow: inset 5px 7px 12px rgba(67, 55, 43, 0.26), inset -4px -4px 10px rgba(255, 253, 248, 0.28);
}

.preview-stage[data-preview-model="etoile"] .preview-star {
  display: block;
}

.preview-constellation {
  display: none;
  position: absolute;
  top: 11%;
  left: 17%;
  width: 62%;
  height: auto;
  overflow: visible;
}

.preview-constellation path {
  fill: none;
  stroke: rgba(58, 52, 45, 0.54);
  stroke-width: 1.2;
}

.preview-constellation circle {
  fill: rgba(58, 52, 45, 0.72);
}

.preview-stage[data-preview-model="constellation"] .preview-constellation {
  display: block;
}

.preview-engraving {
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: 15%;
  width: 68%;
  transform: translateX(-50%);
  display: grid;
  gap: 1px;
  color: rgba(66, 59, 49, 0.78);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.18;
  text-align: center;
  text-shadow: 0 1px 0 rgba(255, 253, 248, 0.28);
}

.preview-stage[data-preview-model="etoile"] .preview-engraving {
  left: auto;
  right: 15%;
  width: 52%;
  transform: none;
  text-align: right;
}

.preview-stage[data-preview-model="constellation"] .preview-engraving {
  left: 16%;
  width: 58%;
  transform: none;
  text-align: left;
}

.preview-name {
  font-size: 1.34rem;
}

.preview-dates,
.preview-message {
  font-size: 0.86rem;
}

.preview-message {
  display: none;
  margin-top: 4px;
  font-style: italic;
}

.preview-message.has-content {
  display: block;
}

.preview-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.submit-button {
  width: 100%;
  margin-top: 6px;
}

.form-status a {
  color: var(--olive-dark);
  font-weight: 700;
  border-bottom: 1px solid currentColor;
}

.professionals {
  background: var(--olive);
  color: var(--white);
}

.professionals .section-kicker,
.professionals .section-heading p,
.professionals .pro-grid p {
  color: rgba(255, 253, 248, 0.76);
}

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

.pro-grid article {
  background: rgba(255, 253, 248, 0.08);
  border-color: rgba(255, 253, 248, 0.18);
}

.journal {
  background: #fbf7ee;
}

.article-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.article-number {
  color: var(--olive);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.58fr);
  gap: 42px;
  align-items: end;
}

.contact-links {
  display: grid;
  gap: 12px;
  justify-items: start;
}

.contact-links a {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  border-bottom: 1px solid currentColor;
}

.site-footer {
  padding: 42px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  color: var(--muted);
}

.footer-brand {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
  font-size: 1.4rem;
}

.site-footer p {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a {
  border-bottom: 1px solid transparent;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  border-color: currentColor;
}

@media (max-width: 1060px) {
  .product-grid,
  .material-band,
  .pro-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-list,
  .article-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .table-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .table-head {
    display: none;
  }

  .table-row span {
    border-top: 1px solid var(--line);
  }

  .table-row span:nth-child(1)::before { content: "Taille : "; }
  .table-row span:nth-child(2)::before { content: "Hauteur : "; }
  .table-row span:nth-child(3)::before { content: "Largeur : "; }
  .table-row span:nth-child(4)::before { content: "Épaisseur : "; }
  .table-row span:nth-child(5)::before { content: "Base : "; }
  .table-row span:nth-child(6)::before { content: "Prix : "; }

  .table-row span::before {
    color: var(--muted);
    font-weight: 700;
  }
}

@media (max-width: 880px) {
  .site-header {
    padding: 14px 20px;
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    display: grid;
    gap: 0;
    padding: 10px 20px 22px;
    background: rgba(255, 250, 240, 0.98);
    color: var(--ink);
    border-bottom: 1px solid var(--line);
    transform: translateY(-130%);
    transition: transform 180ms ease;
  }

  .site-header.is-open .site-nav {
    transform: translateY(0);
  }

  .site-nav a {
    padding: 14px 0;
  }

  .hero {
    min-height: 82svh;
  }

  .hero-content {
    width: min(100% - 32px, 760px);
    padding-bottom: 74px;
  }

  .hero h1 {
    font-size: 3.8rem;
  }

  .hero-lead {
    font-size: 1.35rem;
  }

  .hero-cue {
    left: 20px;
    bottom: 18px;
  }

  .section {
    padding: 74px 20px;
  }

  .section h2 {
    font-size: 2.2rem;
  }

  .split,
  .section-heading,
  .detail-panel,
  .why,
  .order-section,
  .contact {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section-heading {
    align-items: start;
  }

  .detail-panel {
    padding: 18px;
  }

  .detail-media,
  .detail-media img {
    min-height: 340px;
  }

  .detail-copy h3 {
    font-size: 1.9rem;
  }

  .order-copy {
    position: static;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero-lead {
    font-size: 1.18rem;
  }

  .hero-actions,
  .detail-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .product-grid,
  .material-band,
  .reason-grid,
  .pro-grid,
  .process-list,
  .article-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .product-copy {
    min-height: auto;
  }

  .segmented {
    grid-template-columns: 1fr;
  }

  .preview-toolbar {
    display: grid;
  }

  .preview-toolbar p:last-child {
    justify-self: start;
  }

  .preview-stage {
    min-height: 310px;
    padding-inline: 8px;
  }

  .stone-preview {
    width: min(230px, 84%);
  }

  .table-row {
    grid-template-columns: 1fr;
  }

  .table-row + .table-row {
    border-top: 8px solid #efe7dc;
  }

  .contact-links a {
    font-size: 1.25rem;
  }

  .site-footer {
    padding: 32px 20px;
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
