@font-face {
  font-family: "Oswald";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url("/assets/fonts/oswald-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("/assets/fonts/poppins-300-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/poppins-400-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/assets/fonts/poppins-500-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/fonts/poppins-600-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/assets/fonts/poppins-700-latin.woff2") format("woff2");
}

:root {
  color-scheme: light;
  --accent: #cf6a16;
  --accent-deep: #b35712;
  --anthracite: #2b2b2b;
  --anthracite-deep: #1f1f1f;
  --sand: #f1efec;
  --white: #ffffff;
  --text: #2b2b2b;
  --text-strong: #3a3a3a;
  --muted: #6f6f6f;
  --label: #9a9a9a;
  --line: rgba(43, 43, 43, 0.12);
  --dark-header: rgba(28, 28, 28, 0.97);
  --section-x: clamp(20px, 5vw, 64px);
  --section-y: clamp(64px, 9vw, 120px);
  --font-body: "Poppins", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Oswald", sans-serif;
  --hero-overlay: linear-gradient(180deg, rgba(20, 20, 22, 0.62) 0%, rgba(20, 20, 22, 0.42) 38%, rgba(20, 20, 22, 0.78) 100%);
  --legal-hero-overlay: linear-gradient(180deg, rgba(20, 20, 22, 0.78), rgba(20, 20, 22, 0.84));
  --not-found-overlay: linear-gradient(180deg, rgba(20, 20, 22, 0.7), rgba(20, 20, 22, 0.82));
  --hero-image: image-set(
    url("/assets/relaunch/hero-1536.avif") type("image/avif"),
    url("/assets/relaunch/hero-1536.webp") type("image/webp"),
    url("/assets/relaunch/hero-1536.jpg") type("image/jpeg")
  );
  --hero-image-tablet: image-set(
    url("/assets/relaunch/hero-768.avif") type("image/avif"),
    url("/assets/relaunch/hero-768.webp") type("image/webp"),
    url("/assets/relaunch/hero-768.jpg") type("image/jpeg")
  );
  --hero-image-mobile: image-set(
    url("/assets/relaunch/hero-mobile.avif") type("image/avif"),
    url("/assets/relaunch/hero-mobile.webp") type("image/webp"),
    url("/assets/relaunch/hero-mobile.jpg") type("image/jpeg")
  );
  --cta-image: image-set(
    url("/assets/relaunch/cta-1536.avif") type("image/avif"),
    url("/assets/relaunch/cta-1536.webp") type("image/webp"),
    url("/assets/relaunch/cta-1536.jpg") type("image/jpeg")
  );
  --cta-image-mobile: image-set(
    url("/assets/relaunch/cta-mobile.avif") type("image/avif"),
    url("/assets/relaunch/cta-mobile.webp") type("image/webp"),
    url("/assets/relaunch/cta-mobile.jpg") type("image/jpeg")
  );
  --work-image: image-set(
    url("/assets/relaunch/dacharbeiten-768.avif") type("image/avif"),
    url("/assets/relaunch/dacharbeiten-768.webp") type("image/webp"),
    url("/assets/relaunch/dacharbeiten-768.jpg") type("image/jpeg")
  );
  font-family: var(--font-body);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  background: var(--accent);
  color: var(--white);
}

[hidden] {
  display: none !important;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

input,
textarea {
  min-width: 0;
}

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

#top {
  position: absolute;
  top: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

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

h1,
h2,
h3,
.badge,
.button,
.brand-name,
.desktop-nav,
.mobile-menu nav,
.contact-row strong,
.footer-main strong,
.contact-form label span {
  font-family: var(--font-display);
  text-transform: uppercase;
}

p {
  margin: 0;
}

.site-header {
  position: fixed;
  z-index: 60;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px clamp(18px, 4vw, 60px);
  background: rgba(28, 28, 28, 0);
  color: var(--white);
  transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
}

.site-header.is-scrolled {
  padding-top: 13px;
  padding-bottom: 13px;
  background: var(--dark-header);
  box-shadow: 0 6px 26px rgba(0, 0, 0, 0.28);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
}

.brand-logo {
  width: 46px;
  height: 46px;
  flex: none;
  object-fit: contain;
}

.brand-name {
  color: var(--white);
  font-size: clamp(15px, 1.8vw, 19px);
  font-weight: 600;
  letter-spacing: 3px;
  line-height: 1;
  white-space: nowrap;
}

.brand-name span {
  color: var(--accent);
  font-weight: 500;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 38px);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1.5px;
}

.desktop-nav a {
  text-decoration: none;
}

.desktop-nav > a:not(.nav-call) {
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
}

.desktop-nav > a:not(.nav-call)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.desktop-nav > a:not(.nav-call):hover,
.desktop-nav > a:not(.nav-call):focus-visible {
  color: var(--accent);
}

.desktop-nav > a:not(.nav-call):hover::after,
.desktop-nav > a:not(.nav-call):focus-visible::after {
  transform: scaleX(1);
}

.nav-call {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-radius: 3px;
  padding: 11px 22px;
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
  letter-spacing: 1px;
  transition: background 0.2s ease, transform 0.12s ease;
}

.nav-call:hover,
.nav-call:focus-visible {
  background: var(--accent-deep);
}

.nav-call:active,
.button:active {
  transform: translateY(1px);
}

.nav-call svg,
.floating-call svg,
.contact-icon svg,
.hours svg {
  width: 1.1em;
  height: 1.1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  flex: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
}

.mobile-menu {
  position: fixed;
  z-index: 80;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  background: rgba(24, 24, 24, 0.985);
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 2px;
}

.mobile-menu a {
  padding: 12px 0;
  text-decoration: none;
}

.mobile-call {
  margin-top: 22px;
  border-radius: 4px;
  padding: 15px 30px !important;
  background: var(--accent);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1px;
}

.menu-close {
  position: absolute;
  top: 26px;
  right: 24px;
  display: flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
}

.hero {
  position: relative;
  min-height: calc(100svh - 28px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px clamp(20px, 5vw, 40px) 90px;
  background-image:
    var(--hero-overlay),
    url("/assets/relaunch/hero.jpg");
  background-position: center 38%;
  background-size: cover;
  color: var(--white);
  text-align: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(100%, 880px);
  min-width: 0;
  flex-direction: column;
  align-items: center;
}

.hero-logo {
  width: clamp(120px, 18vw, 188px);
  height: auto;
  filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.5));
}

