

:root {
  --ink: #17191b;
  --muted: #666a6d;
  --warm: #f7f5f1;
  --paper: #fff;
  --line: #d9d7d2;
  --red: #cf1124;
  --red-dark: #a90c1b;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--warm);
  color: var(--ink);
  font-family: var(--font-geist-sans), Arial, Helvetica, sans-serif;
}

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

.site-header {
  align-items: center;
  background: rgba(247, 245, 241, 0.94);
  border-bottom: 1px solid rgba(23, 25, 27, 0.1);
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto minmax(230px, 1fr);
  height: 86px;
  padding: 0 clamp(24px, 4.4vw, 72px);
  position: sticky;
  top: 0;
  z-index: 20;
}

.site-header::after {
  background: var(--red);
  bottom: -1px;
  content: "";
  height: 2px;
  left: clamp(24px, 4.4vw, 72px);
  position: absolute;
  width: clamp(180px, 25vw, 390px);
}

.brand {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(20px, 2.05vw, 33px);
  font-style: italic;
  letter-spacing: 0.02em;
  line-height: 1;
  transform: skewX(-4deg);
  width: fit-content;
}

.desktop-nav {
  align-items: center;
  display: flex;
  gap: clamp(22px, 2.5vw, 44px);
  justify-content: center;
}

.desktop-nav a {
  font-size: 14px;
  font-weight: 650;
  position: relative;
}

.desktop-nav a::after {
  background: var(--red);
  bottom: -9px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  width: 100%;
}

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

.header-call {
  align-items: flex-end;
  display: flex;
  flex-direction: column;
  justify-self: end;
}

.header-call span {
  color: var(--red);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.header-call b {
  font-size: 15px;
  margin-top: 3px;
}

.hero {
  min-height: 760px;
  overflow: hidden;
  padding-bottom: 92px;
  position: relative;
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(247, 245, 241, 1) 0%, rgba(247, 245, 241, 0.96) 35%, rgba(247, 245, 241, 0.4) 51%, rgba(247, 245, 241, 0) 67%),
    linear-gradient(0deg, rgba(247, 245, 241, 0.1), rgba(247, 245, 241, 0.1));
  content: "";
  inset: 0;
  position: absolute;
  z-index: 2;
}

.hero-wordmark {
  color: rgba(23, 25, 27, 0.035);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(90px, 13.2vw, 214px);
  font-style: italic;
  left: -22px;
  letter-spacing: -0.035em;
  line-height: 0.8;
  pointer-events: none;
  position: absolute;
  top: 64px;
  transform: skewX(-4deg);
  white-space: nowrap;
  z-index: 3;
}

.hero-image {
  background-color: #e8e8e5;
  background-image:
    linear-gradient(90deg, rgba(247, 245, 241, 0) 72%, rgba(247, 245, 241, 0.08)),
    url("./images/hero-studio.png");
  background-position: center right;
  background-repeat: no-repeat;
  background-size: cover;
  inset: 0;
  position: absolute;
  transform: scale(1.01);
  z-index: 1;
}

.hero-copy {
  padding: clamp(160px, 14vw, 210px) 0 130px clamp(24px, 7.2vw, 116px);
  position: relative;
  width: min(760px, 56vw);
  z-index: 4;
}

.eyebrow {
  align-items: center;
  display: flex;
  font-size: 11px;
  font-weight: 780;
  letter-spacing: 0.16em;
  margin: 0 0 22px;
  text-transform: uppercase;
}

.eyebrow > span {
  background: var(--red);
  display: inline-block;
  height: 3px;
  margin-right: 12px;
  width: 34px;
}

.hero h1,
.section-heading h2 {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-style: italic;
  letter-spacing: -0.025em;
  line-height: 0.92;
  margin: 0;
  text-transform: uppercase;
  transform: skewX(-2deg);
}

.hero h1 {
  font-size: clamp(58px, 5.8vw, 94px);
  max-width: 720px;
}

.hero h1 em {
  color: var(--red);
  font-style: inherit;
}

.hero-lede {
  color: #4e5255;
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.55;
  margin: 28px 0 0;
  max-width: 565px;
}

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

.button {
  align-items: center;
  display: inline-flex;
  font-size: 14px;
  font-weight: 760;
  gap: 42px;
  justify-content: space-between;
  min-height: 58px;
  padding: 0 26px;
  text-transform: capitalize;
  transition: background 160ms ease, box-shadow 160ms ease, color 160ms ease, transform 160ms ease;
}

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

