﻿:root {
  --ink: #101819;
  --paper: #f3f7f3;
  --white: #ffffff;
  --muted: #5e6c6d;
  --line: rgba(16, 24, 25, .12);
  --green: #37bd68;
  --teal: #14acc7;
  --yellow: #f4cb4d;
  --charcoal: #1e282a;
  --radius: 18px;
  --shadow: 0 28px 80px rgba(12, 25, 29, .18);
  --anchor-offset: 98px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--anchor-offset);
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
  overflow-x: clip;
}

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

a {
  color: inherit;
}

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

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1120px, calc(100% - 32px));
  min-height: 68px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .34), rgba(255, 255, 255, .13)),
    rgba(8, 20, 22, .18);
  box-shadow: 0 20px 70px rgba(0, 0, 0, .22), inset 0 1px 0 rgba(255, 255, 255, .38);
  backdrop-filter: blur(22px) saturate(150%);
  transform: translateX(-50%);
  transition: background .25s ease, box-shadow .25s ease, top .25s ease;
}

.site-header.is-scrolled {
  top: 10px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .55), rgba(255, 255, 255, .2)),
    rgba(8, 20, 22, .28);
  box-shadow: 0 16px 52px rgba(0, 0, 0, .2), inset 0 1px 0 rgba(255, 255, 255, .45);
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  min-width: 0;
  color: var(--white);
  text-decoration: none;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .24);
}

.brand-mark,
.brand-name {
  display: inline-block;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1;
}

.brand-mark {
  color: var(--green);
  font-size: 28px;
}

.brand-name {
  color: var(--teal);
  font-size: 25px;
}

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

.primary-nav a {
  padding: 11px 14px;
  border-radius: 999px;
  color: rgba(255, 255, 255, .92);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: background .2s ease, color .2s ease;
}

.primary-nav a:hover {
  background: rgba(255, 255, 255, .18);
  color: var(--white);
}

#leistungen,
#projekte,
#marken,
#ablauf,
#kontakt {
  scroll-margin-top: var(--anchor-offset);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 6px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  min-height: 88svh;
  padding: 108px clamp(18px, 5vw, 72px) 88px;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -3;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
  transform: scale(1.02);
  animation: slow-zoom 16s ease-in-out infinite alternate;
}

.hero-overlay {
  z-index: -2;
  background:
    radial-gradient(circle at 72% 35%, rgba(20, 172, 199, .22), transparent 34%),
    linear-gradient(90deg, rgba(8, 15, 17, .86) 0%, rgba(8, 15, 17, .58) 46%, rgba(8, 15, 17, .18) 100%),
    linear-gradient(0deg, rgba(16, 24, 25, .72), rgba(16, 24, 25, .02) 52%);
}

.hero::after {
  content: "";
  position: absolute;
  right: -10vw;
  bottom: -16vw;
  z-index: -1;
  width: 60vw;
  height: 34vw;
  background: linear-gradient(135deg, rgba(55, 189, 104, .42), rgba(20, 172, 199, .34), rgba(244, 203, 77, .22));
  filter: blur(54px);
  transform: rotate(-8deg);
  pointer-events: none;
}

.hero-content {
  align-self: end;
  max-width: 720px;
  padding-bottom: 18px;
}

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

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(42px, 5.2vw, 72px);
  line-height: .97;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4.1vw, 58px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.1;
}

.hero-text {
  max-width: 640px;
  color: rgba(255, 255, 255, .84);
  font-size: clamp(18px, 2vw, 22px);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.button.primary {
  background: linear-gradient(135deg, var(--green), var(--teal));
  color: var(--white);
  box-shadow: 0 16px 38px rgba(20, 172, 199, .24);
}

.button.whatsapp {
  background: #25d366;
  color: #071d10;
  box-shadow: 0 16px 38px rgba(37, 211, 102, .22);
}

.button.glass {
  border-color: rgba(255, 255, 255, .58);
  background: rgba(255, 255, 255, .14);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.button.dark {
  background: var(--charcoal);
  color: var(--white);
}

.hero-panel {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: 70px;
  width: min(360px, calc(100% - 36px));
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .24), rgba(255, 255, 255, .08)),
    rgba(11, 28, 31, .24);
  color: var(--white);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px) saturate(150%);
}

.panel-kicker {
  display: block;
  margin-bottom: 8px;
  color: #b8f1ca;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  margin-bottom: 8px;
  font-size: 23px;
}

.hero-panel p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, .8);
}

