@font-face {
  font-family: 'Cairo';
  src: url('../fonts/cairo-600.woff2') format('woff2');
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: 'Cairo';
  src: url('../fonts/cairo-700.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: 'Cairo';
  src: url('../fonts/cairo-900.woff2') format('woff2');
  font-weight: 900;
  font-display: swap;
}

@font-face {
  font-family: 'Tajawal';
  src: url('../fonts/tajawal-400.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Tajawal';
  src: url('../fonts/tajawal-500.woff2') format('woff2');
  font-weight: 500;
  font-display: swap;
}

:root {
  color-scheme: light;
  --paper: #f7f6ed;
  --paper-2: #eeeee3;
  --ink: #102a43;
  --muted: #506171;
  --line: rgba(16, 42, 67, 0.16);
  --card: #fffef7;
  --teal: #12b7b2;
  --teal-dark: #087c7a;
  --lemon: #f4ed42;
  --lemon-soft: #fff96d;
  --white: #fffef7;
  --shadow: rgba(16, 42, 67, 0.15);
  --radius: 28px;
  --header-height: 74px;
}

:root[data-theme='dark'] {
  color-scheme: dark;
  --paper: #0c2235;
  --paper-2: #102a43;
  --ink: #f8f7ed;
  --muted: #bdcad2;
  --line: rgba(248, 247, 237, 0.18);
  --card: #15334b;
  --teal: #28cbc4;
  --teal-dark: #62eee7;
  --lemon: #e8df36;
  --lemon-soft: #f4ed42;
  --white: #fffef7;
  --shadow: rgba(0, 0, 0, 0.24);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme='light']) {
    color-scheme: dark;
    --paper: #0c2235;
    --paper-2: #102a43;
    --ink: #f8f7ed;
    --muted: #bdcad2;
    --line: rgba(248, 247, 237, 0.18);
    --card: #15334b;
    --teal: #28cbc4;
    --teal-dark: #62eee7;
    --lemon: #e8df36;
    --lemon-soft: #f4ed42;
    --white: #fffef7;
    --shadow: rgba(0, 0, 0, 0.24);
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Tajawal', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.app {
  overflow-x: clip;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  content: '';
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

[hidden] {
  display: none !important;
}

:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 4px;
}

.shell {
  width: min(100% - 40px, 1380px);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 10;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--paper) 90%, transparent);
  backdrop-filter: blur(16px);
}

.nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: var(--header-height);
  gap: 36px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-family: 'Cairo', sans-serif;
  font-weight: 900;
  line-height: 1.15;
  white-space: nowrap;
}

.brand small {
  display: block;
  margin-top: 4px;
  font-family: 'Tajawal', sans-serif;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.12em;
}

.brand-mark {
  width: 43px;
  height: 43px;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 4px 4px 0 var(--ink);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 2.6vw, 38px);
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
}

.desktop-nav a,
.language-link,
.footer a {
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.language-link:hover,
.footer a:hover {
  color: var(--teal-dark);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-link {
  font-size: 13px;
  font-weight: 800;
}

.icon-button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--card);
  color: var(--ink);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease;
}

.icon-button i {
  font-size: 20px;
}

.icon-button:hover {
  transform: rotate(-5deg);
  border-color: var(--teal);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  gap: 10px;
  padding: 13px 25px;
  border: 2px solid var(--ink);
  border-radius: 16px;
  background: var(--teal);
  color: #09273a;
  box-shadow: 5px 5px 0 var(--ink);
  font-family: 'Cairo', sans-serif;
  font-size: 15px;
  font-weight: 800;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--ink);
  background: var(--lemon);
}

.button:active {
  transform: translate(3px, 3px) scale(0.98);
  box-shadow: 2px 2px 0 var(--ink);
}

.button-small {
  min-height: 42px;
  padding: 7px 16px;
  border-radius: 14px;
  box-shadow: 3px 3px 0 var(--ink);
  font-size: 13px;
}

