:root {
  --red: #c62026;
  --red-dark: #9f171b;
  --ink: #171717;
  --text: #30323a;
  --muted: #686d76;
  --line: #e4e7eb;
  --soft: #f5f6f8;
  --paper: #ffffff;
  --dark: #101114;
  --shadow: 0 18px 45px rgba(16, 17, 20, 0.08);
  --radius: 8px;
  --container: 1160px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 40;
  transform: translateY(-160%);
  border-radius: 6px;
  background: var(--dark);
  color: var(--paper);
  padding: 10px 14px;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(228, 231, 235, 0.95);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 218px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--red);
  content: "";
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-phone {
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px 14px;
  color: var(--ink);
  font-weight: 900;
}

.header-phone:hover,
.header-phone:focus-visible {
  border-color: var(--red);
  color: var(--red-dark);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  color: var(--ink);
}

.nav-toggle-line {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero-slider {
  position: relative;
  height: 690px;
  min-height: 690px;
  overflow: hidden;
  background: var(--dark);
}

.hero-slides,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  visibility: hidden;
  transition: opacity 700ms ease, visibility 700ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 17, 20, 0.82) 0%, rgba(16, 17, 20, 0.62) 42%, rgba(16, 17, 20, 0.24) 100%),
    linear-gradient(0deg, rgba(16, 17, 20, 0.5), rgba(16, 17, 20, 0.08));
}

.hero-slide-content {
  position: relative;
  z-index: 2;
  display: flex;
  height: 100%;
  min-height: 0;
  flex-direction: column;
  justify-content: center;
  padding: 88px 0 112px;
  color: var(--paper);
}

.hero-slide-content h1,
.hero-slide-content h2 {
  max-width: 820px;
  margin: 0 0 22px;
  color: var(--paper);
  font-size: 60px;
  line-height: 1.06;
}

.hero-slide-content p:not(.eyebrow) {
  max-width: 680px;
  margin: 0 0 34px;
  color: #eef1f4;
  font-size: 21px;
}

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

.hero-slider-controls {
  position: absolute;
  left: 50%;
  bottom: 26px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 16px;
  transform: translateX(-50%);
}

.slider-arrow,
.slider-dot {
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
  color: var(--paper);
}

.slider-arrow {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 28px;
  line-height: 1;
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 34px;
  height: 10px;
  border-radius: 999px;
  padding: 0;
}

.slider-dot.is-active,
.slider-arrow:hover,
.slider-arrow:focus-visible,
.slider-dot:hover,
.slider-dot:focus-visible {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--ink);
}

.page-hero {
  border-bottom: 1px solid var(--line);
  background: var(--soft);
}

.page-hero-inner {
  padding: 82px 0 76px;
}

.page-hero h1 {
  max-width: 880px;
  margin-bottom: 20px;
}

.page-hero p:not(.section-kicker) {
  max-width: 720px;
  margin: 0;
  color: #4f5661;
  font-size: 20px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--red-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-slide-content .eyebrow,
.contact .section-kicker {
  color: #ffb2b5;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  line-height: 1.12;
}

h1 {
  font-size: 52px;
}

h2 {
  margin-bottom: 18px;
  font-size: 38px;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
}

.section {
  padding: 86px 0;
}

.two-column,
.why-layout,
.contact-layout,
.cta-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: start;
}

.content-block {
  color: #3f444d;
  font-size: 18px;
}

.content-block p:last-child,
.section-heading p:last-child,
.contact-copy p:last-child {
  margin-bottom: 0;
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
  color: var(--red-dark);
  font-weight: 900;
}

.text-link::after {
  margin-left: 8px;
  content: "→";
}

.services,
.workflow,
.projects {
  background: var(--soft);
}

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

.section-heading p {
  color: #4f5661;
  font-size: 18px;
}

.section-action {
  margin-top: 28px;
}

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

.service-grid.compact .service-card {
  min-height: 214px;
}

.service-card {
  min-height: 236px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 24px;
  box-shadow: 0 1px 0 rgba(16, 17, 20, 0.03);
}

.service-card.large-card {
  min-height: 318px;
}

.service-card h2 {
  font-size: 25px;
}

.service-icon {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border: 1px solid rgba(198, 32, 38, 0.28);
  border-radius: 6px;
  background: rgba(198, 32, 38, 0.06);
  color: var(--red-dark);
}

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

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.why {
  background: var(--paper);
}

