@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("assets/fonts/dm-sans-latin.woff2") format("woff2");
}

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

:root {
  --primary: #12304b;
  --primary-deep: #12304b;
  --primary-soft: #e5eff0;
  --accent: #f18a19;
  --accent-dark: #d97205;
  --accent-soft: #fff1e1;
  --white: #ffffff;
  --off-white: #f7f9f8;
  --text: #18353a;
  --muted: #657b7e;
  --border: #dbe5e5;
  --success: #24744b;
  --error: #b93b33;
  --shadow: 0 18px 55px rgba(18, 48, 75, 0.1);
  --shadow-hover: 0 24px 64px rgba(18, 48, 75, 0.16);
  --radius: 22px;
  --radius-small: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--off-white);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

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

a {
  color: inherit;
}

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

button {
  cursor: pointer;
}

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

h1,
h2,
h3 {
  font-family: "Manrope", Arial, sans-serif;
  letter-spacing: -0.045em;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.9rem, 6vw, 5.5rem);
  line-height: 1.02;
}

h2 {
  margin-bottom: 16px;
  color: var(--primary);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.08;
}

h3 {
  margin-bottom: 9px;
  color: var(--primary);
  font-size: 1.25rem;
  line-height: 1.25;
}

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

.section {
  padding: 112px 0;
}

.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  z-index: 100;
  padding: 12px 18px;
  color: var(--white);
  background: var(--accent);
  border-radius: 8px;
  font-weight: 700;
}

.skip-link:focus {
  top: 20px;
}

.eyebrow {
  margin-bottom: 13px;
  color: var(--accent-dark);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: var(--accent);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 23px;
  border: 2px solid var(--accent);
  border-radius: 999px;
  color: var(--primary-deep);
  background: var(--accent);
  font-weight: 700;
  line-height: 1.1;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  border-color: var(--accent-dark);
  background: var(--accent-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.button-small {
  min-height: 42px;
  padding: 10px 16px;
  font-size: 0.86rem;
}

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
  background: transparent;
}

.button-outline-light:hover,
.button-outline-light:focus-visible {
  border-color: var(--white);
  color: var(--primary);
  background: var(--white);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(219, 229, 229, 0.7);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 78px;
  padding-block: 6px;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--primary);
  text-decoration: none;
}

.brand-logo {
  width: 104px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
}

.main-nav a {
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: var(--accent-dark);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-phone {
  display: flex;
  flex-direction: column;
  color: var(--primary);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.15;
  text-decoration: none;
}

.phone-label {
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--primary-soft);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--primary);
}

.section-dark,
.upload-section {
  color: var(--white);
  background: var(--primary);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 98px 0 100px;
}

.hero::after {
  position: absolute;
  right: -180px;
  bottom: -280px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  display: grid;
  align-items: center;
  gap: 70px;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
}

.hero h1 {
  max-width: 790px;
  color: var(--white);
}

.hero-text {
  max-width: 650px;
  margin-bottom: 31px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.18rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 35px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  list-style: none;
}

.hero-facts li::before {
  margin-right: 7px;
  color: var(--accent);
  content: "✓";
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: 510px;
}

.hero-photo-card {
  position: absolute;
  inset: 29px 9px 28px 19px;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 34px;
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.28);
  transform: rotate(-2deg);
}

.hero-photo-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 46%, rgba(5, 30, 49, 0.88));
  content: "";
}

.hero-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo-card figcaption {
  position: absolute;
  right: 23px;
  bottom: 22px;
  left: 23px;
  z-index: 1;
  color: var(--white);
}

.hero-photo-card span,
.hero-photo-card strong {
  display: block;
}