.button-primary {
  background: var(--red);
  box-shadow: 0 12px 28px rgba(207, 17, 36, 0.2);
  color: #fff;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--red-dark);
  box-shadow: 0 16px 32px rgba(207, 17, 36, 0.28);
}

.button-secondary {
  background: rgba(247, 245, 241, 0.72);
  border: 1px solid var(--ink);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: #fff;
}

.hero-trust {
  align-items: center;
  display: flex;
  font-size: 13px;
  font-weight: 650;
  gap: 12px;
  margin-top: 30px;
}

.hero-trust i {
  background: var(--red);
  border-radius: 50%;
  height: 4px;
  width: 4px;
}

.shield {
  align-items: center;
  border: 2px solid var(--red);
  color: var(--red);
  display: inline-flex;
  height: 34px;
  justify-content: center;
  margin-right: 2px;
  width: 30px;
}

.proof-strip {
  background: rgba(252, 250, 246, 0.96);
  border: 1px solid #d9d3ca;
  bottom: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  left: clamp(24px, 3vw, 48px);
  min-height: 126px;
  position: absolute;
  right: clamp(24px, 3vw, 48px);
  z-index: 5;
}

.proof-strip article {
  align-items: center;
  display: grid;
  gap: 20px;
  grid-template-columns: 52px 1fr;
  padding: 26px clamp(22px, 3.2vw, 50px);
}

.proof-strip article + article {
  border-left: 1px solid var(--line);
}

.proof-icon {
  align-items: center;
  border: 2px solid var(--red);
  color: var(--red);
  display: flex;
  font-size: 22px;
  height: 46px;
  justify-content: center;
  width: 46px;
}

.proof-strip h2 {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 20px;
  font-style: italic;
  letter-spacing: 0.01em;
  margin: 0 0 5px;
  text-transform: uppercase;
}

.proof-strip p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
  margin: 0;
}

.services-section {
  background: var(--ink);
  color: #fff;
  padding: 118px clamp(24px, 7.2vw, 116px) 126px;
}

.section-heading {
  align-items: end;
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr 1.1fr 0.85fr;
  margin: 0 auto 58px;
  max-width: 1380px;
}

.section-heading .eyebrow {
  align-self: start;
  color: #ddd;
}

.section-heading h2 {
  font-size: clamp(46px, 4.8vw, 76px);
  grid-column: 1 / 3;
  grid-row: 2;
}

.section-heading > p:last-child {
  color: #a9abad;
  font-size: 15px;
  grid-column: 3;
  grid-row: 2;
  line-height: 1.7;
  margin: 0;
}

.service-grid {
  border-left: 1px solid #3d3f41;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 auto;
  max-width: 1380px;
}

.service-card {
  border-bottom: 1px solid #3d3f41;
  border-right: 1px solid #3d3f41;
  border-top: 1px solid #3d3f41;
  min-height: 400px;
  padding: 30px 28px;
  position: relative;
  transition: background 200ms ease, transform 200ms ease;
}

.service-card:hover {
  background: #222426;
  transform: translateY(-5px);
}

.service-number {
  color: var(--red);
  font-size: 13px;
  font-weight: 750;
}

.service-meta {
  color: #8f9294;
  font-size: 10px !important;
  font-weight: 700;
  letter-spacing: 0.13em;
  margin: 74px 0 13px !important;
  text-transform: uppercase;
}

