:root {
  --color-navy: #06213f;
  --color-blue: #2b4d72;
  --color-green: #159bea;
  --color-light: #f2f7fb;
  --color-white: #ffffff;
  --color-text: #172535;
  --color-muted: #5f6f81;
  --color-border: #d7e4ee;
  --shadow-soft: 0 16px 36px rgba(6, 33, 63, 0.09);
  --container: 1120px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-white);
  color: var(--color-text);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(21, 155, 234, 0.55);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  background: var(--color-navy);
  color: var(--color-white);
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--color-border);
  backdrop-filter: blur(10px);
}

.header-inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: 0;
}

.logo-link img {
  width: clamp(72px, 8vw, 92px);
  aspect-ratio: 1;
  display: block;
  object-fit: contain;
  border-radius: 50%;
  filter: drop-shadow(0 7px 12px rgba(2, 18, 39, 0.2));
}

.nav-toggle {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-white);
  color: var(--color-navy);
  cursor: pointer;
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  content: "";
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle-lines::before {
  transform: translateY(-7px);
}

.nav-toggle-lines::after {
  transform: translateY(5px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines {
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::before {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::after {
  transform: translateY(-2px) rotate(-90deg);
}

.site-nav {
  position: absolute;
  left: 1rem;
  right: 1rem;
  top: calc(100% + 0.5rem);
  display: none;
  padding: 1rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

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

.nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.35rem;
}

.nav-list a {
  display: block;
  padding: 0.7rem 0.2rem;
  color: var(--color-navy);
  text-decoration: none;
  font-weight: 700;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.22rem;
  width: fit-content;
  margin-top: 0.75rem;
  padding: 0.25rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-light);
}

.language-switcher a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 34px;
  padding: 0.33rem;
  border-radius: calc(var(--radius) - 2px);
  color: var(--color-blue);
  text-align: center;
  text-decoration: none;
  font-weight: 800;
  line-height: 1;
  transition: background-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.language-switcher a:hover {
  background: rgba(6, 33, 63, 0.08);
  transform: translateY(-1px);
}

.language-switcher a[aria-current="true"] {
  background: var(--color-navy);
  color: var(--color-white);
}

.flag-icon {
  display: block;
  width: 26px;
  height: 18px;
  border: 1px solid rgba(6, 33, 63, 0.22);
  border-radius: 4px;
  background-color: var(--color-white);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0 1px 2px rgba(6, 33, 63, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.language-switcher a[aria-current="true"] .flag-icon {
  border-color: rgba(255, 255, 255, 0.36);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.flag-de {
  background-image: url("../assets/flag-de.svg");
}

.flag-en {
  background-image: url("../assets/flag-en.svg");
}

.flag-ru {
  background-image: url("../assets/flag-ru.svg");
}

.flag-hy {
  background-image: url("../assets/flag-hy.svg");
}

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

.header-cta {
  width: 100%;
  margin-top: 0.75rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  max-width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  white-space: normal;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--color-green);
  color: #06213f;
  border-color: var(--color-green);
}

.button-primary:hover {
  background: #087fc6;
}

.button-secondary {
  background: var(--color-navy);
  color: var(--color-white);
  border-color: var(--color-navy);
}

.button-secondary:hover {
  background: #0a2f58;
}

.sticky-contact-bar {
  display: none;
}

.button-ghost {
  background: var(--color-white);
  color: var(--color-navy);
  border-color: var(--color-border);
}

.button-ghost:hover {
  border-color: var(--color-green);
}

.hero {
  --hero-bg-shift: 0px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 28%, rgba(21, 155, 234, 0.12), transparent 26rem),
    linear-gradient(90deg, rgba(242, 247, 251, 0.98), rgba(255, 255, 255, 0.98));
  border-bottom: 1px solid var(--color-border);
}

.hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(242, 247, 251, 0.9) 0%, rgba(255, 255, 255, 0.72) 46%, rgba(255, 255, 255, 0.42) 100%),
    url("../assets/hero-berlin-background-20260705.jpg") right max(-3rem, calc((100vw - var(--container)) / 2 - 1rem)) center / clamp(28rem, 52vw, 44rem) auto no-repeat;
  content: "";
  opacity: 0.96;
  pointer-events: none;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(242, 247, 251, 0.92));
  content: "";
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 3.25rem 0 2.75rem;
}

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

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--color-blue);
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 780px;
  margin: 0;
  color: var(--color-navy);
  font-size: 2.35rem;
  line-height: 1.08;
}

.hero-text {
  max-width: 680px;
  margin: 1.15rem 0 0;
  color: var(--color-blue);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.trust-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, max-content));
  gap: 0.65rem;
  width: fit-content;
  max-width: 100%;
  padding: 0;
  margin: 1.35rem 0 0;
}

.trust-list li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 36px;
  padding: 0.35rem 0.7rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-white);
  color: var(--color-navy);
  font-weight: 700;
  justify-content: flex-start;
}

.trust-list li::before {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--color-green);
  content: "";
  flex: 0 0 auto;
}

main section {
  scroll-margin-top: 92px;
}

.contact-panel[id] {
  scroll-margin-top: 92px;
}

.section {
  padding: 4rem 0;
}

.section-light {
  background: var(--color-light);
}

.section-header {
  max-width: 720px;
  margin-bottom: 1.75rem;
}

.section-header h2,
.legal-content h1 {
  margin: 0;
  color: var(--color-navy);
  font-size: 2rem;
  line-height: 1.15;
}

.section-header p {
  margin: 0.7rem 0 0;
  color: var(--color-muted);
}

.card-grid {
  display: grid;
  gap: 1rem;
}

.service-card,
.reason-item,
.step-item,
.contact-panel,
.legal-panel,
.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-white);
}

