:root {
  --warm-white: #f4efe7;
  --paper: #fbf8f2;
  --stone: #d9d0c3;
  --stone-deep: #9c8f7f;
  --graphite: #171713;
  --ink: #24231f;
  --muted: #6e675d;
  --forest: #15372e;
  --copper: #a76c43;
  --line: rgba(36, 35, 31, 0.16);
  --light-line: rgba(244, 239, 231, 0.26);
  --shadow: 0 24px 70px rgba(23, 23, 19, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    "Songti SC", "Noto Serif SC", "Microsoft YaHei", "PingFang SC", serif;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
}

body::selection {
  color: var(--paper);
  background: var(--forest);
}

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

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

button {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 76px;
  padding: 14px 44px;
  color: var(--paper);
  border-bottom: 1px solid rgba(244, 239, 231, 0.18);
  transition:
    background 220ms ease,
    color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(251, 248, 242, 0.92);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px rgba(23, 23, 19, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid currentColor;
  font-size: 17px;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.2;
}

.brand strong {
  font-size: 15px;
  font-weight: 600;
}

.brand small {
  margin-top: 2px;
  font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  color: currentColor;
  opacity: 0.72;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 34px;
  font-family: "Avenir Next", "Microsoft YaHei", sans-serif;
  font-size: 13px;
}

.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: right;
  transition: transform 180ms ease;
}

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

.header-cta,
.primary-button,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  white-space: nowrap;
  font-family: "Avenir Next", "Microsoft YaHei", sans-serif;
}

.header-cta,
.primary-button {
  border: 1px solid transparent;
  background: var(--forest);
  color: var(--paper);
  padding: 0 20px;
  font-size: 13px;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.site-header:not(.is-scrolled) .header-cta {
  color: var(--paper);
  background: rgba(244, 239, 231, 0.12);
  border-color: rgba(244, 239, 231, 0.48);
}

.header-cta:hover,
.primary-button:hover {
  transform: translateY(-2px);
  background: #0f2b24;
}

.text-link {
  min-height: 44px;
  padding: 0 4px;
  border-bottom: 1px solid currentColor;
  color: inherit;
  font-size: 13px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: end;
  gap: 48px;
  min-height: 92svh;
  padding: 148px 56px 72px;
  overflow: hidden;
  color: var(--paper);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(17, 17, 14, 0.86) 0%, rgba(17, 17, 14, 0.54) 43%, rgba(17, 17, 14, 0.18) 100%),
    linear-gradient(0deg, rgba(17, 17, 14, 0.45) 0%, rgba(17, 17, 14, 0.06) 56%);
}

.hero-content,
.hero-card {
  position: relative;
  z-index: 1;
}

.hero-content {
  min-width: 0;
  max-width: 850px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  font-family: "Avenir Next", "Microsoft YaHei", sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  text-transform: uppercase;
  color: var(--copper);
}

.hero .eyebrow {
  color: #d6b28c;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 960px;
  margin-bottom: 24px;
  font-size: 52px;
  font-weight: 500;
  line-height: 1.13;
}

h1 span {
  display: block;
}

.hero-lead {
  max-width: 700px;
  margin-bottom: 38px;
  font-size: 19px;
  line-height: 1.9;
  color: rgba(244, 239, 231, 0.82);
}

.hero-lead span {
  display: inline;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  align-items: center;
}

.hero-card {
  padding: 24px;
  border: 1px solid rgba(244, 239, 231, 0.26);
  background: rgba(23, 23, 19, 0.34);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.portrait-slot {
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 5;
  margin-bottom: 22px;
  border: 1px solid rgba(244, 239, 231, 0.34);
  background:
    linear-gradient(135deg, rgba(244, 239, 231, 0.12), rgba(167, 108, 67, 0.16)),
    rgba(244, 239, 231, 0.04);
  color: rgba(244, 239, 231, 0.72);
  text-align: center;
  line-height: 1.7;
}

.designer-name {
  margin-bottom: 6px;
  font-size: 22px;
}

.designer-title {
  margin-bottom: 22px;
  color: rgba(244, 239, 231, 0.68);
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 0;
  padding-top: 20px;
  border-top: 1px solid var(--light-line);
}

.hero-stats div {
  min-width: 0;
}

.hero-stats dt {
  font-size: 23px;
  color: #e4c49d;
}

.hero-stats dd {
  margin: 8px 0 0;
  font-size: 12px;
  color: rgba(244, 239, 231, 0.68);
}

.intro-band,
.case-section,
.service-section,
.pricing-section {
  padding: 110px 56px;
}

.intro-band {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(251, 248, 242, 0.96) 0%, rgba(237, 228, 215, 0.96) 52%, rgba(211, 201, 188, 0.96) 100%),
    var(--paper);
}

