:root {
  --bg: #100718;
  --bg-soft: #1a0d25;
  --surface: rgba(34, 20, 45, 0.8);
  --surface-strong: #241532;
  --line: rgba(239, 184, 73, 0.22);
  --text: #fff8eb;
  --muted: #cdbfd5;
  --dim: #91839a;
  --green: #efb849;
  --gold: #f6d77a;
  --teal: #c89cff;
  --shadow: 0 24px 80px rgba(6, 1, 12, 0.55);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(121, 70, 168, 0.28), transparent 28rem),
    radial-gradient(circle at 86% 8%, rgba(239, 184, 73, 0.14), transparent 30rem),
    linear-gradient(180deg, #100718 0%, #160b21 40%, #0a0410 100%);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background-image:
    linear-gradient(rgba(239, 184, 73, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(197, 139, 255, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), transparent 72%);
}

body::after {
  position: fixed;
  top: 8vh;
  left: 10vw;
  z-index: -1;
  width: min(54rem, 72vw);
  aspect-ratio: 1;
  pointer-events: none;
  content: "";
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(239, 184, 73, 0.14), rgba(200, 156, 255, 0.08) 34%, transparent 68%);
  filter: blur(26px);
  opacity: 0.74;
  transform: translate3d(-32vw, 6vh, 0) scale(0.8);
  animation: ambientSpotlight 18s ease-in-out infinite;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(calc(100% - 40px), 1320px);
  margin: 18px auto 0;
  padding: 12px 14px 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(18, 8, 28, 0.68);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
  transition: border-color 220ms ease, background 220ms ease, transform 220ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(239, 184, 73, 0.24);
  background: rgba(18, 8, 28, 0.86);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(246, 215, 122, 0.28));
}

.brand strong,
.footer-brand span {
  display: block;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0;
  line-height: 1;
}

.brand small {
  display: none;
  max-width: 420px;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.25;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.primary-nav a {
  padding: 9px 8px;
  border-radius: 6px;
  color: #efe4f6;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  background: rgba(239, 184, 73, 0.12);
  color: var(--green);
  outline: none;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

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

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 760px;
  padding: 170px 0 76px;
}

.hero-media {
  position: absolute;
  inset: 94px 50% 0 50%;
  width: 100vw;
  margin-left: -50vw;
  overflow: hidden;
  border-bottom: 1px solid rgba(239, 184, 73, 0.15);
}

.hero-media::before,
.hero-media::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
}

.hero-media::before {
  background:
    linear-gradient(90deg, rgba(16, 7, 24, 0.96), rgba(16, 7, 24, 0.62) 37%, rgba(16, 7, 24, 0.18) 65%, rgba(16, 7, 24, 0.78)),
    linear-gradient(180deg, rgba(16, 7, 24, 0.22), rgba(16, 7, 24, 0.86));
}

.hero-media::after {
  background:
    radial-gradient(circle at 68% 48%, rgba(239, 184, 73, 0.22), transparent 30rem),
    linear-gradient(120deg, rgba(71, 25, 103, 0.58), rgba(239, 184, 73, 0.08));
  mix-blend-mode: screen;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: hue-rotate(24deg) saturate(0.82) contrast(1.08);
  transform: scale(1.05);
  animation: slowDrift 16s ease-in-out infinite alternate;
}

.hero-spotlight {
  position: absolute;
  top: 22%;
  left: 56%;
  z-index: 2;
  width: min(34rem, 54vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(246, 215, 122, 0.34), rgba(200, 156, 255, 0.15) 36%, transparent 70%);
  filter: blur(14px);
  mix-blend-mode: screen;
  opacity: 0.72;
  transform: translate3d(-50%, -45%, 0) scale(0.82);
  animation: heroSpotlight 13s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 700px;
}

.hero h1 {
  margin: 0;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(2.35rem, 4.85vw, 4.85rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
}

.services {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.5fr);
  gap: 48px;
  padding: 112px 0 92px;
}