.service-card {
  padding: 1.25rem;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.service-card img {
  width: 68px;
  height: 68px;
  padding: 0.65rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(21, 155, 234, 0.24);
  border-radius: 17px;
  background: linear-gradient(145deg, #ffffff 0%, #edf7fe 100%);
  box-shadow: 0 9px 20px rgba(6, 33, 63, 0.1), inset 0 1px 0 #ffffff;
}

.service-card h3,
.reason-item h3,
.step-item h3 {
  margin: 0;
  color: var(--color-navy);
  font-size: 1.18rem;
  line-height: 1.25;
}

.service-card p,
.reason-item p,
.step-item p,
.contact-panel p,
.legal-panel p,
.faq-item p {
  color: var(--color-muted);
}

.service-card p {
  margin: 0.65rem 0 0;
}

.reason-grid {
  display: grid;
  gap: 1rem;
}

.reason-item {
  padding: 1rem;
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 0.45rem;
}

.reason-item::before {
  width: 34px;
  height: 6px;
  border-radius: 999px;
  background: var(--color-green);
  content: "";
}

.reason-item p,
.step-item p {
  margin: 0;
}

.eco-section {
  background: linear-gradient(180deg, var(--color-white), var(--color-light));
}

.eco-inner {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.eco-media {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.eco-media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.eco-copy {
  max-width: 620px;
}

.eco-copy h2 {
  margin: 0;
  color: var(--color-navy);
  font-size: 2rem;
  line-height: 1.15;
}

.eco-copy p {
  margin: 1rem 0 0;
  color: var(--color-muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
  counter-reset: steps;
}

.step-item {
  position: relative;
  padding: 1.15rem 1.15rem 1.15rem 4.25rem;
  counter-increment: steps;
}

.step-item::before {
  position: absolute;
  left: 1.15rem;
  top: 1.15rem;
  width: 2.2rem;
  height: 2.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-navy);
  color: var(--color-white);
  font-weight: 800;
  content: counter(steps);
}

.area-band {
  position: relative;
  overflow: hidden;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid #d8e6f0;
  border-top: 5px solid #159bea;
  background:
    radial-gradient(circle at 100% 0%, rgba(21, 155, 234, 0.12), transparent 34%),
    linear-gradient(145deg, #ffffff 0%, #f3f8fc 100%);
  border-radius: 20px;
  box-shadow: 0 18px 42px rgba(4, 34, 66, 0.1);
}

.area-band p {
  margin: 0;
  color: var(--color-blue);
}

.area-intro {
  max-width: 56rem;
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  font-weight: 700;
  line-height: 1.55;
}

.area-districts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin: 1.15rem 0 0;
  padding: 0;
  list-style: none;
}

.area-districts li {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 0.72rem 0.72rem 0.72rem 2.05rem;
  border: 1px solid rgba(13, 93, 148, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 5px 16px rgba(4, 34, 66, 0.055);
  color: var(--color-navy);
  font-size: clamp(0.78rem, 1.5vw, 0.94rem);
  font-weight: 800;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.area-districts li::before {
  position: absolute;
  left: 0.78rem;
  width: 0.68rem;
  height: 0.68rem;
  border: 2px solid rgba(255, 255, 255, 0.88);
  border-radius: 50%;
  background: linear-gradient(135deg, #159bea, #0867a8);
  box-shadow: 0 0 0 1px rgba(8, 103, 168, 0.26);
  content: "";
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  padding: 0;
}

.faq-item summary {
  padding: 1rem 1.1rem;
  color: var(--color-navy);
  font-weight: 800;
  cursor: pointer;
}

.faq-item p {
  margin: 0;
  padding: 0 1.1rem 1rem;
}

.contact-layout {
  display: grid;
  gap: 1rem;
}

.contact-panel {
  padding: 1.25rem;
}

.contact-tip {
  margin-top: 1.25rem;
  padding: 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-light);
}

.contact-tip h4 {
  margin: 0 0 0.35rem;
  color: var(--color-navy);
  font-size: 1rem;
}

.contact-tip p {
  margin: 0;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.85rem;
}

.contact-list span {
  display: block;
  color: var(--color-muted);
  font-size: 0.92rem;
}

.contact-list strong {
  display: block;
  color: var(--color-navy);
  font-weight: 800;
  line-height: 1.45;
  white-space: pre-line;
}

.contact-list a {
  color: var(--color-navy);
  font-weight: 800;
  text-decoration-color: rgba(21, 155, 234, 0.7);
  text-underline-offset: 0.2em;
}

.contact-form {
  display: grid;
  gap: 1.2rem;
}

.form-section {
  display: grid;
  gap: 0.9rem;
}

.form-section + .form-section {
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
}

.form-section-title {
  margin: 0;
  color: var(--color-navy);
  font-size: 1.08rem;
  line-height: 1.25;
}

.form-section-note,
.privacy-note {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.94rem;
}

.form-grid {
  display: grid;
  align-content: start;
  gap: 0.9rem;
}

.form-grid-compact {
  display: grid;
  align-content: start;
  gap: 0.8rem;
}

.box-options {
  display: grid;
  gap: 0.75rem;
}

.box-options summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 50px;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-light);
  color: var(--color-navy);
  cursor: pointer;
  list-style: none;
}

.box-options summary::-webkit-details-marker {
  display: none;
}

.box-options summary::after {
  content: "";
  display: inline-flex;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-green);
  background-image:
    linear-gradient(var(--color-white), var(--color-white)),
    linear-gradient(var(--color-white), var(--color-white));
  background-position: center;
  background-repeat: no-repeat;
  background-size: 12px 2px, 2px 12px;
}

.box-options[open] summary::after {
  background-size: 12px 2px, 0 0;
}

.box-options-summary {
  display: grid;
  gap: 0.2rem;
  min-width: 0;
}

.box-options-summary strong {
  font-size: 0.98rem;
  line-height: 1.2;
}

.box-options-summary span {
  color: var(--color-muted);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.25;
}

.box-options-content {
  display: none;
  gap: 0.8rem;
  padding: 0.9rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-light);
}

.box-options[open] .box-options-content {
  display: grid;
}

.field-hint {
  display: block;
  margin-top: -0.35rem;
  color: var(--color-muted);
  font-size: 0.88rem;
  line-height: 1.2;
}

.location-card {
  display: grid;
  align-content: start;
  gap: 0.85rem;
  padding: 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-light);
}

.location-card h4 {
  margin: 0;
  color: var(--color-navy);
  font-size: 1rem;
}

.fieldset {
  display: grid;
  align-content: start;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
  border: 0;
}

.fieldset legend {
  color: var(--color-navy);
  font-weight: 800;
}

.checkbox-fieldset {
  margin-top: 0.15rem;
}

.checkbox-grid {
  display: grid;
  gap: 0.55rem;
}

.radio-segment {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.4rem;
}

.radio-segment-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.radio-segment label {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.55rem 0.5rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-white);
  color: var(--color-navy);
  font-weight: 800;
  text-align: center;
  cursor: pointer;
}

