:root {
  --ink: #1b1d1c;
  --muted: #656865;
  --line: #deded9;
  --paper: #ffffff;
  --paper-warm: #f7f5f0;
  --brass: #b6852f;
  --copper: #b75f3b;
  --steel: #90969b;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  text-rendering: optimizeLegibility;
}

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

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

svg {
  display: block;
}

.page-shell {
  width: min(1420px, calc(100% - 80px));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(27, 29, 28, 0.08);
}

.header-inner {
  min-height: 118px;
  display: grid;
  grid-template-columns: 190px 1fr auto;
  align-items: center;
  gap: 48px;
}

.brand {
  width: 146px;
  display: flex;
  align-items: center;
}

.brand img {
  width: 142px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 3.5vw, 62px);
  font-size: 16px;
}

.main-nav a {
  position: relative;
  padding: 12px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 4px;
  height: 1px;
  background: var(--brass);
  transition: right 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  right: 0;
}

.header-phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.header-phone span {
  color: var(--muted);
  font-size: 12px;
}

.header-phone strong {
  font-size: 18px;
  letter-spacing: 0.02em;
}

.hero {
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
  padding-top: 52px;
  padding-bottom: 72px;
}

.hero-copy {
  padding-top: 10px;
}

.eyebrow {
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #545754;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow span {
  width: 30px;
  height: 2px;
  background: var(--brass);
}

.hero h1 {
  max-width: 690px;
  margin: 0;
  font-size: clamp(54px, 5.4vw, 84px);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hero-lead {
  max-width: 660px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.55;
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  min-height: 58px;
  padding: 0 25px;
  border: 1px solid var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  font-size: 16px;
  font-weight: 700;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

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

.button:focus-visible,
.main-nav a:focus-visible,
.header-phone:focus-visible,
.material-card a:focus-visible {
  outline: 3px solid rgba(182, 133, 47, 0.35);
  outline-offset: 4px;
}

.button svg,
.material-card a svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.button-primary {
  background: var(--ink);
  color: #fff;
}

.button-primary:hover {
  background: #323532;
}

.button-secondary {
  background: transparent;
}

.button-secondary:hover {
  background: var(--paper-warm);
}

.hero-facts {
  margin: 34px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  color: #404340;
  font-size: 14px;
  list-style: none;
}

.hero-facts li {
  position: relative;
}

.hero-facts li:not(:last-child)::after {
  content: "•";
  position: absolute;
  right: -16px;
  color: var(--brass);
}

.hero-visual {
  position: relative;
  min-height: 570px;
}

.hero-image-wrap {
  position: absolute;
  inset: 0 0 42px;
  overflow: hidden;
  background: var(--paper-warm);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 50%;
}

.hero-visual::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: -16px;
  right: -16px;
  width: 112px;
  height: 112px;
  border-top: 1px solid var(--brass);
  border-right: 1px solid var(--brass);
  pointer-events: none;
}

.hero-caption {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  width: min(380px, 76%);
  padding: 20px 25px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: var(--ink);
  color: #fff;
}

.hero-caption span {
  color: #bcbfbc;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-caption strong {
  font-size: 18px;
}

.materials-section {
  padding: 88px 0 104px;
  background: var(--paper-warm);
}

.section-heading h2 {
  max-width: 790px;
  margin: 0;
  font-size: clamp(38px, 4vw, 60px);
  font-weight: 650;
  letter-spacing: -0.04em;
  line-height: 1.07;
}

.compact-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
}

.compact-heading .eyebrow {
  min-width: 170px;
  margin-bottom: 7px;
}

.materials-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: #d9d9d4;
  border: 1px solid #d9d9d4;
}

.material-card {
  min-height: 320px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  background: #fff;
}

.material-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #8a8d89;
  font-size: 12px;
}

.material-swatch {
  width: 78px;
  height: 6px;
  display: block;
  background: var(--card-accent);
}

.material-brass {
  --card-accent: var(--brass);
}

.material-copper {
  --card-accent: var(--copper);
}

