:root {
  --page-bg: #0d0d0f;
  --panel-dark: #121214;
  --panel-light: #f3efec;
  --panel-soft: #19191c;
  --card-dark: #1d1d20;
  --card-light: rgba(255, 255, 255, 0.72);
  --text-strong: #f7f1ea;
  --text-dark: #111111;
  --text-muted: #a3a0a0;
  --text-soft: #6d6767;
  --accent: #ff7c64;
  --accent-strong: #ff684b;
  --accent-pale: #ffd2c9;
  --line-dark: rgba(255, 255, 255, 0.08);
  --line-light: rgba(17, 17, 17, 0.08);
  --shadow-deep: 0 30px 80px rgba(0, 0, 0, 0.35);
  --shadow-card: 0 18px 42px rgba(16, 16, 18, 0.12);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --content-width: 1180px;
  --header-height: 82px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: Outfit, sans-serif;
  background:
    radial-gradient(
      circle at top left,
      rgba(255, 124, 100, 0.08),
      transparent 22%
    ),
    linear-gradient(180deg, #0c0c0e 0%, #111113 45%, #0a0a0b 100%);
  color: var(--text-strong);
  line-height: 1.5;
}

main > section,
.contact-footer {
  scroll-margin-top: var(--header-height);
}

main > section {
  display: flex;
  align-items: center;
  min-height: 100svh;
}

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

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

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

.shell {
  width: min(var(--content-width), calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(10, 10, 11, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition:
    background-color 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease;
}

.site-header.is-scrolled {
  background: rgba(10, 10, 11, 0.92);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 82px;
}

.header-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text-strong);
  transition:
    transform 0.24s ease,
    opacity 0.24s ease;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

body.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: Sora, sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.08em;
}

.brand img {
  width: 26px;
  height: 26px;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
}

.main-nav a {
  position: relative;
  font-size: 13px;
  color: rgba(247, 241, 234, 0.72);
  transition: color 0.2s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffc26b, #ff7c64);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.24s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.active {
  color: var(--text-strong);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 600;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    color 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  color: #1a0e0a;
  background: linear-gradient(135deg, #ffb06c 0%, #ff7c64 52%, #ff6a4e 100%);
  box-shadow: 0 14px 30px rgba(255, 106, 78, 0.22);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 18px 36px rgba(255, 106, 78, 0.28);
}

.btn-secondary {
  color: var(--text-strong);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.18);
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(24, 24, 27, 0.92);
  color: var(--text-strong);
  font-size: 22px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
  cursor: pointer;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  background: rgba(255, 124, 100, 0.16);
  border-color: rgba(255, 124, 100, 0.32);
}

.panel-dark {
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.015),
      rgba(255, 255, 255, 0.01)
    ),
    var(--panel-dark);
  color: var(--text-strong);
}

.panel-light {
  background:
    radial-gradient(
      circle at top center,
      rgba(255, 124, 100, 0.08),
      transparent 24%
    ),
    var(--panel-light);
  color: var(--text-dark);
}

.hero-panel,
.story-band,
.solutions-panel,
.approach-panel,
.contact-panel,
.contact-footer {
  position: relative;
}

.hero-panel {
  padding: 42px 0 64px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.94fr);
  align-items: center;
  gap: 56px;
  padding: 48px 0 60px;
}

.hero-copy {
  max-width: 580px;
}

.eyebrow-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  margin-bottom: 24px;
  border-radius: 999px;
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.04);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(247, 241, 234, 0.8);
}

.eyebrow-chip::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffc26b, #ff7c64);
  box-shadow: 0 0 18px rgba(255, 124, 100, 0.55);
}

h1,
h2,
.approach-list h3,
footer h3,
.service-card h3 {
  font-family: Sora, sans-serif;
}