.service-card h3 {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 30px;
  font-style: italic;
  letter-spacing: 0.01em;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.service-card > p {
  color: #b4b7b9;
  font-size: 13px;
  line-height: 1.65;
  margin: 0;
}

.service-card a {
  bottom: 28px;
  color: #fff;
  font-size: 12px;
  font-weight: 750;
  left: 28px;
  position: absolute;
  text-transform: uppercase;
}

.service-card a span {
  color: var(--red);
  font-size: 17px;
  margin-left: 8px;
}

.mobile-section {
  background: var(--warm);
  overflow: hidden;
  padding: 0 clamp(24px, 7.2vw, 116px) 126px;
}

.mobile-marquee {
  color: rgba(23, 25, 27, 0.045);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(82px, 11vw, 176px);
  font-style: italic;
  letter-spacing: -0.02em;
  line-height: 0.9;
  margin: 0 -20vw 84px;
  padding-top: 80px;
  text-align: center;
  white-space: nowrap;
}

.mobile-layout {
  display: grid;
  gap: clamp(70px, 9vw, 150px);
  grid-template-columns: 0.85fr 1.15fr;
  margin: 0 auto;
  max-width: 1380px;
}

.mobile-copy h2,
.ceramic-content h2,
.about-copy h2,
.quote-intro h2 {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-style: italic;
  letter-spacing: -0.02em;
  line-height: 0.98;
  margin: 0;
  text-transform: uppercase;
}

.mobile-copy h2 {
  font-size: clamp(48px, 4.8vw, 76px);
  max-width: 680px;
}

.mobile-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
  margin: 28px 0;
  max-width: 590px;
}

.text-link {
  border-bottom: 2px solid var(--red);
  display: inline-flex;
  font-size: 13px;
  font-weight: 780;
  gap: 42px;
  padding-bottom: 8px;
  text-transform: uppercase;
}

.text-link span {
  color: var(--red);
  font-size: 18px;
}

.mobile-features {
  border-top: 1px solid #cfcac2;
}

.mobile-features article {
  align-items: start;
  border-bottom: 1px solid #cfcac2;
  display: grid;
  gap: 22px;
  grid-template-columns: 48px 0.9fr 1.1fr;
  padding: 30px 0;
}

.mobile-features strong {
  color: var(--red);
  font-size: 12px;
}

.mobile-features h3 {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 23px;
  font-style: italic;
  letter-spacing: 0.01em;
  margin: 0;
  text-transform: uppercase;
}

.mobile-features p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
  margin: 0;
}

.ceramic-section {
  background: #0f1011;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 720px;
  overflow: hidden;
}

.ceramic-content {
  padding: 116px clamp(24px, 7.2vw, 116px);
}

.ceramic-content h2 {
  font-size: clamp(54px, 5.3vw, 84px);
  margin-bottom: 30px;
}

.ceramic-content > p:not(.eyebrow) {
  color: #aeb0b2;
  font-size: 15px;
  line-height: 1.75;
  margin: 0 0 38px;
  max-width: 600px;
}

.warranty-list {
  border-bottom: 1px solid #3c3e40;
  border-top: 1px solid #3c3e40;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 42px;
  max-width: 580px;
}

.warranty-list span {
  align-items: baseline;
  color: #aeb0b2;
  display: flex;
  font-size: 11px;
  font-weight: 700;
  gap: 8px;
  letter-spacing: 0.13em;
  padding: 22px 8px 22px 0;
  text-transform: uppercase;
}

.warranty-list span + span {
  border-left: 1px solid #3c3e40;
  padding-left: 22px;
}

.warranty-list b {
  color: #fff;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 40px;
  font-style: italic;
  letter-spacing: 0;
}