.hero h1 {
  margin: 30px 0 0;
  color: var(--white);
  font-size: clamp(2rem, 6.4vw, 4.6rem);
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1.04;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.hero h1 span,
.photo-band h2 span,
.about-copy h2 span {
  color: var(--accent);
}

.hero p {
  max-width: 600px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1rem, 2.1vw, 1.32rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 4px;
  padding: 0 34px;
  cursor: pointer;
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 600;
  letter-spacing: 1.5px;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.12s ease;
}

.button-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(207, 106, 22, 0.35);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--accent-deep);
}

.button-secondary {
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  backdrop-filter: blur(2px);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.16);
}

.scroll-indicator {
  position: absolute;
  z-index: 2;
  bottom: 26px;
  left: 50%;
  color: rgba(255, 255, 255, 0.8);
  transform: translateX(-50%);
}

.scroll-indicator svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section {
  padding: var(--section-y) var(--section-x);
}

.section-intro {
  max-width: 760px;
  margin: 0 auto clamp(40px, 5vw, 60px);
  text-align: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 18px;
  border: 1.5px solid rgba(43, 43, 43, 0.18);
  border-radius: 3px;
  padding: 9px 22px;
  color: var(--text);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 3px;
}

.badge-light {
  border-color: rgba(255, 255, 255, 0.26);
  color: var(--white);
}

.section h2,
.photo-band h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.8rem, 4.2vw, 3rem);
  font-weight: 500;
  letter-spacing: 0.5px;
  line-height: 1.08;
}

.section-intro > p:not(.badge) {
  max-width: 600px;
  margin: 14px auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.15rem);
  line-height: 1.6;
}

.service-grid {
  display: grid;
  max-width: 1140px;
  margin: 0 auto;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr));
  gap: clamp(14px, 1.6vw, 20px);
}

.service-card {
  display: flex;
  min-height: 230px;
  flex-direction: column;
  gap: 16px;
  border-radius: 5px;
  padding: clamp(28px, 3vw, 40px);
}