h1 {
  font-size: clamp(3rem, 6vw, 5.25rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

h1 span {
  display: block;
  margin-top: 8px;
  background: linear-gradient(
    135deg,
    #ffc16a 0%,
    #ff8c73 32%,
    #ff6f58 75%,
    #ff866f 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text {
  margin-top: 28px;
  max-width: 520px;
  font-size: 19px;
  color: rgba(247, 241, 234, 0.7);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-visual {
  position: relative;
  min-height: 560px;
}

.visual-frame {
  position: absolute;
  inset: 14px 0 78px 24px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  border-radius: 22px;
  background:
    radial-gradient(
      circle at 50% 70%,
      rgba(255, 124, 100, 0.14),
      transparent 28%
    ),
    radial-gradient(
      circle at 20% 20%,
      rgba(255, 255, 255, 0.05),
      transparent 26%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.015) 0%,
      rgba(255, 255, 255, 0.02) 100%
    ),
    #0d0d0f;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-deep);
}

.visual-frame::before,
.visual-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.visual-frame::before {
  background:
    linear-gradient(
      90deg,
      transparent 0%,
      rgba(255, 255, 255, 0.035) 48%,
      transparent 100%
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 36%);
  opacity: 0.55;
}

.visual-frame::after {
  background:
    radial-gradient(
      circle at 50% 72%,
      rgba(255, 124, 100, 0.28),
      transparent 22%
    ),
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.18) 100%);
  opacity: 0.8;
}

.wave-stage {
  position: absolute;
  inset: 0 -12% -14%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 1;
}

.wave-stage::before {
  content: "";
  position: absolute;
  inset: auto 6% 6% 6%;
  height: 42%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 124, 100, 0.42),
    transparent 70%
  );
  filter: blur(32px);
  opacity: 0.95;
}

.wave-stage::after {
  content: "";
  position: absolute;
  inset: 6% 12% auto;
  height: 28%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1),
    transparent 72%
  );
  filter: blur(18px);
}

.wave-graphic {
  position: relative;
  z-index: 1;
  width: 124%;
  height: 118%;
  flex: 0 0 auto;
  filter: drop-shadow(0 18px 50px rgba(255, 106, 78, 0.18));
}

.wave-layer {
  transform-box: fill-box;
  transform-origin: center;
  will-change: transform, opacity;
}

.wave-layer-back {
  animation: waveDriftBack 14s ease-in-out infinite alternate;
}

.wave-layer-mid {
  animation: waveDriftMid 12s ease-in-out infinite alternate;
}

.wave-layer-front {
  animation: waveDriftFront 10s ease-in-out infinite alternate;
}

.wave-layer-top {
  animation: waveDriftTop 9s ease-in-out infinite alternate;
}

@keyframes waveDriftBack {
  0% {
    transform: translateX(-4px) translateY(4px) scaleY(1);
  }

  100% {
    transform: translateX(6px) translateY(-3px) scaleY(1.04);
  }
}

@keyframes waveDriftMid {
  0% {
    transform: translateX(6px) translateY(2px) scaleY(1);
  }

  100% {
    transform: translateX(-8px) translateY(-4px) scaleY(1.05);
  }
}

@keyframes waveDriftFront {
  0% {
    transform: translateX(-10px) translateY(1px) scaleY(1);
  }

  100% {
    transform: translateX(10px) translateY(-5px) scaleY(1.06);
  }
}

@keyframes waveDriftTop {
  0% {
    transform: translateX(4px) translateY(0) scaleY(1);
    opacity: 0.35;
  }

  100% {
    transform: translateX(-6px) translateY(-4px) scaleY(1.08);
    opacity: 0.5;
  }
}

.metric-card {
  position: absolute;
  left: 0;
  bottom: 38px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  min-width: 210px;
  border-radius: var(--radius-md);
  background: rgba(34, 34, 36, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.metric-icon,
.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 9px;
  background: rgba(255, 124, 100, 0.16);
  color: var(--accent);
  font-size: 14px;
}

.metric-card small {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(247, 241, 234, 0.56);
}

.metric-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.metric-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-strong);
}

.story-band {
  padding: 42px 0 86px;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 64px;
  align-items: start;
  padding: 56px 0 10px;
}

.section-label {
  margin-bottom: 16px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-strong);
}

.section-label-dark {
  color: #ff9a7d;
}

h2 {
  font-size: clamp(2.25rem, 4vw, 3.7rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.story-copy {
  color: rgba(247, 241, 234, 0.72);
}

.panel-light .section-label,
.panel-light .section-label-dark {
  color: var(--accent-strong);
}

.panel-light h2,
.panel-light .approach-list h3,
.panel-light .stats-row strong {
  color: var(--text-dark);
}

.panel-light .story-copy,
.panel-light .approach-list p,
.panel-light .cta-card p {
  color: var(--text-soft);
}

.story-copy p + p {
  margin-top: 20px;
}

.stats-row {
  display: flex;
  gap: 70px;
  margin-top: 34px;
}

.stats-row strong {
  display: block;
  font-family: Sora, sans-serif;
  font-size: 2rem;
  line-height: 1;
  color: var(--text-strong);
}

.stats-row span {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--accent-strong);
}

.solutions-panel {
  padding: 88px 0 94px;
  background:
    radial-gradient(
      circle at top center,
      rgba(255, 124, 100, 0.12),
      transparent 24%
    ),
    var(--panel-dark);
  color: var(--text-strong);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 44px;
}

.section-heading.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-heading.center h2 {
  max-width: 640px;
  margin: 0 auto;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  padding: 30px 28px 26px;
  min-height: 286px;
  border-radius: 18px;
  border: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.75);
  box-shadow: var(--shadow-card);
}