.intro-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, .56);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .74), rgba(255, 255, 255, .46)),
    rgba(255, 255, 255, .38);
  box-shadow: 0 24px 80px rgba(9, 24, 26, .12);
  backdrop-filter: blur(20px) saturate(150%);
  overflow: hidden;
  position: relative;
  z-index: 4;
}

.intro-strip div {
  padding: 16px 22px;
  border-right: 1px solid rgba(16, 24, 25, .1);
}

.intro-strip div:last-child {
  border-right: 0;
}

.intro-strip span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.intro-strip strong {
  font-size: clamp(18px, 1.8vw, 22px);
}

.section,
.project-section,
.brand-section,
.brand-detail-section,
.product-section,
.brand-cta,
.contact-section {
  padding: clamp(34px, 5vw, 56px) clamp(18px, 5vw, 72px);
}

.section-tight {
  padding-top: clamp(38px, 5vw, 56px);
  padding-bottom: clamp(38px, 5vw, 56px);
}

.section-head {
  max-width: 920px;
  margin-bottom: 20px;
}

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

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

.service-card {
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .92), rgba(255, 255, 255, .65)),
    linear-gradient(135deg, rgba(55, 189, 104, .09), rgba(20, 172, 199, .09));
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.service-card:hover {
  border-color: rgba(20, 172, 199, .38);
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.service-card span {
  display: block;
  margin-bottom: 32px;
  color: var(--teal);
  font-weight: 900;
}

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

.project-section {
  display: grid;
  grid-template-columns: minmax(300px, .74fr) minmax(420px, 1.26fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  background:
    radial-gradient(circle at 18% 10%, rgba(55, 189, 104, .12), transparent 28%),
    radial-gradient(circle at 88% 70%, rgba(20, 172, 199, .12), transparent 24%),
    #121a1c;
  color: var(--white);
}

.project-copy {
  position: sticky;
  top: 130px;
}

.project-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, .72);
  font-size: 18px;
}

.project-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.project-list li {
  display: flex;
  gap: 14px;
  align-items: center;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .86);
  font-weight: 800;
  backdrop-filter: blur(12px);
}

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

.project-gallery figure {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  margin: 0;
  box-shadow: 0 40px 110px rgba(0, 0, 0, .36);
}

.project-gallery figure::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(255, 255, 255, .02), rgba(16, 24, 25, .48));
  pointer-events: none;
}

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

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

.process {
  background: #eef5f1;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.timeline-item {
  min-height: 172px;
  padding: 22px;
  background: var(--white);
}

.timeline-item span {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--green);
  font-weight: 900;
}

.timeline-item p {
  color: var(--muted);
}

.quality-marquee {
  overflow: hidden;
  max-width: 100%;
  padding: 10px 0;
  background: linear-gradient(90deg, var(--green), var(--teal), var(--yellow));
}

.brand-section {
  background:
    radial-gradient(circle at 12% 15%, rgba(55, 189, 104, .12), transparent 30%),
    radial-gradient(circle at 86% 45%, rgba(20, 172, 199, .12), transparent 26%),
    var(--paper);
}

.brand-section .section-head p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 12px;
}

.brand-grid article {
  min-height: 158px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .84), rgba(255, 255, 255, .58)),
    rgba(255, 255, 255, .5);
  box-shadow: 0 20px 58px rgba(12, 25, 29, .08);
}

.brand-grid article:has(.logo-light) {
  background: #121a1c;
  color: var(--white);
}

.brand-grid article:has(.logo-light) span {
  color: rgba(255, 255, 255, .72);
}

.brand-grid img {
  width: 100%;
  max-width: 150px;
  height: 44px;
  margin-bottom: 16px;
  object-fit: contain;
  object-position: left center;
}

.logo-light {
  filter: none;
}

.brand-grid strong {
  display: block;
  margin-bottom: 10px;
  font-size: 25px;
}

.brand-grid span {
  color: var(--muted);
}

.brand-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(100%, 610px);
  margin-top: 16px;
  padding: 16px 18px;
  border: 1px solid rgba(20, 172, 199, .24);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(55, 189, 104, .15), rgba(20, 172, 199, .18)),
    rgba(255, 255, 255, .68);
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 20px 55px rgba(12, 25, 29, .1);
  backdrop-filter: blur(12px);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.brand-link:hover {
  transform: translateY(-2px);
  border-color: rgba(20, 172, 199, .42);
  box-shadow: 0 24px 70px rgba(12, 25, 29, .14);
}