.service-card svg {
  width: 46px;
  height: 46px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3,
.promise h3,
.about-copy h3,
.region-panel h3,
.form-success h3 {
  margin: 0;
  color: inherit;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1.15;
}

.service-card h3 {
  font-size: 1.35rem;
}

.service-card p,
.promise p,
.about-copy p,
.region-panel p,
.form-success p {
  line-height: 1.6;
}

.service-card-dark {
  background: var(--anthracite);
  color: var(--white);
}

.service-card-dark p {
  color: rgba(255, 255, 255, 0.72);
}

.service-card-orange {
  background: var(--accent);
  color: var(--white);
}

.service-card-orange svg {
  stroke: var(--white);
}

.service-card-orange p {
  color: rgba(255, 255, 255, 0.92);
}

.service-card-sand {
  background: var(--sand);
  color: var(--text);
}

.service-card-sand p {
  color: var(--muted);
}

.photo-band {
  position: relative;
  overflow: hidden;
  padding: clamp(70px, 10vw, 130px) clamp(20px, 5vw, 40px);
  background-position: center;
  background-size: cover;
  text-align: center;
}

.photo-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(28, 22, 18, 0.62);
}

.cta-band {
  background-image: url("/assets/relaunch/cta.jpg");
}

.slogan-band {
  background-image: url("/assets/relaunch/hero.jpg");
}

.slogan-band::before {
  background: rgba(22, 22, 24, 0.78);
}

.photo-band-content {
  position: relative;
  z-index: 2;
  display: flex;
  max-width: 900px;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin: 0 auto;
}

.photo-band h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 4.4vw, 3rem);
  letter-spacing: 0.5px;
  line-height: 1.12;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.slogan-band h2 {
  font-size: clamp(1.5rem, 4vw, 2.8rem);
  line-height: 1.2;
}

.band-icon {
  width: 56px;
  height: 56px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.promise-grid {
  display: grid;
  max-width: 1100px;
  margin: 0 auto;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: clamp(24px, 3vw, 44px);
}

.promise {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.promise img {
  width: 78px;
  height: 78px;
  object-fit: contain;
}

.promise h3 {
  margin-top: 6px;
  font-size: 1.25rem;
  letter-spacing: 1.5px;
}

.promise p {
  max-width: 240px;
  color: var(--muted);
  font-size: 0.95rem;
}

.work {
  position: relative;
  isolation: isolate;
  background: var(--anthracite-deep);
  color: var(--white);
}

.work::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image: url("/assets/relaunch/dacharbeiten.jpg");
  background-position: center;
  background-size: cover;
  opacity: 0.18;
}

.section-intro-dark h2,
.section-intro-dark > p:not(.badge) {
  color: var(--white);
}

.section-intro-dark > p:not(.badge) {
  color: rgba(255, 255, 255, 0.72);
}

.gallery-grid {
  display: grid;
  max-width: 1140px;
  margin: 0 auto;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(12px, 1.4vw, 18px);
}

.gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  background: #111111;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-item picture,
.heritage-panel picture {
  display: block;
  width: 100%;
  height: 100%;
}

.gallery-item:hover img {
  transform: scale(1.035);
}

.about-layout {
  display: grid;
  max-width: 1080px;
  align-items: center;
  gap: clamp(36px, 5vw, 68px);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  margin: 0 auto;
}

.heritage-panel {
  display: flex;
  aspect-ratio: 0.78;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: var(--sand);
  padding: clamp(24px, 4vw, 48px);
}

.heritage-panel img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about-copy .badge {
  margin-bottom: 18px;
}

.about-copy h2 {
  margin-bottom: 22px;
}

.about-copy p {
  color: var(--text-strong);
  font-size: clamp(0.98rem, 1.5vw, 1.08rem);
  line-height: 1.72;
}

.about-copy h3 {
  margin: 26px 0 8px;
  color: var(--accent);
  font-size: 1.1rem;
  letter-spacing: 1.5px;
}

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

.stats div {
  border-top: 3px solid var(--accent);
  padding-top: 12px;
}

.stats strong {
  display: block;
  font-family: var(--font-display);
  color: var(--text);
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  font-weight: 600;
  line-height: 1;
}

.stats span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.9rem;
}