.hero-photo-card span {
  margin-bottom: 3px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-photo-card strong {
  font-size: 1.55rem;
}

.hero-photo-credit {
  position: absolute;
  right: 15px;
  bottom: 0;
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.61rem;
}

.hero-photo-credit a {
  color: inherit;
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.hero-orbit-one {
  inset: 4% 6% 6% 5%;
}

.hero-orbit-two {
  inset: 18% -9% -9% 20%;
}

.visual-card {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.22);
}

.visual-card-main {
  top: 26px;
  left: 15px;
  width: 270px;
  padding: 18px;
  background: #f9fbfb;
  transform: rotate(-5deg);
}

.visual-shirt {
  display: grid;
  height: 235px;
  margin-bottom: 12px;
  place-items: center;
  border-radius: 15px;
  background: #e9eeee;
  clip-path: polygon(20% 4%, 36% 0, 42% 9%, 58% 9%, 64% 0, 80% 4%, 100% 20%, 86% 38%, 76% 31%, 76% 100%, 24% 100%, 24% 31%, 14% 38%, 0 20%);
}

.visual-shirt-logo {
  color: var(--accent);
  font-family: Georgia, serif;
  font-size: 4.7rem;
  font-weight: 700;
}

.visual-label {
  margin: 0;
  color: var(--accent-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.visual-title {
  margin: 0;
  color: var(--primary);
  font-size: 0.94rem;
  font-weight: 700;
}

.visual-card-poster {
  top: 118px;
  right: 0;
  display: flex;
  width: 188px;
  height: 252px;
  padding: 20px;
  flex-direction: column;
  color: var(--white);
  background: var(--accent);
  transform: rotate(8deg);
}

.poster-topline,
.poster-detail {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.poster-title {
  margin: auto 0;
  color: var(--primary);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.09em;
  line-height: 0.88;
}

.visual-card-window {
  right: 42px;
  bottom: 4px;
  width: 225px;
  height: 137px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.93);
  transform: rotate(-3deg);
}

.window-lines {
  display: block;
  height: 78px;
  margin-bottom: 8px;
  border-radius: 10px;
  background: repeating-linear-gradient(90deg, var(--primary) 0, var(--primary) 3px, transparent 3px, transparent 27px), var(--primary-soft);
}

.visual-badge {
  position: absolute;
  bottom: 125px;
  left: 0;
  z-index: 2;
  display: flex;
  width: 175px;
  padding: 10px 15px;
  align-items: center;
  gap: 9px;
  border-radius: 999px;
  color: var(--primary);
  background: var(--white);
  box-shadow: var(--shadow);
  font-size: 0.7rem;
  line-height: 1.2;
}

.visual-badge-logo {
  width: 27px;
  height: auto;
  flex: 0 0 auto;
}

.trust-bar {
  background: var(--white);
  box-shadow: 0 10px 34px rgba(18, 48, 75, 0.06);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.trust-grid div {
  min-height: 105px;
  padding: 21px 15px;
  border-right: 1px solid var(--border);
}

.trust-grid div:first-child {
  border-left: 1px solid var(--border);
}

.trust-grid span {
  display: block;
  margin-bottom: 5px;
  color: var(--accent-dark);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.77rem;
  font-weight: 800;
}

.trust-grid strong {
  display: block;
  color: var(--primary);
  font-size: 0.9rem;
  line-height: 1.3;
}

.section-heading {
  display: grid;
  align-items: end;
  gap: 48px;
  margin-bottom: 43px;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
}

.section-heading h2,
.section-heading p {
  margin-bottom: 0;
}

.section-heading > p,
.request-copy > p {
  color: var(--muted);
}

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

.service-card {
  min-height: 275px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.service-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-hover);
  transform: translateY(-6px);
}

.service-icon {
  display: grid;
  width: 45px;
  height: 45px;
  margin-bottom: 30px;
  place-items: center;
  border-radius: 14px;
  color: var(--primary);
  background: var(--accent-soft);
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 800;
}

.service-card p {
  color: var(--muted);
  font-size: 0.92rem;
}

.service-card a {
  color: var(--accent-dark);
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
}

.service-card a span {
  display: inline-block;
  transition: transform 180ms ease;
}

.service-card a:hover span {
  transform: translateX(4px);
}

.service-card-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 12px;
}

.service-card a.catalog-download {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--primary);
  background: var(--off-white);
  font-size: 0.76rem;
  transition: border-color 180ms ease, background 180ms ease;
}

.service-card a.catalog-download:hover,
.service-card a.catalog-download:focus-visible {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.catalog-meta {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.7rem;
}

.service-card-accent {
  border-color: var(--primary);
  background: var(--primary);
}

.service-card-accent h3,
.service-card-accent p {
  color: var(--white);
}

.club-section {
  padding: 24px 0 0;
}

.club-card {
  display: grid;
  align-items: center;
  gap: 28px;
  padding: 38px 48px;
  overflow: hidden;
  border-radius: 28px;
  color: var(--white);
  background: var(--primary);
  box-shadow: var(--shadow);
  grid-template-columns: auto minmax(0, 1fr) auto;
}

.club-discount {
  display: flex;
  width: 148px;
  height: 148px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 50%;
  color: var(--primary);
  background: var(--accent);
  transform: rotate(-7deg);
}

.club-discount strong {
  font-family: "Manrope", Arial, sans-serif;
  font-size: 3rem;
  letter-spacing: -0.12em;
  line-height: 0.9;
}

.club-discount span {
  font-size: 1.5rem;
}

.club-discount small {
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.club-copy h2,
.club-copy p {
  color: var(--white);
}

.club-copy p:last-child {
  max-width: 690px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

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

.process-card {
  position: relative;
  min-height: 208px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
}

.process-card:not(:last-child)::after {
  position: absolute;
  top: 43px;
  right: -13px;
  z-index: 2;
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--accent);
  content: "›";
  font-size: 1.4rem;
  line-height: 1;
}

.process-card span {
  display: block;
  margin-bottom: 27px;
  color: var(--accent-dark);
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 800;
}

.process-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.gallery-section {
  background: var(--white);
}

.gallery-grid {
  display: grid;
  gap: 16px;
  grid-auto-rows: 260px;
  grid-template-columns: repeat(3, 1fr);
}

.gallery-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--primary-soft);
}

.gallery-item-large {
  grid-row: span 2;
}

.gallery-item-wide {
  grid-column: span 2;
}

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

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

.gallery-item figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 42px 18px 17px;
  color: var(--white);
  background: linear-gradient(transparent, rgba(0, 44, 53, 0.85));
}