.intro-band::before {
  content: "";
  position: absolute;
  top: 72px;
  right: -110px;
  width: min(46vw, 620px);
  height: 420px;
  border: 1px solid rgba(36, 35, 31, 0.12);
  background:
    linear-gradient(90deg, rgba(251, 248, 242, 0.44), rgba(21, 55, 46, 0.5)),
    url("assets/hero-interior.png") center / cover;
  filter: saturate(0.78);
  opacity: 0.28;
}

.intro-band::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0, transparent calc(100% - 1px), rgba(36, 35, 31, 0.045) calc(100% - 1px)),
    linear-gradient(0deg, transparent 0, transparent calc(100% - 1px), rgba(36, 35, 31, 0.038) calc(100% - 1px));
  background-size: 96px 96px;
  opacity: 0.72;
}

.section-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1fr);
  gap: 70px;
  max-width: 1180px;
  margin: 0 auto 64px;
}

h2 {
  margin-bottom: 0;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.28;
}

.intro-copy {
  padding-top: 36px;
  border-top: 1px solid var(--line);
}

.intro-column {
  display: grid;
  gap: 26px;
}

.intro-copy p,
.quote-panel p,
.section-heading p,
.contact-copy p,
.price-note {
  font-size: 16px;
  line-height: 1.9;
  color: var(--muted);
}

.profile-studio-card {
  display: grid;
  gap: 12px;
  max-width: 520px;
  padding: 24px 26px;
  color: var(--paper);
  border: 1px solid rgba(244, 239, 231, 0.18);
  background:
    linear-gradient(135deg, rgba(21, 55, 46, 0.96), rgba(23, 23, 19, 0.94)),
    var(--forest);
  box-shadow: 0 22px 56px rgba(23, 23, 19, 0.15);
}

.profile-studio-card p {
  margin: 0;
  font-family: "Avenir Next", Arial, sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  color: #d6b28c;
}

.profile-studio-card strong {
  font-size: 20px;
  font-weight: 500;
}

.profile-studio-card span {
  max-width: 390px;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(244, 239, 231, 0.72);
}

.material-swatches {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 8px;
}

.material-swatches i {
  display: block;
  height: 34px;
  border: 1px solid rgba(244, 239, 231, 0.14);
}

.material-swatches i:nth-child(1) {
  background: #d8cbbb;
}

.material-swatches i:nth-child(2) {
  background: #766b5d;
}

.material-swatches i:nth-child(3) {
  background: #15372e;
}

.material-swatches i:nth-child(4) {
  background: #a76c43;
}

.credibility-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1180px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.credibility-row article {
  min-height: 252px;
  padding: 30px 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(251, 248, 242, 0.54);
  backdrop-filter: blur(10px);
  transition:
    background 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.credibility-row article:hover {
  background: rgba(251, 248, 242, 0.72);
  box-shadow: 0 18px 40px rgba(23, 23, 19, 0.1);
  transform: translateY(-2px);
}

.credibility-row span,
.process-list span {
  display: block;
  margin-bottom: 38px;
  font-family: "Avenir Next", Arial, sans-serif;
  font-size: 12px;
  color: var(--copper);
}

.credibility-row h3,
.process-list h3,
.case-meta h3 {
  margin-bottom: 14px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.35;
}

.credibility-row p,
.process-list p {
  margin-bottom: 0;
  line-height: 1.8;
  color: var(--muted);
}

.philosophy {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(320px, 1fr);
  gap: 64px;
  align-items: center;
  padding: 96px 56px;
  color: var(--paper);
  background: var(--forest);
}

.statement,
.quote-panel {
  max-width: 580px;
}

.statement {
  justify-self: end;
}

.quote-panel {
  padding: 44px 0 44px 48px;
  border-left: 1px solid rgba(244, 239, 231, 0.34);
}

.quote-panel p {
  margin: 0;
  color: rgba(244, 239, 231, 0.78);
}

.section-heading {
  max-width: 1180px;
  margin: 0 auto 48px;
}

.section-heading h2 {
  margin-bottom: 16px;
}

.section-heading.compact {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.case-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 12%, rgba(167, 108, 67, 0.16), transparent 34%),
    linear-gradient(135deg, #efe7db 0%, #d9d0c3 48%, #c2b6a6 100%);
}

.case-section::before {
  content: "";
  position: absolute;
  right: -90px;
  bottom: 120px;
  width: min(48vw, 620px);
  height: 520px;
  border: 1px solid rgba(36, 35, 31, 0.12);
  background:
    linear-gradient(135deg, rgba(251, 248, 242, 0.18), rgba(21, 55, 46, 0.58)),
    url("assets/hero-interior.png") center / cover;
  filter: saturate(0.68);
  opacity: 0.18;
}

.case-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0, transparent calc(100% - 1px), rgba(36, 35, 31, 0.045) calc(100% - 1px)),
    linear-gradient(0deg, transparent 0, transparent calc(100% - 1px), rgba(36, 35, 31, 0.04) calc(100% - 1px));
  background-size: 118px 118px;
  mix-blend-mode: multiply;
}