.region-panel {
  display: grid;
  max-width: 1080px;
  align-items: center;
  gap: clamp(28px, 4vw, 52px);
  grid-template-columns: minmax(0, 1fr) minmax(220px, 330px);
  margin: clamp(46px, 7vw, 78px) auto 0;
  border-radius: 8px;
  background: var(--sand);
  padding: clamp(28px, 4vw, 48px);
}

.region-panel h3 {
  margin-bottom: 8px;
  color: var(--accent);
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  letter-spacing: 1.5px;
}

.region-panel p {
  max-width: 680px;
  margin-bottom: 22px;
  color: var(--text-strong);
  font-size: clamp(0.98rem, 1.5vw, 1.08rem);
  line-height: 1.65;
}

.region-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.region-chips span {
  border: 1px solid rgba(43, 43, 43, 0.1);
  border-radius: 30px;
  padding: 9px 16px;
  background: var(--white);
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 400;
}

.region-panel img {
  width: 100%;
  max-width: 330px;
  height: auto;
  justify-self: center;
}

.faq {
  background: var(--sand);
}

.faq-grid {
  display: grid;
  max-width: 1040px;
  margin: 0 auto;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(16px, 2vw, 22px);
}

.faq-item {
  border-radius: 6px;
  background: var(--white);
  padding: clamp(24px, 3vw, 34px);
  box-shadow: 0 18px 40px rgba(43, 43, 43, 0.06);
}

.faq-item h3 {
  margin: 0 0 12px;
  color: var(--text);
  font-size: 1.16rem;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1.22;
}

.faq-item p {
  color: var(--text-strong);
  line-height: 1.68;
}