.brand-link::after {
  content: "Ansehen \2192";
  flex: 0 0 auto;
  align-self: end;
  padding: 10px 0 4px 28px;
  border-left: 1px solid rgba(12, 25, 29, .16);
  color: #087b91;
  font-size: 17px;
  font-weight: 900;
  white-space: nowrap;
}

.brand-link span {
  display: grid;
  gap: 6px;
}

.brand-link strong {
  font-size: clamp(20px, 2vw, 27px);
}

.brand-link small {
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.subpage-hero {
  position: relative;
  display: grid;
  min-height: 56svh;
  padding: 124px clamp(18px, 5vw, 72px) 54px;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}

.subpage-media,
.subpage-media::after {
  position: absolute;
  inset: 0;
}

.subpage-media {
  z-index: -2;
}

.subpage-media::after {
  content: "";
  background:
    linear-gradient(90deg, rgba(8, 15, 17, .84), rgba(8, 15, 17, .46), rgba(8, 15, 17, .2)),
    linear-gradient(0deg, rgba(8, 15, 17, .58), transparent 55%);
}

.subpage-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.subpage-copy {
  align-self: end;
  max-width: 840px;
}

.subpage-copy p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(255, 255, 255, .82);
  font-size: 20px;
}

.brand-detail-section {
  background: var(--paper);
}

.brand-detail-grid,
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.brand-detail-grid article,
.product-grid article {
  min-height: 210px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 52px rgba(12, 25, 29, .07);
}

.brand-detail-grid article:has(.logo-light) {
  background: #121a1c;
  color: var(--white);
}

.brand-detail-grid article:has(.logo-light) p {
  color: rgba(255, 255, 255, .72);
}

.brand-detail-grid img {
  width: 100%;
  max-width: 170px;
  height: 52px;
  margin-bottom: 20px;
  object-fit: contain;
  object-position: left center;
}

.brand-detail-grid p,
.product-grid p {
  color: var(--muted);
}

.product-section {
  background: #eef5f1;
}

.brand-cta {
  background:
    radial-gradient(circle at 85% 18%, rgba(20, 172, 199, .16), transparent 32%),
    #121a1c;
  color: var(--white);
}

.brand-cta > div {
  max-width: 760px;
}

.brand-cta p:not(.eyebrow) {
  color: rgba(255, 255, 255, .72);
  font-size: 18px;
}

.marquee-track {
  display: flex;
  width: max-content;
  max-width: none;
  gap: 42px;
  animation: marquee 24s linear infinite;
}

.marquee-track span {
  color: var(--white);
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(320px, 1.1fr);
  gap: 18px;
  align-items: stretch;
}

.contact-image {
  min-height: 360px;
  overflow: hidden;
  border-radius: var(--radius);
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(26px, 4.5vw, 48px);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.partners-section {
  padding: clamp(32px, 5vw, 50px) clamp(18px, 5vw, 72px);
  background: var(--paper);
}

.partner-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 12px;
}

.partner-logos img {
  width: 100%;
  height: 82px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .82);
  object-fit: contain;
  box-shadow: 0 18px 48px rgba(12, 25, 29, .07);
}

.partner-logos img.logo-light {
  background: #121a1c;
}

.contact-card p {
  color: var(--muted);
  font-size: 18px;
}

address {
  margin-top: 20px;
  color: #334044;
  font-style: normal;
}

address strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 22px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 5vw, 72px);
  background: var(--charcoal);
  color: rgba(255, 255, 255, .72);
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  max-width: 220px;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .12);
}

.footer-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.site-footer a {
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
}

.legal-page {
  width: min(100%, 920px);
  max-width: 920px;
  min-height: 78vh;
  margin: 0 auto;
  padding: 150px clamp(18px, 5vw, 72px) 80px;
}

.legal-page h1 {
  max-width: 100%;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.04;
  overflow-wrap: break-word;
  word-break: normal;
}

.legal-page h2 {
  margin-top: 34px;
  font-size: 24px;
}