.material-steel {
  --card-accent: var(--steel);
}

.material-card h3 {
  margin: 58px 0 14px;
  font-size: 32px;
  letter-spacing: -0.035em;
}

.material-card p {
  max-width: 330px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.material-card a {
  margin-top: auto;
  padding-top: 32px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
}

.material-card a svg {
  width: 18px;
}

.possibilities-section {
  padding-top: 112px;
  padding-bottom: 116px;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 80px;
  align-items: end;
}

.section-intro {
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.shapes-grid {
  margin-top: 68px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.shape-card {
  min-height: 320px;
  padding: 24px 26px 28px;
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--line);
}

.shape-card:last-child {
  border-right: 1px solid var(--line);
}

.shape-number {
  color: #9a9c98;
  font-size: 12px;
}

.shape-preview {
  min-height: 210px;
  display: grid;
  place-items: center;
}

.shape-preview > span {
  display: block;
  border: 1px solid #8b8e8a;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.82), transparent 42%),
    linear-gradient(135deg, #c6c8c5, #f5f5f3 48%, #aeb1ae);
  box-shadow: 8px 12px 22px rgba(35, 38, 36, 0.1);
}

.shape-square {
  width: 94px;
  height: 94px;
}

.shape-rectangle {
  width: 132px;
  height: 78px;
}

.shape-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

.shape-ring {
  width: 102px;
  height: 102px;
  position: relative;
  border-radius: 50%;
}

.shape-ring::after {
  content: "";
  position: absolute;
  inset: 29px;
  border: 1px solid #9da09c;
  border-radius: 50%;
  background: #fff;
  box-shadow: inset 3px 3px 7px rgba(39, 42, 40, 0.14);
}

.shape-custom {
  width: 116px;
  height: 98px;
  clip-path: polygon(0 14%, 67% 0, 100% 32%, 80% 100%, 20% 86%);
}

.shape-card h3 {
  margin: auto 0 0;
  font-size: 17px;
}

.custom-order-note {
  min-height: 112px;
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 30px;
  align-items: center;
  background: var(--ink);
  color: #fff;
}

.custom-order-mark {
  width: 72px;
  height: 54px;
  position: relative;
}

.custom-order-mark span {
  position: absolute;
  display: block;
  height: 1px;
  background: var(--brass);
  transform-origin: left center;
}

.custom-order-mark span:nth-child(1) {
  left: 0;
  top: 12px;
  width: 52px;
  transform: rotate(22deg);
}

.custom-order-mark span:nth-child(2) {
  left: 12px;
  top: 42px;
  width: 58px;
  transform: rotate(-36deg);
}

.custom-order-mark span:nth-child(3) {
  left: 43px;
  top: 7px;
  width: 44px;
  transform: rotate(78deg);
}

.custom-order-note p {
  margin: 0;
  color: #bfc1be;
  line-height: 1.6;
}

.custom-order-note p strong {
  margin-left: 8px;
  color: #fff;
}

.custom-order-note a {
  padding: 12px 0;
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid #696c69;
  font-size: 14px;
  font-weight: 700;
}

.custom-order-note a svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.production-section {
  padding: 108px 0 118px;
  background: var(--paper-warm);
}

.production-heading {
  max-width: 850px;
}

.production-grid {
  margin-top: 62px;
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 24px;
}

.production-card {
  min-width: 0;
  background: #fff;
  border: 1px solid #e0e0db;
}

.production-image {
  height: 360px;
  overflow: hidden;
}

.production-card-large .production-image {
  height: 440px;
}

.production-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 600ms ease;
}

.production-card:hover .production-image img {
  transform: scale(1.02);
}

.production-copy {
  padding: 32px 34px 36px;
}

.production-copy > span {
  color: var(--brass);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.production-copy h3 {
  margin: 12px 0 10px;
  font-size: 28px;
  letter-spacing: -0.03em;
}

.production-copy p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.audience-section {
  padding-top: 112px;
  padding-bottom: 118px;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(440px, 1.2fr);
  gap: 110px;
}

.audience-copy {
  position: sticky;
  top: 28px;
  align-self: start;
}

.audience-copy h2 {
  max-width: 560px;
  margin: 0;
  font-size: clamp(40px, 4vw, 62px);
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.audience-copy > p:last-child {
  max-width: 530px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.audience-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.audience-list li {
  min-height: 82px;
  padding: 22px 6px;
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
  font-size: clamp(19px, 2vw, 27px);
  letter-spacing: -0.025em;
}

.audience-list li span {
  color: var(--brass);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.order-section {
  padding: 104px 0 112px;
  background: var(--ink);
  color: #fff;
}

.order-heading {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 430px);
  gap: 80px;
  align-items: end;
}

.order-heading .eyebrow {
  color: #b9bbb8;
}

.order-heading > p {
  margin: 0 0 7px;
  color: #b9bbb8;
  font-size: 18px;
  line-height: 1.65;
}

.steps-grid {
  margin-top: 62px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid #444744;
  border-bottom: 1px solid #444744;
}

.step-card {
  min-height: 310px;
  padding: 32px 34px 36px;
  border-left: 1px solid #444744;
}

.step-card:last-child {
  border-right: 1px solid #444744;
}

.step-card > span {
  color: var(--brass);
  font-size: 12px;
}

.step-card h3 {
  margin: 86px 0 15px;
  font-size: 26px;
  letter-spacing: -0.03em;
}

.step-card p {
  max-width: 350px;
  margin: 0;
  color: #b9bbb8;
  line-height: 1.65;
}

.contact-section {
  padding: 112px 0 118px;
  background: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.75fr);
  gap: clamp(72px, 9vw, 150px);
}

.contact-copy h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(46px, 5vw, 72px);
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.contact-lead {
  max-width: 630px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.big-phone {
  margin-top: 48px;
  display: inline-block;
  font-size: clamp(34px, 4.4vw, 62px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1;
  border-bottom: 2px solid var(--brass);
}

.phone-note {
  margin: 15px 0 0;
  color: #858884;
  font-size: 13px;
}

.contact-facts {
  margin: 54px 0 0;
  padding: 0;
  display: grid;
  gap: 15px;
  list-style: none;
}

.contact-facts li {
  display: grid;
  grid-template-columns: 46px 1fr;
  color: #444744;
  line-height: 1.5;
}

.contact-facts li span {
  color: var(--brass);
  font-size: 11px;
  line-height: 1.9;
}

.form-panel {
  padding: 42px;
  align-self: start;
  background: var(--paper-warm);
  border-top: 4px solid var(--brass);
}

.form-heading > span {
  color: var(--brass);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-heading h3 {
  margin: 14px 0 10px;
  font-size: 32px;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.form-heading p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.lead-form {
  margin-top: 32px;
  display: grid;
  gap: 21px;
}

.lead-form label {
  display: grid;
  gap: 9px;
}

.lead-form label > span {
  color: #4e514e;
  font-size: 12px;
  font-weight: 700;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  padding: 15px 0;
  border: 0;
  border-bottom: 1px solid #c5c6c2;
  outline: 0;
  background: transparent;
  color: var(--ink);
  border-radius: 0;
}

.lead-form textarea {
  min-height: 88px;
  resize: vertical;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: #979995;
}

.lead-form input:focus,
.lead-form textarea:focus {
  border-bottom-color: var(--brass);
}

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

.form-submit {
  min-height: 58px;
  padding: 0 23px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  cursor: pointer;
  font-weight: 700;
  transition:
    background-color 180ms ease,
    transform 180ms ease;
}

.form-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  background: #323532;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.65;
}

.form-submit:focus-visible {
  outline: 3px solid rgba(182, 133, 47, 0.35);
  outline-offset: 4px;
}

.form-submit svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.form-consent {
  margin: -4px 0 0;
  color: #868984;
  font-size: 11px;
  line-height: 1.45;
}

.form-status {
  margin: -3px 0 0;
  padding: 12px 14px;
  font-size: 13px;
  line-height: 1.45;
}

.form-status-success {
  background: #edf5ed;
  color: #355c38;
}

.form-status-error {
  background: #f8ebe7;
  color: #8d3e2d;
}

.site-footer {
  padding: 50px 0 54px;
  background: #111312;
  color: #fff;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 60px;
  align-items: end;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 22px;
}

.footer-brand img {
  width: 92px;
  height: auto;
}

.footer-brand p {
  margin: 0;
  color: #aeb1ad;
  font-size: 13px;
  line-height: 1.55;
}

.footer-links {
  display: flex;
  gap: 30px;
  color: #d6d8d5;
  font-size: 13px;
}

.footer-links a:hover {
  color: #fff;
}

.footer-meta {
  text-align: right;
}

.footer-meta p {
  margin: 7px 0 0;
  color: #8f928e;
  font-size: 12px;
}

.mobile-call {
  display: none;
}

@media (max-width: 1100px) {
  .page-shell {
    width: min(100% - 48px, 980px);
  }

  .header-inner {
    grid-template-columns: 150px 1fr auto;
    gap: 28px;
  }

  .main-nav {
    gap: 24px;
    font-size: 14px;
  }

  .header-phone span {
    display: none;
  }

  .header-phone strong {
    font-size: 15px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr 0.92fr;
    gap: 42px;
  }

  .hero h1 {
    font-size: clamp(52px, 6vw, 70px);
  }

  .hero-visual {
    min-height: 500px;
  }

  .shapes-grid {
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid var(--line);
  }

  .shape-card {
    border-top: 1px solid var(--line);
  }

  .shape-card:nth-child(-n + 3) {
    border-top: 0;
  }

  .shape-card:last-child {
    border-right: 0;
  }

  .audience-section {
    gap: 70px;
  }

  .contact-grid {
    gap: 70px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-links {
    display: none;
  }
}

@media (max-width: 820px) {
  .page-shell {
    width: min(100% - 36px, 680px);
  }

  .site-header {
    position: static;
  }

  .header-inner {
    min-height: 92px;
    grid-template-columns: 118px 1fr;
  }

  .brand {
    width: 110px;
  }

  .brand img {
    width: 108px;
  }

  .main-nav {
    display: none;
  }

  .header-phone {
    justify-self: end;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 46px;
    padding-top: 50px;
    padding-bottom: 60px;
  }

  .hero h1 {
    max-width: 620px;
    font-size: clamp(48px, 11vw, 72px);
  }

  .hero-lead {
    font-size: 18px;
  }

  .hero-visual {
    min-height: min(570px, 74vw);
  }

  .compact-heading {
    display: block;
  }

  .compact-heading .eyebrow {
    margin-bottom: 24px;
  }

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

  .material-card {
    min-height: 270px;
  }

  .possibilities-section {
    padding-top: 88px;
    padding-bottom: 90px;
  }

  .split-heading,
  .order-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section-intro,
  .order-heading > p {
    max-width: 600px;
  }

  .shapes-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .shape-card:nth-child(3) {
    border-top: 1px solid var(--line);
  }

  .custom-order-note {
    grid-template-columns: 58px 1fr;
  }

  .custom-order-mark {
    width: 58px;
  }

  .custom-order-note a {
    grid-column: 2;
    justify-self: start;
  }

  .production-section {
    padding-top: 88px;
    padding-bottom: 92px;
  }

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

  .production-image,
  .production-card-large .production-image {
    height: min(470px, 64vw);
  }

  .audience-section {
    padding-top: 90px;
    padding-bottom: 94px;
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .audience-copy {
    position: static;
  }

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

  .step-card {
    min-height: 230px;
    border-right: 1px solid #444744;
    border-bottom: 1px solid #444744;
  }

  .step-card:last-child {
    border-bottom: 0;
  }

  .step-card h3 {
    margin-top: 54px;
  }

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

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-meta {
    text-align: left;
  }
}

@media (max-width: 520px) {
  .page-shell {
    width: calc(100% - 28px);
  }

  .header-inner {
    min-height: 82px;
    grid-template-columns: 90px 1fr;
  }

  .brand {
    width: 82px;
  }

  .brand img {
    width: 82px;
  }

  .header-phone strong {
    font-size: 13px;
  }

  .hero {
    padding-top: 38px;
  }

  .hero h1 {
    font-size: 44px;
    line-height: 1.02;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .hero-facts {
    display: grid;
    gap: 8px;
  }

  .hero-facts li:not(:last-child)::after {
    display: none;
  }

  .hero-visual {
    min-height: 390px;
  }

  .hero-image-wrap {
    inset: 0 0 36px;
  }

  .hero-caption {
    width: calc(100% - 20px);
    padding: 17px 20px;
  }

  .materials-section {
    padding: 68px 0 76px;
  }

  .section-heading h2 {
    font-size: 38px;
  }

  .materials-grid {
    margin-top: 38px;
  }

  .material-card {
    min-height: 250px;
    padding: 28px;
  }

  .material-card h3 {
    margin-top: 40px;
  }

  body {
    padding-bottom: 72px;
  }

  .possibilities-section {
    padding-top: 72px;
    padding-bottom: 74px;
  }

  .split-heading {
    gap: 20px;
  }

  .section-intro {
    font-size: 16px;
  }

  .shapes-grid {
    margin-top: 40px;
  }

  .shape-card {
    min-height: 230px;
    padding: 20px;
  }

  .shape-preview {
    min-height: 145px;
    transform: scale(0.82);
  }

  .shape-card h3 {
    font-size: 14px;
  }

  .custom-order-note {
    padding: 24px 22px;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .custom-order-mark {
    display: none;
  }

  .custom-order-note p strong {
    margin: 4px 0 0;
    display: block;
  }

  .custom-order-note a {
    grid-column: 1;
  }

  .production-section {
    padding-top: 70px;
    padding-bottom: 74px;
  }

  .production-grid {
    margin-top: 40px;
  }

  .production-image,
  .production-card-large .production-image {
    height: 280px;
  }

  .production-copy {
    padding: 27px 24px 30px;
  }

  .production-copy h3 {
    font-size: 24px;
  }

  .audience-section {
    padding-top: 72px;
    padding-bottom: 76px;
  }

  .audience-copy h2 {
    font-size: 40px;
  }

  .audience-copy > p:last-child {
    font-size: 16px;
  }

  .audience-list li {
    min-height: 74px;
    grid-template-columns: 40px 1fr;
    font-size: 18px;
  }

  .order-section {
    padding-top: 72px;
    padding-bottom: 76px;
  }

  .steps-grid {
    margin-top: 42px;
  }

  .step-card {
    min-height: 215px;
    padding: 28px 26px 31px;
  }

  .step-card h3 {
    margin-top: 42px;
    font-size: 23px;
  }

  .contact-section {
    padding-top: 72px;
    padding-bottom: 76px;
  }

  .contact-grid {
    gap: 50px;
  }

  .contact-copy h2 {
    font-size: 43px;
  }

  .contact-lead {
    font-size: 16px;
  }

  .big-phone {
    margin-top: 35px;
    font-size: 35px;
  }

  .contact-facts {
    margin-top: 40px;
  }

  .form-panel {
    padding: 32px 24px;
  }

  .form-heading h3 {
    font-size: 29px;
  }

  .site-footer {
    padding: 42px 0;
  }

  .footer-brand img {
    width: 78px;
  }

  .mobile-call {
    position: fixed;
    z-index: 50;
    left: 0;
    right: 0;
    bottom: 0;
    min-height: 66px;
    padding: 10px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--ink);
    color: #fff;
    box-shadow: 0 -8px 24px rgba(20, 22, 21, 0.16);
  }

  .mobile-call span {
    color: #c9cbc8;
    font-size: 12px;
  }

  .mobile-call strong {
    font-size: 15px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
