:root {
  --white: #faf8f4;
  --paper: #f4f0ea;
  --porcelain: #faf8f4;
  --ink: #1c1c1a;
  --graphite: #41424c;
  --mist: #d8d1c7;
  --clay: #9a7a4f;
  --olive: #716f66;
  --deep: #171613;
  --radius: 8px;
  --shadow-soft: 0 24px 70px rgba(28, 28, 26, 0.08);
  --shadow-lift: 0 30px 90px rgba(28, 28, 26, 0.13);
  --section-mobile: 4rem;
  --section-desktop: 8rem;
  --container-mobile: 1.25rem;
  --container-tablet: 2rem;
  --container-desktop: 2.5rem;
  color-scheme: light;
  font-synthesis: none;
  text-rendering: geometricPrecision;
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Manrope, Satoshi, "Avenir Next", ui-sans-serif, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

video {
  background: var(--mist);
}

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

button {
  font: inherit;
}

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

.site-shell {
  min-height: 100vh;
  overflow: hidden;
  background: var(--paper);
}

.container {
  width: min(100% - calc(var(--container-mobile) * 2), 80rem);
  margin-inline: auto;
}

.section-paper,
.section-porcelain,
.section-dark {
  padding: var(--section-mobile) 0;
}

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

.section-porcelain {
  background: var(--porcelain);
}

.section-dark {
  background: var(--deep);
  color: var(--white);
}

.nowrap {
  white-space: nowrap;
}

.center {
  text-align: center;
}

.eyebrow,
.label,
.block-title,
.asset-title {
  margin: 0;
  color: var(--clay);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1.1;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: "Cormorant Garamond", "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-weight: 600;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 0;
  max-width: 43.75rem;
  font-size: 2.48rem;
  line-height: 1.03;
  text-wrap: balance;
}

h2 {
  margin-bottom: 0;
  font-size: 2.1rem;
  line-height: 1.04;
  text-wrap: balance;
}

h3 {
  margin-bottom: 0;
  font-size: 1.35rem;
  line-height: 1.2;
}

p {
  color: var(--graphite);
  line-height: 1.65;
}

.section-dark p {
  color: rgba(250, 248, 244, 0.74);
}

.section-heading {
  max-width: 48rem;
}

.section-heading.center {
  margin-inline: auto;
}

.section-heading .eyebrow {
  margin-bottom: 0.75rem;
}

.section-heading p {
  margin: 1rem 0 0;
  font-size: 1rem;
}

.small-note {
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  color: rgba(65, 66, 76, 0.55);
  font-size: 0.8rem;
  line-height: 1.65;
}

.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  padding: 0.75rem 1.75rem;
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

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

.button-dark {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 16px 36px rgba(28, 28, 26, 0.16);
}

.button-dark:hover {
  background: var(--clay);
}

.button-light,
.button-subtle {
  border-color: rgba(28, 28, 26, 0.15);
  background: rgba(255, 255, 255, 0.58);
  color: var(--ink);
}

.button-light:hover,
.button-subtle:hover {
  border-color: rgba(28, 28, 26, 0.35);
  background: var(--white);
}

.button-white {
  background: var(--white);
  color: var(--ink);
}

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

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.brand {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.home-return {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0.25rem 0;
  color: var(--graphite);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
  text-transform: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.home-return::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: rgba(154, 122, 79, 0.7);
  transition: transform 0.25s ease;
}

.home-return:hover,
.home-return:focus-visible {
  color: var(--ink);
  transform: translateY(-1px);
  outline: none;
}

.home-return:hover::after,
.home-return:focus-visible::after {
  transform: scaleX(1);
}

.site-nav {
  display: none;
  align-items: center;
  gap: 1.75rem;
  color: var(--graphite);
  font-size: 0.9rem;
}

.site-nav a {
  position: relative;
  padding: 0.25rem 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: rgba(154, 122, 79, 0.7);
  transition: transform 0.25s ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.hero {
  padding-top: 0;
  padding-bottom: 0;
}

.hero-grid {
  display: grid;
  gap: 2rem;
  padding-top: 1.25rem;
  padding-bottom: 2.5rem;
}

.hero-copy {
  max-width: 45rem;
}

.hero-copy .eyebrow {
  margin-bottom: 1rem;
}

.hero-text {
  max-width: 35rem;
  margin-top: 1.25rem;
  font-size: 1rem;
  line-height: 1.75;
}

.actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.hero-media {
  width: min(100%, 21.25rem);
  margin-inline: auto;
}

.hero-video-card {
  position: relative;
  aspect-ratio: 4 / 5;
  max-height: 35rem;
  overflow: hidden;
  border: 1px solid rgba(28, 28, 26, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(28, 28, 26, 0.1);
}

.hero-video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 58%;
}

.hero-labels {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(28, 28, 26, 0.1);
  color: var(--graphite);
  font-size: 0.68rem;
  line-height: 1.35;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-note {
  border-top: 1px solid rgba(28, 28, 26, 0.1);
  padding: 0.75rem 1.25rem;
  text-align: center;
}

.hero-note p {
  max-width: 80rem;
  margin: 0 auto;
  font-size: 0.82rem;
  line-height: 1.5;
}

.split-grid {
  display: grid;
  gap: 1.5rem;
}

.problem-copy {
  max-width: 36rem;
}

.problem-copy p {
  margin: 0 0 1.25rem;
  font-size: 1rem;
  line-height: 1.75;
}

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

.problem-copy .strong {
  color: var(--white);
  font-weight: 700;
}

.visual-preview {
  padding-top: 3.5rem;
  padding-bottom: 0.5rem;
}

.visual-preview .section-heading {
  max-width: 80rem;
}

.visual-preview .section-heading h2 {
  font-size: 2rem;
}

.visual-preview .section-heading p {
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

.visual-preview .button {
  margin-top: 1.25rem;
}

.preview-wrap {
  margin-top: 1.5rem;
}

.mobile-carousel-label {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  color: rgba(65, 66, 76, 0.5);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.preview-carousel {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.75rem;
  scroll-snap-type: x mandatory;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
}

.preview-carousel::-webkit-scrollbar {
  display: none;
}

.preview-card {
  width: min(80vw, 20.625rem);
  flex: 0 0 auto;
  overflow: hidden;
  scroll-snap-align: start;
  border: 1px solid rgba(28, 28, 26, 0.1);
  border-radius: var(--radius);
  background: var(--porcelain);
}

.preview-card img,
.preview-card video {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.preview-card:hover img,
.preview-card:hover video {
  transform: scale(1.015);
}

.preview-card p {
  margin: 0;
  border-top: 1px solid rgba(28, 28, 26, 0.1);
  padding: 0.75rem 1rem;
  color: rgba(65, 66, 76, 0.75);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.mobile-indicator {
  display: flex;
  justify-content: center;
  margin-top: 0.75rem;
}

.mobile-indicator span {
  width: 1rem;
  height: 0.375rem;
  border-radius: 999px;
  background: rgba(154, 122, 79, 0.7);
}

.service-grid,
.target-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.service-card,
.target-grid article,
.why-grid article,
.usage-grid article,
.format-grid article {
  border: 1px solid rgba(28, 28, 26, 0.1);
  border-radius: var(--radius);
  background: var(--porcelain);
  box-shadow: 0 1px 0 rgba(28, 28, 26, 0.04);
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1rem;
  overflow: hidden;
  transition: border-color 0.28s ease, box-shadow 0.28s ease, transform 0.28s ease;
}

.service-card:hover {
  border-color: rgba(28, 28, 26, 0.18);
  box-shadow: 0 22px 56px rgba(28, 28, 26, 0.08);
  transform: translateY(-5px) scale(1.008);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1rem;
  right: 1rem;
  height: 1px;
  background: rgba(154, 122, 79, 0.55);
  transform: scaleX(0);
  transform-origin: left;
}

.service-card-featured {
  border-color: rgba(154, 122, 79, 0.55);
  box-shadow: 0 24px 70px rgba(28, 28, 26, 0.1);
}

.service-card-featured::before {
  transform: scaleX(1);
}

.service-top {
  min-height: 4.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.75rem;
}

.service-heading-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.service-card h3 {
  font-size: 1.35rem;
}

.badge {
  display: inline-flex;
  width: fit-content;
  margin-top: 0.55rem;
  border: 1px solid rgba(154, 122, 79, 0.3);
  border-radius: 999px;
  background: rgba(154, 122, 79, 0.1);
  padding: 0.28rem 0.65rem;
  color: var(--clay);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.price {
  margin: 0;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.55rem;
  font-weight: 600;
  line-height: 1;
}

.service-description {
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
}

.include-block {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(28, 28, 26, 0.1);
}

.include-block ul {
  display: grid;
  gap: 0.75rem;
  margin: 0.75rem 0 0;
  padding: 0;
  list-style: none;
}

.include-block li {
  position: relative;
  padding-left: 1.25rem;
  color: rgba(65, 66, 76, 0.78);
  font-size: 0.9rem;
  line-height: 1.55;
}

.include-block li::before {
  content: "";
  position: absolute;
  top: 0.7rem;
  left: 0;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 999px;
  background: var(--clay);
}

.include-block strong,
.include-block span {
  display: block;
}

.include-block strong {
  color: var(--ink);
}

.summary {
  margin: 1rem 0 0;
  border-radius: var(--radius);
  background: rgba(244, 240, 234, 0.75);
  padding: 0.75rem 1rem;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
}

.formats-block {
  margin-top: 1.75rem;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(28, 28, 26, 0.1);
  border-bottom: 1px solid rgba(28, 28, 26, 0.1);
}

.format-grid,
.usage-grid {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.format-grid article,
.usage-grid article {
  padding: 0.9rem;
}

.format-grid article {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 8.25rem;
}

.usage-grid article {
  background: rgba(244, 240, 234, 0.65);
}

.format-grid h4,
.usage-grid h4 {
  margin: 0;
  font-size: 0.95rem;
}

.format-grid p,
.usage-grid p {
  margin: 0.5rem 0 0;
  font-size: 0.9rem;
  line-height: 1.55;
}

.format-grid small {
  display: block;
  margin-top: 0.5rem;
  color: rgba(65, 66, 76, 0.66);
  font-size: 0.76rem;
  line-height: 1.5;
}

.usage-block {
  margin-top: 1.25rem;
}

.usage-block .block-title {
  padding-top: 0;
}

.service-note {
  display: grid;
  gap: 0.75rem;
  max-width: 64rem;
  margin: 1.5rem auto 0;
  border: 1px solid rgba(28, 28, 26, 0.1);
  border-radius: var(--radius);
  background: rgba(250, 248, 244, 0.7);
  padding: 1rem;
}

.service-note h3 {
  color: var(--clay);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.service-note p {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.services .center {
  margin-top: 1.25rem;
}

.projects .section-heading {
  max-width: 80rem;
}

.project-list {
  display: grid;
  gap: 3rem;
  margin-top: 2rem;
}

.project-card {
  display: grid;
  gap: 0.75rem;
}

.project-copy h3 {
  margin-top: 0.5rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.05;
  text-wrap: balance;
}

.product-line {
  margin: 0.5rem 0 0;
  color: rgba(65, 66, 76, 0.56);
  font-size: 0.8rem;
}

.project-main-media {
  aspect-ratio: 5 / 4;
  max-height: 20rem;
  overflow: hidden;
  border: 1px solid rgba(28, 28, 26, 0.1);
  border-radius: var(--radius);
  background: var(--mist);
  box-shadow: var(--shadow-soft);
}

.project-main-media img,
.project-main-media video,
.video-fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-main-media img,
.project-main-media video {
  transition: transform 0.5s ease;
}

.project-main-media:hover img,
.project-main-media:hover video {
  transform: scale(1.012);
}

.video-fallback {
  display: grid;
  place-items: center;
  color: rgba(65, 66, 76, 0.45);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.asset-title {
  color: rgba(65, 66, 76, 0.5);
}

.asset-help {
  margin: 0.3rem 0 0;
  color: rgba(65, 66, 76, 0.56);
  font-size: 0.78rem;
  line-height: 1.5;
}

.thumb-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.thumb-grid button {
  overflow: hidden;
  border: 1px solid rgba(28, 28, 26, 0.1);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 0;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.thumb-grid button:hover {
  border-color: rgba(28, 28, 26, 0.3);
}

.thumb-visual {
  position: relative;
  display: block;
  overflow: hidden;
}

.thumb-grid button.is-active {
  border-color: rgba(28, 28, 26, 0.45);
  background: var(--white);
}

.thumb-grid img,
.thumb-grid video,
.thumb-grid .video-fallback {
  width: 100%;
  aspect-ratio: 5 / 3;
  object-fit: cover;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.thumb-grid button:not(.is-active) img,
.thumb-grid button:not(.is-active) video {
  filter: brightness(0.96);
}

.thumb-grid button:hover img,
.thumb-grid button:hover video {
  filter: brightness(1.05);
  transform: scale(1.02);
}

.thumb-label {
  display: block;
  min-height: 2.25rem;
  border-top: 1px solid rgba(28, 28, 26, 0.1);
  padding: 0.4rem 0.5rem;
  color: rgba(65, 66, 76, 0.72);
  font-size: 0.56rem;
  font-weight: 700;
  line-height: 1.35;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.thumb-grid button.is-active .thumb-label {
  border-color: rgba(28, 28, 26, 0.18);
  color: var(--ink);
}

.play-icon {
  pointer-events: none;
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.play-icon span {
  display: block;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
  background: rgba(28, 28, 26, 0.65);
  backdrop-filter: blur(8px);
  position: relative;
}

.play-icon span::after {
  content: "";
  position: absolute;
  left: 0.72rem;
  top: 0.55rem;
  width: 0;
  height: 0;
  border-top: 0.25rem solid transparent;
  border-bottom: 0.25rem solid transparent;
  border-left: 0.44rem solid rgba(250, 248, 244, 0.92);
}

.why-grid,
.process-grid,
.target-grid {
  display: grid;
  gap: 0.9rem;
  margin-top: 2rem;
}

.why-grid article,
.process-grid article,
.target-grid article {
  padding: 1rem;
}

.why-grid article {
  height: 100%;
  background: var(--porcelain);
}

.why .section-heading p + p {
  margin-top: 1.25rem;
}

.why-grid span,
.process-grid span {
  color: var(--clay);
  font-weight: 700;
}

.why-grid p,
.process-grid p,
.target-grid p {
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
  line-height: 1.65;
}

.process {
  position: relative;
  overflow: hidden;
}

.process-inner {
  position: relative;
  z-index: 1;
}

.process-mark {
  display: none;
}

.process-grid article {
  border-top: 1px solid rgba(28, 28, 26, 0.15);
  background: transparent;
}

.process-grid h3 {
  margin-top: 1rem;
  font-size: 1.25rem;
}

.process-note {
  max-width: 48rem;
  margin: 1.5rem auto 0;
  border-top: 1px solid rgba(28, 28, 26, 0.1);
  padding-top: 1.25rem;
  color: rgba(65, 66, 76, 0.62);
  font-size: 0.88rem;
  text-align: center;
}

.faq-list {
  max-width: 64rem;
  margin: 2rem auto 0;
  overflow: hidden;
  border: 1px solid rgba(28, 28, 26, 0.1);
  border-radius: var(--radius);
  background: var(--porcelain);
  box-shadow: 0 1px 0 rgba(28, 28, 26, 0.04);
}

.faq-item + .faq-item {
  border-top: 1px solid rgba(28, 28, 26, 0.1);
}

.faq-item button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 0;
  background: transparent;
  padding: 1rem;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.faq-item button:hover,
.faq-item button:focus-visible {
  background: rgba(244, 240, 234, 0.6);
  outline: none;
}

.faq-item button span {
  display: flex;
  min-width: 0;
  gap: 0.75rem;
  align-items: flex-start;
  font-weight: 700;
  line-height: 1.5;
}

.faq-item em {
  color: var(--clay);
  font-size: 0.6rem;
  font-style: normal;
  letter-spacing: 0.16em;
}

.faq-item b {
  display: grid;
  flex: 0 0 auto;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border: 1px solid rgba(28, 28, 26, 0.1);
  border-radius: 999px;
  color: rgba(65, 66, 76, 0.65);
  font-size: 1.1rem;
  font-weight: 500;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.24s ease, opacity 0.24s ease;
  opacity: 0;
}

.faq-answer[hidden] {
  display: block;
}

.faq-item.is-open .faq-answer {
  max-height: 24rem;
  opacity: 1;
}

.faq-item.is-open b {
  color: var(--ink);
}

.faq-answer p {
  margin: 0;
  padding: 0 1rem 1.25rem 3.35rem;
  font-size: 0.9rem;
  line-height: 1.65;
}


.target {
  padding-top: 1rem;
  padding-bottom: 4rem;
}

.target .section-heading {
  max-width: 58rem;
}

.target-grid {
  gap: 0.875rem;
}

.target-grid article {
  height: 100%;
  transition: border-color 0.26s ease, box-shadow 0.26s ease, transform 0.26s ease;
}

.target-grid article:hover {
  border-color: rgba(28, 28, 26, 0.18);
  box-shadow: 0 18px 48px rgba(28, 28, 26, 0.07);
  transform: translateY(-4px) scale(1.006);
}

.final-cta {
  padding-top: 4rem;
  padding-bottom: 2.5rem;
}

.final-inner {
  max-width: 56rem;
  text-align: center;
}

.final-inner .eyebrow {
  margin-bottom: 1rem;
}

.final-inner h2 {
  font-size: 2.35rem;
  line-height: 1.03;
}

.final-inner p {
  max-width: 48rem;
  margin: 1.25rem auto 0;
  color: rgba(250, 248, 244, 0.74);
  font-size: 1rem;
  line-height: 1.75;
}

.final-inner p + p {
  max-width: 42rem;
  margin-top: 1rem;
  color: rgba(250, 248, 244, 0.82);
  font-size: 0.98rem;
  line-height: 1.6;
}

.final-inner .button {
  margin-top: 1.5rem;
}

.cta-contact-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.15rem;
  width: fit-content;
  margin: 1.25rem auto 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1rem 0.4rem 0;
  color: rgba(250, 248, 244, 0.48);
}

.cta-contact-links a {
  display: inline-flex;
  width: 2.35rem;
  height: 2.35rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(250, 248, 244, 0.72);
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.cta-contact-links a:hover,
.cta-contact-links a:focus-visible {
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--white);
  transform: translateY(-2px);
  outline: none;
}

.cta-contact-links .contact-icon,
.cta-contact-links .contact-icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1rem;
  color: rgba(250, 248, 244, 0.75);
}

.social-links a {
  display: inline-flex;
  width: 2.75rem;
  height: 2.75rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  color: var(--white);
  transform: translateY(-2px);
  outline: none;
}

.contact-icon,
.contact-icon svg {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
}

.footer {
  padding-top: 0;
  padding-bottom: 2rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.25rem;
  color: rgba(250, 248, 244, 0.48);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  line-height: 1.45;
  text-transform: uppercase;
}

.footer-inner p:last-child {
  color: rgba(250, 248, 244, 0.35);
}

.footer p {
  margin: 0;
  color: inherit;
}

.footer-useful {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(250, 248, 244, 0.1);
  border-radius: var(--radius);
  background: rgba(250, 248, 244, 0.035);
  padding: 1rem;
}

.footer-useful-head {
  display: grid;
  gap: 0.35rem;
  color: rgba(250, 248, 244, 0.52);
  line-height: 1.45;
}

.footer-useful-head span {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-useful-head p {
  margin: 0;
  max-width: 22rem;
  color: rgba(250, 248, 244, 0.44);
  font-size: 0.78rem;
  letter-spacing: 0;
  line-height: 1.55;
  text-transform: none;
}

.footer-useful-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-useful a {
  display: block;
  min-height: 2.35rem;
  width: 100%;
  border: 1px solid rgba(250, 248, 244, 0.12);
  border-radius: 999px;
  background: rgba(250, 248, 244, 0.045);
  padding: 0.55rem 0.85rem;
  color: rgba(250, 248, 244, 0.76);
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  line-height: 1.35;
  text-align: left;
  text-transform: none;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.footer-useful-label {
  display: block;
  width: 100%;
}

.footer-useful a:hover,
.footer-useful a:focus-visible {
  border-color: rgba(250, 248, 244, 0.24);
  background: rgba(250, 248, 244, 0.08);
  color: var(--white);
  transform: translateY(-1px);
  outline: none;
}

.seo-page .site-header {
  position: relative;
  z-index: 2;
}

.seo-hero {
  padding-top: 0;
  padding-bottom: 4rem;
}

.seo-hero-inner {
  max-width: 60rem;
  padding-top: 1.25rem;
}

.seo-hero h1 {
  max-width: 56rem;
  margin-top: 0.9rem;
}

.seo-lead {
  max-width: 44rem;
  margin: 1.3rem 0 0;
  color: var(--graphite);
  font-size: 1.05rem;
  line-height: 1.75;
}

.seo-hero .actions {
  margin-top: 1.8rem;
}

.seo-section {
  padding: 4rem 0;
}

.seo-split {
  display: grid;
  gap: 1.75rem;
}

.seo-copy {
  display: grid;
  gap: 1rem;
}

.seo-copy p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.75;
}

.seo-copy a,
.seo-note a {
  color: var(--clay);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.seo-copy a::after,
.seo-note a::after {
  content: " →";
  white-space: nowrap;
}

.seo-copy a:hover,
.seo-copy a:focus-visible,
.seo-note a:hover,
.seo-note a:focus-visible {
  color: var(--ink);
  text-decoration-color: currentColor;
  outline: none;
}

.seo-card-grid,
.seo-step-grid,
.seo-faq-grid {
  display: grid;
  gap: 0.9rem;
  margin-top: 2rem;
}

.seo-card {
  border: 1px solid rgba(28, 28, 26, 0.09);
  border-radius: var(--radius);
  background: rgba(250, 248, 244, 0.62);
  padding: 1.25rem;
  box-shadow: 0 18px 48px rgba(28, 28, 26, 0.05);
}

.section-paper .seo-card {
  background: rgba(255, 255, 255, 0.46);
}

.seo-card > span {
  display: block;
  margin-bottom: 1rem;
  color: var(--clay);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1;
}

.seo-card h3 {
  color: var(--ink);
  font-size: 1.15rem;
  line-height: 1.25;
}

.seo-card p {
  margin: 0.85rem 0 0;
  color: var(--graphite);
  font-size: 0.92rem;
  line-height: 1.62;
}

.seo-inline-cta {
  margin-top: 1.75rem;
}

.seo-note {
  max-width: 54rem;
  margin: 1.5rem auto 0;
  border-top: 1px solid rgba(28, 28, 26, 0.1);
  padding-top: 1rem;
  color: rgba(65, 66, 76, 0.72);
  font-size: 0.9rem;
  line-height: 1.65;
  text-align: center;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(18px) scale(0.99);
  transition: opacity 0.72s ease, transform 0.72s ease;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal-on-scroll {
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 640px) {
  .container {
    width: min(100% - calc(var(--container-tablet) * 2), 80rem);
  }

  .seo-hero {
    padding-bottom: 3.5rem;
  }

  .seo-hero-inner {
    padding-top: 0;
  }

  .seo-hero h1 {
    margin-top: 0.75rem;
  }

  .seo-lead {
    margin-top: 1.05rem;
  }

  .seo-hero .actions {
    margin-top: 1.5rem;
  }

  .actions {
    flex-direction: row;
  }

  h1 {
    font-size: 3.65rem;
    line-height: 0.98;
  }

  h2 {
    font-size: 3rem;
  }

  .hero-text,
  .section-heading p {
    font-size: 1.12rem;
    line-height: 1.7;
  }

  .hero-media {
    width: min(100%, 28.75rem);
  }

  .hero-labels {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
  }

  .project-copy h3 {
    font-size: 2.9rem;
  }

  .project-main-media {
    max-height: 23.75rem;
  }

  .thumb-grid {
    gap: 0.75rem;
    margin-top: 0.75rem;
  }

  .thumb-grid img,
  .thumb-grid video,
  .thumb-grid .video-fallback {
    aspect-ratio: 4 / 3;
  }

  .thumb-label {
    padding: 0.45rem 0.75rem;
    font-size: 0.62rem;
    letter-spacing: 0.08em;
  }

  .faq-item button {
    padding: 1.25rem 1.5rem;
  }

  .faq-answer p {
    padding: 0 1.5rem 1.5rem 4.6rem;
    font-size: 1rem;
    line-height: 1.7;
  }

  .final-inner h2 {
    font-size: 4rem;
  }

  .final-inner p {
    margin-top: 1.5rem;
    font-size: 1.12rem;
    line-height: 1.7;
  }

  .final-inner p + p {
    margin-top: 1.5rem;
    font-size: 1rem;
    line-height: 1.7;
  }

  .social-links {
    gap: 2.5rem;
    margin-top: 1.5rem;
    padding-top: 1.25rem;
  }

  .footer-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding-top: 1.5rem;
    letter-spacing: 0.18em;
  }

  .service-card,
  .target-grid article,
  .why-grid article,
  .process-grid article,
  .format-grid article,
  .usage-grid article {
    padding: 1.4rem;
  }
}

@media (min-width: 768px) {
  .site-nav {
    display: flex;
  }

  .home-return {
    display: none;
  }

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

  .format-grid,
  .usage-grid,
  .why-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .container {
    width: min(100% - calc(var(--container-desktop) * 2), 80rem);
  }

  .section-paper,
  .section-porcelain,
  .section-dark {
    padding: var(--section-desktop) 0;
  }

  .hero {
    min-height: 100vh;
    padding-top: 0;
    padding-bottom: 0;
  }

  .hero-grid {
    min-height: calc(100vh - 80px);
    grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.82fr);
    align-items: center;
    gap: 4rem;
    padding-top: 2rem;
    padding-bottom: 5rem;
  }

  .hero-media {
    width: min(100%, 27.5rem);
    margin-right: 0;
  }

  .hero-copy .eyebrow {
    margin-bottom: 1.25rem;
  }

  .hero-text {
    margin-top: 2.5rem;
    font-size: 1.25rem;
    line-height: 1.6;
  }

  .actions {
    margin-top: 3rem;
    gap: 1rem;
  }

  .hero-labels {
    margin-top: 1rem;
    padding-top: 1rem;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
  }

  h1 {
    font-size: 4.65rem;
  }

  h2 {
    font-size: 3.75rem;
  }

  .hero-video-card {
    max-height: calc(100vh - 180px);
  }

  .split-grid {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: start;
    gap: 2.5rem;
  }

  .preview-carousel {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: visible;
    padding-bottom: 0;
  }

  .preview-card {
    width: auto;
  }

  .mobile-carousel-label,
  .mobile-indicator {
    display: none;
  }

  .visual-preview {
    padding-top: 6rem;
    padding-bottom: 4rem;
  }

  .visual-preview .section-heading h2 {
    white-space: nowrap;
    font-size: 3.15rem;
  }

  .visual-preview .section-heading p {
    max-width: none;
    white-space: nowrap;
  }

  .preview-wrap {
    margin-top: 3rem;
  }

  .services {
    padding-top: 3rem;
    padding-bottom: 8rem;
  }

  .services .section-heading {
    max-width: 64rem;
  }

  .services .section-heading h2 {
    white-space: nowrap;
  }

  .service-grid {
    margin-top: 4rem;
    gap: 1.75rem;
  }

  .service-top {
    min-height: 6rem;
  }

  .formats-block {
    margin-top: 3rem;
    padding: 2.25rem 0;
  }

  .format-grid,
  .usage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .format-grid article,
  .usage-grid article {
    padding: 1.25rem 1.4rem;
  }

  .service-note {
    grid-template-columns: 0.32fr 0.68fr;
    gap: 2rem;
    text-align: left;
  }

  .projects .section-heading h2 {
    white-space: nowrap;
  }

  .projects .small-note {
    max-width: none;
    white-space: nowrap;
  }

  .project-list {
    gap: 7rem;
    margin-top: 4rem;
  }

  .project-card {
    grid-template-columns: minmax(0, 0.47fr) minmax(0, 0.53fr);
    grid-template-rows: auto minmax(1.5rem, 1fr) auto;
    align-items: stretch;
    column-gap: 4rem;
    row-gap: 0;
  }

  .project-card-reverse {
    grid-template-columns: minmax(0, 0.53fr) minmax(0, 0.47fr);
  }

  .project-card .project-main {
    grid-column: 1;
    grid-row: 1 / span 3;
  }

  .project-card .project-copy,
  .project-card .project-assets {
    grid-column: 2;
  }

  .project-card .project-assets {
    grid-row: 3;
    align-self: end;
  }

  .project-card-reverse .project-main {
    grid-column: 2;
  }

  .project-card-reverse .project-copy,
  .project-card-reverse .project-assets {
    grid-column: 1;
  }

  .project-copy h3 {
    font-size: 2.7rem;
  }

  .project-main-media {
    max-height: 500px;
  }

  .thumb-grid img,
  .thumb-grid video,
  .thumb-grid .video-fallback {
    aspect-ratio: 3 / 2;
  }

  .thumb-label {
    min-height: 2rem;
    padding-top: 0.38rem;
    padding-bottom: 0.38rem;
  }

  .why .split-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .why-grid {
    gap: 1rem;
  }

  .process-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 3.5rem;
  }

  .target {
    padding-top: 2.5rem;
    padding-bottom: 8rem;
  }

  .target-grid {
    margin-top: 3.5rem;
    gap: 1.25rem;
  }

  .final-cta {
    padding-top: 8rem;
    padding-bottom: 4rem;
  }

  .final-inner h2 {
    font-size: 5rem;
  }

  .final-inner .button {
    margin-top: 2.25rem;
  }

  .footer {
    padding-top: 0;
    padding-bottom: 2rem;
  }

  .footer-useful {
    grid-template-columns: minmax(15rem, 0.34fr) minmax(0, 0.66fr);
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 0.9rem;
    padding: 1rem 1.1rem;
  }

  .footer-useful-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    justify-self: end;
    width: 100%;
    gap: 0.55rem;
  }

  .footer-useful-links:has(a:nth-child(4)) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 46rem);
  }

  .footer-useful a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 2.15rem;
    width: 100%;
    padding: 0.4rem 0.75rem;
    font-size: 0.72rem;
    text-align: center;
  }

  .process-mark {
    position: absolute;
    right: -11rem;
    top: 0.5rem;
    display: block;
    width: min(66vw, 870px);
    aspect-ratio: 1;
    rotate: -8deg;
    background: #6b6b6b;
    opacity: 0.3;
    mask: url("assets/process/wireframe-process-optimized.png") center / cover no-repeat;
    -webkit-mask: url("assets/process/wireframe-process-optimized.png") center / cover no-repeat;
  }

  .footer-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    letter-spacing: 0.18em;
  }

  .footer-useful {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    font-size: 0.68rem;
    letter-spacing: 0.16em;
  }

  .seo-hero {
    padding-top: 0;
    padding-bottom: 2.5rem;
  }

  .seo-hero-inner {
    padding-top: clamp(4.75rem, 6vw, 6rem);
  }

  .seo-hero h1 {
    font-size: clamp(4.35rem, 5.4vw, 5.4rem);
    line-height: 0.98;
  }

  .seo-lead {
    max-width: 48rem;
    font-size: 1.12rem;
  }

  .seo-section {
    padding: 6rem 0;
  }

  .seo-split {
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    align-items: start;
    gap: 4rem;
  }

  .seo-split .seo-copy {
    padding-top: clamp(3.2rem, 4vw, 4rem);
  }

  .seo-split .section-heading h2 {
    font-size: 4rem;
    line-height: 0.98;
  }

  .seo-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2.8rem;
  }

  .seo-card-grid-four,
  .seo-faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .seo-step-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2.8rem;
  }

  .seo-card {
    padding: 1.5rem;
  }

  .seo-card h3 {
    font-size: 1.35rem;
  }

  .seo-card p {
    font-size: 0.98rem;
    line-height: 1.68;
  }

  .seo-note {
    margin-top: 2rem;
  }
}

@media (min-width: 1280px) {
  .why-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .why-grid article:nth-child(1),
  .why-grid article:nth-child(2),
  .why-grid article:nth-child(3),
  .why-grid article:nth-child(5) {
    grid-column: span 2;
  }

  .why-grid article:nth-child(4) {
    grid-column: 2 / span 2;
  }
}

/* Step 8: visual parity refinements against the React version */
.services {
  padding-top: 0.75rem;
  padding-bottom: 4rem;
}

.format-grid {
  gap: 0;
  margin-top: 1rem;
}

.format-grid article {
  min-height: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0.875rem 0;
}

.format-grid article + article {
  border-top: 1px solid rgba(28, 28, 26, 0.1);
}

.format-grid article:first-child {
  padding-top: 0;
}

.format-grid article:last-child {
  padding-bottom: 0;
}

.process-grid article {
  padding: 1rem 0 0;
}

.faq {
  padding-top: 4rem;
  padding-bottom: 1rem;
}

@media (min-width: 640px) {
  .service-card,
  .target-grid article {
    padding: 1.75rem;
  }

  .service-card::before {
    left: 1.75rem;
    right: 1.75rem;
  }

  .format-grid article {
    padding: 0.875rem 0;
  }

  .format-grid article:first-child {
    padding-top: 0;
  }

  .format-grid article:last-child {
    padding-bottom: 0;
  }

  .process-grid article {
    padding: 1.25rem 0 0;
  }
}

@media (min-width: 1024px) {
  .problem-copy p {
    margin-bottom: 2.5rem;
    font-size: 1.125rem;
    line-height: 2.25rem;
  }

  .services {
    padding-top: 3rem;
    padding-bottom: 8rem;
  }

  .service-top {
    gap: 1.25rem;
  }

  .service-description {
    margin-top: 1.25rem;
  }

  .include-block {
    margin-top: 1.25rem;
    padding-top: 1.5rem;
  }

  .include-block ul {
    gap: 1rem;
  }

  .summary {
    margin-top: 1.75rem;
  }

  .format-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.75rem;
  }

  .format-grid article {
    min-height: 0;
    border: 1px solid rgba(28, 28, 26, 0.1);
    border-radius: var(--radius);
    background: var(--porcelain);
    box-shadow: 0 10px 34px rgba(28, 28, 26, 0.035);
    padding: 1.25rem;
  }

  .format-grid article + article {
    border-top: 1px solid rgba(28, 28, 26, 0.1);
  }

  .format-grid article:first-child,
  .format-grid article:last-child {
    padding: 1.25rem;
  }

  .process-grid article {
    padding: 1.5rem 0 0;
  }

  .faq {
    padding-top: 8rem;
    padding-bottom: 5rem;
  }
}

/* Typography parity against the React version */
.eyebrow,
.block-title {
  color: var(--clay);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  line-height: 1rem;
  text-transform: uppercase;
}

.section-heading .eyebrow,
.final-inner .eyebrow {
  color: var(--clay);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  line-height: 1rem;
  margin-bottom: 0.75rem;
}

.section-dark .eyebrow,
.section-dark .block-title {
  color: var(--clay);
}

.label {
  color: var(--graphite);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1rem;
  text-transform: uppercase;
}

.asset-title {
  color: rgba(65, 66, 76, 0.5);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.5;
  text-transform: uppercase;
}

h3,
h4,
.service-card h3,
.format-grid h4,
.usage-grid h4,
.process-grid h3,
.target-grid h3 {
  font-weight: 600;
}

.button {
  font-weight: 600;
}

.hero .button-dark {
  font-weight: 700;
}

.badge,
.preview-card p,
.thumb-label,
.include-block strong,
.summary,
.service-note h3,
.why-grid span,
.process-grid span,
.faq-item button span {
  font-weight: 600;
}

.format-grid h4,
.usage-grid h4 {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.format-grid p,
.usage-grid p {
  font-size: 0.875rem;
  line-height: 1.5rem;
}

.format-grid small {
  font-size: 0.75rem;
  line-height: 1.25rem;
}

.service-note h3 {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  line-height: 1rem;
}

@media (min-width: 640px) {
  .section-heading .eyebrow,
  .final-inner .eyebrow {
    margin-bottom: 1rem;
  }
}

/* Step section-by-section visual parity against React */
@media (max-width: 1023.98px) {
  .visual-preview .button {
    margin-top: 1rem;
  }

  .visual-preview .preview-wrap {
    margin-top: 1.125rem;
  }

  .visual-preview .preview-carousel {
    padding-bottom: 0.5rem;
  }

  .visual-preview .mobile-indicator {
    margin-top: 0.5rem;
  }

  .project-list {
    gap: 2.125rem;
  }

  .why .section-heading p {
    font-size: 0.98rem;
    line-height: 1.5rem;
  }

  .why-grid {
    gap: 0.75rem;
    margin-top: 1.75rem;
  }

  .faq-list {
    margin-top: 1.5rem;
  }

  .final-inner p {
    margin-top: 1rem;
  }

  .final-inner p + p {
    margin-top: 0.875rem;
  }

  .final-inner .button {
    margin-top: 1.25rem;
  }

  .social-links {
    margin-top: 1rem;
  }
}

@media (min-width: 1024px) {
  .site-header {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .hero-grid {
    padding-bottom: 5rem;
  }

  .hero-note {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .hero-note p {
    font-size: 0.875rem;
    line-height: 1.5rem;
  }

  .services {
    padding-bottom: 8rem;
  }

  .services > .container > .section-heading.center {
    margin-top: 0;
  }

  .services > .container > .center:last-child {
    margin-top: 1.75rem;
  }

  .usage-block {
    margin-top: 2rem;
  }

  .usage-block .block-title {
    padding-top: 2rem;
  }

  .service-note {
    margin-top: 2.25rem;
    padding: 1.5rem;
  }

  .project-list {
    gap: 6.3rem;
  }

  .why .split-grid {
    gap: 3rem;
  }

  .why .section-heading p {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }

  .why-grid {
    margin-top: 0;
  }

  .why-grid article {
    padding: 1.5rem;
  }

  .why-grid p {
    margin-top: 1.25rem;
    font-size: 1rem;
    line-height: 1.75rem;
  }

  .process-grid h3 {
    margin-top: 2rem;
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .process-grid p {
    margin-top: 1rem;
    font-size: 1rem;
    line-height: 1.75rem;
  }

  .process-note {
    margin-top: 2.5rem;
    padding-top: 1.75rem;
    font-size: 0.875rem;
    line-height: 1.5rem;
  }

  .target-grid h3 {
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .target-grid p {
    margin-top: 1.25rem;
    font-size: 1rem;
    line-height: 1.75rem;
  }
}

/* Problem title readability refinement */
.problem h2 {
  line-height: 1.5 !important;
}

/* Mobile tap feedback refinement */
@media (hover: none), (pointer: coarse) {
  .button:hover,
  .site-nav a:hover,
  .social-links a:hover {
    transform: none;
  }

  .button-dark:hover {
    background: var(--ink);
  }

  .button-light:hover,
  .button-subtle:hover {
    border-color: rgba(28, 28, 26, 0.15);
    background: rgba(255, 255, 255, 0.58);
  }

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

  .thumb-grid button:hover {
    border-color: rgba(28, 28, 26, 0.1);
  }

  .thumb-grid button:hover img,
  .thumb-grid button:hover video {
    filter: brightness(0.96);
    transform: none;
  }

  .thumb-grid button.is-active:hover {
    border-color: rgba(28, 28, 26, 0.45);
  }
}

@media (max-width: 767.98px) {
  a,
  button {
    -webkit-tap-highlight-color: transparent;
  }

  .button,
  .site-nav a,
  .faq-item button,
  .thumb-grid button,
  .social-links a {
    transition-duration: 180ms;
    transition-timing-function: cubic-bezier(0.2, 0.7, 0.2, 1);
  }

  .button:active {
    opacity: 0.92;
    transform: translateY(1px) scale(0.985);
  }

  .brand:active,
  .site-nav a:active {
    opacity: 0.72;
    transform: translateY(1px);
  }

  .faq-item button:active {
    background: rgba(244, 240, 234, 0.72);
    transform: scale(0.995);
  }

  .thumb-grid button:active {
    border-color: rgba(154, 122, 79, 0.55);
    transform: scale(0.985);
  }

  .thumb-grid button:active img,
  .thumb-grid button:active video {
    filter: brightness(1.03);
    transform: scale(1.015);
  }

  .social-links a:active {
    opacity: 0.78;
    transform: translateY(1px) scale(0.94);
  }
}