.solutions-panel .service-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.service-card h3 {
  margin-top: 28px;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.service-card p {
  margin-top: 14px;
  color: var(--text-soft);
}

.solutions-panel .service-card h3 {
  color: var(--text-strong);
}

.solutions-panel .service-card p {
  color: rgba(247, 241, 234, 0.68);
}

.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  color: var(--accent-strong);
  font-weight: 500;
}

.solutions-panel .service-card a {
  color: var(--accent-pale);
}

.service-card a::after {
  content: "\2192";
  transition: transform 0.2s ease;
}

.service-card:hover a::after,
.service-card:focus-within a::after {
  transform: translateX(4px);
}

.approach-panel {
  padding: 96px 0 76px;
}

.approach-panel {
  background:
    radial-gradient(
      circle at top left,
      rgba(255, 124, 100, 0.08),
      transparent 18%
    ),
    linear-gradient(180deg, #f5f0ec 0%, #efe9e3 100%);
}

.approach-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 54px;
  align-items: center;
}

.mosaic-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.mosaic-card {
  position: relative;
  overflow: hidden;
  min-height: 188px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.26);
}

.panel-light .mosaic-card {
  border: 1px solid rgba(17, 17, 17, 0.08);
}

.mosaic-card span {
  position: absolute;
  left: 20px;
  bottom: 18px;
  font-family: Sora, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.mosaic-card::before,
.mosaic-card::after {
  content: "";
  position: absolute;
}

.mosaic-a {
  background:
    linear-gradient(180deg, rgba(120, 231, 224, 0.28), rgba(38, 164, 177, 0.1)),
    #17363a;
}

.mosaic-a::before {
  inset: 28px 24px auto auto;
  width: 82px;
  height: 82px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow:
    -110px 42px 0 -12px rgba(255, 255, 255, 0.08),
    -56px 82px 0 -28px rgba(255, 255, 255, 0.1);
}

.mosaic-a::after {
  inset: auto 22px 20px auto;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.18),
    transparent 65%
  );
}

.mosaic-b {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(33, 33, 36, 0.3)),
    #222326;
}

.mosaic-b::before {
  left: 50%;
  top: 50%;
  width: 74px;
  height: 110px;
  transform: translate(-50%, -50%);
  border-radius: 8px;
  background: linear-gradient(180deg, #eff0e8, #74756f);
  box-shadow: inset 0 0 0 14px rgba(20, 20, 22, 0.45);
}

.mosaic-b::after {
  left: calc(50% - 10px);
  top: calc(50% - 18px);
  width: 20px;
  height: 36px;
  transform: translate(-50%, -50%);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  background: rgba(24, 24, 26, 0.8);
}

.mosaic-c {
  background:
    radial-gradient(
      circle at 50% 25%,
      rgba(255, 204, 123, 0.24),
      transparent 40%
    ),
    #21373b;
}

.mosaic-c::before {
  left: 50%;
  top: 50%;
  width: 76px;
  height: 104px;
  transform: translate(-50%, -50%);
  border-radius: 28px 28px 18px 18px;
  background:
    radial-gradient(
      circle at 50% 24%,
      rgba(255, 231, 183, 0.9) 0 16px,
      transparent 17px
    ),
    linear-gradient(180deg, #e5a252 0%, #775935 100%);
}

.mosaic-c::after {
  left: 50%;
  top: 26px;
  width: 84px;
  height: 84px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.16),
    transparent 66%
  );
}

.mosaic-d {
  background:
    linear-gradient(180deg, rgba(255, 184, 79, 0.2), rgba(222, 124, 0, 0.14)),
    #7d4704;
}

.mosaic-d::before {
  left: 50%;
  top: 48%;
  width: 96px;
  height: 120px;
  transform: translate(-50%, -50%);
  border-radius: 18px 18px 28px 28px;
  background:
    radial-gradient(
      circle at 50% 32%,
      rgba(255, 255, 255, 0.92) 0 16px,
      transparent 17px
    ),
    linear-gradient(180deg, #f9ece1 0%, #e4ccb1 32%, #a9691a 100%);
}

.mosaic-d::after {
  left: 50%;
  top: 22px;
  width: 44px;
  height: 28px;
  transform: translateX(-50%);
  border: 8px solid rgba(255, 233, 194, 0.72);
  border-bottom: 0;
  border-radius: 20px 20px 0 0;
}

.approach-copy h2 {
  max-width: 520px;
}

.approach-list {
  display: grid;
  gap: 22px;
  margin-top: 28px;
}

.approach-list article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
}

