:root {
  --bg: #10100f;
  --panel: #171716;
  --text: #ece7df;
  --muted: #b8b0a4;
  --line: #2a2926;
  --accent: #b49a67;
  --accent-soft: #8eac93;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", Arial, sans-serif;
  background: radial-gradient(circle at 10% 0%, #181816 0%, #10100f 50%);
  color: var(--text);
  line-height: 1.65;
  letter-spacing: 0.01em;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  backdrop-filter: none;
  background: transparent;
  border-bottom: none;
}

.nav-wrap {
  width: 100%;
  padding: 0.85rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}

nav a {
  display: inline-block;
  margin-left: 1.2rem;
  text-decoration: none;
  color: var(--muted);
  font-weight: 500;
  transition: color 0.2s ease, transform 0.2s ease;
}

nav a:hover,
nav a.active {
  color: var(--text);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-end-dim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: #0a0a09;
  opacity: 0;
  will-change: opacity;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    rgba(16, 16, 15, 0.34) 0%,
    rgba(16, 16, 15, 0.28) 22%,
    rgba(16, 16, 15, 0.3) 38%,
    rgba(16, 16, 15, 0.36) 52%,
    rgba(16, 16, 15, 0.46) 64%,
    rgba(16, 16, 15, 0.58) 74%,
    rgba(16, 16, 15, 0.7) 82%,
    rgba(16, 16, 15, 0.82) 89%,
    rgba(16, 16, 15, 0.93) 95%,
    #10100f 100%
  );
}

.hero-handoff {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: clamp(6.5rem, 32vh, 18rem);
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(16, 16, 15, 0) 0%,
    rgba(16, 16, 15, 0.02) 10%,
    rgba(16, 16, 15, 0.07) 22%,
    rgba(16, 16, 15, 0.16) 36%,
    rgba(16, 16, 15, 0.29) 50%,
    rgba(16, 16, 15, 0.46) 64%,
    rgba(16, 16, 15, 0.66) 78%,
    rgba(16, 16, 15, 0.86) 90%,
    #10100f 100%
  );
}

.hero-frame {
  position: relative;
  z-index: 4;
  width: 100%;
  padding: 6rem 0;
  text-align: center;
  display: grid;
  justify-items: center;
}

.hero-copy {
  width: 100%;
  display: grid;
  justify-items: center;
  text-align: center;
  opacity: 0;
  transform: translateY(16px);
  will-change: opacity, transform;
}

.eyebrow {
  color: #c2bcb2;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 600;
}

.headline {
  margin: 0.4rem 0 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.5rem, 6.2vw, 5.4rem);
  line-height: 0.98;
  max-width: 900px;
}

.subtext {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.05rem;
}

.btn {
  display: inline-block;
  margin-top: 1rem;
  text-decoration: none;
  color: #10100f;
  background: #b8b3aa;
  padding: 0.78rem 1.3rem;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid #b8b3aa;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(180, 154, 103, 0.25);
}

.section {
  padding: 4.5rem 0;
}

.section-after-hero {
  position: relative;
  z-index: 1;
  margin-top: clamp(-4.5rem, -12vh, -2.25rem);
  padding-top: calc(4.5rem + clamp(2.25rem, 6.5vh, 4rem));
  isolation: isolate;
  background: #10100f;
}

.section-after-hero .container {
  position: relative;
  z-index: 1;
}

.section-after-hero.reveal {
  transform: translateY(48px);
  transition:
    opacity 1.2s ease,
    transform 1.2s cubic-bezier(0.16, 1, 0.32, 1);
}

.section-after-hero.reveal.visible {
  transform: translateY(0);
}

.page-main {
  padding-top: 4.25rem;
}

.section-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 3.4vw, 3rem);
  margin: 0 0 0.6rem;
}

.section-intro {
  margin: 0 0 1.7rem;
  color: var(--muted);
  max-width: 720px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.9rem;
}

.service-card {
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #151513;
  min-height: 238px;
  display: flex;
  flex-direction: column;
}

.service-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.08rem;
}