.radio-segment input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.radio-segment label:has(input:checked) {
  border-color: var(--color-green);
  background: rgba(21, 155, 234, 0.12);
}

.upload-area {
  display: grid;
  gap: 0.75rem;
}

.upload-grid {
  display: grid;
  gap: 0.75rem;
}

.upload-label {
  display: grid;
  gap: 0.35rem;
  padding: 1rem;
  border: 1px dashed var(--color-blue);
  border-radius: var(--radius);
  background: var(--color-white);
  color: var(--color-navy);
  cursor: pointer;
}

.upload-label span:first-child {
  font-weight: 800;
}

.upload-label span:last-child {
  color: var(--color-muted);
  font-size: 0.92rem;
}

.upload-label input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.media-preview,
.photo-preview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.media-preview:empty,
.photo-preview:empty {
  display: none;
}

.media-preview-item,
.photo-preview-item {
  position: relative;
  display: grid;
  gap: 0.35rem;
  padding: 0.45rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-white);
}

.media-preview-item img,
.photo-preview-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: calc(var(--radius) - 2px);
  background: var(--color-light);
}

.media-preview-item span,
.photo-preview-item span {
  color: var(--color-muted);
  font-size: 0.78rem;
  line-height: 1.25;
}

.media-remove,
.photo-remove {
  position: absolute;
  top: 0.35rem;
  right: 0.35rem;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 50%;
  background: var(--color-navy);
  color: var(--color-white);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
}

.checkbox-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem;
  align-items: start;
}

.checkbox-row input {
  width: 20px;
  height: 20px;
  margin-top: 0.2rem;
}

.form-row {
  display: grid;
  align-content: start;
  gap: 0.35rem;
  min-width: 0;
}

.form-row label {
  color: var(--color-navy);
  font-weight: 800;
}

.required-mark {
  color: var(--color-green);
  font-weight: 900;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 46px;
  display: block;
  padding: 0.7rem 0.8rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  color: var(--color-text);
  font: inherit;
  background: var(--color-white);
}

.form-row input[type="date"] {
  appearance: none;
  -webkit-appearance: none;
}

.form-row textarea {
  min-height: 132px;
  resize: vertical;
}

.form-error,
.media-error,
.photo-error {
  min-height: 1.2rem;
  color: #b42318;
  font-size: 0.9rem;
  font-weight: 700;
}

.form-status {
  min-height: 1.6rem;
  margin: 0;
  color: var(--color-blue);
  font-weight: 700;
}

.legal-hero {
  background: var(--color-light);
  border-bottom: 1px solid var(--color-border);
}

.legal-content {
  padding: 4rem 0;
}

.legal-panel {
  padding: 1.25rem;
  margin-top: 1rem;
}

.legal-panel h2,
.legal-panel h3 {
  color: var(--color-navy);
}

.todo-list {
  padding-left: 1.2rem;
}

.site-footer {
  background: var(--color-navy);
  color: var(--color-white);
}

.footer-inner {
  padding: 2rem 0;
  display: grid;
  gap: 1rem;
}

.footer-brand {
  margin: 0;
  font-weight: 800;
}