.menu-button,
.mobile-menu {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 0.9fr);
  align-items: center;
  min-height: calc(100dvh - var(--header-height));
  gap: clamp(32px, 5vw, 92px);
  padding-block: 48px 36px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
}

@media (prefers-reduced-motion: no-preference) {
  .js .hero-enter {
    opacity: 0;
    animation: hero-enter 750ms cubic-bezier(0.16, 1, 0.3, 1) var(--delay, 0ms) forwards;
  }

  .js .hero-visual-enter {
    opacity: 0;
    animation: hero-visual-enter 1s cubic-bezier(0.16, 1, 0.3, 1) 160ms forwards;
  }
}

@keyframes hero-enter {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes hero-visual-enter {
  from { opacity: 0; transform: scale(0.9) rotate(-4deg); }
  to { opacity: 1; transform: scale(1) rotate(0); }
}

.hero-kicker {
  display: inline-flex;
  margin: 0 0 18px;
  padding: 7px 13px;
  border: 2px solid var(--ink);
  border-radius: 12px;
  background: var(--lemon);
  color: #102a43;
  box-shadow: 4px 4px 0 var(--ink);
  font-family: 'Cairo', sans-serif;
  font-size: 13px;
  font-weight: 800;
  transform: rotate(1.5deg);
}

.hero h1,
.section-heading h2,
.why-title h2,
.cta-copy h2 {
  margin: 0;
  font-family: 'Cairo', sans-serif;
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 1.12;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(52px, 6vw, 92px);
}

.hero h1 span {
  color: var(--teal-dark);
}

.hero-lede {
  max-width: 610px;
  margin: 25px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 1.6vw, 23px);
  line-height: 1.75;
}

.hero-actions,
.cta-actions {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 32px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-block: 6px;
  border-bottom: 2px solid currentColor;
  color: var(--ink);
  font-weight: 700;
  white-space: nowrap;
  transition: color 180ms ease, gap 180ms ease;
}

.text-link:hover {
  gap: 13px;
  color: var(--teal-dark);
}

.hero-visual {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: min(660px, 70dvh);
  place-items: center;
  isolation: isolate;
}

.hero-visual::before {
  position: absolute;
  z-index: -2;
  width: min(90%, 560px);
  aspect-ratio: 1;
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  background: var(--lemon);
  box-shadow: 16px 16px 0 var(--ink);
  content: '';
  transform: rotate(-5deg);
}

.hero-visual::after {
  position: absolute;
  z-index: -1;
  width: 76%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--teal);
  content: '';
  transform: translate(7%, -3%);
}

.hero-visual img {
  width: min(100%, 690px);
  max-height: 69dvh;
  object-fit: contain;
  filter: drop-shadow(0 24px 18px rgba(16, 42, 67, 0.18));
}

.hero-orbit {
  position: absolute;
  z-index: -1;
  width: 93%;
  aspect-ratio: 1;
  border: 2px dashed var(--ink);
  border-radius: 50%;
}

.visual-note {
  position: absolute;
  z-index: 1;
  padding: 8px 15px;
  border: 2px solid var(--ink);
  border-radius: 12px;
  background: var(--card);
  color: var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  font-family: 'Cairo', sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.note-top {
  top: 12%;
  right: 0;
  transform: rotate(5deg);
}

.note-bottom {
  bottom: 9%;
  left: 0;
  transform: rotate(-4deg);
}

.trust-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
  padding-block: 24px;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding-inline: 24px;
  border-inline-start: 1px solid var(--line);
}

.trust-item:first-child {
  border-inline-start: 0;
}

.trust-item svg {
  flex: 0 0 auto;
  margin-top: 3px;
  color: var(--teal-dark);
}

.trust-item > i {
  flex: 0 0 auto;
  margin-top: 3px;
  color: var(--teal-dark);
  font-size: 25px;
}

.trust-item strong,
.trust-item span {
  display: block;
}

.trust-item strong {
  font-family: 'Cairo', sans-serif;
  font-size: 14px;
  line-height: 1.4;
}