.quality-list {
  display: grid;
  gap: 12px;
}

.quality-item {
  border-left: 4px solid var(--red);
  border-radius: var(--radius);
  background: var(--soft);
  padding: 18px 20px;
}

.quality-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
}

.quality-item span {
  color: var(--muted);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.timeline article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 22px;
}

.timeline span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--red);
  color: var(--paper);
  font-weight: 900;
}

.timeline p {
  margin-bottom: 0;
  color: var(--muted);
}

.cta-band {
  background: var(--dark);
  color: #e7e9ee;
}

.cta-band h2,
.cta-band .section-kicker {
  color: var(--paper);
}

.cta-band .section-kicker {
  color: #ffb2b5;
}

.cta-band p {
  max-width: 700px;
  color: #c9ced7;
  font-size: 18px;
}

.cta-layout {
  align-items: center;
}

.cta-layout .btn {
  justify-self: end;
}

.filter-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.filter-chip {
  border: 1px solid #cfd4dc;
  border-radius: 999px;
  background: var(--paper);
  padding: 10px 15px;
  color: var(--ink);
  font-weight: 800;
}

.filter-chip span {
  display: inline-flex;
  min-width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  margin-left: 6px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--muted);
  font-size: 13px;
}

.filter-chip.is-active,
.filter-chip:hover,
.filter-chip:focus-visible {
  border-color: var(--red);
  background: var(--red);
  color: var(--paper);
}

.filter-chip.is-active span,
.filter-chip:hover span,
.filter-chip:focus-visible span {
  background: rgba(255, 255, 255, 0.18);
  color: var(--paper);
}

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

.project-card {
  position: relative;
  min-height: 0;
  overflow: hidden;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 1px 0 rgba(16, 17, 20, 0.03);
}

.project-card[hidden] {
  display: none;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.project-card:hover img,
.project-card:focus-visible img {
  transform: scale(1.035);
}

.project-card-meta {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  gap: 3px;
  padding: 42px 16px 16px;
  background: linear-gradient(180deg, rgba(16, 17, 20, 0), rgba(16, 17, 20, 0.82));
  color: var(--paper);
}

.project-card-meta span {
  color: #f0b4b6;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.project-card-meta strong {
  color: var(--paper);
  font-size: 16px;
}

.is-lightbox-open {
  overflow: hidden;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 14px;
  background: rgba(16, 17, 20, 0.92);
  padding: 22px;
  color: var(--paper);
}

.lightbox[hidden] {
  display: none;
}

.lightbox-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.lightbox-caption,
.lightbox-counter {
  margin: 0;
  color: #e6e9ef;
  font-weight: 900;
}

.lightbox-counter {
  text-align: center;
  font-size: 14px;
}

.lightbox-stage {
  position: relative;
  display: grid;
  min-height: 0;
  place-items: center;
}

.lightbox-image {
  width: auto;
  max-width: min(100%, 1180px);
  max-height: calc(100vh - 158px);
  border-radius: var(--radius);
  object-fit: contain;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.42);
}

.lightbox-button {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--paper);
  font-size: 30px;
  line-height: 1;
}

.lightbox-button:hover,
.lightbox-button:focus-visible {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--ink);
}

.lightbox-close {
  flex: 0 0 auto;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-prev {
  left: 18px;
}

.lightbox-next {
  right: 18px;
}

.project-empty {
  border: 1px dashed #c9ced7;
  border-radius: var(--radius);
  background: var(--paper);
  padding: 34px;
}

.project-empty h2 {
  font-size: 28px;
}

.project-empty p {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
}

.contact {
  min-height: calc(100vh - 82px);
  border-top: 1px solid var(--line);
  background: var(--dark);
  color: #e7e9ee;
}

.contact h1,
.contact h2 {
  color: var(--paper);
}

.contact-copy p {
  color: #c9ced7;
  font-size: 18px;
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.contact-methods a,
.contact-methods address {
  display: block;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.04);
  font-style: normal;
}

.contact-methods a:hover,
.contact-methods a:focus-visible {
  border-color: rgba(255, 255, 255, 0.42);
}

.contact-methods span {
  display: block;
  margin-bottom: 4px;
  color: #aeb5c0;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-methods strong {
  color: var(--paper);
}

.contact-form {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 28px;
  color: var(--text);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  gap: 7px;
  margin-bottom: 18px;
}

.form-row-hidden {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-row label,
.checkbox-row {
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid #cfd4dc;
  border-radius: 6px;
  background: var(--paper);
  padding: 12px 13px;
  color: var(--ink);
}

.form-row input[type="file"] {
  padding: 10px 13px;
}

.form-row textarea {
  resize: vertical;
}

.captcha-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 48px;
  gap: 10px;
}

.captcha-refresh {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid #cfd4dc;
  border-radius: 6px;
  background: var(--paper);
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}

.captcha-refresh:hover,
.captcha-refresh:focus-visible {
  border-color: var(--red);
  color: var(--red-dark);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus,
.checkbox-row input:focus-visible {
  border-color: var(--red);
  outline: 3px solid rgba(198, 32, 38, 0.16);
}

.checkbox-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  margin: 4px 0 20px;
  font-weight: 700;
  line-height: 1.45;
}

.checkbox-row input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--red);
}