.case-intro {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(320px, 1fr) 390px;
  gap: 64px;
  align-items: end;
  max-width: 1180px;
  margin: 0 auto 48px;
}

.case-intro .section-heading {
  margin: 0;
}

.case-editorial-card {
  padding: 28px;
  color: var(--paper);
  border: 1px solid rgba(244, 239, 231, 0.18);
  background:
    linear-gradient(135deg, rgba(21, 55, 46, 0.96), rgba(23, 23, 19, 0.94)),
    var(--forest);
  box-shadow: 0 24px 58px rgba(23, 23, 19, 0.16);
}

.case-editorial-card span,
.case-feature-card p {
  display: block;
  margin-bottom: 14px;
  font-family: "Avenir Next", Arial, sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  color: #d6b28c;
}

.case-editorial-card strong {
  display: block;
  margin-bottom: 14px;
  font-size: 23px;
  font-weight: 500;
  line-height: 1.38;
}

.case-editorial-card p {
  margin-bottom: 22px;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(244, 239, 231, 0.72);
}

.case-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.case-filter a {
  padding: 8px 11px;
  border: 1px solid rgba(244, 239, 231, 0.2);
  font-family: "Avenir Next", "Microsoft YaHei", sans-serif;
  font-size: 12px;
  color: rgba(244, 239, 231, 0.76);
}

.case-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.case-card {
  min-width: 0;
  border: 1px solid rgba(36, 35, 31, 0.12);
  background: rgba(251, 248, 242, 0.78);
  box-shadow: 0 16px 40px rgba(23, 23, 19, 0.06);
  backdrop-filter: blur(10px);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.case-card:hover {
  transform: translateY(-3px);
  background: rgba(251, 248, 242, 0.92);
  box-shadow: 0 22px 50px rgba(23, 23, 19, 0.12);
}

.case-card.large {
  grid-column: span 2;
  grid-row: span 2;
}

.case-placeholder {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 240px;
  overflow: hidden;
  color: rgba(36, 35, 31, 0.54);
  background:
    linear-gradient(90deg, transparent 0, transparent calc(100% - 1px), rgba(36, 35, 31, 0.045) calc(100% - 1px)),
    linear-gradient(0deg, transparent 0, transparent calc(100% - 1px), rgba(36, 35, 31, 0.035) calc(100% - 1px)),
    linear-gradient(135deg, rgba(21, 55, 46, 0.2), rgba(167, 108, 67, 0.13)),
    linear-gradient(0deg, rgba(251, 248, 242, 0.82), rgba(217, 208, 195, 0.76));
  background-size:
    42px 42px,
    42px 42px,
    auto,
    auto;
}

.case-card.large .case-placeholder {
  min-height: 500px;
}

.case-placeholder::before,
.case-placeholder::after {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(36, 35, 31, 0.16);
}

.case-placeholder::after {
  inset: 38px;
  border-color: rgba(251, 248, 242, 0.52);
}

.case-placeholder span {
  position: relative;
  z-index: 1;
  padding: 8px 14px;
  font-size: 14px;
  background: rgba(251, 248, 242, 0.74);
}

.case-feature-card {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 360px;
  padding: 30px;
  color: var(--paper);
  border: 1px solid rgba(244, 239, 231, 0.18);
  background:
    linear-gradient(135deg, rgba(23, 23, 19, 0.96), rgba(21, 55, 46, 0.92)),
    var(--graphite);
  box-shadow: 0 20px 52px rgba(23, 23, 19, 0.15);
}

.case-feature-card h3 {
  max-width: 520px;
  margin-bottom: 28px;
  font-size: 27px;
  font-weight: 500;
  line-height: 1.38;
}

.case-feature-card ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.case-feature-card li {
  padding-top: 14px;
  border-top: 1px solid rgba(244, 239, 231, 0.16);
  color: rgba(244, 239, 231, 0.72);
  line-height: 1.7;
}

.case-meta {
  padding: 22px;
}

.case-meta p {
  margin-bottom: 10px;
  font-family: "Avenir Next", Arial, sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  color: var(--copper);
}

.case-meta h3 {
  min-height: 54px;
}

.case-meta span {
  display: inline-flex;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
}

.service-section {
  background: var(--paper);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 1180px;
  margin: 54px auto 0;
  padding: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  list-style: none;
}

.process-list li {
  min-height: 260px;
  padding: 34px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pricing-section {
  color: var(--paper);
  background: var(--graphite);
}

.pricing-panel,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) 360px;
  gap: 70px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.pricing-panel {
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(244, 239, 231, 0.16);
}

.pricing-panel h2 {
  margin-bottom: 18px;
  font-size: 52px;
}

.price-note,
.contact-copy p {
  color: rgba(244, 239, 231, 0.72);
}

.price-box {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: end;
  gap: 8px 12px;
  padding: 34px;
  border: 1px solid rgba(244, 239, 231, 0.24);
  background: rgba(244, 239, 231, 0.06);
}

.price-box span {
  align-self: start;
  padding-top: 10px;
  color: #d6b28c;
  font-size: 22px;
}

.price-box strong {
  font-family: "Avenir Next", Arial, sans-serif;
  font-size: 76px;
  font-weight: 500;
  line-height: 0.95;
}

.price-box small {
  grid-column: 2;
  font-size: 14px;
  color: rgba(244, 239, 231, 0.64);
}

.contact-grid {
  align-items: start;
  padding-top: 64px;
}

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

.contact-card {
  padding: 28px;
  border: 1px solid rgba(244, 239, 231, 0.24);
  background: rgba(244, 239, 231, 0.06);
}

.contact-card dl {
  margin: 0 0 26px;
}

.contact-card dl div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(244, 239, 231, 0.14);
}