.section-heading h2,
.about h2,
.picture-banner h2 {
  margin: 0;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0;
}

.section-heading p {
  margin: 16px 0 0;
  color: var(--muted);
}

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

.service-card {
  position: relative;
  min-height: 174px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    rgba(35, 20, 46, 0.7);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.service-card::after {
  position: absolute;
  inset: auto -28px -56px auto;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  content: "";
  background: radial-gradient(circle, rgba(239, 184, 73, 0.24), transparent 66%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(239, 184, 73, 0.38);
  background:
    linear-gradient(135deg, rgba(239, 184, 73, 0.14), rgba(255, 255, 255, 0.025)),
    rgba(35, 20, 46, 0.86);
}

.service-card:hover::after {
  opacity: 1;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 30px;
  border-radius: 8px;
  color: var(--green);
  background: rgba(239, 184, 73, 0.1);
}

.service-icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card strong {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 250px;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1.18rem;
  line-height: 1.15;
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 60px;
  align-items: center;
  padding: 86px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.about-copy {
  max-width: 750px;
}

.about-copy h2 {
  margin-bottom: 28px;
  color: var(--green);
}

.about-copy p,
.pillar p {
  color: #dfd3e7;
  font-size: 1rem;
}

.about-visual {
  position: relative;
  display: grid;
  gap: 14px;
}

.about-visual img {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: var(--shadow);
  filter: saturate(1.12) contrast(1.05);
}

.about-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(16, 7, 24, 0.18), rgba(16, 7, 24, 0.7)),
    radial-gradient(circle at 72% 22%, rgba(239, 184, 73, 0.18), transparent 18rem);
}

.big-picture {
  padding: 70px 0 98px;
}

.picture-banner {
  min-height: 230px;
  display: flex;
  align-items: end;
  padding: 34px;
  border: 1px solid rgba(239, 184, 73, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(16, 7, 24, 0.88), rgba(16, 7, 24, 0.24)),
    url("assets/original-hero-road-track.jpg") center / cover;
  box-shadow: var(--shadow);
}

.picture-banner h2 {
  max-width: 650px;
}

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

.pillar {
  padding: 28px;
  border-top: 2px solid var(--green);
  border-radius: 0 0 8px 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
  box-shadow: var(--shadow);
}

.pillar:nth-child(2) {
  border-top-color: var(--gold);
}

.pillar:nth-child(3) {
  border-top-color: var(--teal);
}

.pillar h3 {
  min-height: 58px;
  margin: 0 0 20px;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1.45rem;
  line-height: 1.12;
}

.partners {
  padding: 66px 0 146px;
}

.partners .section-heading {
  text-align: center;
}

.partners-frame {
  width: min(920px, 100%);
  margin: 34px auto 0;
  padding: 16px;
  border: 1px solid rgba(239, 184, 73, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
}

.partners-frame img {
  width: 100%;
  border-radius: 5px;
}

.partners-frame img + img {
  margin-top: 12px;
}

.page-hero {
  position: relative;
  padding: 178px 0 82px;
  overflow: hidden;
}

.page-hero::before {
  position: absolute;
  inset: 96px 50% 0 50%;
  width: 100vw;
  margin-left: -50vw;
  content: "";
  background:
    linear-gradient(90deg, rgba(16, 7, 24, 0.95), rgba(34, 14, 48, 0.62), rgba(16, 7, 24, 0.9)),
    url("assets/hero-motion-graphic.png") center / cover;
  opacity: 0.72;
  filter: hue-rotate(24deg) saturate(0.82);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.72fr);
  gap: 52px;
  align-items: end;
}

.page-hero h1 {
  margin: 0;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(2.6rem, 6vw, 5.8rem);
  line-height: 0.96;
}

.page-hero p {
  margin: 24px 0 0;
  max-width: 720px;
  color: #d4ddcf;
  font-size: 1.08rem;
}

.service-summary {
  padding: 24px;
  border: 1px solid rgba(239, 184, 73, 0.2);
  border-radius: 8px;
  background: rgba(28, 15, 39, 0.78);
  box-shadow: var(--shadow);
}

.service-summary strong {
  display: block;
  color: var(--green);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1.1rem;
}

.service-summary ul {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  color: #dfd3e7;
}

.service-summary li {
  position: relative;
  padding-left: 20px;
}

.service-summary li::before {
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  content: "";
  background: var(--gold);
}

.case-section {
  padding: 84px 0 128px;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.service-gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 14px;
  margin: 34px 0 42px;
}

.service-gallery figure {
  position: relative;
  min-height: 210px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(239, 184, 73, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow);
}

.service-gallery figure:first-child {
  grid-row: span 2;
}

.service-gallery img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.03);
}