.ceramic-panel {
  align-content: end;
  background:
    radial-gradient(circle at 65% 25%, rgba(245, 56, 72, 0.32), transparent 29%),
    repeating-linear-gradient(117deg, rgba(255, 255, 255, 0.045) 0, rgba(255, 255, 255, 0.045) 1px, transparent 1px, transparent 34px),
    linear-gradient(145deg, #3c080e 0%, #18080b 45%, #08090a 100%);
  display: grid;
  overflow: hidden;
  padding: 70px;
  position: relative;
}

.ceramic-panel::before {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  content: "";
  height: 620px;
  position: absolute;
  right: -210px;
  top: -70px;
  width: 620px;
}

.ceramic-panel::after {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
  content: "";
  height: 2px;
  left: -30%;
  position: absolute;
  top: 37%;
  transform: rotate(-18deg);
  width: 150%;
}

.shine-line {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 48% 52% 52% 48%;
  box-shadow:
    inset 20px 20px 90px rgba(255, 255, 255, 0.08),
    0 0 120px rgba(207, 17, 36, 0.3);
  height: 58%;
  left: 14%;
  position: absolute;
  top: 18%;
  transform: rotate(-8deg);
  width: 100%;
}

.ceramic-panel p,
.ceramic-panel span {
  position: relative;
  z-index: 2;
}

.ceramic-panel p {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(42px, 4vw, 66px);
  font-style: italic;
  margin: 0;
  text-transform: uppercase;
}

.ceramic-panel span {
  color: #c3c5c7;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-top: 10px;
  text-transform: uppercase;
}

.about-section {
  background: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.about-statement,
.about-copy {
  min-height: 640px;
  padding: 110px clamp(24px, 7.2vw, 116px);
}

.about-statement {
  background: var(--red);
  color: #fff;
}

.about-statement .eyebrow > span {
  background: #fff;
}

.about-statement blockquote {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(56px, 5vw, 80px);
  font-style: italic;
  line-height: 1;
  margin: 100px 0 0;
  max-width: 650px;
  text-transform: uppercase;
}

.about-copy {
  align-content: center;
  display: grid;
}

.about-copy h2 {
  font-size: clamp(50px, 4.6vw, 74px);
}

.about-copy > p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
  margin: 28px 0;
  max-width: 620px;
}

.about-copy ul {
  border-top: 1px solid var(--line);
  list-style: none;
  margin: 8px 0 0;
  max-width: 620px;
  padding: 0;
}

.about-copy li {
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  font-weight: 650;
  padding: 17px 0 17px 27px;
  position: relative;
}

.about-copy li::before {
  color: var(--red);
  content: "✓";
  left: 0;
  position: absolute;
}

.quote-section {
  background: var(--warm);
  display: grid;
  gap: clamp(70px, 10vw, 160px);
  grid-template-columns: 0.8fr 1.2fr;
  padding: 124px clamp(24px, 7.2vw, 116px);
}

.quote-intro h2 {
  font-size: clamp(58px, 5.3vw, 86px);
}

.quote-intro > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  margin: 28px 0;
  max-width: 480px;
}

.quote-phone {
  display: flex;
  flex-direction: column;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(34px, 3vw, 48px);
  font-style: italic;
  margin-top: 42px;
  width: fit-content;
}