.footer-tagline {
  margin: 0.2rem 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.footer-links a {
  color: var(--color-white);
  text-decoration-color: var(--color-green);
  text-underline-offset: 0.2em;
}

@media (min-width: 720px) {
  h1 {
    font-size: 3.45rem;
  }

  .hero-inner {
    padding: 5rem 0 4rem;
  }

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

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

  .eco-inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(18rem, 0.95fr);
  }

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

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

  .media-preview,
  .photo-preview {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .area-districts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .footer-inner {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

@media (min-width: 1120px) {
  .contact-layout {
    grid-template-columns: 0.85fr 1.15fr;
    align-items: start;
  }

  .area-districts {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 980px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 0.9rem;
    flex: 1 1 auto;
    justify-content: flex-end;
    padding: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
  }

  .nav-list {
    display: flex;
    align-items: center;
    gap: clamp(0.65rem, 1.1vw, 1rem);
    flex-wrap: nowrap;
  }

  .nav-list a {
    padding: 0.3rem 0;
    white-space: nowrap;
  }

  .language-switcher {
    flex: 0 0 auto;
    margin-top: 0;
  }

  .header-cta {
    width: auto;
    margin-top: 0;
    flex: 0 0 auto;
  }

  .hero-inner {
    padding: 5.4rem 0 4rem;
  }

  .trust-list {
    max-width: 720px;
  }

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

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

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

@media (max-width: 719px) {
  .site-nav {
    padding: 0.9rem;
  }

  .nav-list {
    gap: 0.15rem;
  }

  .nav-list a {
    padding: 0.58rem 0.25rem;
    font-size: 1rem;
    line-height: 1.25;
  }

  body.has-sticky-contact {
    padding-bottom: 0;
  }

  .sticky-contact-bar {
    position: fixed;
    z-index: 100;
    right: max(0.85rem, env(safe-area-inset-right));
    bottom: calc(1rem + env(safe-area-inset-bottom));
    left: auto;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    transform: translateY(0);
    transition: transform 0.22s ease;
  }

  .sticky-contact-bar.is-hidden {
    pointer-events: none;
    transform: translateX(calc(100% + 1.5rem));
  }

  .sticky-contact-button {
    display: grid;
    place-items: center;
    width: 3.2rem;
    height: 3.2rem;
    border: 1px solid rgba(6, 33, 63, 0.08);
    border-radius: 50%;
    box-shadow: 0 12px 24px rgba(6, 33, 63, 0.2);
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  }

  .sticky-contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(6, 33, 63, 0.24);
  }

  .sticky-contact-icon {
    display: block;
    color: currentColor;
    transform-origin: 50% 50%;
  }

  .sticky-contact-icon-call,
  .sticky-contact-icon-email {
    width: 1.5rem;
    height: 1.5rem;
  }

  .sticky-contact-icon-whatsapp {
    width: 1.62rem;
    height: 1.62rem;
    transform: translate(0.01rem, 0.01rem);
  }

  .sticky-contact-icon-call {
    transform: translate(0.02rem, 0.02rem);
  }

  .sticky-contact-icon-email {
    transform: translateY(0.01rem);
  }

  .sticky-contact-icon-call path,
  .sticky-contact-icon-email path {
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.75;
  }

  .sticky-contact-icon-whatsapp path {
    fill: currentColor;
    stroke: none;
  }

  .sticky-contact-button span {
    position: absolute;
    overflow: hidden;
    width: 1px;
    height: 1px;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .sticky-contact-button-call {
    background: var(--color-white);
    color: #06213f;
    border-color: rgba(6, 33, 63, 0.12);
  }

  .sticky-contact-button-whatsapp {
    background: #25d366;
    color: var(--color-white);
    border-color: #25d366;
  }

  .sticky-contact-button-email {
    background: var(--color-navy);
    color: var(--color-white);
    border-color: var(--color-navy);
  }

  .hero {
    background:
      linear-gradient(180deg, rgba(242, 247, 251, 0.98), rgba(255, 255, 255, 0.98));
    isolation: isolate;
  }

  .hero::before {
    position: absolute;
    inset: 0;
    height: auto;
    background-image:
      linear-gradient(180deg, rgba(242, 247, 251, 0.82) 0%, rgba(255, 255, 255, 0.74) 52%, rgba(255, 255, 255, 0.92) 100%),
      url("../assets/hero-berlin-background-20260705.jpg");
    background-position:
      center,
      center calc(4.75rem + var(--hero-bg-shift));
    background-repeat: no-repeat;
    background-size:
      auto,
      min(92vw, 28rem) auto;
    opacity: 0.88;
  }

  .hero::after {
    height: 45%;
  }

  .hero-copy {
    max-width: 100%;
  }

  h1 {
    max-width: min(100%, 20rem);
    font-size: 2.05rem;
    line-height: 1.14;
    overflow-wrap: break-word;
    hyphens: auto;
    text-wrap: balance;
  }

  .hero-text {
    max-width: min(100%, 22rem);
    font-size: 1rem;
    line-height: 1.55;
  }

  .hero-actions {
    margin-top: 1.35rem;
    width: min(100%, 22rem);
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-actions .button-secondary[data-phone-link] {
    display: none;
  }

  .trust-list {
    grid-template-columns: 1fr;
    width: min(100%, 22rem);
  }
}

@media (max-width: 420px) {
  .logo-link img {
    width: 70px;
  }

  .area-districts {
    gap: 0.5rem;
  }

  .area-districts li {
    min-height: 50px;
    padding: 0.62rem 0.55rem 0.62rem 1.75rem;
    font-size: 0.74rem;
  }

  .area-districts li::before {
    left: 0.62rem;
    width: 0.58rem;
    height: 0.58rem;
  }

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

  .button {
    width: 100%;
  }

  .hero {
    background:
      linear-gradient(180deg, rgba(242, 247, 251, 0.98), rgba(255, 255, 255, 0.98));
  }

  .hero-inner {
    padding: 2.7rem 0 2.45rem;
  }

  h1 {
    font-size: 1.95rem;
    line-height: 1.16;
  }
}

/* 3 Plus Umzug poster header and hero (2026-08-24) */
.poster-home .site-header {
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: #e1e5e9;
  box-shadow: 0 4px 18px rgba(2, 18, 39, 0.04);
}

.poster-home .header-inner {
  width: min(calc(100% - 2rem), 1180px);
  min-height: clamp(88px, 15vw, 112px);
  gap: clamp(0.75rem, 2.5vw, 2rem);
}

.poster-home .logo-link {
  width: clamp(74px, 18vw, 98px);
  text-decoration: none;
}

.poster-home .logo-link img {
  width: 100%;
  height: auto;
}

.poster-home .hero-three {
  color: #159bea;
  font-family: Impact, "Arial Black", "Segoe UI Black", sans-serif;
  font-style: italic;
  font-weight: 900;
  letter-spacing: -0.06em;
  text-shadow: 0 3px 0 #021126, 0 0 13px rgba(21, 155, 234, 0.34);
}

.poster-home .hero-brand-name {
  color: #f8fbff;
  font-family: "Arial Black", "Segoe UI Black", Impact, sans-serif;
  font-style: italic;
  font-weight: 900;
  letter-spacing: -0.045em;
  text-shadow: 0 3px 0 #6e7885, 0 5px 9px rgba(0, 0, 0, 0.52);
}

.poster-home .nav-toggle {
  display: inline-flex;
  width: clamp(56px, 10.5vw, 78px);
  height: clamp(56px, 10.5vw, 78px);
  flex: 0 0 auto;
  border-color: #d6dce2;
  border-radius: clamp(11px, 1.8vw, 15px);
  box-shadow: 0 4px 14px rgba(2, 18, 39, 0.05);
}

.poster-home .nav-toggle-lines,
.poster-home .nav-toggle-lines::before,
.poster-home .nav-toggle-lines::after {
  width: clamp(27px, 4.6vw, 35px);
  height: 3px;
  background: #061a33;
}

.poster-home .nav-toggle-lines::before {
  transform: translateY(-10px);
}

.poster-home .nav-toggle-lines::after {
  transform: translateY(7px);
}

.poster-home .nav-toggle[aria-expanded="true"] .nav-toggle-lines::after {
  transform: translateY(-3px) rotate(-90deg);
}

.poster-home .site-nav {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 50%;
  display: none;
  width: min(calc(100% - 2rem), 1120px);
  padding: 1rem;
  border: 1px solid #d9e1e8;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.99);
  box-shadow: 0 22px 55px rgba(2, 18, 39, 0.2);
  transform: translateX(-50%);
}

.poster-home .site-nav.is-open {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 1rem;
}

.poster-home .nav-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.35rem;
}

.poster-home .nav-list a {
  padding: 0.65rem 0.7rem;
  border-radius: 8px;
  text-align: center;
}

.poster-home .nav-list a:hover {
  background: #edf6ff;
}

.poster-home .language-switcher,
.poster-home .header-cta {
  margin-top: 0;
}

.poster-home .header-cta {
  width: auto;
}

.poster-home .hero {
  overflow: visible;
  padding: clamp(14px, 3.5vw, 26px) 0 0;
  border: 0;
  background: #fff;
}

.poster-home .hero::before,
.poster-home .hero::after {
  display: none;
}

.poster-home .hero-card {
  position: relative;
  isolation: isolate;
  display: flex;
  width: min(calc(100% - 1rem), 1180px);
  min-height: 650px;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(31, 119, 191, 0.34);
  border-radius: clamp(12px, 1.9vw, 18px);
  background: #021126;
  box-shadow: 0 18px 42px rgba(2, 18, 39, 0.2), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.poster-home .hero-poster-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto minmax(250px, 1fr) auto auto;
  min-height: inherit;
  height: 100%;
  width: 100%;
  flex: 1 1 auto;
  padding: clamp(1.1rem, 2.4vw, 1.8rem) clamp(1rem, 2.8vw, 2rem) clamp(0.75rem, 1.8vw, 1.25rem);
}

.poster-home .hero-scene {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: url("../assets/hero-umzug-berlin-20260824.webp") center / cover no-repeat;
}

.poster-home .hero-scene::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(1, 13, 31, 0.95) 0%, rgba(1, 15, 35, 0.84) 29%, rgba(1, 15, 35, 0.24) 58%, rgba(1, 15, 35, 0.2) 100%),
    linear-gradient(180deg, rgba(1, 13, 31, 0.62) 0%, rgba(1, 13, 31, 0.03) 44%, rgba(1, 13, 31, 0.88) 87%, #021126 100%);
  content: "";
}

.poster-home .hero-intro,
.poster-home .hero-benefits,
.poster-home .hero-feature-strip,
.poster-home .hero-tagline {
  position: relative;
  z-index: 2;
}

.poster-home .hero-intro {
  text-align: center;
}

.poster-home .hero-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  margin: 0;
  color: #f7fbff;
  font-size: clamp(0.72rem, 1.55vw, 1.02rem);
  font-weight: 850;
  letter-spacing: 0.22em;
  line-height: 1.2;
  text-transform: uppercase;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.72);
}

.poster-home .hero-kicker::before,
.poster-home .hero-kicker::after {
  width: clamp(2rem, 6vw, 5.5rem);
  height: 1px;
  background: linear-gradient(90deg, transparent, #19a9ff);
  content: "";
}

.poster-home .hero-kicker::after {
  background: linear-gradient(90deg, #19a9ff, transparent);
}

.poster-home .hero-wordmark {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.18em;
  margin: 0.05rem 0 0;
  line-height: 0.9;
  white-space: nowrap;
}

.poster-home .hero-three {
  font-size: clamp(4.2rem, 9.2vw, 7.1rem);
}

.poster-home .hero-brand-name {
  font-size: clamp(2.85rem, 7.15vw, 5.4rem);
}

.poster-home .hero-services-line {
  max-width: none;
  margin: 0.4rem 0 0;
  color: #f7fbff;
  font-size: clamp(0.82rem, 1.75vw, 1.16rem);
  font-weight: 800;
  letter-spacing: 0.105em;
  line-height: 1.35;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.poster-home .hero-services-line > span[aria-hidden="true"] {
  margin-inline: 0.28em;
  color: #19a9ff;
}

.poster-home .hero-main {
  display: flex;
  align-items: center;
  min-height: 250px;
}

.poster-home .hero-benefits {
  display: grid;
  gap: clamp(0.55rem, 1.25vw, 0.85rem);
  width: min(44%, 350px);
  margin: 0;
  padding: 0.35rem 0;
  list-style: none;
}

.poster-home .hero-benefits li {
  display: grid;
  grid-template-columns: clamp(38px, 4.3vw, 48px) minmax(0, 1fr);
  align-items: center;
  gap: 0.65rem;
  color: #fff;
  line-height: 1.1;
  text-transform: uppercase;
  text-shadow: 0 2px 7px rgba(0, 0, 0, 0.72);
}

.poster-home .benefit-icon {
  display: grid;
  place-items: center;
  width: clamp(38px, 4.3vw, 48px);
  aspect-ratio: 1;
  border: 1px solid rgba(210, 235, 255, 0.75);
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(35, 153, 239, 0.32), rgba(4, 32, 67, 0.78));
  box-shadow: inset 0 0 0 4px rgba(25, 169, 255, 0.12), 0 0 18px rgba(25, 169, 255, 0.16);
  color: #f7fbff;
  font-size: clamp(0.72rem, 1.4vw, 0.95rem);
  font-weight: 900;
  text-shadow: none;
}

.poster-home .hero-benefits strong,
.poster-home .hero-benefits small {
  display: block;
}

.poster-home .hero-benefits strong {
  font-size: clamp(0.72rem, 1.25vw, 0.9rem);
  letter-spacing: 0.025em;
}

.poster-home .hero-benefits small {
  margin-top: 0.23rem;
  color: #38b9ff;
  font-size: clamp(0.61rem, 1.05vw, 0.74rem);
  font-weight: 750;
  letter-spacing: 0.015em;
}

.poster-home .hero-feature-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: clamp(0.65rem, 1.35vw, 0.95rem) 0.5rem;
  border: 1px solid rgba(35, 164, 255, 0.62);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(5, 32, 65, 0.76), rgba(1, 17, 39, 0.92));
  box-shadow: 0 0 22px rgba(20, 137, 235, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  list-style: none;
  backdrop-filter: blur(3px);
}

.poster-home .hero-feature-strip li {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 0.35rem;
  min-width: 0;
  padding: 0 0.6rem;
  color: #f7fbff;
  font-size: clamp(0.66rem, 1.15vw, 0.82rem);
  font-weight: 800;
  line-height: 1.18;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.72);
}

.poster-home .hero-feature-strip li + li {
  border-left: 1px solid rgba(38, 155, 238, 0.34);
}

.poster-home .hero-feature-strip img {
  width: clamp(34px, 4.5vw, 48px);
  height: clamp(34px, 4.5vw, 48px);
  object-fit: contain;
  filter: brightness(0) invert(1) drop-shadow(0 0 7px rgba(25, 169, 255, 0.5));
}

.poster-home .hero-tagline {
  margin: 0.7rem 0 0;
  color: #f7fbff;
  font-size: clamp(0.82rem, 1.5vw, 1.02rem);
  line-height: 1.3;
  text-align: center;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.78);
}