.approach-list article > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-pale);
}

.panel-light .approach-list article > span {
  border: 1px solid rgba(17, 17, 17, 0.1);
  background: rgba(17, 17, 17, 0.04);
  color: var(--accent-strong);
}

.approach-list h3 {
  font-size: 1.18rem;
  letter-spacing: -0.03em;
}

.approach-list p {
  margin-top: 8px;
  color: rgba(247, 241, 234, 0.68);
}

.contact-panel {
  align-items: stretch;
  min-height: 100svh;
  padding: 36px 0 0;
}

.contact-stack {
  display: flex;
  flex-direction: column;
  gap: 40px;
  min-height: calc(100svh - 36px);
}

.cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 54px 60px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.06),
      rgba(255, 255, 255, 0.02)
    ),
    #1b1b1d;
  box-shadow: var(--shadow-deep);
}

.cta-card h2 {
  max-width: 520px;
}

.cta-card p {
  max-width: 560px;
  margin-top: 14px;
  color: rgba(247, 241, 234, 0.7);
}

.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.contact-footer {
  margin-top: auto;
  padding: 28px 0 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.95fr 1fr;
  gap: 34px;
  align-items: start;
  color: rgba(247, 241, 234, 0.68);
}

.footer-brand {
  margin-bottom: 18px;
}

.footer-brand-block p {
  max-width: 290px;
}

.footer-grid h3 {
  margin-bottom: 14px;
  font-size: 0.98rem;
  color: var(--text-strong);
}

.footer-grid ul {
  list-style: none;
}

.footer-grid li,
.footer-grid p {
  margin-bottom: 9px;
  font-size: 14px;
}

.footer-grid a {
  transition: color 0.2s ease;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: var(--accent-pale);
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-strong);
  font-size: 13px;
  font-weight: 600;
}

.footer-bottom {
  grid-column: 1 / -1;
  margin-top: 8px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 12px;
  color: rgba(247, 241, 234, 0.4);
}

@media (max-width: 1100px) {
  .header-inner,
  .hero-grid,
  .story-grid,
  .approach-grid,
  .cta-card,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .main-nav {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .hero-grid {
    gap: 34px;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-visual {
    min-height: 480px;
  }

  .visual-frame {
    inset: 0 0 74px;
  }

  .metric-card {
    left: 20px;
  }

  .metric-tags span {
    min-height: 30px;
    font-size: 12px;
  }

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

  .story-grid,
  .approach-grid {
    gap: 36px;
  }

  .cta-card {
    padding: 44px;
  }

  main > section {
    min-height: auto;
  }

  .contact-panel {
    min-height: 100svh;
  }

  .contact-stack {
    min-height: calc(100svh - 36px);
  }
}

@media (max-width: 720px) {
  .shell {
    width: min(var(--content-width), calc(100% - 24px));
  }

  html {
    scroll-padding-top: 0;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
    gap: 14px;
    min-height: 76px;
    padding: 14px 0;
    position: relative;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .header-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    background: rgba(15, 15, 18, 0.96);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition:
      opacity 0.2s ease,
      transform 0.2s ease;
  }

  body.menu-open .header-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .main-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .main-nav a::after {
    bottom: -6px;
  }

  .hero-panel {
    padding-top: 8px;
  }

  .hero-grid,
  .story-grid,
  .approach-grid {
    padding-top: 18px;
  }

  h1 {
    font-size: clamp(2.7rem, 14vw, 4rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero-text,
  .story-copy,
  .approach-list p,
  .cta-card p {
    font-size: 16px;
  }

  .hero-visual {
    min-height: 390px;
  }

  .visual-frame {
    inset: 0 0 66px;
  }

  .metric-card {
    left: 12px;
    right: 12px;
    min-width: 0;
  }

  .stats-row {
    gap: 32px;
    flex-wrap: wrap;
  }

  .service-grid,
  .mosaic-grid {
    grid-template-columns: 1fr;
  }

  .mosaic-card {
    min-height: 170px;
  }

  .approach-list article {
    grid-template-columns: 1fr;
  }

  .cta-card {
    padding: 32px 22px;
  }

  .contact-stack {
    gap: 28px;
  }

  .contact-panel {
    min-height: 100svh;
  }

  .contact-stack {
    min-height: calc(100svh - 36px);
  }

  .cta-actions,
  .hero-actions {
    width: 100%;
  }

  .cta-actions .btn,
  .hero-actions .btn {
    flex: 1 1 180px;
  }

  .back-to-top {
    right: 16px;
    bottom: 16px;
    width: 48px;
    height: 48px;
  }
}