.trust-item span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.marquee {
  overflow: hidden;
  margin-top: 84px;
  border-block: 2px solid var(--ink);
  background: var(--teal);
  color: #102a43;
  transform: rotate(-1.25deg) scale(1.02);
}

.marquee-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 28px;
  padding-block: 15px;
  font-family: 'Cairo', sans-serif;
  font-size: clamp(23px, 3vw, 42px);
  font-weight: 900;
  line-height: 1;
  animation: marquee 27s linear infinite;
}

.marquee-track i {
  width: 12px;
  height: 12px;
  border: 2px solid #102a43;
  border-radius: 3px;
  background: var(--lemon);
  transform: rotate(45deg);
}

@keyframes marquee {
  to { transform: translateX(50%); }
}

.services-section {
  padding-block: 140px 160px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 60px;
}

.section-heading > p {
  display: inline-block;
  margin: 0 0 14px;
  color: var(--teal-dark);
  font-family: 'Cairo', sans-serif;
  font-weight: 800;
}

.section-heading h2,
.why-title h2,
.cta-copy h2 {
  font-size: clamp(43px, 5.4vw, 78px);
}

.section-heading > span,
.why-title > p,
.cta-copy > p {
  display: block;
  max-width: 600px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 20px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(225px, auto);
  gap: 18px;
}

.service-card {
  position: relative;
  display: flex;
  grid-column: span 3;
  flex-direction: column;
  justify-content: space-between;
  min-height: 240px;
  padding: 27px;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: 7px 7px 0 var(--ink);
  transform-origin: center;
}

.service-main {
  grid-column: span 6;
  grid-row: span 2;
  min-height: 490px;
  background: var(--lemon);
  color: #102a43;
}

.service-teal {
  grid-column: span 3;
  background: var(--teal);
  color: #102a43;
}

.service-ink {
  grid-column: span 3;
  background: var(--ink);
  color: var(--paper);
}

.service-image {
  grid-column: span 6;
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--card) 92%, transparent), color-mix(in srgb, var(--card) 54%, transparent)),
    url('../images/hero-digital-sculpture.png') 3% 55% / 43% auto no-repeat,
    var(--card);
}

.service-lemon {
  background: var(--lemon);
  color: #102a43;
}

.service-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 16px;
  background: color-mix(in srgb, var(--card) 72%, transparent);
}

.service-icon i {
  font-size: 30px;
}

.service-card h3 {
  max-width: 390px;
  margin: 28px 0 8px;
  font-family: 'Cairo', sans-serif;
  font-size: clamp(20px, 1.8vw, 29px);
  line-height: 1.35;
}

.service-main h3 {
  font-size: clamp(32px, 3.4vw, 53px);
}

.service-card p {
  max-width: 450px;
  margin: 0;
  color: currentColor;
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.76;
}

.service-main p {
  font-size: 18px;
}

.service-arrow {
  position: absolute;
  top: 24px;
  left: 24px;
  transition: transform 180ms ease;
}

.service-card:hover .service-arrow {
  transform: translate(-5px, -5px);
}

.why-section {
  padding-block: 140px;
  background: var(--paper-2);
}

.why-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: start;
  gap: clamp(60px, 9vw, 150px);
}

.why-title {
  position: sticky;
  top: calc(var(--header-height) + 50px);
}

.why-title .text-link {
  margin-top: 24px;
}

.smile-mark {
  position: relative;
  width: 96px;
  height: 96px;
  margin-bottom: 35px;
  border: 3px solid var(--ink);
  border-radius: 28px;
  background: var(--lemon);
  box-shadow: 7px 7px 0 var(--ink);
  transform: rotate(-6deg);
}

.smile-mark span {
  position: absolute;
  top: 28px;
  width: 9px;
  height: 12px;
  border-radius: 50%;
  background: #102a43;
}

.smile-mark span:first-child { right: 25px; }
.smile-mark span:nth-child(2) { left: 25px; }
.smile-mark b {
  position: absolute;
  right: 25px;
  bottom: 22px;
  width: 42px;
  height: 20px;
  border-bottom: 5px solid #102a43;
  border-radius: 50%;
}