.quote-phone small {
  color: var(--red);
  font-family: var(--font-geist-sans), Arial, sans-serif;
  font-size: 10px;
  font-style: normal;
  font-weight: 780;
  letter-spacing: 0.14em;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.service-area {
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  flex-direction: column;
  font-size: 12px;
  line-height: 1.6;
  margin-top: 40px;
  max-width: 430px;
  padding-top: 22px;
}

.service-area span {
  color: var(--ink);
  font-size: 10px;
  font-weight: 780;
  letter-spacing: 0.14em;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.quote-form {
  display: grid;
  gap: 26px 20px;
  grid-template-columns: 1fr 1fr;
}

.quote-form label {
  color: #474a4d;
  display: flex;
  flex-direction: column;
  font-size: 10px;
  font-weight: 780;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  appearance: none;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #aaa69f;
  border-radius: 0;
  color: var(--ink);
  font-family: inherit;
  font-size: 14px;
  margin-top: 8px;
  outline: none;
  padding: 14px 0;
  text-transform: none;
  width: 100%;
}

.quote-form textarea {
  border: 1px solid #aaa69f;
  min-height: 120px;
  padding: 16px;
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--red);
  box-shadow: 0 1px 0 var(--red);
}

.quote-form textarea:focus {
  box-shadow: 0 0 0 1px var(--red);
}

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

.quote-form button {
  border: 0;
  cursor: pointer;
  justify-content: center;
  justify-self: start;
  margin-top: 2px;
}

.form-note {
  color: var(--muted);
  font-size: 11px;
  margin: -12px 0 0;
}

.form-note.is-ready {
  color: #167246;
  font-weight: 650;
}

footer {
  align-items: center;
  background: var(--ink);
  color: #fff;
  display: grid;
  gap: 26px;
  grid-template-columns: 1fr auto;
  padding: 72px clamp(24px, 7.2vw, 116px) 36px;
}

footer > p {
  color: #949799;
  font-size: 13px;
  grid-column: 1;
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 30px;
  grid-column: 2;
  grid-row: 1 / 3;
}

.footer-links a {
  color: #c0c2c4;
  font-size: 12px;
}

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

footer small {
  border-top: 1px solid #383a3c;
  color: #797c7f;
  font-size: 10px;
  grid-column: 1 / -1;
  margin-top: 35px;
  padding-top: 25px;
}

.mobile-quick-actions {
  display: none;
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .hero-copy {
    width: 68vw;
  }

  .proof-strip article {
    grid-template-columns: 42px 1fr;
    padding: 22px;
  }

  .proof-icon {
    height: 38px;
    width: 38px;
  }

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

  .mobile-layout {
    gap: 70px;
  }

  .mobile-features article {
    grid-template-columns: 35px 1fr;
  }

  .mobile-features article p {
    grid-column: 2;
  }

  .ceramic-section {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .about-statement,
  .about-copy {
    padding-left: 55px;
    padding-right: 55px;
  }

  .quote-section {
    gap: 70px;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 62px;
  }

  .site-header {
    height: 68px;
    padding: 0 20px;
  }

  .site-header::after {
    left: 20px;
    width: 130px;
  }

  .brand {
    font-size: 20px;
  }

  .header-call span {
    display: none;
  }

  .header-call b {
    font-size: 12px;
  }

  .hero {
    min-height: 910px;
    padding-bottom: 250px;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(247, 245, 241, 0.98) 0%, rgba(247, 245, 241, 0.9) 43%, rgba(247, 245, 241, 0.14) 68%, rgba(247, 245, 241, 0.08) 100%);
  }

  .hero-image {
    background-position: 66% center;
  }

  .hero-wordmark {
    font-size: 75px;
    top: 55px;
  }

  .hero-copy {
    padding: 94px 20px 0;
    width: 100%;
  }

  .eyebrow {
    font-size: 9px;
  }

  .hero h1 {
    font-size: clamp(50px, 15vw, 68px);
  }

  .hero-lede {
    font-size: 16px;
    max-width: 430px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    max-width: 320px;
  }

  .button {
    width: 100%;
  }

  .proof-strip {
    bottom: 16px;
    grid-template-columns: 1fr;
    left: 16px;
    right: 16px;
  }

  .proof-strip article {
    min-height: 92px;
  }

  .proof-strip article + article {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .proof-strip p {
    font-size: 11px;
  }

  .services-section {
    padding: 82px 20px 90px;
  }

  .section-heading {
    display: block;
  }

  .section-heading h2 {
    font-size: 50px;
    margin: 25px 0;
  }

  .section-heading > p:last-child {
    font-size: 14px;
  }

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

  .service-card {
    min-height: 310px;
  }

  .service-meta {
    margin-top: 50px !important;
  }

  .mobile-section {
    padding: 0 20px 90px;
  }

  .mobile-marquee {
    font-size: 68px;
    margin-bottom: 60px;
    padding-top: 60px;
  }

  .mobile-layout {
    display: block;
  }

  .mobile-copy h2,
  .ceramic-content h2,
  .about-copy h2,
  .quote-intro h2 {
    font-size: 50px;
  }

  .mobile-features {
    margin-top: 60px;
  }

  .mobile-features article {
    gap: 14px;
  }

  .ceramic-section,
  .about-section {
    grid-template-columns: 1fr;
  }

  .ceramic-content {
    padding: 84px 20px;
  }

  .warranty-list span {
    align-items: start;
    flex-direction: column;
  }

  .warranty-list b {
    font-size: 34px;
  }

  .ceramic-panel {
    min-height: 480px;
    padding: 40px 20px;
  }

  .about-statement,
  .about-copy {
    min-height: auto;
    padding: 82px 20px;
  }

  .about-statement blockquote {
    font-size: 52px;
    margin-top: 62px;
  }

  .quote-section {
    display: block;
    padding: 86px 20px 100px;
  }

  .quote-form {
    grid-template-columns: 1fr;
    margin-top: 70px;
  }

  .quote-form label,
  .full-field {
    grid-column: 1;
  }

  footer {
    display: block;
    padding: 60px 20px 34px;
  }

  footer > p {
    margin-top: 18px;
  }

  .footer-links {
    align-items: flex-start;
    border-top: 1px solid #383a3c;
    flex-direction: column;
    gap: 14px;
    margin-top: 34px;
    padding-top: 30px;
  }

  footer small {
    display: block;
  }

  .mobile-quick-actions {
    bottom: 0;
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    left: 0;
    position: fixed;
    right: 0;
    z-index: 50;
  }

  .mobile-quick-actions a {
    background: var(--ink);
    color: #fff;
    font-size: 13px;
    font-weight: 750;
    padding: 19px;
    text-align: center;
  }

  .mobile-quick-actions a:last-child {
    background: var(--red);
  }
}

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

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