.checkbox-row a {
  color: var(--red-dark);
  font-weight: 900;
}

.form-submit {
  width: 100%;
}

.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--red-dark);
  font-weight: 800;
}

.form-status.is-success {
  color: #137a3a;
}

.form-status.is-error {
  color: var(--red-dark);
}

.form-submit:disabled {
  opacity: 0.68;
  cursor: wait;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 12px 20px;
  font-weight: 900;
  line-height: 1.2;
}

.btn-primary {
  background: var(--red);
  color: var(--paper);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--red-dark);
}

.btn-light {
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
}

.btn-light:hover,
.btn-light:focus-visible {
  border-color: var(--paper);
  background: var(--paper);
}

.site-footer {
  background: #f0f2f4;
  color: #464b54;
}

.footer-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.8fr;
  gap: 36px;
  padding: 46px 0 30px;
}

.footer-brand img {
  width: 240px;
  margin-bottom: 16px;
}

.ai-note {
  max-width: 520px;
  color: #6b727d;
  font-size: 13px;
  line-height: 1.5;
}

.footer-layout h2 {
  margin-bottom: 12px;
  font-size: 16px;
  text-transform: uppercase;
}

.footer-layout a {
  display: block;
  width: fit-content;
  margin-bottom: 7px;
  color: var(--ink);
  font-weight: 800;
}

.footer-layout a:hover,
.footer-layout a:focus-visible {
  color: var(--red-dark);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid #d8dde3;
  padding: 18px 0 26px;
  color: #626873;
  font-size: 14px;
}

.legal-page {
  background: var(--soft);
}

.legal-main {
  padding: 72px 0 88px;
}

.legal-card {
  max-width: 860px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 34px;
  box-shadow: var(--shadow);
}

.legal-card h1 {
  font-size: 40px;
}

.legal-card h2 {
  margin-top: 30px;
  font-size: 24px;
}

.legal-card a {
  color: var(--red-dark);
  font-weight: 800;
}

.social-rail {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 35;
  transform: translateY(-50%);
}

.social-rail-link {
  display: flex;
  min-height: 52px;
  align-items: center;
  gap: 10px;
  transform: translateX(calc(100% - 54px));
  border: 1px solid rgba(16, 17, 20, 0.12);
  border-right: 0;
  border-radius: 8px 0 0 8px;
  background: var(--paper);
  padding: 9px 15px 9px 9px;
  color: var(--ink);
  box-shadow: var(--shadow);
  transition: transform 180ms ease, border-color 180ms ease;
}

.social-rail-link:hover,
.social-rail-link:focus-visible {
  transform: translateX(0);
  border-color: rgba(198, 32, 38, 0.42);
}

.social-rail-icon {
  display: inline-flex;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: var(--red);
  color: var(--paper);
  font-size: 13px;
  font-weight: 900;
}

.social-rail-text {
  font-weight: 900;
  white-space: nowrap;
}