.value-list {
  display: grid;
  gap: 26px;
}

.value-item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 20px;
  padding: 10px 0 35px;
  border-bottom: 1px solid var(--line);
}

.value-item h3 {
  margin: 0 0 8px;
  font-family: 'Cairo', sans-serif;
  font-size: clamp(23px, 2.3vw, 34px);
  line-height: 1.4;
}

.value-item p {
  margin: 0;
  color: var(--muted);
}

.value-item svg {
  margin-top: 7px;
  color: var(--teal-dark);
}

.value-item > i {
  margin-top: 7px;
  color: var(--teal-dark);
  font-size: 28px;
}

.cta-section {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  min-height: 650px;
  margin-block: 110px;
  padding: clamp(50px, 7vw, 100px);
  overflow: hidden;
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  background: var(--lemon);
  color: #102a43;
  box-shadow: 12px 12px 0 var(--ink);
}

.cta-copy {
  position: relative;
  z-index: 2;
}

.cta-icon {
  font-size: 44px;
}

.cta-copy > p {
  color: #304b5f;
}

.button-dark {
  background: #102a43;
  color: #fffef7;
}

.button-dark:hover {
  background: var(--teal);
  color: #102a43;
}

.cta-art {
  position: relative;
  display: grid;
  aspect-ratio: 1;
  place-items: center;
}

.cta-art img {
  width: 48%;
  aspect-ratio: 1;
  border: 4px solid #102a43;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 10px 10px 0 #102a43;
  transform: rotate(7deg);
}

.cta-ring {
  position: absolute;
  width: 82%;
  aspect-ratio: 1;
  border: 34px solid var(--teal);
  border-radius: 50%;
  box-shadow: inset 0 0 0 3px #102a43, 0 0 0 3px #102a43;
}

.footer {
  padding-top: 80px;
  background: #102a43;
  color: #f7f6ed;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.7fr 1fr;
  gap: 60px;
  padding-bottom: 70px;
}

.footer-brand {
  color: #f7f6ed;
}

.footer-intro p {
  max-width: 460px;
  margin-top: 26px;
  color: #bdcad2;
  font-size: 19px;
}

.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}

.footer h3 {
  margin: 0 0 10px;
  color: var(--teal);
  font-family: 'Cairo', sans-serif;
  font-size: 15px;
}

.footer-grid span {
  color: #bdcad2;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-block: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: #bdcad2;
  font-size: 13px;
}

.footer-bottom div {
  display: flex;
  gap: 22px;
}

.js .reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 700ms cubic-bezier(0.16, 1, 0.3, 1), transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--delay, 0ms);
}

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

.service-card {
  transition: opacity 600ms ease, transform 180ms ease, box-shadow 180ms ease;
}

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .service-card.is-visible:hover {
    transform: translateY(-7px) rotate(-0.6deg);
  }

  .service-card.is-visible:nth-child(even):hover {
    transform: translateY(-7px) rotate(0.6deg);
  }
}

@media (max-width: 1120px) {
  .desktop-nav { gap: 16px; }
  .nav-contact { display: none; }
  .hero { grid-template-columns: 1fr 0.82fr; }
  .service-card { grid-column: span 4; }
  .service-main { grid-column: span 8; }
  .service-image { grid-column: span 8; }
}