.service-card p {
  margin: 0;
  color: var(--muted);
}

.services-offered-grid {
  grid-template-columns: repeat(2, minmax(240px, 1fr));
}

.services-cta {
  margin-top: 1.15rem;
  text-align: center;
}

.services-cta p {
  margin: 0;
  color: var(--muted);
}

.services-cta .btn {
  margin-top: 0.8rem;
}

.services-page .section {
  padding: 3rem 0;
  position: relative;
  isolation: isolate;
}

.services-page .section + .section {
  padding-top: 1.5rem;
}

.services-page {
  --svc-parallax-y: 0px;
  position: relative;
  overflow: clip;
}

.services-page .container {
  position: relative;
  z-index: 1;
}

.services-page .section.reveal {
  opacity: 0;
  transform-origin: center 70%;
}

.services-page .section.reveal:nth-of-type(odd) {
  transform: translate3d(-56px, 24px, 0) rotate(-1.25deg) scale(0.985);
  transition:
    opacity 1.05s ease,
    transform 1.05s cubic-bezier(0.16, 1, 0.3, 1);
}

.services-page .section.reveal:nth-of-type(even) {
  transform: translate3d(56px, 24px, 0) rotate(1.25deg) scale(0.985);
  transition:
    opacity 1.05s ease,
    transform 1.05s cubic-bezier(0.16, 1, 0.3, 1);
}

.services-page .section.reveal.visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
}

.services-page .service-card,
.services-page .services-cta,
.services-page .service-radius-figure {
  opacity: 0;
  will-change: transform, opacity;
}