.contact-card dt {
  color: rgba(244, 239, 231, 0.58);
}

.contact-card dd {
  margin: 0;
}

.primary-button.full {
  width: 100%;
}

.qr-slot {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  margin-top: 18px;
  border: 1px solid rgba(244, 239, 231, 0.2);
  color: rgba(244, 239, 231, 0.56);
  background:
    linear-gradient(135deg, rgba(244, 239, 231, 0.08), rgba(167, 108, 67, 0.1)),
    rgba(244, 239, 231, 0.04);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 28px 56px;
  font-family: "Avenir Next", "Microsoft YaHei", sans-serif;
  font-size: 13px;
  color: rgba(244, 239, 231, 0.62);
  background: #11110e;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--paper);
}

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

  .site-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 132px 34px 54px;
  }

  .hero-card {
    max-width: 430px;
  }

  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 34px;
  }

  .section-grid,
  .philosophy,
  .pricing-panel,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .statement {
    justify-self: start;
  }

  .quote-panel {
    max-width: none;
  }

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

  .case-intro {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

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

@media (max-width: 720px) {
  body {
    overflow-x: hidden;
  }

  .site-header {
    min-height: 68px;
    padding: 12px 18px;
  }

  .brand small,
  .header-cta {
    display: none;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .hero {
    min-height: auto;
    padding: 116px 20px 38px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(17, 17, 14, 0.9) 0%, rgba(17, 17, 14, 0.62) 100%),
      linear-gradient(0deg, rgba(17, 17, 14, 0.48), rgba(17, 17, 14, 0.12));
  }

  h1 {
    max-width: 100%;
    font-size: 27px;
    line-height: 1.24;
    word-break: break-all;
    overflow-wrap: anywhere;
  }

  h2 {
    font-size: 28px;
  }

  .hero-lead {
    max-width: 100%;
    font-size: 14px;
    line-height: 1.85;
    word-break: break-all;
    overflow-wrap: anywhere;
  }

  .hero-lead span {
    display: block;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-button,
  .text-link {
    width: 100%;
  }

  .hero-card {
    width: 100%;
    padding: 18px;
  }

  .intro-band,
  .case-section,
  .service-section,
  .pricing-section,
  .philosophy {
    padding: 72px 20px;
  }

  .section-grid {
    gap: 28px;
  }

  .intro-copy {
    padding-top: 24px;
  }

  .credibility-row,
  .case-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .credibility-row article,
  .process-list li {
    min-height: auto;
  }

  .case-card.large {
    grid-column: span 1;
    grid-row: span 1;
  }

  .case-feature-card {
    grid-column: span 1;
    min-height: auto;
  }

  .case-card.large .case-placeholder,
  .case-placeholder {
    min-height: 260px;
  }

  .quote-panel {
    padding: 28px 0 0;
    border-top: 1px solid rgba(244, 239, 231, 0.34);
    border-left: 0;
  }

  .pricing-panel h2 {
    font-size: 38px;
  }

  .price-box strong {
    font-size: 58px;
  }

  .contact-card dl div {
    grid-template-columns: 76px 1fr;
  }

  .site-footer {
    flex-direction: column;
    padding: 24px 20px;
  }
}

@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;
  }
}