.service-gallery .poster-fit {
  display: grid;
  place-items: center;
  grid-row: auto;
  align-self: start;
  min-height: 210px;
  padding: 22px;
  background:
    radial-gradient(circle at 50% 35%, rgba(239, 184, 73, 0.12), transparent 18rem),
    rgba(22, 9, 32, 0.82);
}

.service-gallery .poster-fit img {
  width: auto;
  height: auto;
  max-width: min(100%, 240px);
  max-height: 180px;
  min-height: 0;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 18px 50px rgba(6, 1, 12, 0.42);
}

.service-gallery figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 8px 10px;
  border: 1px solid rgba(239, 184, 73, 0.18);
  border-radius: 6px;
  background: rgba(16, 7, 24, 0.78);
  color: #fff1cf;
  font-size: 0.78rem;
  font-weight: 700;
  backdrop-filter: blur(12px);
}

.case-card {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(31, 17, 43, 0.78);
  box-shadow: var(--shadow);
}

.case-card h2 {
  margin: 0 0 18px;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2.35rem);
  line-height: 1.05;
}

.case-meta {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  padding: 14px;
  border-left: 2px solid var(--green);
  background: rgba(239, 184, 73, 0.06);
  color: #fff1cf;
  font-size: 0.9rem;
}

.case-card p {
  margin: 0;
  color: #dfd3e7;
}

.case-card p + p {
  margin-top: 12px;
}

.video-section {
  margin-top: 56px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.video-embed {
  overflow: hidden;
  border: 1px solid rgba(239, 184, 73, 0.2);
  border-radius: 8px;
  background: rgba(22, 9, 32, 0.82);
  box-shadow: var(--shadow);
}

.video-embed iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.youtube-lite {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #160920;
}

.youtube-lite img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
  transition: transform 220ms ease, opacity 220ms ease;
}

.youtube-lite span {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 68px;
  height: 48px;
  border: 1px solid rgba(239, 184, 73, 0.48);
  border-radius: 8px;
  background: rgba(16, 7, 24, 0.78);
  color: var(--gold);
  font-size: 0;
  transform: translate(-50%, -50%);
  backdrop-filter: blur(10px);
}

.youtube-lite span::before {
  width: 0;
  height: 0;
  margin-left: 4px;
  content: "";
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 17px solid currentColor;
}

.youtube-lite:hover img,
.youtube-lite:focus-visible img {
  opacity: 1;
  transform: scale(1.04);
}

.video-embed figcaption {
  padding: 12px 14px;
  color: #fff1cf;
  font-size: 0.86rem;
  font-weight: 800;
}

.contact-section {
  padding: 84px 0 128px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: 48px;
  align-items: start;
}

.contact-copy h2 {
  margin: 0 0 18px;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1;
}