.faq-item a {
  color: var(--accent-deep);
  font-weight: 500;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.contact-layout {
  display: grid;
  max-width: 1040px;
  align-items: start;
  gap: clamp(28px, 4vw, 52px);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  margin: 0 auto;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  color: var(--text);
  text-decoration: none;
}

a.contact-row:hover span:last-child,
a.contact-row:focus-visible span:last-child {
  color: var(--accent);
}

.contact-row strong {
  display: block;
  margin-bottom: 3px;
  color: var(--label);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.contact-row span:last-child {
  color: var(--text);
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.4;
  transition: color 0.2s ease;
}

.contact-icon {
  display: flex;
  width: 52px;
  height: 52px;
  flex: none;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--sand);
  color: var(--accent);
}

.contact-icon svg {
  width: 22px;
  height: 22px;
}

.hours {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 6px;
  border-radius: 8px;
  padding: 18px 20px;
  background: var(--anthracite);
  color: rgba(255, 255, 255, 0.85);
}

.hours svg {
  width: 22px;
  height: 22px;
  flex: none;
  color: var(--accent);
}

.hours span {
  font-size: 0.95rem;
  line-height: 1.5;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.contact-form label span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 1px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1.5px solid #e2ded8;
  border-radius: 6px;
  outline: none;
  background: #fafafa;
  color: var(--text);
  font-size: 1rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.contact-form input {
  min-height: 50px;
  padding: 0 15px;
}

.contact-form textarea {
  min-height: 142px;
  padding: 13px 15px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  background: var(--white);
}

.contact-form .button {
  width: 100%;
  margin-top: 4px;
}

.contact-form .button:disabled {
  cursor: wait;
  opacity: 0.72;
}

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

.form-status {
  min-height: 1.4em;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.form-status.is-error {
  color: #b42318;
  font-weight: 500;
}

.form-note {
  color: var(--label);
  font-size: 0.8rem;
  line-height: 1.5;
}

.form-success {
  display: flex;
  min-height: 340px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border-radius: 10px;
  background: var(--sand);
  padding: clamp(36px, 5vw, 56px);
  text-align: center;
}

.success-icon {
  display: flex;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent);
}

.success-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: var(--white);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.form-success h3 {
  color: var(--text);
  font-size: 1.5rem;
}

.form-success p {
  max-width: 340px;
  color: var(--muted);
}

.site-footer {
  background: #181818;
  color: var(--white);
  padding: clamp(48px, 6vw, 76px) var(--section-x) 32px;
}

.footer-main {
  display: grid;
  max-width: 1080px;
  align-items: start;
  gap: 36px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  margin: 0 auto;
}

.footer-brand .brand-logo {
  width: 56px;
  height: 56px;
}

.footer-brand .brand-name {
  font-size: 18px;
  letter-spacing: 2.5px;
}

.footer-main p {
  max-width: 260px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-main nav,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-main strong {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
}

.footer-main a,
.footer-contact span,
.footer-bottom,
.legal-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  line-height: 1.5;
  text-decoration: none;
}

.footer-main a:hover,
.footer-main a:focus-visible,
.legal-links a:hover,
.legal-links a:focus-visible {
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  max-width: 1080px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 28px;
  margin: clamp(36px, 4vw, 52px) auto 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
}

.legal-links {
  display: inline-flex;
  gap: 24px;
}

.legal-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

.legal-body .site-header {
  background: var(--dark-header);
  box-shadow: 0 6px 26px rgba(0, 0, 0, 0.28);
}

.legal-page {
  background: #f7f5f2;
}

.legal-hero {
  display: flex;
  min-height: 430px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 150px var(--section-x) 76px;
  background-image:
    var(--legal-hero-overlay),
    url("/assets/relaunch/hero.jpg");
  background-position: center 42%;
  background-size: cover;
  color: var(--white);
  text-align: center;
}

.legal-hero h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(2.2rem, 7vw, 4.6rem);
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1.04;
}

.legal-hero > p:not(.badge) {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  line-height: 1.6;
}

.legal-jump {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
}

.legal-jump a {
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 30px;
  padding: 10px 18px;
  color: var(--white);
  font-weight: 500;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.legal-jump a:hover,
.legal-jump a:focus-visible {
  border-color: var(--accent);
  background: rgba(207, 106, 22, 0.16);
  color: var(--accent);
}

.legal-shell {
  display: grid;
  max-width: 1080px;
  gap: clamp(28px, 4vw, 52px);
  margin: 0 auto;
  padding: clamp(48px, 7vw, 86px) var(--section-x);
}

.legal-card {
  scroll-margin-top: 110px;
  border: 1px solid rgba(43, 43, 43, 0.08);
  border-radius: 8px;
  background: var(--white);
  padding: clamp(26px, 4vw, 52px);
}

.legal-card > h2 {
  margin: 0 0 28px;
  color: var(--text);
  font-size: clamp(1.8rem, 4.2vw, 3rem);
  font-weight: 500;
  letter-spacing: 0.5px;
  line-height: 1.08;
}

.legal-copy {
  color: var(--text-strong);
  font-size: 0.98rem;
  line-height: 1.72;
}

.legal-copy h2,
.legal-copy h3,
.legal-copy h4 {
  margin: 34px 0 12px;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 1.2;
  text-transform: uppercase;
}

.legal-copy h2 {
  border-top: 1px solid var(--line);
  padding-top: 30px;
  font-size: clamp(1.45rem, 3vw, 2.1rem);
}

.legal-copy h2:first-child,
.legal-copy h3:first-child,
.legal-copy h4:first-child {
  margin-top: 0;
  border-top: 0;
  padding-top: 0;
}

.legal-copy h3 {
  color: var(--accent);
  font-size: 1.18rem;
}

.legal-copy h4 {
  color: var(--text);
  font-size: 1rem;
}

.legal-copy p,
.legal-copy ul {
  margin: 0 0 16px;
}

.legal-copy ul {
  padding-left: 1.2rem;
}

.legal-copy li {
  margin-bottom: 8px;
}

.legal-copy a {
  color: var(--accent);
  font-weight: 500;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.legal-copy strong {
  color: var(--text);
  font-weight: 600;
}

.floating-call {
  position: fixed;
  z-index: 45;
  right: 18px;
  bottom: 18px;
  display: none;
  width: 60px;
  height: 60px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  text-decoration: none;
}

.floating-call svg {
  width: 26px;
  height: 26px;
}

.not-found {
  display: flex;
  min-height: 100svh;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: var(--section-y) var(--section-x);
  background-image:
    var(--not-found-overlay),
    url("/assets/relaunch/hero.jpg");
  background-position: center;
  background-size: cover;
  color: var(--white);
  text-align: center;
}

.not-found-brand .brand-logo {
  width: 56px;
  height: 56px;
}

.not-found h1 {
  margin: 0;
  font-size: clamp(2.1rem, 8vw, 4.8rem);
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1.04;
}

.not-found > p:not(.badge) {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  line-height: 1.6;
}

.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@supports (background-image: image-set(url("/assets/relaunch/hero-1536.webp") type("image/webp"))) {
  .hero {
    background-image: var(--hero-overlay), var(--hero-image);
  }

  .cta-band {
    background-image: var(--cta-image);
  }

  .slogan-band {
    background-image: var(--hero-image);
  }

  .work::before {
    background-image: var(--work-image);
  }

  .legal-hero {
    background-image: var(--legal-hero-overlay), var(--hero-image);
  }

  .not-found {
    background-image: var(--not-found-overlay), var(--hero-image);
  }
}

@media (min-width: 1040px) {
  .cta-band {
    background-attachment: fixed;
  }
}

@media (max-width: 1039px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle,
  .floating-call {
    display: flex;
  }

  .site-header {
    gap: 16px;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .brand-name {
    letter-spacing: 2px;
  }

  .hero {
    background-image:
      var(--hero-overlay),
      url("/assets/relaunch/hero-768.jpg");
    padding-top: 122px;
    padding-bottom: 70px;
  }

  @supports (background-image: image-set(url("/assets/relaunch/hero-768.webp") type("image/webp"))) {
    .hero {
      background-image: var(--hero-overlay), var(--hero-image-tablet);
    }

    .slogan-band {
      background-image: var(--hero-image-tablet);
    }

    .legal-hero {
      background-image: var(--legal-hero-overlay), var(--hero-image-tablet);
    }

    .not-found {
      background-image: var(--not-found-overlay), var(--hero-image-tablet);
    }
  }

  .region-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding-right: 18px;
    padding-left: 18px;
  }

  .brand {
    gap: 10px;
  }

  .brand-name {
    max-width: 178px;
    white-space: normal;
  }

  .hero {
    background-image:
      var(--hero-overlay),
      url("/assets/relaunch/hero-mobile.jpg");
    min-height: calc(100svh - 24px);
    padding: 108px 18px 62px;
  }

  .hero-content {
    width: min(100%, 320px);
  }

  .cta-band {
    background-image: url("/assets/relaunch/cta-mobile.jpg");
  }

  @supports (background-image: image-set(url("/assets/relaunch/hero-mobile.webp") type("image/webp"))) {
    .hero {
      background-image: var(--hero-overlay), var(--hero-image-mobile);
    }

    .slogan-band {
      background-image: var(--hero-image-mobile);
    }

    .legal-hero {
      background-image: var(--legal-hero-overlay), var(--hero-image-mobile);
    }

    .not-found {
      background-image: var(--not-found-overlay), var(--hero-image-mobile);
    }

    .cta-band {
      background-image: var(--cta-image-mobile);
    }
  }

  .hero-logo {
    width: clamp(96px, 30vw, 124px);
  }

  .hero h1 {
    margin-top: 22px;
    font-size: clamp(1.85rem, 9.2vw, 2.75rem);
  }

  .hero p {
    margin-top: 16px;
  }

  .hero-actions {
    width: min(100%, 330px);
    margin-top: 28px;
  }

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

  .section {
    padding-right: 20px;
    padding-left: 20px;
  }

  .button {
    width: 100%;
    min-height: 52px;
    padding-right: 20px;
    padding-left: 20px;
  }

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

  .footer-bottom,
  .legal-links {
    display: grid;
  }
}

@media (max-height: 700px) and (max-width: 760px) {
  .hero {
    padding-top: 92px;
    padding-bottom: 48px;
  }

  .hero-logo {
    width: 82px;
  }

  .hero h1 {
    margin-top: 14px;
    font-size: clamp(1.7rem, 9vw, 2.6rem);
  }

  .hero p {
    margin-top: 10px;
    font-size: 0.94rem;
  }

  .hero-actions {
    margin-top: 18px;
    gap: 10px;
  }

  .hero-actions .button {
    min-height: 46px;
  }

  .scroll-indicator {
    bottom: 10px;
  }
}
