:root {
  --ink: #0b0d10;
  --paper: #f4f6f8;
  --white: #ffffff;
  --blue: #0b63f6;
  --blue-deep: #064cca;
  --ice: #dfeaff;
  --muted: #606872;
  --pad: clamp(24px, 3vw, 60px);
  --display: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --body: Inter, "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.45;
  overflow-x: hidden;
}

body > main {
  flex: 1 0 auto;
  width: 100%;
  min-width: 0;
}

body > footer {
  flex-shrink: 0;
}

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

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

.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 1000;
  padding: 12px 16px;
  color: var(--white);
  background: var(--blue);
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 76px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 0 var(--pad);
  border-bottom: 0;
  background: rgba(244, 246, 248, 0.92);
  backdrop-filter: blur(14px);
  transition: min-height 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  min-height: 68px;
  box-shadow: 0 8px 24px rgba(20, 24, 30, 0.06);
}

.brand {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand-mark {
  width: 32px;
  height: 32px;
  display: block;
  overflow: hidden;
  background: var(--ink);
}

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

.brand-name {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 800;
  line-height: 0.93;
  letter-spacing: 0.02em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-nav a,
.header-contact {
  position: relative;
  font-size: 15px;
  font-weight: 650;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--blue);
  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-contact {
  justify-self: end;
  color: var(--blue);
}

.menu-toggle {
  display: none;
  justify-self: end;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.015fr) minmax(0, 0.985fr);
  align-items: stretch;
  padding-top: 76px;
}

.hero-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(56px, 7vw, 150px) var(--pad) clamp(40px, 3vw, 64px);
}

.hero h1 {
  max-width: 100%;
  margin: 0 0 24px;
  font-family: var(--display);
  font-size: clamp(54px, 4.8vw, 124px);
  font-weight: 800;
  line-height: 0.93;
  letter-spacing: -0.055em;
}

.hero h1 .accent,
.about h2 .accent {
  color: var(--blue);
  font-family: inherit;
  font-style: normal;
  font-weight: inherit;
}

.hero-lead {
  max-width: 580px;
  margin: 0;
  color: #343a43;
  font-size: clamp(18px, 1vw, 23px);
  line-height: 1.45;
}

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

.hero-actions .button {
  min-height: 48px;
  gap: 16px;
  padding-inline: 18px;
  font-size: 14px;
}

.button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  font-size: 15px;
  font-weight: 750;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

.button-primary {
  color: var(--white);
  border-color: var(--blue);
  background: var(--blue);
}

.button-primary:hover,
.button-primary:focus-visible {
  border-color: var(--blue-deep);
  background: var(--blue-deep);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  color: var(--white);
  background: var(--ink);
}

.hero-stage {
  position: relative;
  min-width: 0;
  aspect-ratio: 1000 / 710;
  overflow: hidden;
  background: #0861ff;
}

.hero-brand-art {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.project-preview:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 5px;
}

.section {
  padding: clamp(88px, 11vw, 176px) var(--pad);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(420px, 1.2fr) minmax(210px, 0.55fr);
  gap: 34px;
  align-items: end;
  margin-bottom: clamp(56px, 7vw, 104px);
}

.section-head h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(46px, 5.5vw, 90px);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.services {
  padding-inline: 0;
  padding-bottom: 0;
}

.services .section-head {
  padding-inline: var(--pad);
}

.service-atlas {
  min-height: clamp(600px, 47vw, 790px);
  display: grid;
  grid-template-columns: minmax(0, 1.85fr) minmax(440px, 1fr);
  gap: clamp(54px, 7vw, 140px);
  align-items: center;
  padding: clamp(72px, 8vw, 132px) var(--pad);
  color: var(--white);
  background:
    radial-gradient(circle at 74% 42%, rgba(24, 37, 51, 0.3), transparent 36%),
    #090d11;
}

.service-core {
  min-width: 0;
  display: grid;
  grid-template-columns: clamp(34px, 4vw, 72px) minmax(0, 1fr);
  gap: clamp(28px, 3.5vw, 58px);
  align-items: stretch;
}