.poster-home .hero-tagline strong {
  color: #38b9ff;
}

@media (min-width: 720px) and (max-width: 899px) {
  .poster-home .hero-card {
    min-height: 0;
    aspect-ratio: 728 / 620;
  }

  .poster-home .hero-poster-content {
    grid-template-rows: auto minmax(220px, 1fr) auto auto;
  }
}

@media (max-width: 840px) {
  .poster-home .site-nav.is-open {
    grid-template-columns: 1fr;
  }

  .poster-home .nav-list {
    grid-template-columns: 1fr;
  }

  .poster-home .nav-list a {
    text-align: left;
  }

  .poster-home .language-switcher {
    margin-top: 0;
  }

  .poster-home .header-cta {
    width: 100%;
  }
}

@media (max-width: 719px) {
  .poster-home .header-inner {
    width: min(calc(100% - 1.25rem), 1180px);
  }

  .poster-home .hero {
    padding-top: 14px;
  }

  .poster-home .hero-card {
    width: min(calc(100% - 0.65rem), 1180px);
    min-height: 0;
    border-radius: 12px;
  }

  .poster-home .hero-poster-content {
    display: grid;
    grid-template-rows: auto auto auto auto;
    min-height: 0;
    padding: 1.05rem 0.85rem 0.85rem;
  }

  .poster-home .hero-kicker {
    gap: 0.5rem;
    font-size: clamp(0.6rem, 2.7vw, 0.76rem);
    letter-spacing: 0.14em;
  }

  .poster-home .hero-wordmark {
    margin-top: 0.18rem;
  }

  .poster-home .hero-three {
    font-size: clamp(2.4rem, 14vw, 3.5rem);
  }

  .poster-home .hero-brand-name {
    font-size: clamp(1.32rem, 9.2vw, 2.25rem);
  }

  .poster-home .hero-services-line {
    font-size: clamp(0.7rem, 3vw, 0.92rem);
    letter-spacing: 0.055em;
    text-wrap: balance;
  }

  .poster-home .hero-main {
    position: relative;
    isolation: isolate;
    display: flex;
    min-height: clamp(330px, 94vw, 430px);
    flex-direction: row;
    align-items: flex-start;
    overflow: hidden;
    margin: 0.55rem -0.85rem 0;
    padding: 0 0.85rem;
  }

  .poster-home .hero-benefits {
    width: min(74%, 270px);
    margin-top: 0.55rem;
    padding: 0.65rem 0.25rem;
    border: 0;
    border-radius: 0;
    background: linear-gradient(90deg, rgba(1, 15, 35, 0.92) 0%, rgba(1, 15, 35, 0.64) 72%, transparent 100%);
  }

  .poster-home .hero-benefits strong {
    font-size: 0.75rem;
  }

  .poster-home .hero-benefits small {
    font-size: 0.66rem;
  }

  .poster-home .hero-scene {
    position: absolute;
    z-index: 0;
    inset: 0;
    width: auto;
    height: auto;
    margin: 0;
    background-position: 64% center;
    background-size: cover;
  }

  .poster-home .hero-scene::after {
    background:
      linear-gradient(90deg, rgba(2, 17, 38, 0.98) 0%, rgba(2, 17, 38, 0.85) 38%, rgba(2, 17, 38, 0.28) 69%, rgba(2, 17, 38, 0.08) 100%),
      linear-gradient(180deg, #021126 0%, rgba(2, 17, 38, 0.02) 20%, rgba(2, 17, 38, 0.06) 70%, #021126 100%);
  }

  .poster-home .hero-feature-strip {
    position: relative;
    z-index: 2;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    margin-top: -0.65rem;
    padding: 0.35rem;
  }

  .poster-home .hero-feature-strip li {
    min-height: 88px;
    padding: 0.55rem 0.35rem;
  }

  .poster-home .hero-feature-strip li + li {
    border-left: 0;
  }

  .poster-home .hero-feature-strip li:nth-child(even) {
    border-left: 1px solid rgba(38, 155, 238, 0.34);
  }

  .poster-home .hero-feature-strip li:nth-child(n + 3) {
    border-top: 1px solid rgba(38, 155, 238, 0.34);
  }

  .poster-home .hero-tagline {
    margin-top: 0.75rem;
  }
}

@media (max-width: 420px) {
  .poster-home .logo-link {
    width: clamp(68px, 21vw, 82px);
  }

  .poster-home .hero-benefits {
    gap: 0.6rem;
  }

  .poster-home .hero-benefits li {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .poster-home .benefit-icon {
    width: 38px;
  }
}

/* Keep the compact menu on phones and tablets; show a permanent navigation on desktop. */
@media (min-width: 860px) {
  .poster-home .header-inner {
    min-height: 110px;
    gap: clamp(0.9rem, 1.7vw, 1.35rem);
  }

  .poster-home .logo-link {
    width: clamp(90px, 8.6vw, 104px);
  }

  .poster-home .nav-toggle {
    display: none;
  }

  .poster-home .site-nav,
  .poster-home .site-nav.is-open {
    position: static;
    display: grid;
    flex: 1 1 auto;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "links links"
      "languages cta";
    align-items: center;
    justify-content: stretch;
    gap: 0.42rem 0.7rem;
    width: auto;
    padding: 0.55rem 0.62rem;
    border: 1px solid #dce6ef;
    border-radius: 15px;
    background: linear-gradient(180deg, #fbfdff 0%, #f2f6fa 100%);
    box-shadow: 0 8px 24px rgba(4, 28, 55, 0.07), inset 0 1px 0 #fff;
    transform: none;
  }

  .poster-home .nav-list {
    grid-area: links;
    display: grid;
    grid-template-columns: repeat(5, minmax(max-content, 1fr));
    gap: 0.16rem;
  }

  .poster-home .nav-list a {
    padding: 0.56rem clamp(0.38rem, 0.72vw, 0.62rem);
    border: 1px solid transparent;
    border-radius: 9px;
    color: #0a2948;
    font-size: clamp(0.76rem, 1vw, 0.88rem);
    font-weight: 800;
    letter-spacing: 0.005em;
    line-height: 1.2;
    text-align: center;
    white-space: nowrap;
    transition: color 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
  }

  .poster-home .nav-list a:hover,
  .poster-home .nav-list a:focus-visible {
    border-color: #c9dfef;
    background: #fff;
    color: #087fc6;
    box-shadow: 0 4px 12px rgba(4, 38, 72, 0.08);
  }

  .poster-home .language-switcher {
    grid-area: languages;
    justify-self: end;
    margin: 0;
    border-color: #d5e1ea;
    background: #fff;
    box-shadow: 0 3px 10px rgba(4, 28, 55, 0.06);
  }

  .poster-home .language-switcher a {
    min-width: 37px;
    min-height: 33px;
    padding: 0.28rem;
  }

  .poster-home .header-cta {
    grid-area: cta;
    justify-self: end;
    width: auto;
    padding: 0.72rem 0.95rem;
    font-size: 0.88rem;
    white-space: nowrap;
  }
}

@media (min-width: 1180px) {
  .poster-home .header-inner {
    min-height: 112px;
  }

  .poster-home .logo-link {
    width: 104px;
  }

  .poster-home .site-nav,
  .poster-home .site-nav.is-open {
    grid-template-columns: minmax(0, 1fr) auto auto;
    grid-template-areas: "links languages cta";
    gap: 0.58rem;
  }
}

/* Google customer reviews */
.poster-home .google-reviews {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 5.5vw, 4.75rem) 0;
  border-bottom: 1px solid #dbe8f2;
  background:
    radial-gradient(circle at 12% 8%, rgba(21, 155, 234, 0.12), transparent 26rem),
    linear-gradient(180deg, #f1f8fd 0%, #f8fbfe 56%, #ffffff 100%);
}

.poster-home .google-reviews::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(21, 155, 234, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(21, 155, 234, 0.035) 1px, transparent 1px);
  background-size: 32px 32px;
  content: "";
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.65), transparent 82%);
  pointer-events: none;
}

