:root {
  --wood: #241e1c;
  --wood-dark: #121317;
  --panel: rgba(25, 25, 29, 0.91);
  --panel-soft: #24252b;
  --white: #f5f3f0;
  --muted: #aaa8a6;
  --coral: #f05457;
  --coral-bright: #ff6868;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 32px 80px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--white);
  font-family: Inter, Arial, sans-serif;
  background:
    radial-gradient(circle at 70% 5%, rgba(90, 108, 90, 0.16), transparent 19rem),
    linear-gradient(180deg, rgba(16, 15, 16, 0.18), rgba(12, 13, 16, 0.94)),
    repeating-linear-gradient(92deg, transparent 0 2px, rgba(0, 0, 0, 0.12) 3px, transparent 5px 72px),
    repeating-linear-gradient(3deg, #382f2b 0 2px, #403630 4px, #2b2523 5px, #342c29 80px);
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background: radial-gradient(circle at center, transparent 35%, rgba(0, 0, 0, 0.34));
}

body.is-loading {
  overflow: hidden;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-content: center;
  gap: 38px;
  background:
    radial-gradient(circle at 50% 48%, rgba(240, 84, 87, 0.1), transparent 34%),
    #121216;
  opacity: 1;
  visibility: visible;
  transition: opacity 460ms ease, visibility 460ms ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-brand {
  min-width: 315px;
}

.loader-brand p {
  margin: 0;
  color: var(--white);
  font-size: clamp(42px, 8vw, 64px);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1;
}

.loader-brand span {
  display: block;
  margin-top: 10px;
  color: var(--coral);
  font-size: clamp(15px, 3vw, 20px);
  font-weight: 700;
  letter-spacing: 0.3em;
}

.loader-line {
  position: relative;
  width: 100%;
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.09);
}

.loader-line span {
  position: absolute;
  inset: 0;
  background: var(--coral);
  transform: translateX(-100%);
  animation: loading-line 1050ms cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

@keyframes loading-line {
  to {
    transform: translateX(0);
  }
}

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

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

button {
  cursor: pointer;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}

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

main section[id] {
  scroll-margin-top: 94px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  padding: 22px 0;
  background: rgba(27, 23, 22, 0.58);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
}

.navigation {
  display: flex;
  align-items: center;
  gap: 44px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  color: #fff;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 37px;
  font-style: italic;
  font-weight: 600;
  line-height: 0.72;
  white-space: nowrap;
}

.brand span {
  align-self: flex-end;
  margin-right: -5px;
  color: var(--coral);
  font-family: Inter, sans-serif;
  font-size: 9px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.27em;
  text-transform: uppercase;
}

.brand-local {
  font-family: Inter, Arial, sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.92;
}

.brand-local span {
  margin-top: 6px;
  margin-right: 0;
  font-size: 10px;
}

.nav-links {
  display: flex;
  gap: 32px;
  margin-right: auto;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  padding: 9px 0;
  color: #d2ceca;
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--coral);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.nav-links a:is(:hover, .active)::after {
  transform: scaleX(1);
}

.nav-contact,
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 47px;
  padding: 0 25px;
  border: 1px solid var(--coral);
  border-radius: 3px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.nav-contact {
  flex-shrink: 0;
  white-space: nowrap;
}

.language-switcher {
  position: relative;
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  height: 45px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 3px;
  color: #ddd8d4;
  background: rgba(255, 255, 255, 0.025);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  transition: border-color 180ms ease, background 180ms ease;
}

.language-toggle:hover,
.language-switcher.open .language-toggle {
  border-color: rgba(240, 84, 87, 0.65);
  background: rgba(240, 84, 87, 0.08);
}

.globe {
  color: var(--coral);
  font-size: 19px;
  line-height: 1;
}

.language-arrow {
  width: 7px;
  height: 7px;
  border-right: 1px solid #bdb8b4;
  border-bottom: 1px solid #bdb8b4;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 180ms ease;
}

.language-switcher.open .language-arrow {
  transform: rotate(225deg) translateY(-2px);
}

.language-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 20;
  display: none;
  width: 176px;
  overflow: hidden;
  border: 1px solid #36353a;
  background: #1d1d22;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.38);
}

.language-switcher.open .language-menu {
  display: block;
}

.language-menu button {
  display: flex;
  gap: 14px;
  align-items: center;
  width: 100%;
  padding: 13px 15px;
  border: 0;
  color: #cfcbc8;
  background: transparent;
  font-size: 13px;
  text-align: left;
}

.language-menu button:hover,
.language-menu button.selected {
  color: #fff;
  background: rgba(240, 84, 87, 0.14);
}

.language-menu strong {
  color: var(--coral);
  font-size: 11px;
  letter-spacing: 0.12em;
}

.nav-contact:hover,
.button-primary {
  background: var(--coral);
}

.nav-contact:hover,
.button:hover {
  transform: translateY(-2px);
}

.button-primary:hover {
  background: var(--coral-bright);
  border-color: var(--coral-bright);
}

.button-outline:hover {
  background: rgba(240, 84, 87, 0.12);
}

.menu-toggle {
  display: none;
  margin-left: auto;
  border: 0;
  background: none;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 2px;
  margin: 7px 0;
  background: #fff;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(480px, 1fr) 275px;
  gap: 34px;
  align-items: end;
  padding: 58px 0 70px;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  padding: 58px 52px 46px;
  min-height: 590px;
  background:
    linear-gradient(100deg, rgba(22, 22, 25, 0.96) 15%, rgba(23, 23, 26, 0.76)),
    radial-gradient(circle at 90% 22%, rgba(240, 84, 87, 0.19), transparent 35%),
    #24252a;
  box-shadow: var(--shadow);
}

.hero-panel::after {
  content: "";
  position: absolute;
  right: -110px;
  bottom: -125px;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(240, 84, 87, 0.2);
  border-radius: 50%;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

h1 {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 0 0 22px;
  font-size: clamp(46px, 5.1vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.065em;
  text-transform: uppercase;
}

h1 span {
  color: var(--coral);
}

.hero-copy {
  max-width: 440px;
  margin: 0 0 20px;
  color: #c4c1bf;
  font-size: 16px;
}

.launch-offer {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 560px;
  margin: 0 0 25px;
  padding: 13px 15px;
  border: 1px solid rgba(240, 84, 87, 0.42);
  color: #ddd8d4;
  background: rgba(240, 84, 87, 0.07);
  font-size: 14px;
}

.launch-offer span {
  flex-shrink: 0;
  padding: 5px 8px;
  color: #fff;
  background: var(--coral);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-bottom: 38px;
}

.hero-numbers {
  position: relative;
  display: flex;
  gap: 26px;
  margin: 0;
}

.hero-numbers div:not(:last-child) {
  padding-right: 26px;
  border-right: 1px solid var(--line);
}

.hero-numbers dt {
  margin-bottom: 8px;
  color: var(--coral);
  font-size: 18px;
  font-weight: 700;
}

.hero-numbers dd {
  max-width: 165px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.brief-card {
  margin-bottom: 48px;
  padding: 33px 28px;
  background: rgba(26, 26, 30, 0.89);
  border-top: 3px solid var(--coral);
  box-shadow: var(--shadow);
}

.brief-label {
  color: var(--coral);
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.brief-card h2 {
  margin: 12px 0;
  font-size: 29px;
}

.brief-card p:not(.brief-label) {
  margin-bottom: 29px;
  color: var(--muted);
  font-size: 14px;
}

.brief-card a {
  color: var(--coral);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.audience-card {
  margin-bottom: 20px;
  padding: 58px 66px;
  background: rgba(20, 20, 24, 0.92);
  box-shadow: var(--shadow);
}

.audience-card .section-heading {
  margin-bottom: 34px;
}

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

.audience-grid article {
  min-height: 148px;
  padding: 25px 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.018);
}

.audience-grid article::before {
  content: "+";
  color: var(--coral);
  font-weight: 700;
}

.audience-grid h3 {
  margin: 14px 0 8px;
  color: var(--white);
  font-size: 17px;
}

.audience-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.germany-offer {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) 295px;
  gap: 46px;
  align-items: center;
  margin-bottom: 20px;
  padding: 52px 66px;
  border: 1px solid rgba(240, 84, 87, 0.35);
  background:
    radial-gradient(circle at 78% 40%, rgba(240, 84, 87, 0.12), transparent 32%),
    rgba(21, 21, 25, 0.94);
  box-shadow: var(--shadow);
}

.germany-copy h2 {
  max-width: 650px;
  margin: 0 0 17px;
  font-size: clamp(29px, 3.4vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.05em;
}

.germany-text {
  max-width: 590px;
  margin: 0 0 29px;
  color: var(--muted);
  font-size: 15px;
}

.germany-deal {
  padding: 29px 27px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}

.germany-deal-label {
  margin: 0 0 11px;
  color: var(--coral);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.germany-deal-price {
  margin: 0 0 18px;
  color: var(--white);
  font-size: 32px;
  font-weight: 700;
}

.germany-deal ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
  color: #cbc7c5;
  font-size: 13px;
  list-style: none;
}

.germany-deal li::before {
  content: "+";
  margin-right: 10px;
  color: var(--coral);
  font-weight: 700;
}

.studio-card {
  padding: 66px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.section-heading {
  max-width: 550px;
  margin-bottom: 42px;
}

.section-heading h2,
.contact-content h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.05em;
}

.section-copy {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 15px;
}

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

.price-card {
  position: relative;
  padding: 29px 27px;
  border: 1px solid var(--line);
  transition: border-color 180ms ease, background 180ms ease;
}

.price-card:hover,
.price-card.featured {
  border-color: rgba(240, 84, 87, 0.6);
  background: rgba(255, 255, 255, 0.025);
}

.price-card.featured::before {
  content: attr(data-badge);
  position: absolute;
  top: -13px;
  right: 20px;
  padding: 5px 12px;
  color: #fff;
  background: var(--coral);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price-label {
  margin: 0;
  color: var(--coral);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price-card h3 {
  margin: 18px 0 8px;
  font-size: 20px;
}

.price-card .price {
  margin: 0 0 17px;
  color: var(--white);
  font-size: 30px;
  font-weight: 700;
}

.price-card > p:not(.price-label):not(.price) {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 14px;
}

.price-card ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 20px 0 0;
  border-top: 1px solid var(--line);
  color: #cbc7c5;
  font-size: 13px;
  list-style: none;
}

.price-card li::before {
  content: "+";
  margin-right: 9px;
  color: var(--coral);
  font-weight: 700;
}

.pricing-note {
  margin: 38px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.turnkey-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(360px, 1.1fr);
  gap: 42px;
  margin-top: 48px;
  padding: 44px;
  border: 1px solid rgba(240, 84, 87, 0.34);
  background:
    radial-gradient(circle at 0% 35%, rgba(240, 84, 87, 0.14), transparent 43%),
    rgba(255, 255, 255, 0.018);
}

.turnkey-intro h3 {
  max-width: 430px;
  margin: 13px 0 14px;
  color: var(--white);
  font-size: clamp(25px, 3vw, 31px);
  line-height: 1.16;
}

.turnkey-copy {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.turnkey-action {
  display: inline-flex;
}

.turnkey-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 26px;
  margin: 0;
  padding: 4px 0 0;
  list-style: none;
}

.turnkey-features li {
  display: flex;
  align-items: center;
  min-height: 61px;
  border-bottom: 1px solid var(--line);
  color: var(--white);
  font-size: 14px;
}

.turnkey-features li::before {
  content: "+";
  margin-right: 14px;
  color: var(--coral);
  font-weight: 700;
}

.ads-ready-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(360px, 1.1fr);
  gap: 42px;
  margin-top: 18px;
  padding: 38px 44px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.012);
}

.ads-ready-heading h3 {
  margin: 13px 0 14px;
  color: var(--white);
  font-size: clamp(23px, 2.5vw, 28px);
  line-height: 1.18;
}

.ads-ready-copy {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.ads-ready-features {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ads-ready-features li {
  display: flex;
  align-items: center;
  min-height: 51px;
  border-bottom: 1px solid var(--line);
  color: var(--white);
  font-size: 14px;
}

.ads-ready-features li:last-child {
  border-bottom: 0;
}

.ads-ready-features li::before {
  content: "+";
  margin-right: 14px;
  color: var(--coral);
  font-weight: 700;
}

.portfolio-section {
  width: min(1240px, calc(100% - 20px));
  margin: 0 auto;
  padding: 82px 0 88px;
  color: #211f20;
  background: #ddd9d4;
}

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

.portfolio-section .eyebrow {
  color: #9a5750;
}

.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 0 0 40px;
}

.filter-buttons button {
  padding: 9px 22px;
  color: #555156;
  background: transparent;
  border: 1px solid #999393;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.filter-buttons button.selected,
.filter-buttons button:hover {
  color: #fff;
  background: var(--coral);
  border-color: var(--coral);
}

.projects {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 560px;
  gap: 18px;
  max-width: 820px;
  margin: 0 auto;
}

.project {
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 25px;
  color: white;
  background: #38383a;
  transition: opacity 200ms ease, transform 200ms ease;
}

.project::before {
  content: "";
  position: absolute;
  inset: 0;
  transition: transform 350ms ease;
}

.project.is-hidden {
  display: none;
}

.project-real::before {
  z-index: 1;
  background: linear-gradient(0deg, rgba(13, 14, 18, 0.96), rgba(13, 14, 18, 0) 53%);
}

.project-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 350ms ease;
}

.project-real:hover .project-image {
  transform: scale(1.035);
}

.project-body {
  position: relative;
  z-index: 2;
}

.project-body p {
  margin: 0 0 7px;
  color: var(--coral);
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.project-body h3 {
  margin: 0 0 4px;
  font-size: 23px;
}

.project-body span {
  display: block;
  color: #bbb8b6;
  font-size: 13px;
}

.project-link {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  padding: 9px 15px;
  border: 1px solid rgba(240, 84, 87, 0.75);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease;
}

.project-link:hover {
  background: var(--coral);
  border-color: var(--coral);
}

.process {
  padding: 84px 66px;
  background: rgba(23, 23, 27, 0.93);
}

.process ol {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.process li {
  display: flex;
  flex-direction: column;
  padding-top: 25px;
  border-top: 1px solid var(--line);
  counter-increment: step;
}

.process li::before {
  content: "0" counter(step);
  margin-bottom: 26px;
  color: var(--coral);
  font-weight: 700;
}

.process strong {
  margin-bottom: 9px;
  font-size: 18px;
}

.process span {
  color: var(--muted);
  font-size: 14px;
}

.contact-section {
  padding: 88px 0 100px;
  background: rgba(13, 14, 17, 0.92);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 68px;
}

.contact-content > p:not(.eyebrow) {
  margin: 25px 0 37px;
  color: var(--muted);
}

.contact-placeholder {
  max-width: 280px;
  padding: 19px 21px;
  border-left: 2px solid var(--coral);
  color: #cbc7c5;
  font-size: 14px;
}

.telegram-link {
  display: block;
  margin-top: 13px;
  color: var(--coral);
  font-size: 17px;
  font-weight: 700;
}

.telegram-link:hover {
  color: var(--coral-bright);
}

.order-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 19px;
}

.order-form label {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.order-form label span {
  color: #979393;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.order-form :is(input, select, textarea) {
  width: 100%;
  padding: 15px 17px;
  background: #23242a;
  border: 1px solid #363840;
  border-radius: 2px;
  outline: none;
}

.order-form :is(input, select, textarea):focus {
  border-color: var(--coral);
}

.order-form textarea {
  resize: vertical;
}

.wide {
  grid-column: 1 / -1;
}

.order-form .button {
  margin-top: 9px;
}

.order-form .button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--coral);
  font-size: 14px;
}

.form-note {
  margin: 0;
  color: #817e7d;
  font-size: 12px;
}

.site-footer {
  padding: 35px 0;
  background: #101116;
  border-top: 1px solid #202126;
}

.site-footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.site-footer .brand {
  font-size: 31px;
}

.site-footer .brand-local {
  font-size: 20px;
}

.site-footer p {
  color: var(--muted);
  font-size: 13px;
}

.consent-banner {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 30;
  width: min(430px, calc(100% - 32px));
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(25, 25, 30, 0.97);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

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

.consent-title {
  margin: 0 0 9px;
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
}

.consent-text {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.consent-actions {
  display: flex;
  gap: 10px;
  margin-top: 19px;
}

.consent-actions .button {
  flex: 1;
  min-height: 46px;
  padding: 12px 16px;
}

.consent-reject {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--white);
}

.consent-reject:hover {
  border-color: var(--accent);
}

.footer-socials {
  display: flex;
  gap: 10px;
  align-items: center;
}

.footer-socials a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: #d4d0cd;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.footer-socials a:hover {
  color: #fff;
  border-color: var(--coral);
  background: var(--coral);
}

.footer-socials svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.desk-effects {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.cup {
  position: absolute;
  top: 232px;
  right: max(calc((100vw - 1220px) / 2), -85px);
  width: 180px;
  height: 180px;
  border: 10px solid #bcb9b4;
  border-radius: 50%;
  background: radial-gradient(circle, #171516 68%, #272126 69% 100%);
  box-shadow: -10px 13px 28px rgba(0, 0, 0, 0.36);
  opacity: 0.42;
}

.cup span {
  position: absolute;
  right: -33px;
  bottom: 10px;
  width: 45px;
  height: 64px;
  border: 9px solid #bcb9b4;
  border-left: 0;
  border-radius: 0 36px 36px 0;
}

.leaf {
  position: absolute;
  top: -35px;
  right: 18%;
  width: 54px;
  height: 115px;
  border-radius: 100% 0 100% 0;
  background: rgba(88, 120, 101, 0.62);
  transform: rotate(27deg);
  filter: blur(0.5px);
}

.leaf-one::before,
.leaf-one::after,
.leaf-two::before {
  content: "";
  position: absolute;
  width: 48px;
  height: 94px;
  border-radius: 100% 0 100% 0;
  background: rgba(82, 112, 92, 0.57);
}

.leaf-one::before {
  top: 50px;
  left: -51px;
  transform: rotate(-69deg);
}

.leaf-one::after {
  top: 85px;
  left: 22px;
  transform: rotate(32deg);
}

.leaf-two {
  top: 3px;
  right: calc(18% + 95px);
  transform: scale(0.72) rotate(-38deg);
}

@media (max-width: 950px) {
  .site-header {
    padding: 17px 0;
  }

  .navigation {
    gap: 24px;
  }

  .nav-contact {
    display: none;
  }

  .hero {
    display: block;
    padding-top: 28px;
  }

  .brief-card {
    margin: -24px 24px 0;
    position: relative;
  }

  .pricing-grid,
  .audience-grid,
  .process ol {
    grid-template-columns: repeat(2, 1fr);
  }

  .turnkey-card {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .ads-ready-card {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .germany-offer {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 30px, 520px);
  }

  .brand {
    font-size: 32px;
  }

  .navigation {
    gap: 12px;
  }

  .brand.brand-local {
    font-size: 18px;
  }

  .brand-local span {
    margin-top: 4px;
    font-size: 8px;
  }

  .page-loader {
    gap: 30px;
    padding: 30px;
  }

  .loader-brand {
    min-width: min(280px, calc(100vw - 60px));
  }

  .menu-toggle {
    display: block;
  }

  .language-switcher {
    order: 3;
  }

  .language-toggle {
    height: 41px;
    gap: 7px;
    padding: 0 9px;
  }

  .language-menu {
    right: 0;
  }

  .nav-links {
    position: absolute;
    top: 68px;
    right: 15px;
    left: 15px;
    display: none;
    flex-direction: column;
    gap: 3px;
    padding: 13px 22px;
    background: #1d1d22;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .hero-panel {
    min-height: unset;
    padding: 49px 28px 40px;
  }

  h1 {
    font-size: clamp(39px, 14vw, 52px);
  }

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

  .launch-offer {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-actions {
    margin-bottom: 44px;
  }

  .hero-numbers {
    gap: 18px;
  }

  .hero-numbers div:not(:last-child) {
    padding: 0 0 17px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .studio-card,
  .audience-card,
  .germany-offer,
  .process {
    padding: 45px 25px;
  }

  .pricing-grid,
  .audience-grid,
  .process ol,
  .order-form {
    grid-template-columns: 1fr;
  }

  .turnkey-card {
    margin-top: 35px;
    padding: 30px 24px;
  }

  .turnkey-features {
    grid-template-columns: 1fr;
  }

  .ads-ready-card {
    margin-top: 14px;
    padding: 27px 24px;
  }

  .portfolio-section {
    padding: 57px 0;
  }

  .filter-buttons {
    flex-wrap: wrap;
  }

  .projects {
    grid-auto-rows: 480px;
    gap: 10px;
  }

  .project {
    grid-column: 1 / -1;
  }

  .contact-section {
    padding: 60px 0;
  }

  .site-footer .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .desk-effects {
    display: none;
  }

  .consent-banner {
    right: 16px;
    bottom: 16px;
    padding: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .page-loader {
    display: none;
  }

  .loader-line span {
    animation: none;
  }
}