.contact-copy p {
  color: #dfd3e7;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 28px;
  border: 1px solid rgba(239, 184, 73, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(31, 17, 43, 0.84);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #fff1cf;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(239, 184, 73, 0.2);
  border-radius: 6px;
  background: rgba(16, 7, 24, 0.78);
  color: var(--text);
  font: inherit;
  padding: 12px 13px;
  outline: none;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(246, 215, 122, 0.72);
  box-shadow: 0 0 0 3px rgba(239, 184, 73, 0.12);
}

.form-button {
  justify-self: start;
  min-height: 46px;
  border: 1px solid rgba(239, 184, 73, 0.42);
  border-radius: 6px;
  background: linear-gradient(135deg, var(--green), var(--gold));
  color: #1b1025;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  padding: 0 18px;
}

.form-button:hover,
.form-button:focus-visible {
  filter: brightness(1.05);
}

.form-status {
  padding: 12px 14px;
  border: 1px solid rgba(239, 184, 73, 0.24);
  border-radius: 6px;
  background: rgba(239, 184, 73, 0.1);
  color: #fff1cf;
  font-weight: 800;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.local-next {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 42px;
}

.local-next a {
  padding: 10px 13px;
  border: 1px solid rgba(239, 184, 73, 0.2);
  border-radius: 6px;
  color: #dce5d7;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.local-next a:hover,
.local-next a:focus-visible {
  background: rgba(239, 184, 73, 0.12);
  color: var(--green);
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #0a0410;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 36px 0;
}

.footer-brand img {
  width: 36px;
}

.site-footer p {
  max-width: 650px;
  margin: 0;
  color: var(--dim);
  font-size: 0.85rem;
  text-align: right;
}

.site-footer a {
  color: var(--green);
}

.reveal {
  opacity: 1;
  transform: translateY(0);
}

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

@keyframes ambientSpotlight {
  0% {
    transform: translate3d(-32vw, 6vh, 0) scale(0.8);
  }

  38% {
    transform: translate3d(28vw, 18vh, 0) scale(1.05);
  }

  68% {
    transform: translate3d(50vw, -4vh, 0) scale(0.92);
  }

  100% {
    transform: translate3d(-18vw, 34vh, 0) scale(1);
  }
}

@keyframes slowDrift {
  to {
    transform: scale(1.1) translate3d(-1.6%, -1.2%, 0);
  }
}

@keyframes heroSpotlight {
  0% {
    transform: translate3d(-50%, -45%, 0) scale(0.82);
  }

  35% {
    transform: translate3d(-74%, -18%, 0) scale(1.05);
  }

  70% {
    transform: translate3d(-34%, 4%, 0) scale(0.92);
  }

  100% {
    transform: translate3d(-58%, -50%, 0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .primary-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding-top: 10px;
  }

  .primary-nav.is-open {
    display: flex;
  }

  .services,
  .about,
  .page-hero-inner,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .about-visual {
    max-width: 620px;
  }

  .pillar-grid {
    grid-template-columns: 1fr;
  }

  .case-grid {
    grid-template-columns: 1fr;
  }

  .video-grid {
    grid-template-columns: 1fr;
  }

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

  .pillar h3 {
    min-height: 0;
  }
}

@media (max-width: 700px) {
  .site-header,
  .section-shell,
  .footer-inner {
    width: min(calc(100% - 28px), var(--max));
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 680px;
    padding-top: 145px;
  }

  .hero h1 {
    font-size: clamp(2rem, 9.2vw, 2.85rem);
  }

  .hero-media {
    top: 80px;
  }

  .services,
  .about,
  .big-picture,
  .partners,
  .case-section,
  .contact-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .page-hero {
    padding-top: 138px;
    padding-bottom: 56px;
  }

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

  .about-visual img {
    min-height: 260px;
  }

  .picture-banner {
    min-height: 190px;
    padding: 24px;
  }

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

  .service-gallery figure,
  .service-gallery figure:first-child {
    grid-row: auto;
    min-height: 230px;
  }

  .footer-inner {
    display: block;
  }

  .site-footer p {
    margin-top: 20px;
    text-align: left;
  }
}