.poster-home .google-reviews > .container {
  position: relative;
}

.poster-home .google-reviews-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 1.5rem;
  margin-bottom: 1.65rem;
}

.poster-home .google-reviews-copy {
  max-width: 670px;
}

.poster-home .google-reviews-eyebrow {
  margin: 0 0 0.42rem;
  color: #087fc6;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.poster-home .google-reviews-copy h2 {
  margin: 0;
  color: #06213f;
  font-size: clamp(1.85rem, 3.6vw, 2.7rem);
  letter-spacing: -0.025em;
  line-height: 1.08;
  text-wrap: balance;
}

.poster-home .google-reviews-copy > p:last-child {
  margin: 0.72rem 0 0;
  color: #52677b;
}

.poster-home .google-rating-summary {
  display: grid;
  min-width: 220px;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(21, 155, 234, 0.25);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 30px rgba(6, 33, 63, 0.1);
}

.poster-home .google-rating-brand {
  color: #1677d2;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.04em;
}

.poster-home .google-rating-line {
  display: flex;
  align-items: center;
  gap: 0.58rem;
  margin-top: 0.08rem;
  line-height: 1;
}

.poster-home .google-rating-line strong {
  color: #06213f;
  font-size: 1.7rem;
}

.poster-home .google-stars {
  color: #f4a900;
  font-size: 0.96rem;
  letter-spacing: 0.09em;
  line-height: 1;
}