.legal-page p {
  max-width: 880px;
  color: #3f5155;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}

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

@keyframes slow-zoom {
  from {
    transform: scale(1.02);
  }
  to {
    transform: scale(1.055);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

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

@media (max-width: 980px) {
  .hero-content {
    padding-bottom: 0;
  }

  .service-grid,
  .brand-grid,
  .partner-logos,
  .brand-detail-grid,
  .product-grid,
  .timeline,
  .project-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

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

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

  .project-copy {
    position: static;
  }

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

@media (max-width: 760px) {
  :root {
    --anchor-offset: 88px;
  }

  body {
    width: 100%;
  }

  .site-header {
    top: 10px;
    right: 10px;
    left: 10px;
    width: auto;
    max-width: none;
    min-height: 62px;
    padding: 9px 10px 9px 14px;
    transform: none;
  }

  .brand {
    gap: 5px;
  }

  .brand-mark {
    font-size: 22px;
  }

  .brand-name {
    font-size: 20px;
  }

  .menu-toggle {
    display: block;
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    border-color: rgba(255, 255, 255, .32);
    background: rgba(255, 255, 255, .2);
  }

  .primary-nav {
    position: absolute;
    top: 70px;
    right: 0;
    left: 0;
    max-width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border-radius: var(--radius);
    background:
      linear-gradient(135deg, rgba(255, 255, 255, .86), rgba(255, 255, 255, .68)),
      rgba(255, 255, 255, .7);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
  }

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

  .primary-nav a {
    color: var(--ink);
  }

  .primary-nav a:hover {
    background: rgba(20, 172, 199, .12);
    color: #087b91;
  }

  .hero {
    display: block;
    width: 100%;
    max-width: 100%;
    min-height: auto;
    padding: 96px 18px 22px;
    overflow-x: hidden;
  }

  .hero::after {
    right: -24vw;
    width: 80vw;
  }

  .hero-content {
    width: min(100%, calc(100vw - 56px));
    max-width: calc(100vw - 56px);
    min-width: 0;
    padding-bottom: 0;
    overflow: hidden;
  }

  .hero h1,
  .subpage-copy h1 {
    width: min(100%, calc(100vw - 56px));
    max-width: calc(100vw - 56px);
    font-size: clamp(30px, 8vw, 36px);
    line-height: 1.04;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .hero-text,
  .subpage-copy p:not(.eyebrow) {
    width: min(100%, calc(100vw - 56px));
    max-width: calc(100vw - 56px);
    font-size: 17px;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .hero-panel {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100%, calc(100vw - 56px));
    max-width: calc(100vw - 56px);
    min-width: 0;
    margin-top: 18px;
    padding: 16px;
    overflow-wrap: anywhere;
  }

  .intro-strip {
    grid-template-columns: 1fr;
    width: calc(100% - 36px);
    margin: 12px auto 0;
    border-radius: var(--radius);
  }

  .intro-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .intro-strip div:last-child {
    border-bottom: 0;
  }

  .contact-image {
    height: 340px;
    min-height: 0;
  }

  .project-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 230px;
  }

  .marquee-track {
    gap: 28px;
  }

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

  .footer-logo {
    max-width: 210px;
  }

  .legal-page {
    width: 100%;
    max-width: 100%;
    padding: 104px 18px 44px;
  }

  .legal-page h1 {
    max-width: 100%;
    font-size: clamp(30px, 8vw, 37px);
    line-height: 1.08;
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphens: auto;
  }

  .legal-page p {
    max-width: 100%;
  }
}

@media (max-width: 440px) {
  h1 {
    font-size: 32px;
    line-height: 1.06;
    overflow-wrap: break-word;
  }

  h2 {
    font-size: 30px;
    line-height: 1.06;
  }

  .legal-page h1 {
    font-size: 30px;
  }

  .legal-page h2 {
    font-size: 23px;
    line-height: 1.12;
  }

  .hero-text {
    font-size: 16px;
  }

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

  .button {
    width: 100%;
  }

  .brand-link {
    align-items: flex-start;
    flex-direction: column;
  }

  .brand-link::after {
    align-self: stretch;
    padding: 12px 0 0;
    border-left: 0;
    border-top: 1px solid rgba(12, 25, 29, .14);
  }

  .hero-panel strong {
    font-size: 20px;
  }

  .brand-mark {
    font-size: 20px;
  }

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

  .section,
  .project-section,
  .brand-section,
  .partners-section,
  .brand-detail-section,
  .product-section,
  .brand-cta,
  .contact-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .service-grid,
  .brand-grid,
  .partner-logos,
  .brand-detail-grid,
  .product-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .service-card,
  .brand-grid article,
  .brand-detail-grid article,
  .product-grid article,
  .timeline-item {
    min-height: auto;
  }

  .subpage-hero {
    min-height: auto;
    padding: 96px 18px 40px;
    overflow-x: hidden;
  }

  .subpage-copy {
    width: min(100%, calc(100vw - 56px));
    max-width: calc(100vw - 56px);
    min-width: 0;
  }

  .project-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 210px;
  }

  .contact-image {
    height: 260px;
  }

  .contact-card {
    padding: 24px 20px;
  }

  .partner-logos img {
    height: 74px;
    padding: 16px;
  }

}