.cookie-banner {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 50;
  padding: 16px;
  background: rgba(16, 17, 20, 0.78);
  backdrop-filter: blur(12px);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner-inner {
  display: flex;
  width: min(calc(100% - 32px), var(--container));
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 16px 18px;
  color: var(--text);
  box-shadow: var(--shadow);
}

.cookie-banner-inner p {
  max-width: 760px;
  margin: 0;
}

.cookie-banner-inner a {
  color: var(--red-dark);
  font-weight: 900;
}

.cookie-accept {
  flex: 0 0 auto;
}

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

@media (max-width: 1080px) {
  .header-inner {
    min-height: 76px;
  }

  .brand img {
    width: 184px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    padding: 8px 20px 18px;
  }

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

  .site-nav a {
    border-bottom: 1px solid var(--line);
    padding: 13px 0;
  }

  .site-nav a::after {
    display: none;
  }

  .header-phone {
    display: none;
  }

  .hero-slider {
    height: 620px;
    min-height: 620px;
  }

  .hero-slide-content {
    height: 100%;
    min-height: 0;
  }

  .hero-slide-content h1,
  .hero-slide-content h2 {
    font-size: 48px;
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 32px;
  }

  .service-grid,
  .timeline,
  .two-column,
  .why-layout,
  .contact-layout,
  .cta-layout,
  .footer-layout {
    grid-template-columns: 1fr;
  }

  .two-column,
  .why-layout,
  .contact-layout,
  .cta-layout {
    gap: 32px;
  }

  .service-grid {
    gap: 14px;
  }

  .service-card.large-card,
  .service-grid.compact .service-card {
    min-height: auto;
  }

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

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

  .cta-layout .btn {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .brand img {
    width: 156px;
  }

  .hero-slider {
    height: 600px;
    min-height: 600px;
  }

  .hero-slide-content {
    height: 100%;
    min-height: 0;
  }

  .hero-slide-content {
    justify-content: flex-end;
    padding: 70px 0 98px;
  }

  .hero-slide-content h1,
  .hero-slide-content h2 {
    font-size: 34px;
    line-height: 1.08;
  }

  .hero-slide-content p:not(.eyebrow) {
    margin-bottom: 24px;
    font-size: 17px;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(16, 17, 20, 0.2) 0%, rgba(16, 17, 20, 0.76) 48%, rgba(16, 17, 20, 0.9) 100%),
      linear-gradient(90deg, rgba(16, 17, 20, 0.54), rgba(16, 17, 20, 0.2));
  }

  .hero-slide:nth-child(1) .hero-media {
    object-position: 58% center;
  }

  .hero-slide:nth-child(2) .hero-media {
    object-position: 55% center;
  }

  .hero-slide:nth-child(3) .hero-media {
    object-position: 50% center;
  }

  .hero-slide:nth-child(4) .hero-media {
    object-position: 48% center;
  }

  .hero-slide:nth-child(5) .hero-media,
  .hero-slide:nth-child(6) .hero-media {
    object-position: 60% center;
  }

  .hero-actions,
  .footer-bottom {
    flex-direction: column;
  }

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

  .slider-arrow {
    width: 40px;
    height: 40px;
  }

  .hero-slider-controls {
    gap: 10px;
  }

  .slider-dots {
    gap: 6px;
  }

  .slider-dot {
    width: 22px;
    height: 9px;
  }

  .section {
    padding: 62px 0;
  }

  .page-hero-inner {
    padding: 58px 0 56px;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 29px;
  }

  .page-hero p:not(.section-kicker),
  .content-block,
  .section-heading p,
  .contact-copy p,
  .cta-band p {
    font-size: 17px;
  }

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

  .project-gallery {
    gap: 10px;
  }

  .project-card-meta {
    padding: 34px 10px 10px;
  }

  .project-card-meta span {
    font-size: 10px;
  }

  .project-card-meta strong {
    font-size: 13px;
  }

  .lightbox {
    gap: 10px;
    padding: 12px;
  }

  .lightbox-image {
    max-height: calc(100vh - 140px);
  }

  .lightbox-caption {
    font-size: 14px;
  }

  .lightbox-button {
    width: 42px;
    height: 42px;
    font-size: 26px;
  }

  .lightbox-prev {
    left: 8px;
  }

  .lightbox-next {
    right: 8px;
  }

  .contact-form,
  .legal-card,
  .project-empty {
    padding: 22px;
  }

  .social-rail {
    top: auto;
    right: 14px;
    bottom: 14px;
    transform: none;
  }

  .social-rail-link {
    width: 48px;
    min-height: 48px;
    justify-content: center;
    transform: none;
    border: 1px solid rgba(16, 17, 20, 0.12);
    border-radius: 50%;
    padding: 0;
  }

  .social-rail-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
  }

  .social-rail-text {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
  }

  .cookie-banner {
    padding: 12px;
  }

  .cookie-banner-inner {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
  }

  .cookie-accept {
    width: 100%;
  }
}