.poster-home .google-rating-count {
  margin-top: 0.35rem;
  color: #324b64;
  font-size: 0.83rem;
  font-weight: 750;
}

.poster-home .google-rating-date {
  margin-top: 0.12rem;
  color: #718295;
  font-size: 0.7rem;
}

.poster-home .google-review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.poster-home .google-review-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  padding: 1.28rem;
  border: 1px solid #d7e6f1;
  border-radius: 17px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(6, 33, 63, 0.09);
}

.poster-home .google-review-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, #087fc6, #38b9ff);
  content: "";
}

.poster-home .google-review-author {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.72rem;
}

.poster-home .google-review-avatar {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(56, 185, 255, 0.55);
  border-radius: 50%;
  background: linear-gradient(145deg, #0d87d2, #062b55);
  box-shadow: 0 5px 14px rgba(8, 127, 198, 0.22);
  color: #ffffff;
  font-weight: 850;
}

.poster-home .google-review-author h3 {
  overflow: hidden;
  margin: 0;
  color: #06213f;
  font-size: 0.95rem;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.poster-home .google-review-author > div {
  min-width: 0;
}

.poster-home .google-review-author div > span {
  display: block;
  margin-top: 0.14rem;
  color: #718295;
  font-size: 0.67rem;
  line-height: 1.25;
}

.poster-home .google-review-source {
  padding: 0.24rem 0.48rem;
  border: 1px solid #d7e6f1;
  border-radius: 999px;
  background: #f6faff;
  color: #1677d2;
  font-size: 0.62rem;
  font-weight: 800;
}

.poster-home .google-review-card > .google-stars {
  margin-top: 1rem;
}

.poster-home .google-review-card blockquote {
  margin: 0.7rem 0 0;
}

.poster-home .google-review-card blockquote p {
  margin: 0;
  color: #324b64;
  font-size: 0.94rem;
  line-height: 1.62;
}

.poster-home .google-reviews-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 1.45rem;
  padding: 0.76rem 1rem;
  border: 1px solid #bcdcf1;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.88);
  color: #087fc6;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.3;
  text-decoration: none;
  transition: border-color 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease, color 0.18s ease;
}

.poster-home .google-reviews-link:hover,
.poster-home .google-reviews-link:focus-visible {
  border-color: #159bea;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(8, 127, 198, 0.13);
  color: #066ca9;
}

.poster-home .google-reviews-link span {
  font-size: 1.12rem;
  line-height: 1;
}

@media (max-width: 899px) {
  .poster-home .google-reviews-heading {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .poster-home .google-rating-summary {
    width: min(100%, 270px);
  }

  .poster-home .google-review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .poster-home .google-review-card:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 639px) {
  .poster-home .google-reviews {
    padding: 2.15rem 0 2.4rem;
  }

  .poster-home .google-reviews-heading {
    gap: 0.8rem;
    margin-bottom: 1rem;
  }

  .poster-home .google-reviews-copy h2 {
    font-size: clamp(1.58rem, 7.7vw, 1.95rem);
  }

  .poster-home .google-reviews-copy > p:last-child {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    line-height: 1.48;
  }

  .poster-home .google-rating-summary {
    display: flex;
    align-items: center;
    width: 100%;
    min-width: 0;
    padding: 0.7rem 0.82rem;
    gap: 0.55rem;
    border-radius: 13px;
  }

  .poster-home .google-rating-line {
    margin-top: 0;
  }

  .poster-home .google-rating-line strong {
    font-size: 1.35rem;
  }

  .poster-home .google-rating-count {
    margin: 0 0 0 auto;
    font-size: 0.76rem;
  }

  .poster-home .google-rating-date {
    display: none;
  }

  .poster-home .google-review-grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(265px, calc(100vw - 3.2rem));
    gap: 0.72rem;
    overflow-x: auto;
    padding: 0.1rem 0 0.45rem;
    scroll-padding-inline: 0.1rem;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
  }

  .poster-home .google-review-card,
  .poster-home .google-review-card:last-child {
    grid-column: auto;
    padding: 0.95rem;
    border-radius: 14px;
    scroll-snap-align: start;
  }

  .poster-home .google-review-card > .google-stars {
    margin-top: 0.72rem;
  }

  .poster-home .google-review-card blockquote {
    margin-top: 0.52rem;
  }

  .poster-home .google-review-card blockquote p {
    font-size: 0.88rem;
    line-height: 1.48;
  }

  .poster-home .google-reviews-link {
    width: 100%;
    margin-top: 0.9rem;
    padding: 0.68rem 0.82rem;
  }
}

@media (max-width: 390px) {
  .poster-home .google-review-author {
    grid-template-columns: 40px minmax(0, 1fr);
  }

  .poster-home .google-review-avatar {
    width: 40px;
    height: 40px;
  }

  .poster-home .google-review-source {
    display: none;
  }
}

/* Real moving-work photo gallery */
.poster-home .work-gallery-section {
  padding: clamp(3.2rem, 6vw, 5rem) 0;
  border-bottom: 1px solid #dbe8f2;
  background: #ffffff;
}

.poster-home .work-gallery-header {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  align-items: end;
  gap: clamp(1.25rem, 4vw, 4rem);
  margin-bottom: 1.65rem;
}

.poster-home .work-gallery-eyebrow {
  margin: 0 0 0.42rem;
  color: #087fc6;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.poster-home .work-gallery-header h2 {
  margin: 0;
  color: #06213f;
  font-size: clamp(1.85rem, 3.6vw, 2.7rem);
  letter-spacing: -0.025em;
  line-height: 1.08;
  text-wrap: balance;
}

.poster-home .work-gallery-header > p {
  margin: 0;
  color: #52677b;
  line-height: 1.65;
}

.poster-home .work-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.95rem;
}