.gallery-item span,
.gallery-item strong {
  display: block;
}

.gallery-item span {
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* KUNDENLOGOS PREVIEW START: komplett entfernbar */
.customer-preview-section {
  scroll-margin-top: 86px;
  padding: 68px 0 72px;
  background: var(--off-white);
}

.customer-preview-heading {
  display: grid;
  align-items: end;
  gap: 24px;
  margin-bottom: 28px;
  grid-template-columns: 1fr minmax(320px, 0.86fr);
}

.customer-preview-heading h2,
.customer-preview-heading p {
  margin-bottom: 0;
}

.customer-preview-heading > p {
  color: var(--muted);
}

.customer-logo-marquee {
  --logo-gap: 14px;
  overflow: hidden;
  padding: 5px 0 12px;
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.customer-logo-track {
  display: flex;
  width: max-content;
  animation: customer-logo-scroll 92s linear infinite;
}

.customer-logo-marquee:hover .customer-logo-track {
  animation-play-state: paused;
}

.customer-logo-set {
  display: flex;
  gap: var(--logo-gap);
  padding-right: var(--logo-gap);
}

.customer-logo-card {
  display: flex;
  width: 278px;
  min-height: 160px;
  padding: 22px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--primary);
  background: var(--white);
  text-align: center;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

@keyframes customer-logo-scroll {
  to {
    transform: translateX(-50%);
  }
}

.customer-logo-card:hover {
  border-color: var(--accent);
  box-shadow: 0 14px 28px rgba(18, 48, 75, 0.1);
  transform: translateY(-4px);
}

.customer-logo-card img {
  display: block;
  width: 100%;
  max-width: 232px;
  height: 108px;
  object-fit: contain;
}

.customer-preview-note {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 0.76rem;
  text-align: right;
}
/* KUNDENLOGOS PREVIEW END */

.request-section {
  background: var(--primary-soft);
}

.request-grid,
.upload-grid {
  display: grid;
  align-items: start;
  gap: 62px;
  grid-template-columns: minmax(0, 0.76fr) minmax(560px, 1.24fr);
}

.request-copy {
  position: sticky;
  top: 115px;
}

.contact-card {
  display: flex;
  margin-top: 32px;
  padding: 18px;
  align-items: center;
  gap: 14px;
  border-radius: var(--radius-small);
  color: var(--white);
  background: var(--primary);
}

.contact-card-icon {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border-radius: 50%;
  color: var(--primary);
  background: var(--accent);
  font-size: 1.3rem;
}

.contact-card small,
.contact-card a {
  display: block;
}

.contact-card small {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.75rem;
}

.contact-card a {
  font-weight: 700;
  text-decoration: none;
}

.contact-card a + a {
  margin-top: 3px;
}

.opening-hours-card {
  margin-top: 14px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-small);
  background: rgba(255, 255, 255, 0.72);
}

.opening-hours-card h3 {
  margin-bottom: 10px;
  font-size: 1rem;
}

.opening-hours-card dl {
  margin: 0;
}

.opening-hours-card dl div {
  display: flex;
  gap: 12px;
}

.opening-hours-card dt {
  min-width: 62px;
  color: var(--primary);
  font-weight: 700;
}

.opening-hours-card dd {
  margin: 0;
  color: var(--muted);
}

.form-card {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  gap: 17px;
  margin-bottom: 20px;
  grid-template-columns: repeat(2, 1fr);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-field label,
.checkbox-field {
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  background: var(--off-white);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.form-field input,
.form-field select {
  height: 48px;
  padding: 0 12px;
}

.form-field textarea {
  min-height: 125px;
  padding: 11px 12px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(241, 138, 25, 0.18);
}

.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 500;
  line-height: 1.45;
}

.checkbox-field input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--accent);
}