@media (max-width: 860px) {
  .shell { width: min(100% - 30px, 1380px); }
  .desktop-nav { display: none; }
  .nav { grid-template-columns: 1fr auto; }
  .menu-button { display: grid; }
  .mobile-menu {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 18px 15px 22px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }
  .mobile-menu.is-open {
    opacity: 1;
    transform: translateY(0);
  }
  .mobile-menu a {
    padding: 13px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--card);
    font-weight: 700;
  }
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 28px;
    padding-block: 64px 55px;
  }
  .hero-copy { max-width: 720px; }
  .hero h1 { font-size: clamp(48px, 10vw, 72px); }
  .hero-visual { min-height: 500px; }
  .hero-visual img { max-height: 560px; }
  .trust-section { grid-template-columns: repeat(2, 1fr); }
  .trust-item { padding: 20px; }
  .trust-item:nth-child(3) { border-inline-start: 0; border-top: 1px solid var(--line); }
  .trust-item:nth-child(4) { border-top: 1px solid var(--line); }
  .services-section { padding-block: 100px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: auto; }
  .service-card,
  .service-main,
  .service-image { grid-column: span 1; grid-row: auto; min-height: 290px; }
  .service-main { grid-column: span 2; min-height: 390px; }
  .why-grid { grid-template-columns: 1fr; }
  .why-title { position: static; }
  .cta-section { grid-template-columns: 1fr; }
  .cta-art { position: absolute; left: -8%; bottom: -16%; width: 44%; opacity: 0.56; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-intro { grid-column: span 2; }
}

@media (max-width: 600px) {
  :root { --header-height: 68px; --radius: 22px; }
  .shell { width: min(100% - 24px, 1380px); }
  .brand { font-size: 14px; }
  .brand-mark { width: 38px; height: 38px; border-radius: 12px; box-shadow: 3px 3px 0 var(--ink); }
  .language-link { display: none; }
  .nav-actions { gap: 7px; }
  .icon-button { width: 39px; height: 39px; border-radius: 12px; }
  .hero { gap: 10px; padding-block: 32px 18px; }
  .hero-kicker { margin-bottom: 16px; font-size: 12px; }
  .hero h1 { max-width: 100%; font-size: clamp(42px, 12vw, 56px); line-height: 1.18; overflow-wrap: anywhere; }
  .hero-lede { margin-top: 20px; font-size: 18px; }
  .hero-actions,
  .cta-actions { align-items: stretch; flex-direction: column; gap: 17px; margin-top: 26px; }
  .hero-actions .text-link,
  .cta-actions .text-link { align-self: flex-start; }
  .hero-visual { min-height: 265px; }
  .hero-visual::before { width: 88%; box-shadow: 9px 9px 0 var(--ink); }
  .hero-visual img { width: 100%; max-height: 285px; }
  .visual-note { padding: 6px 10px; font-size: 11px; }
  .note-top { top: 7%; }
  .note-bottom { bottom: 5%; }
  .trust-section { grid-template-columns: 1fr; }
  .trust-item { border-inline-start: 0; border-top: 1px solid var(--line); }
  .trust-item:first-child { border-top: 0; }
  .marquee { margin-top: 60px; }
  .services-section { padding-block: 88px; }
  .section-heading { margin-bottom: 40px; }
  .section-heading h2,
  .why-title h2,
  .cta-copy h2 { font-size: 42px; }
  .section-heading > span,
  .why-title > p,
  .cta-copy > p { font-size: 18px; }
  .services-grid { grid-template-columns: 1fr; gap: 14px; }
  .service-card,
  .service-main,
  .service-image { grid-column: 1; min-height: 270px; padding: 23px; box-shadow: 5px 5px 0 var(--ink); }
  .service-main { min-height: 340px; }
  .service-main h3 { font-size: 34px; }
  .service-image { background: var(--card); }
  .why-section { padding-block: 90px; }
  .why-grid { gap: 65px; }
  .value-item { gap: 12px; }
  .value-item h3 { font-size: 24px; }
  .cta-section { min-height: 590px; margin-block: 75px; padding: 42px 24px; box-shadow: 7px 7px 0 var(--ink); }
  .cta-art { width: 65%; opacity: 0.38; }
  .footer { padding-top: 60px; }
  .footer-grid { grid-template-columns: 1fr; gap: 42px; }
  .footer-intro { grid-column: 1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .footer-bottom div { flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .js .reveal,
  .js .hero-enter,
  .js .hero-visual-enter {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header {
    background: var(--paper);
    backdrop-filter: none;
  }
}