.poster-home .work-gallery-item {
  position: relative;
  isolation: isolate;
  aspect-ratio: 3 / 4;
  min-width: 0;
  overflow: hidden;
  margin: 0;
  border: 1px solid #cfe0ec;
  border-radius: 17px;
  background: #06213f;
  box-shadow: 0 14px 34px rgba(6, 33, 63, 0.12);
}

.poster-home .work-gallery-item::after {
  position: absolute;
  z-index: 1;
  inset: 45% 0 0;
  background: linear-gradient(180deg, transparent, rgba(2, 17, 38, 0.78));
  content: "";
  pointer-events: none;
}

.poster-home .work-gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.28s ease;
}

.poster-home .work-gallery-item figcaption {
  position: absolute;
  z-index: 2;
  right: 0.72rem;
  bottom: 0.72rem;
  left: 0.72rem;
  padding: 0.56rem 0.68rem;
  border: 1px solid rgba(135, 208, 255, 0.4);
  border-radius: 10px;
  background: rgba(2, 23, 50, 0.82);
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.2);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 780;
  line-height: 1.3;
  text-align: center;
  backdrop-filter: blur(5px);
}

@media (hover: hover) and (pointer: fine) {
  .poster-home .work-gallery-item:hover img {
    transform: scale(1.025);
  }
}

@media (prefers-reduced-motion: reduce) {
  .poster-home .work-gallery-item img {
    transition: none;
  }
}

@media (max-width: 1100px) {
  .poster-home .work-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 840px) {
  .poster-home .work-gallery-header {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 0.75rem;
  }

  .poster-home .work-gallery-header > p {
    max-width: 650px;
  }

  .poster-home .work-gallery-item:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    justify-self: center;
    width: calc(50% - 0.475rem);
  }
}

@media (max-width: 480px) {
  .poster-home .work-gallery-section {
    padding: 2.75rem 0 3rem;
  }

  .poster-home .work-gallery-header {
    margin-bottom: 1.15rem;
  }

  .poster-home .work-gallery-header h2 {
    font-size: clamp(1.72rem, 8.2vw, 2.1rem);
  }

  .poster-home .work-gallery-grid {
    gap: 0.55rem;
  }

  .poster-home .work-gallery-item:last-child:nth-child(odd) {
    width: calc(50% - 0.275rem);
  }

  .poster-home .work-gallery-item {
    border-radius: 12px;
  }

  .poster-home .work-gallery-item figcaption {
    right: 0.42rem;
    bottom: 0.42rem;
    left: 0.42rem;
    padding: 0.42rem 0.38rem;
    border-radius: 8px;
    font-size: clamp(0.63rem, 3vw, 0.74rem);
  }
}