.checkbox-field a {
  color: var(--primary);
  font-weight: 700;
}

.hidden-field {
  position: absolute;
  left: -9999px;
}

.upload-section h2 {
  color: var(--white);
}

.upload-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

.upload-info {
  margin: 26px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.82);
  list-style: none;
}

.upload-info li {
  margin-bottom: 8px;
}

.upload-info li::before {
  margin-right: 8px;
  color: var(--accent);
  content: "✓";
  font-weight: 700;
}

.file-dropzone {
  position: relative;
  display: flex;
  min-height: 120px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 2px dashed #b8cccc;
  border-radius: var(--radius-small);
  background: var(--off-white);
  text-align: center;
  transition: border-color 160ms ease, background 160ms ease;
}

.file-dropzone:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.file-dropzone input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  opacity: 0;
}

.file-dropzone-title {
  color: var(--primary);
  font-weight: 700;
}

.file-dropzone small {
  color: var(--muted);
}

.file-list {
  margin: 7px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.78rem;
}

.form-message {
  display: none;
  margin: 0 0 16px;
  padding: 11px 13px;
  border-radius: 9px;
  font-size: 0.83rem;
  font-weight: 700;
}

.form-message:not(:empty) {
  display: block;
}

.form-message-error {
  color: var(--error);
  background: #fff0ee;
}

.form-message-success {
  color: var(--success);
  background: #e8f7ef;
}

.form-message-pending {
  color: var(--primary);
  background: var(--primary-soft);
}

.button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.site-footer {
  padding: 70px 0 20px;
  color: rgba(255, 255, 255, 0.68);
  background: var(--primary-deep);
}

.footer-grid {
  display: grid;
  gap: 44px;
  padding-bottom: 44px;
  grid-template-columns: 1.55fr 0.85fr 1.2fr 1.1fr 0.8fr;
}

.brand-footer {
  margin-bottom: 16px;
  color: var(--white);
}

.brand-logo-light {
  width: 142px;
}

.footer-grid p {
  max-width: 410px;
  font-size: 0.92rem;
}