.services-page .service-card {
  transform: translateY(34px) scale(0.97) rotateX(9deg);
  transform-origin: center 85%;
  transition:
    transform 0.86s cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 0.86s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.services-page .service-card:hover {
  border-color: #595349;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.25);
  transform: translateY(-4px) scale(1.01);
}

.services-page .section.reveal.visible .service-card {
  opacity: 1;
  transform: translateY(0) scale(1) rotateX(0deg);
}

.services-page .section.reveal.visible .service-card:nth-child(1) {
  transition-delay: 0.08s;
}

.services-page .section.reveal.visible .service-card:nth-child(2) {
  transition-delay: 0.18s;
}

.services-page .section.reveal.visible .service-card:nth-child(3) {
  transition-delay: 0.28s;
}

.services-page .section.reveal.visible .service-card:nth-child(4) {
  transition-delay: 0.38s;
}

.services-page .services-cta {
  transform: translateY(24px);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.services-page .section.reveal.visible .services-cta {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

.showcase {
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: var(--panel);
}

.slider-wrap {
  position: relative;
  height: 360px;
  --split: 50%;
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
}

.image-layer {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: end start;
  padding: 1rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.3rem;
  color: #f8f4ec;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  user-select: none;
  -webkit-user-select: none;
}

.before {
  background-image: linear-gradient(
      rgba(16, 16, 15, 0.24),
      rgba(16, 16, 15, 0.24)
    ),
    url("officeafter.png");
}

.after {
  background-image: linear-gradient(
      rgba(16, 16, 15, 0.12),
      rgba(16, 16, 15, 0.12)
    ),
    url("officebefore.png");
  clip-path: inset(0 0 0 var(--split));
  overflow: hidden;
  pointer-events: none;
  place-items: end end;
}

.slider-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--split);
  width: 0;
  border-left: 2px solid rgba(245, 230, 204, 0.9);
  pointer-events: none;
}

.slider-handle {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 28px;
  height: 28px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 2px solid #f5e6cc;
  background: rgba(16, 16, 15, 0.92);
  box-shadow: 0 0 0 6px rgba(245, 230, 204, 0.15);
}

.caption {
  padding: 0.9rem 1rem 1.2rem;
  color: var(--muted);
}

.punchlines {
  display: grid;
  gap: 0.7rem;
  font-size: 1.12rem;
}

.punchlines span {
  padding: 0.8rem 1rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #141413;
}

.projects {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.project {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #151513;
  padding: 1rem;
}

.project-visual {
  height: 160px;
  border-radius: 9px;
  background: linear-gradient(120deg, #504e4a, #1f1f1d);
  margin-bottom: 0.8rem;
}

.project p {
  margin: 0;
  color: var(--muted);
}

.about-timeline {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.about-step {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #151513;
  padding: 1rem;
}

.about-step h3 {
  margin: 0 0 0.35rem;
}

.about-step p {
  margin: 0;
  color: var(--muted);
}

.about-step-kicker {
  margin: 0 0 0.3rem;
  color: #c2bcb2;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
}

.about-grid-two {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.about-why-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.about-why-intro {
  max-width: none;
  white-space: nowrap;
}

.about-list {
  margin: 0.25rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.about-list li {
  margin-bottom: 0.4rem;
}

.about-faq {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.about-cta-strip {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #151513;
  padding: 1.25rem;
}

.about-cta-strip h2 {
  margin: 0 0 0.45rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
}

.about-cta-strip p {
  margin: 0;
  color: var(--muted);
}

.about-cta-strip .btn {
  margin-top: 0.95rem;
}

.service-radius-figure {
  margin: 1rem 0 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: #151513;
}

.service-radius-image {
  display: block;
  width: 100%;
  height: auto;
}

.service-radius-section.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 1.25s ease,
    transform 1.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-radius-section.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.service-radius-section .service-radius-figure {
  opacity: 0;
  transform: scale(0.975) rotate(-0.4deg);
  transition:
    opacity 1.4s ease 0.18s,
    transform 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.18s,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.service-radius-section.reveal.visible .service-radius-figure {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.services-page .service-radius-figure:hover {
  border-color: #585244;
  box-shadow: 0 20px 36px rgba(0, 0, 0, 0.3);
}

.about-page .section {
  padding: 2.65rem 0;
}

.about-page .section-title {
  margin-bottom: 0.4rem;
}

.about-page .section-intro {
  margin-bottom: 1.15rem;
}

.about-page .project,
.about-page .about-step,
.about-page .about-cta-strip {
  opacity: 0;
  transition:
    opacity 0.7s ease,
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.about-page .project,
.about-page .about-cta-strip {
  transform: translateX(-44px) rotate(-1.4deg);
}

.about-page .about-step:nth-child(odd),
.about-page .about-faq .project:nth-child(odd),
.about-page .about-grid-two .project:nth-child(odd) {
  transform: translateX(-56px) rotate(-2.2deg);
}

.about-page .about-step:nth-child(even),
.about-page .about-faq .project:nth-child(even),
.about-page .about-grid-two .project:nth-child(even) {
  transform: translateX(56px) rotate(2.2deg);
}

.about-page .section.reveal.visible .project,
.about-page .section.reveal.visible .about-step,
.about-page .section.reveal.visible .about-cta-strip {
  opacity: 1;
  transform: translateX(0) rotate(0deg);
}

.about-page .about-step {
  transition-delay: 0.05s;
}

.about-page .about-step:nth-child(2) {
  transition-delay: 0.13s;
}

.about-page .about-step:nth-child(3) {
  transition-delay: 0.21s;
}

.about-page .about-step:nth-child(4) {
  transition-delay: 0.29s;
}

.about-page .about-grid-two .project:nth-child(1),
.about-page .about-faq .project:nth-child(1) {
  transition-delay: 0.06s;
}

.about-page .about-grid-two .project:nth-child(2),
.about-page .about-faq .project:nth-child(2) {
  transition-delay: 0.16s;
}

.about-page .about-faq .project:nth-child(3) {
  transition-delay: 0.26s;
}

.about-page .project:hover,
.about-page .about-step:hover,
.about-page .about-cta-strip:hover {
  transform: translateY(-3px);
  border-color: #4e4a44;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.2);
}

.about-page .about-step {
  position: relative;
}

.about-page .about-step::before {
  content: "";
  position: absolute;
  left: -0.55rem;
  top: 1rem;
  bottom: 1rem;
  width: 2px;
  background: linear-gradient(
    to bottom,
    rgba(216, 197, 154, 0),
    rgba(216, 197, 154, 0.72),
    rgba(216, 197, 154, 0)
  );
  opacity: 0.35;
}

.about-scroll-indicator {
  position: fixed;
  top: 50%;
  right: 1.15rem;
  width: 6px;
  height: 180px;
  transform: translateY(-50%);
  border-radius: 999px;
  background: rgba(205, 196, 182, 0.18);
  overflow: hidden;
  z-index: 45;
  pointer-events: none;
}

.about-scroll-indicator span {
  display: block;
  width: 100%;
  height: 100%;
  transform-origin: top;
  transform: scaleY(0);
  border-radius: 999px;
  background: linear-gradient(
    to bottom,
    rgba(236, 227, 214, 0.25),
    rgba(216, 197, 154, 0.95)
  );
  transition: transform 0.16s linear;
}

.contact-box {
  background: #151513;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.2rem;
}

.contact-widget {
  margin-top: 1.15rem;
  padding-top: 0.95rem;
  border-top: 1px solid var(--line);
}

.contact-widget h3 {
  margin: 0 0 0.35rem;
  font-size: 1.02rem;
  font-weight: 600;
}

.contact-widget p {
  margin: 0.2rem 0;
  color: var(--muted);
}

.contact-widget a {
  color: var(--text);
  text-decoration: none;
}

.contact-widget-highlight {
  color: var(--text);
}

.contact-widget a:hover {
  text-decoration: underline;
}

form {
  margin-top: 1rem;
  display: grid;
  gap: 0.85rem;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  margin: 0.2rem 0 0;
  min-height: 1.2em;
  color: var(--muted);
  font-size: 0.95rem;
}

.form-status[data-state="error"] {
  color: #d8a5a5;
}

.form-status[data-state="success"] {
  color: #bcd2bf;
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

legend {
  margin: 0 0 0.35rem;
  padding: 0;
  color: #d4ccc0;
  font-weight: 500;
}

.service-checklist label {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0.31rem 0;
  color: var(--muted);
}

.service-checklist input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 1rem;
  height: 1rem;
  margin: 0;
  border: 1px solid #b8b3aa;
  border-radius: 3px;
  background: #b8b3aa;
  display: inline-grid;
  place-content: center;
  cursor: pointer;
}

.service-checklist input[type="checkbox"]::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  transform: scale(0);
  transition: transform 0.12s ease-in-out;
  box-shadow: inset 1rem 1rem #b8b3aa;
  clip-path: polygon(14% 44%, 0 63%, 43% 100%, 100% 22%, 82% 7%, 38% 65%);
}

.service-checklist input[type="checkbox"]:checked {
  background: #d8c59a;
  border-color: #d8c59a;
  box-shadow: inset 0 0 0 1px rgba(255, 246, 224, 0.4);
}

.service-checklist input[type="checkbox"]:checked::before {
  transform: scale(1);
  box-shadow: inset 1rem 1rem #171510;
}

.service-checklist input[type="checkbox"]:focus-visible {
  outline: 2px solid #c2bcb2;
  outline-offset: 2px;
}

label {
  color: #d4ccc0;
}

input,
textarea {
  width: 100%;
  background: #121211;
  border: 1px solid #2f2e2b;
  border-radius: 8px;
  color: var(--text);
  font: inherit;
  padding: 0.75rem;
}

button {
  border: 1px solid #b8b3aa;
  background: #b8b3aa;
  color: #17140f;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
}

.site-footer {
  border-top: 1px solid var(--line);
  margin-top: 1.7rem;
  color: #938b80;
}

.footer-wrap {
  padding: 1.1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-left,
.footer-right {
  display: grid;
  gap: 0.2rem;
}

.footer-left p,
.footer-right p {
  margin: 0;
  color: #b7aea1;
}

.footer-right {
  text-align: right;
}

.footer-wrap a {
  color: #d6cdc0;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-wrap a:hover {
  color: #ece3d6;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 680px) {
  html {
    -webkit-text-size-adjust: 100%;
  }

  .nav-wrap {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem 0.75rem;
    padding: max(0.55rem, env(safe-area-inset-top))
      max(1rem, env(safe-area-inset-right))
      0.55rem
      max(1rem, env(safe-area-inset-left));
  }

  .logo {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    flex: 1 1 auto;
    min-width: 0;
  }

  nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0.35rem 0.75rem;
    flex: 0 1 auto;
  }

  nav a {
    margin-left: 0;
    font-size: 0.88rem;
  }

  .hero {
    min-height: 100dvh;
    min-height: 100svh;
  }

  .hero-video {
    object-position: center 38%;
  }

  .hero::after {
    background: linear-gradient(
      to bottom,
      rgba(16, 16, 15, 0.36) 0%,
      rgba(16, 16, 15, 0.28) 24%,
      rgba(16, 16, 15, 0.36) 44%,
      rgba(16, 16, 15, 0.52) 62%,
      rgba(16, 16, 15, 0.7) 78%,
      rgba(16, 16, 15, 0.9) 93%,
      #10100f 100%
    );
  }

  .hero-frame {
    padding: max(5.25rem, calc(3.25rem + env(safe-area-inset-top))) 1rem
      max(2rem, env(safe-area-inset-bottom));
  }

  .eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    padding: 0 0.35rem;
    line-height: 1.45;
  }

  .headline {
    font-size: clamp(1.75rem, 10.5vw, 2.85rem);
    line-height: 1.06;
    padding: 0 0.35rem;
  }

  .subtext {
    font-size: 0.98rem;
    line-height: 1.55;
    padding: 0 0.35rem;
  }

  .btn {
    margin-top: 1.15rem;
    padding: 0.82rem 1.35rem;
    font-size: 0.95rem;
  }

  .section {
    padding: 2.75rem 0;
  }

  .hero-handoff {
    height: clamp(5rem, 28vh, 14rem);
  }

  .section-after-hero {
    margin-top: clamp(-3.25rem, -10vh, -1.5rem);
    padding-top: calc(2.75rem + clamp(1.5rem, 5vh, 3rem));
  }

  .section-after-hero.reveal {
    transform: translateY(40px);
    transition:
      opacity 1.05s ease,
      transform 1.05s cubic-bezier(0.16, 1, 0.32, 1);
  }

  .page-main {
    padding-top: max(4.75rem, calc(3.25rem + env(safe-area-inset-top)));
  }

  .section-title {
    font-size: clamp(1.65rem, 7vw, 2.35rem);
  }

  .section-intro {
    margin-bottom: 1.25rem;
    font-size: 0.98rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-offered-grid {
    grid-template-columns: 1fr;
  }

  .services-page .section.reveal:nth-of-type(odd),
  .services-page .section.reveal:nth-of-type(even) {
    transform: translate3d(0, 26px, 0) scale(0.992);
  }

  .about-why-intro {
    white-space: normal;
  }

  .about-page .section {
    padding: 2.1rem 0;
  }

  .about-scroll-indicator {
    right: 0.45rem;
    height: 115px;
    width: 4px;
  }

  .slider-wrap {
    height: auto;
    min-height: 220px;
    max-height: min(52vh, 380px);
    aspect-ratio: 16 / 10;
    touch-action: none;
    -webkit-tap-highlight-color: transparent;
  }

  .image-layer {
    font-size: clamp(0.78rem, 3.2vw, 1rem);
    line-height: 1.25;
    padding: 0.65rem 0.55rem;
  }

  .slider-handle {
    width: 44px;
    height: 44px;
  }

  .punchlines {
    font-size: 1rem;
  }

  .punchlines span {
    padding: 0.75rem 0.85rem;
  }

  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }

  .footer-right {
    text-align: left;
  }

  .site-footer {
    padding-bottom: env(safe-area-inset-bottom);
  }
}

@media (prefers-reduced-motion: reduce) {
  .services-page .section.reveal,
  .services-page .service-card,
  .services-page .service-radius-figure,
  .services-page .services-cta {
    transition: none;
    animation: none;
    transform: none;
    opacity: 1;
  }
}