.service-line {
  width: 100%;
  min-height: clamp(340px, 32vw, 500px);
  display: block;
  background: linear-gradient(180deg, #0871ff 0%, #0759e8 100%);
}

.service-core h3 {
  align-self: center;
  margin: 0;
  font: 800 clamp(72px, 8.7vw, 166px)/0.78 var(--display);
  letter-spacing: -0.07em;
}

.service-core h3 span {
  color: #0967f8;
}

.service-list {
  min-width: 0;
  display: grid;
  gap: clamp(23px, 2.4vw, 40px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-list li {
  position: relative;
  width: max-content;
  max-width: 100%;
  padding-left: clamp(24px, 2vw, 38px);
  color: #9da2aa;
  font-family: var(--display);
  font-size: clamp(30px, 3vw, 54px);
  font-weight: 750;
  line-height: 0.98;
  letter-spacing: -0.045em;
  transition: color 180ms ease;
}

.service-list li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: clamp(10px, 0.9vw, 16px);
  height: clamp(10px, 0.9vw, 16px);
  background: var(--blue);
  opacity: 0;
  transform: translateY(-50%) scale(0.7);
  transition: opacity 180ms ease, transform 180ms ease;
}

.service-list li:hover {
  color: var(--white);
}

.service-list li:hover::before {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

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

.text-link {
  width: max-content;
  justify-self: end;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-size: 14px;
  font-weight: 700;
}

.case-grid {
  display: grid;
  gap: clamp(70px, 9vw, 140px);
}

.cases-more {
  display: flex;
  justify-content: center;
  margin-top: clamp(64px, 8vw, 120px);
}

.cases-more .button {
  min-width: 240px;
  justify-content: center;
}

.case-card {
  display: grid;
  grid-template-columns: minmax(0, 1.48fr) minmax(280px, 0.52fr);
  gap: clamp(30px, 5vw, 78px);
  align-items: end;
}

.case-card:nth-child(even) {
  grid-template-columns: minmax(280px, 0.52fr) minmax(0, 1.48fr);
}

.case-card:nth-child(even) .case-visual {
  order: 2;
}

.case-visual {
  min-height: 500px;
  display: grid;
  place-items: center;
  padding: clamp(26px, 5vw, 76px);
  overflow: hidden;
}

.case-visual.project-preview,
.work-media.project-preview {
  min-height: 0;
  aspect-ratio: auto;
  align-self: center;
  padding: 0;
}

.case-visual.project-preview > img.project-image,
.work-media.project-preview > img.project-image {
  width: auto;
  max-width: 100%;
  height: auto;
  min-height: 0;
  display: block;
  object-fit: contain;
  object-position: center;
}

.project-northern-hosting { background: #dce4ff; }
.project-handle { background: #fff; }
.project-preview.project-handle {
  aspect-ratio: 1440 / 852;
  grid-template-rows: minmax(0, 1fr);
}
.project-prisma-studio { background: #dce8c8; }
.project-ironworld { background: #f1ded3; }

.case-info {
  display: grid;
  gap: 28px;
  padding-bottom: 10px;
}

.case-info h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(38px, 4vw, 64px);
  line-height: 0.9;
  letter-spacing: -0.05em;
}

.case-info p {
  max-width: 390px;
  margin: 0;
  color: #aeb3bb;
  font-size: 16px;
}

.section.process {
  padding: clamp(64px, 5vw, 88px) 0 0;
}

.process-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 40px;
  margin-bottom: clamp(40px, 3.5vw, 62px);
  padding-inline: var(--pad);
}

.process-head h2 {
  margin: 0;
  font: 400 clamp(64px, 7vw, 124px)/1.05 Impact, var(--display);
  letter-spacing: 0;
}

.process-head > p {
  margin: 0 0 6px;
  color: var(--ink);
  font-size: clamp(18px, 1.95vw, 34px);
  line-height: 1.2;
  letter-spacing: -0.035em;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(5, minmax(108px, auto));
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-steps li {
  grid-column: 2;
  min-width: 0;
  display: grid;
  grid-template-columns: clamp(42px, 4vw, 70px) minmax(0, 1fr);
  gap: clamp(18px, 2.4vw, 42px);
  align-items: center;
  padding-block: clamp(18px, 1.2vw, 22px);
  padding-inline: clamp(48px, 7.9vw, 140px) var(--pad);
}

.process-steps li > span {
  color: var(--ink);
  font: 400 clamp(60px, 4.6vw, 82px)/1 Impact, var(--display);
  letter-spacing: -0.04em;
}

.process-steps h3 {
  margin: 0;
  font: 800 clamp(26px, 2.3vw, 40px)/1.1 var(--display);
  letter-spacing: -0.035em;
}

.process-steps p {
  margin: 7px 0 0;
  color: #656477;
  font-size: clamp(16px, 1.5vw, 26px);
  line-height: 1.3;
  letter-spacing: -0.025em;
}

.process-steps .process-featured {
  grid-column: 1;
  grid-row: 1 / 6;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: end;
  padding: clamp(32px, 4.2vw, 74px);
  color: var(--white);
  background: #1260ff;
}

.process-steps .process-featured > span {
  width: max-content;
  align-self: center;
  color: inherit;
  font-family: Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(340px, 40vw, 700px);
  line-height: 0.72;
  letter-spacing: -0.16em;
}

.process-featured h3 {
  font-size: clamp(40px, 4.7vw, 82px);
}

.process-featured p {
  margin-top: 16px;
  color: inherit;
  font-size: clamp(18px, 1.85vw, 32px);
}

.about {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 9vw, 150px);
}

.about h2 {
  margin: 50px 0 0;
  font-family: var(--display);
  font-size: clamp(72px, 10vw, 170px);
  font-weight: 900;
  line-height: 0.75;
  letter-spacing: -0.075em;
}

.about h2 .accent {
  display: inline-block;
  margin-left: 12%;
  font-size: 0.7em;
}

.about-content {
  display: flex;
  flex-direction: column;
  padding-top: 28px;
}

.about-lead {
  margin: 0 0 28px;
  font-family: var(--display);
  font-size: clamp(30px, 3.1vw, 52px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
}

.about-content > p:not(.about-lead) {
  max-width: 590px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.official-note {
  position: relative;
  isolation: isolate;
  margin-top: auto;
  min-height: 430px;
  padding: 28px 30px 150px;
  overflow: hidden;
  color: var(--white);
  background: var(--blue);
}

.official-mark {
  position: absolute;
  z-index: -1;
  top: 58px;
  right: -74px;
  width: min(58%, 430px);
  height: auto;
  opacity: 0.13;
  mix-blend-mode: screen;
}

.official-message {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(170px, 0.6fr);
  gap: 30px;
  align-items: end;
  padding-top: 34px;
}

.official-message strong {
  font: 900 clamp(52px, 5.4vw, 88px)/0.78 var(--display);
  letter-spacing: -0.065em;
  text-transform: uppercase;
}

.official-message strong .accent-dark {
  color: var(--ink);
  font-family: inherit;
  font-style: normal;
  font-weight: inherit;
}

.official-proof {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(86%, 690px);
  padding: 22px 26px 24px;
  color: var(--white);
  background: var(--ink);
  box-shadow: -20px -20px 0 rgba(255, 255, 255, 0.2);
}

.official-proof strong {
  display: block;
  font: 900 clamp(27px, 2.8vw, 45px)/0.95 var(--display);
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.official-proof p {
  max-width: 610px;
  margin: 15px 0 0;
  color: #a7aeb8;
  font-size: 12px;
  line-height: 1.45;
}

.cta {
  position: relative;
  min-height: 660px;
  display: flex;
  flex-direction: column;
  padding: clamp(48px, 7vw, 104px) var(--pad);
  color: var(--white);
  background: var(--blue);
  overflow: hidden;
}

.cta::after {
  content: "";
  position: absolute;
  z-index: 0;
  right: -8%;
  bottom: -44%;
  width: min(62vw, 820px);
  aspect-ratio: 1;
  background: url("./anaya-logo.webp") center / contain no-repeat;
  mix-blend-mode: screen;
  opacity: 0.1;
}

.cta > * {
  position: relative;
  z-index: 1;
}

.cta h2 {
  margin: auto 0 32px;
  font-family: var(--display);
  font-size: clamp(70px, 10.8vw, 180px);
  font-weight: 900;
  line-height: 0.8;
  letter-spacing: -0.075em;
}

.cta h2 .accent {
  color: var(--ink);
  font-family: inherit;
  font-style: normal;
  font-weight: inherit;
}

.cta > p {
  max-width: 600px;
  margin: 0 0 38px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.cta-link {
  width: min(100%, 420px);
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  color: var(--ink);
  background: var(--white);
  font-weight: 800;
  margin-bottom: 20px;
  transition: transform 180ms ease, background 180ms ease;
}

.cta-link:hover,
.cta-link:focus-visible {
  transform: translateY(-3px);
  background: var(--ice);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 0.35fr 0.65fr;
  gap: 40px;
  padding: 76px var(--pad) 30px;
  color: var(--white);
  background: var(--ink);
}

.footer-brand {
  display: flex;
  align-items: flex-end;
  gap: clamp(14px, 2vw, 26px);
  font-family: var(--display);
  font-size: clamp(54px, 7vw, 110px);
  font-weight: 900;
  line-height: 0.72;
  letter-spacing: -0.07em;
}

.footer-brand img {
  width: clamp(72px, 7vw, 110px);
  height: clamp(72px, 7vw, 110px);
  display: block;
  flex: 0 0 auto;
}

.footer-brand > span { color: var(--white); }

.footer-nav,
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
}

.footer-nav a:hover,
.footer-contact a:hover { color: var(--blue); }

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 60px;
  padding-top: 20px;
  color: #8e949d;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-details {
  display: grid;
  gap: 8px;
  text-transform: none;
  letter-spacing: normal;
}

.cookie-settings {
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}
.cookie-settings:hover { color: var(--blue); }
.cookie-notice {
  position: fixed;
  z-index: 1100;
  right: 24px;
  bottom: 24px;
  left: 24px;
  max-width: 1000px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 24px;
  color: var(--white);
  background: #10161e;
  border: 1px solid #354154;
  border-top: 3px solid var(--blue);
  box-shadow: 0 16px 60px #0006;
  max-height: calc(100dvh - 48px);
  overflow-y: auto;
}
.cookie-notice[hidden] { display: none; }
.cookie-copy h2 { margin: 0 0 8px; font-size: 20px; line-height: 1.25; }
.cookie-copy p { margin: 0; color: #c6ccd5; font-size: 14px; line-height: 1.5; }
.cookie-copy a { color: white; text-decoration: underline; text-underline-offset: 3px; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-actions button {
  padding: 12px 18px;
  min-height: 44px;
  border: 1px solid #8190a5;
  color: white;
  background: transparent;
  font: inherit;
  font-size: 14px;
  cursor: pointer;
}
.cookie-actions [data-cookie-choice="accepted"] { background: var(--blue); border-color: var(--blue); }
.cookie-actions button:hover { border-color: white; }
.cookie-notice :focus-visible, .cookie-settings:focus-visible { outline: 2px solid #76aaff; outline-offset: 4px; }
@media (max-width: 700px) {
  .cookie-notice { inset: auto 12px 12px; padding: 20px; flex-direction: column; align-items: stretch; gap: 18px; }
  .cookie-actions button { flex: 1; }
}

.reveal {
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-pending {
  opacity: 0;
  transform: translateY(24px);
}

:focus-visible {
  outline: 3px solid #7aa8ff;
  outline-offset: 4px;
}

@media (max-width: 1120px) {
  .hero h1 { font-size: clamp(44px, 5.4vw, 62px); }
  .section-head { grid-template-columns: minmax(0, 1.15fr) minmax(240px, 0.85fr); }
  .text-link { grid-column: 2; justify-self: start; }
  .process-head { grid-template-columns: 1fr; gap: 24px; }

  .service-atlas {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 72px;
    padding: 78px var(--pad) 86px;
  }
  .service-core { grid-template-columns: 32px minmax(0, 1fr); gap: 26px; }
  .service-line { min-height: clamp(260px, 38vw, 390px); }
  .service-core h3 { font-size: clamp(68px, 12vw, 118px); }
  .service-list { padding-left: 58px; }
  .service-list li { font-size: clamp(32px, 5vw, 48px); }
}

@media (max-width: 840px) {
  .site-header {
    min-height: 68px;
    grid-template-columns: 1fr auto;
    padding-inline: 20px;
  }

  .header-contact { display: none; }

  .is-enhanced .menu-toggle {
    position: absolute;
    z-index: 2;
    top: 50%;
    right: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 0;
    cursor: pointer;
    color: var(--ink);
    border: 0;
    background: transparent;
    font: 700 13px var(--body);
    transform: translateY(-50%);
  }

  .menu-toggle i,
  .menu-toggle i::before {
    display: block;
    width: 22px;
    height: 2px;
    background: currentColor;
    transition: transform 180ms ease;
  }

  .menu-toggle i { position: relative; }
  .menu-toggle i::before { content: ""; position: absolute; top: 6px; }
  .menu-toggle[aria-expanded="true"] i { transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"] i::before { top: 0; transform: rotate(90deg); }

  .site-nav {
    position: absolute;
    top: 68px;
    left: 0;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 20px 24px;
    background: var(--paper);
    max-height: calc(100dvh - 68px);
    overflow-y: auto;
    box-shadow: 0 16px 24px #0b0d1014;
  }

  .site-nav.is-open { display: flex; }
  .site-header:not(.is-enhanced) { position: static; }
  .site-header:not(.is-enhanced) .site-nav {
    position: static;
    display: flex;
    grid-column: 1 / -1;
    padding-inline: 0;
  }
  .site-nav a { padding: 17px 0; font-size: 18px; }
  .site-nav a::after { display: none; }

  .hero {
    min-height: 0;
    grid-template-columns: minmax(0, 1fr);
    padding-top: 68px;
  }

  .hero-copy { min-height: 0; padding: 56px 22px; align-items: center; text-align: center; }
  .hero h1 { font-size: clamp(48px, 10vw, 76px); line-height: 1; }
  .hero-lead { max-width: 560px; }
  .hero-actions { width: 100%; max-width: 560px; justify-content: center; }
  .hero-actions .button { justify-content: center; min-height: 52px; }

  .section { padding: 90px 22px; }
  .section-head { grid-template-columns: 1fr; gap: 28px; margin-bottom: 55px; }
  .text-link { grid-column: auto; }

  .services { padding-inline: 0; padding-bottom: 0; }
  .services .section-head { padding-inline: 22px; }

  .process-head { padding-inline: 22px; }
  .process-head h2 { font-size: clamp(52px, 9vw, 76px); }
  .process-steps { grid-template-columns: 1fr; grid-template-rows: auto; gap: 8px; padding: 0; }
  .process-steps li { grid-column: 1; margin-inline: 22px; padding: 20px 0; }
  .process-steps .process-featured {
    grid-row: auto;
    grid-template-columns: auto minmax(0, 1fr);
    min-height: 400px;
    margin: 0 0 24px;
    padding: 36px 22px;
  }
  .process-steps .process-featured > span { font-size: clamp(320px, 55vw, 460px); }
  .process-featured h3 { font-size: clamp(42px, 7vw, 64px); }
  .process-featured p { font-size: clamp(18px, 3vw, 24px); }
  .process-steps li:last-child { padding-bottom: 0; }

  .service-atlas { padding-inline: 22px; }

  .case-card,
  .case-card:nth-child(even) { grid-template-columns: 1fr; gap: 28px; }
  .case-card:nth-child(even) .case-visual { order: 0; }
  .case-visual { min-height: 420px; padding: 44px 26px; }

  .about { grid-template-columns: minmax(0, 1fr); gap: 70px; }
  .about-content { min-height: 470px; }
  .site-footer { grid-template-columns: 1fr 1fr; padding-inline: 22px; }
  .footer-brand { grid-column: 1 / -1; margin-bottom: 50px; }
}

@media (max-width: 560px) {
  .hero-copy { padding: 44px 20px 48px; }
  .hero h1 { font-size: clamp(42px, 11.5vw, 64px); letter-spacing: -0.06em; margin-bottom: 24px; }
  .hero-lead { font-size: 17px; line-height: 1.55; text-wrap: pretty; }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .section { padding: 64px 20px; }
  .services { padding-inline: 0; padding-bottom: 0; }
  .section-head { margin-bottom: 36px; }

  .section-head h2 { font-size: clamp(42px, 13vw, 64px); }

  .service-atlas { gap: 56px; padding: 58px 22px 66px; }
  .service-core { grid-template-columns: 18px minmax(0, 1fr); gap: 18px; }
  .service-line { min-height: clamp(205px, 58vw, 290px); }
  .service-core h3 { font-size: clamp(44px, 14.5vw, 72px); }
  .service-list { gap: 24px; padding-left: 0; }
  .service-list li { padding-left: 22px; font-size: clamp(27px, 7.3vw, 40px); line-height: 1.08; }
  .case-visual { min-height: 300px; padding: 30px 16px; }
  .cases-more .button { width: 100%; }
  .case-info { gap: 20px; }

  .process-head { gap: 22px; margin-bottom: 32px; }
  .process-head h2 { font-size: clamp(46px, 12vw, 66px); }
  .process-steps li { grid-template-columns: 42px minmax(0, 1fr); gap: 20px; }
  .process-steps .process-featured { min-height: 240px; padding-block: 28px; grid-template-columns: 70px minmax(0, 1fr); }
  .process-steps .process-featured > span { font-size: 150px; letter-spacing: -0.1em; }
  .process-featured h3 { font-size: clamp(32px, 8vw, 42px); }
  .process-featured p { font-size: 17px; }

  .about h2 { font-size: clamp(66px, 20vw, 100px); }
  .about { gap: 32px; }
  .about h2 { margin-top: 0; }
  .about-content { padding-top: 0; min-height: 0; }
  .official-note { margin-top: 50px; min-height: 500px; padding: 22px 18px 180px; }
  .official-message { grid-template-columns: 1fr; gap: 24px; padding-top: 34px; }
  .official-message strong { font-size: clamp(32px, 10.5vw, 58px); }
  .official-mark { top: 140px; right: -56px; width: 76%; }
  .official-proof { width: calc(100% - 28px); padding: 20px 18px 22px; box-shadow: -14px -14px 0 rgba(255, 255, 255, 0.2); }
  .official-proof strong { font-size: clamp(26px, 8vw, 38px); }
  .cta { min-height: 440px; padding: 44px 20px; }
  .cta h2 { font-size: clamp(44px, 13vw, 70px); line-height: 0.98; }
  .cta > p { font-size: 16px; }
  .cta-link { min-height: 56px; justify-content: center; }

  .site-footer { grid-template-columns: 1fr; gap: 28px; padding: 48px 20px 28px; }
  .footer-brand { grid-column: auto; margin-bottom: 12px; font-size: clamp(48px, 13vw, 72px); }
  .footer-brand img { width: 64px; height: 64px; }
  .footer-nav { flex-direction: row; flex-wrap: wrap; gap: 0 24px; }
  .footer-nav a, .footer-contact > a { display: inline-flex; align-items: center; min-height: 44px; }
  .footer-contact { gap: 4px; }
  .footer-details { line-height: 1.6; }
  .footer-details a { padding-block: 10px; }
  .footer-bottom { grid-column: auto; margin-top: 20px; }
}

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