.footer-grid h2 {
  margin-bottom: 13px;
  color: var(--white);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 0.77rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-grid li {
  margin-bottom: 7px;
  font-size: 0.9rem;
}

.footer-grid a {
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 160ms ease;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 0.8rem;
}

.footer-bottom p {
  margin-bottom: 0;
}

.footer-bottom a {
  color: var(--white);
  text-decoration: none;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

.thank-you-page {
  min-height: 100vh;
  background: var(--primary);
}

.thank-you-main {
  display: grid;
  min-height: 100vh;
  padding: 30px;
  place-items: center;
}

.thank-you-card {
  width: min(100%, 620px);
  padding: 46px;
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.thank-you-card .brand {
  display: flex;
  justify-content: center;
  margin-bottom: 38px;
}

.thank-you-card .brand-logo {
  width: 150px;
}

.success-icon {
  display: grid;
  width: 76px;
  height: 76px;
  margin: 0 auto 22px;
  place-items: center;
  border-radius: 50%;
  color: var(--primary);
  background: var(--accent);
  font-size: 2.4rem;
  font-weight: 700;
}

.thank-you-card h1 {
  color: var(--primary);
  font-size: clamp(2.1rem, 5vw, 3.4rem);
}

.thank-you-card p:not(.eyebrow) {
  margin-bottom: 28px;
  color: var(--muted);
}

.legal-page {
  min-height: 100vh;
  background: var(--off-white);
}

.legal-header {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

.legal-content {
  max-width: 820px;
  padding-top: 74px;
  padding-bottom: 90px;
}

.legal-content h1 {
  color: var(--primary);
  font-size: clamp(2.7rem, 7vw, 4.8rem);
  overflow-wrap: anywhere;
}

.legal-content h2 {
  margin-top: 32px;
  font-size: 1.35rem;
  letter-spacing: -0.025em;
}

.legal-content h3 {
  margin-top: 22px;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.legal-content ul {
  padding-left: 20px;
}

.legal-content li + li {
  margin-top: 5px;
}

.legal-content a:not(.button) {
  color: var(--primary);
  font-weight: 700;
}

.signature-line {
  width: 100%;
  max-width: 540px;
  min-height: 24px;
  border-bottom: 1px solid var(--muted);
}

.legal-content > .button {
  margin-top: 24px;
}

.legal-notice {
  margin: 24px 0 32px;
  padding: 17px 19px;
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius-small) var(--radius-small) 0;
  background: var(--accent-soft);
}

.legal-notice strong {
  color: var(--primary);
}

.legal-notice p {
  margin: 3px 0 0;
  color: var(--muted);
}

@media (max-width: 1120px) {
  .main-nav {
    gap: 13px;
  }

  .header-phone {
    display: none;
  }

  .hero-grid {
    gap: 35px;
  }

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

@media (max-width: 900px) {
  .section {
    padding: 82px 0;
  }

  .header-inner {
    min-height: 84px;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .main-nav {
    position: absolute;
    top: 84px;
    right: 0;
    left: 0;
    display: none;
    padding: 18px 20px 21px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: grid;
    gap: 3px;
  }

  .main-nav a {
    padding: 7px 0;
  }

  .hero {
    padding: 76px 0 86px;
  }

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

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

  .hero-visual {
    width: min(100%, 540px);
    min-height: 460px;
    margin-inline: auto;
  }

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

  .trust-grid div:nth-child(4) {
    border-left: 1px solid var(--border);
  }

  .section-heading,
  .request-grid,
  .upload-grid {
    gap: 22px;
    grid-template-columns: 1fr;
  }

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

  .club-card {
    grid-template-columns: auto 1fr;
  }

  .club-card .button {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .request-copy {
    position: static;
  }

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

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  h1 {
    font-size: clamp(2.7rem, 13vw, 4.2rem);
  }

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

  .section {
    padding: 68px 0;
  }

  .header-actions {
    display: none;
  }

  .brand-logo {
    width: 92px;
  }

  .hero {
    padding-top: 65px;
  }

  .hero-text {
    font-size: 1.05rem;
  }

  .hero-facts {
    display: grid;
    gap: 6px;
  }

  .hero-visual {
    min-height: 355px;
  }

  .hero-photo-card {
    inset: 12px 4px 26px 8px;
    border-radius: 24px;
  }

  .hero-photo-card figcaption {
    right: 17px;
    bottom: 18px;
    left: 17px;
  }

  .hero-photo-card strong {
    font-size: 1.26rem;
  }

  .hero-photo-credit {
    right: 7px;
  }

  .visual-card-main {
    width: 205px;
  }

  .visual-shirt {
    height: 170px;
  }

  .visual-shirt-logo {
    font-size: 3.6rem;
  }

  .visual-card-poster {
    top: 76px;
    width: 142px;
    height: 194px;
    padding: 15px;
  }

  .poster-title {
    font-size: 1.53rem;
  }

  .visual-card-window {
    right: 25px;
    width: 170px;
    height: 101px;
  }

  .window-lines {
    height: 48px;
  }

  .visual-badge {
    bottom: 140px;
    width: 156px;
  }

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

  .trust-grid div,
  .trust-grid div:nth-child(4) {
    min-height: auto;
    padding: 14px 4px;
    border-right: 0;
    border-bottom: 1px solid var(--border);
    border-left: 0;
  }

  .trust-grid div:first-child {
    border-left: 0;
  }

  .trust-grid span {
    display: inline-block;
    margin-right: 9px;
  }

  .trust-grid strong {
    display: inline;
  }

  .service-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .service-icon {
    margin-bottom: 22px;
  }

  .club-card {
    display: block;
    padding: 28px;
  }

  .club-discount {
    width: 112px;
    height: 112px;
    margin: 0 0 25px;
  }

  .club-discount strong {
    font-size: 2.35rem;
  }

  .club-card .button {
    margin-top: 20px;
  }

  .process-card:not(:last-child)::after {
    top: auto;
    right: 24px;
    bottom: -13px;
    transform: rotate(90deg);
  }

  .gallery-grid {
    display: block;
  }

  .gallery-item {
    height: 245px;
    margin-bottom: 14px;
  }

  .customer-preview-section {
    padding: 54px 0;
  }

  .customer-preview-heading {
    display: block;
  }

  .customer-preview-heading > p {
    margin-top: 12px;
  }

  .customer-logo-marquee {
    --logo-gap: 10px;
  }

  .customer-logo-card {
    width: 172px;
    min-height: 136px;
    padding: 15px 8px;
  }

  .customer-preview-note {
    text-align: left;
  }

  .form-card {
    padding: 21px;
  }

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

  .form-field-full {
    grid-column: auto;
  }

  .footer-grid {
    gap: 24px;
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    display: block;
  }
}

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

  .customer-logo-track {
    animation-play-state: paused;
  }
}
