/* LM GmbH — modern corporate site */

@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../assets/fonts/outfit-400.woff2") format("woff2");
}

@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../assets/fonts/outfit-500.woff2") format("woff2");
}

@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../assets/fonts/outfit-600.woff2") format("woff2");
}

@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../assets/fonts/outfit-700.woff2") format("woff2");
}

@font-face {
  font-family: "Syne";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../assets/fonts/syne-600.woff2") format("woff2");
}

@font-face {
  font-family: "Syne";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../assets/fonts/syne-700.woff2") format("woff2");
}

@font-face {
  font-family: "Syne";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../assets/fonts/syne-800.woff2") format("woff2");
}

:root {
  --orange: #f58220;
  --orange-deep: #d66a0f;
  --orange-soft: rgba(245, 130, 32, 0.14);
  --ink: #0b0d10;
  --ink-2: #14181e;
  --ink-3: #1c222b;
  --steel: #8b95a5;
  --mist: #d7dde6;
  --paper: #eef1f5;
  --white: #ffffff;
  --line: rgba(255, 255, 255, 0.1);
  --line-dark: rgba(11, 13, 16, 0.1);
  --radius: 1.25rem;
  --radius-lg: 1.75rem;
  --nav-h: 4.5rem;
  --max: 72rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: "Syne", system-ui, sans-serif;
  --font-body: "Outfit", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--ink);
  line-height: 1.55;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  font-synthesis: none;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  border: 0;
  background: none;
  cursor: pointer;
  color: inherit;
}

ul {
  list-style: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* ——— Typography ——— */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
}

.eyebrow::before {
  content: "";
  width: 1.5rem;
  height: 2px;
  background: var(--orange);
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.lead {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--steel);
  max-width: 38rem;
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 3rem;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease),
    color 0.35s var(--ease), border-color 0.35s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  color: var(--white);
  box-shadow: 0 12px 32px rgba(245, 130, 32, 0.28);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ff922f, var(--orange));
}

.btn-ghost {
  border: 1px solid var(--line);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.06);
}

.btn-dark {
  background: var(--ink);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--ink-2);
}

.btn .arrow {
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.18);
  font-size: 0.85rem;
  transition: transform 0.35s var(--ease);
}

.btn:hover .arrow {
  transform: translateX(3px);
}

/* ——— Nav ——— */
.site-header {
  position: fixed;
  inset: 1rem 0 auto;
  z-index: 100;
  pointer-events: none;
}

.nav-shell {
  pointer-events: auto;
  width: min(100% - 1.5rem, calc(var(--max) + 1rem));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0.65rem 0.55rem 1rem;
  border-radius: 999px;
  background: rgba(11, 13, 16, 0.72);
  border: 1px solid var(--line);
  backdrop-filter: blur(18px) saturate(1.2);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease);
}

.nav-shell.is-scrolled {
  background: rgba(11, 13, 16, 0.88);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.logo img {
  width: 2.4rem;
  height: auto;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text strong {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}

.logo-text span {
  font-size: 0.68rem;
  color: var(--steel);
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav-links a {
  padding: 0.55rem 0.85rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--mist);
  border-radius: 999px;
  transition: color 0.25s, background 0.25s;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.nav-cta {
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  border: 1px solid var(--line);
  place-items: center;
  color: var(--white);
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 1rem;
  height: 1.5px;
  background: currentColor;
  position: relative;
  transition: 0.3s var(--ease);
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before {
  top: -5px;
}

.nav-toggle span::after {
  top: 5px;
}

body.nav-open .nav-toggle span {
  background: transparent;
}

body.nav-open .nav-toggle span::before {
  top: 0;
  transform: rotate(45deg);
}

body.nav-open .nav-toggle span::after {
  top: 0;
  transform: rotate(-45deg);
}

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: calc(var(--nav-h) + 3rem) 0 3.5rem;
  color: var(--white);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: heroDrift 28s ease-in-out infinite alternate;
}

@keyframes heroDrift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.1) translate3d(-1.5%, -1%, 0);
  }
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 13, 16, 0.88) 0%, rgba(11, 13, 16, 0.55) 48%, rgba(11, 13, 16, 0.35) 100%),
    linear-gradient(180deg, rgba(11, 13, 16, 0.45) 0%, rgba(11, 13, 16, 0.15) 35%, rgba(11, 13, 16, 0.82) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.5rem;
  max-width: 42rem;
  animation: rise 0.9s var(--ease) both;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-logo {
  width: min(14rem, 48vw);
  height: auto;
  margin: 0.15rem 0 0.5rem;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.45));
  animation: rise 0.9s var(--ease) both;
}

.logo img {
  width: 2.55rem;
  height: auto;
}

.hero h1 {
  font-size: clamp(1.65rem, 3.4vw, 2.45rem);
  font-weight: 700;
  max-width: 18ch;
  color: var(--white);
}

.hero .lead {
  color: rgba(215, 221, 230, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-top: 0.35rem;
}

.hero-scroll {
  position: absolute;
  right: max(1.25rem, calc((100% - var(--max)) / 2));
  bottom: 2rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mist);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.hero-scroll i {
  width: 1px;
  height: 3.5rem;
  background: linear-gradient(var(--orange), transparent);
  animation: pulseLine 2.2s ease-in-out infinite;
}

@keyframes pulseLine {
  0%,
  100% {
    opacity: 0.35;
    transform: scaleY(0.7);
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

/* ——— Sections ——— */
.section {
  padding: clamp(4.5rem, 9vw, 7.5rem) 0;
  position: relative;
}

.section-head {
  display: grid;
  gap: 1rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  max-width: 40rem;
}

.section-head h2 {
  font-size: clamp(2rem, 4.2vw, 3.25rem);
}

.section-light {
  background: var(--paper);
  color: var(--ink);
}

.section-light .lead,
.section-light .muted {
  color: #5c6778;
}

.section-dark {
  background: var(--ink-2);
  color: var(--white);
}

.section-ink {
  background: var(--ink);
  color: var(--white);
}

/* ——— Competence fields ——— */
.fields {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 900px) {
  .fields {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    min-height: 36rem;
  }
}

.field {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  min-height: 28rem;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  color: var(--white);
  transform: translateY(18px);
  opacity: 0;
  transition: transform 0.8s var(--ease), opacity 0.8s var(--ease);
}

.field.is-in {
  transform: none;
  opacity: 1;
}

.field:nth-child(2).is-in {
  transition-delay: 0.12s;
}

.field-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.field-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}

.field:hover .field-media img {
  transform: scale(1.06);
}

.field::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(11, 13, 16, 0.15) 0%, rgba(11, 13, 16, 0.88) 78%);
}

.field-body {
  padding: 1.75rem;
  display: grid;
  gap: 0.85rem;
  width: 100%;
}

.field-label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 700;
}

.field h3 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.field p {
  color: rgba(215, 221, 230, 0.92);
  max-width: 32rem;
}

.field-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.35rem;
}

.field-tags span {
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.78rem;
  font-weight: 500;
}

/* ——— Focus strips ——— */
.focus-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 760px) {
  .focus-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.focus-item {
  padding: 1.4rem 1.35rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line-dark);
  display: grid;
  gap: 0.55rem;
  transform: translateY(16px);
  opacity: 0;
  transition: transform 0.7s var(--ease), opacity 0.7s var(--ease), border-color 0.3s;
}

.focus-item.is-in {
  transform: none;
  opacity: 1;
}

.focus-item:hover {
  border-color: rgba(245, 130, 32, 0.45);
}

.focus-item.is-dark {
  background: var(--ink-3);
  border-color: var(--line);
  color: var(--white);
}

.focus-item.is-dark h3 {
  color: var(--white);
}

.focus-item.is-dark p:not(.focus-num) {
  color: var(--steel);
}

.focus-item.is-dark:hover {
  border-color: rgba(245, 130, 32, 0.45);
}

/* ——— Milwaukee authorized dealer ——— */
.milwaukee-section {
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
}

.milwaukee-stage {
  display: grid;
  gap: clamp(1.75rem, 3.5vw, 2.75rem);
  align-items: center;
  padding: clamp(1.75rem, 4vw, 2.75rem);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(ellipse 80% 70% at 12% 0%, rgba(245, 130, 32, 0.1), transparent 55%),
    linear-gradient(160deg, var(--ink-2) 0%, #0e1116 55%, var(--ink-3) 100%);
  border: 1px solid rgba(245, 130, 32, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.milwaukee-copy {
  display: grid;
  gap: 0.85rem;
  max-width: 34rem;
}

.milwaukee-copy h2 {
  font-size: clamp(1.85rem, 3.6vw, 2.85rem);
  color: var(--white);
}

.milwaukee-copy .lead {
  color: var(--mist);
  max-width: 32rem;
}

.milwaukee-badge {
  margin: 0;
  width: 100%;
  max-width: 34rem;
  justify-self: start;
  padding: clamp(0.85rem, 2vw, 1.25rem);
  border-radius: var(--radius);
  background: #fff;
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.06);
}

.milwaukee-badge .milwaukee-logo {
  width: 100%;
  max-width: none;
  height: auto;
  display: block;
}

@media (min-width: 900px) {
  .milwaukee-stage {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  }

  .milwaukee-badge {
    justify-self: end;
    width: 100%;
    max-width: 38rem;
  }
}

/* ——— Suppliers ——— */
.suppliers-section.is-waiting {
  display: none;
}

.suppliers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(9.5rem, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.supplier {
  display: grid;
  place-items: center;
  min-height: 5.5rem;
  padding: 1.1rem 1.25rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.supplier:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
}

.supplier.is-dark,
.supplier-pewag {
  background: #003056;
  border-color: rgba(255, 255, 255, 0.1);
  padding: 1.25rem 1.35rem;
}

.supplier.is-dark:hover,
.supplier-pewag:hover {
  box-shadow: 0 14px 28px rgba(0, 48, 86, 0.55);
}

.supplier.is-black {
  background: #000000;
  border-color: rgba(255, 255, 255, 0.12);
  padding: 1.25rem 1.35rem;
}

.supplier.is-black:hover {
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.55);
}

.supplier.is-black img {
  max-height: 2.5rem;
}

.supplier.is-hm {
  background: #008bd2;
  border-color: rgba(255, 255, 255, 0.14);
  padding: 1.25rem 1.35rem;
}

.supplier.is-hm:hover {
  box-shadow: 0 14px 28px rgba(0, 139, 210, 0.45);
}

.supplier.is-hm img {
  max-height: 2.5rem;
}

.supplier.is-wide {
  grid-column: span 2;
}

@media (max-width: 600px) {
  .supplier.is-wide {
    grid-column: span 1;
  }
}

.supplier img {
  max-width: 100%;
  max-height: 2.75rem;
  width: auto;
  height: auto;
  object-fit: contain;
}

.supplier-obereder img {
  max-height: 2.75rem;
  max-width: 90%;
}

.supplier-schwamborn img {
  max-height: 2.75rem;
  max-width: 90%;
}

.supplier-logo-lg img {
  max-height: 4.75rem;
  max-width: 94%;
}

.supplier.supplier-logo-lg {
  min-height: 5.5rem;
  padding: 0.85rem 1rem;
}

.supplier-logo-xl img {
  max-height: 5.15rem;
  max-width: 96%;
}

.supplier.supplier-logo-xl {
  min-height: 5.5rem;
  padding: 0.55rem 0.85rem;
}

.supplier.is-dark img,
.supplier-pewag img {
  max-height: 2.35rem;
}

.supplier-name {
  margin-top: 0.55rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: #4d5665;
  text-align: center;
}

.focus-num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--orange);
  letter-spacing: 0.08em;
}

.focus-item h3 {
  font-size: 1.2rem;
}

.focus-item p {
  color: #5c6778;
  font-size: 0.95rem;
}

/* ——— Split feature ——— */
.split {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

@media (min-width: 960px) {
  .split {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
  }

  .split.is-reverse {
    grid-template-columns: 0.95fr 1.05fr;
  }

  .split.is-reverse .split-copy {
    order: 2;
  }
}

.split-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 4 / 3;
  min-height: 0;
}

.split-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(transparent, rgba(11, 13, 16, 0.55));
}

.split-copy {
  display: grid;
  gap: 1rem;
}

.split-copy h2 {
  font-size: clamp(2rem, 3.8vw, 3rem);
}

.split-list {
  display: grid;
  gap: 0.65rem;
  margin-top: 0.5rem;
}

.split-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  color: var(--steel);
}

.split-list li::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

.section-light .split-list li {
  color: #5c6778;
}

.location-places {
  display: grid;
  gap: 1rem;
  margin-top: 0.25rem;
}

.location-place {
  padding: 0.95rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
}

.location-label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.35rem;
}

.location-place > p:not(.location-label) {
  color: var(--mist);
  font-size: 1.02rem;
  line-height: 1.45;
}

.location-map-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.55rem;
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  padding-bottom: 0.1rem;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.location-map-link:hover {
  color: var(--orange);
  border-color: var(--orange);
}

.split-visual.is-map {
  width: 100%;
  max-width: 100%;
  min-height: 0;
  aspect-ratio: 4 / 3;
  background: var(--ink-3);
  border: 1px solid var(--line);
}

.split-visual.is-map::after {
  display: none;
}

.split-visual.is-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  border: 0;
  filter: grayscale(0.15) contrast(1.05);
}

/* ——— Team ——— */
.team-grid {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
}

.person {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink-3);
  border: 1px solid var(--line);
  transition: transform 0.45s var(--ease), border-color 0.3s;
}

.person:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 130, 32, 0.4);
}

.person-photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: linear-gradient(160deg, #2a3038, #15191f);
}

.person-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  image-rendering: auto;
}

.person-photo--placeholder img {
  object-fit: contain;
  object-position: center;
}

.person-body {
  padding: 1.15rem 1.2rem 1.35rem;
  display: grid;
  gap: 0.35rem;
}

.person-body h3 {
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.person-role {
  color: var(--orange);
  font-size: 0.88rem;
  font-weight: 500;
}

.person-meta {
  color: var(--steel);
  font-size: 0.88rem;
  display: grid;
  gap: 0.15rem;
  margin-top: 0.35rem;
}

.person-meta a:hover {
  color: var(--white);
}

/* ——— CTA ——— */
.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: clamp(2.2rem, 5vw, 3.5rem);
  background:
    radial-gradient(circle at 85% 20%, rgba(245, 130, 32, 0.28), transparent 40%),
    linear-gradient(135deg, #171c23, #0d1014 60%);
  border: 1px solid var(--line);
  display: grid;
  gap: 1.25rem;
  color: var(--white);
}

.cta-band h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  max-width: 16ch;
}

.cta-band p {
  color: var(--steel);
  max-width: 34rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ——— Legal pages ——— */
.page-hero {
  padding: calc(var(--nav-h) + 4rem) 0 3rem;
  background:
    radial-gradient(circle at 10% 0%, rgba(245, 130, 32, 0.18), transparent 42%),
    var(--ink);
  color: var(--white);
}

.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin-top: 0.75rem;
}

.legal {
  background: var(--paper);
  color: var(--ink);
  padding: 3.5rem 0 5rem;
}

.legal-card {
  background: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: grid;
  gap: 1.5rem;
  max-width: 52rem;
}

.legal-card h2 {
  font-size: 1.35rem;
  margin-bottom: 0.55rem;
}

.legal-card p,
.legal-card li {
  color: #4d5665;
  margin-bottom: 0.65rem;
}

.legal-card ul {
  padding-left: 1.1rem;
  list-style: disc;
}

.legal-card a {
  color: var(--orange-deep);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.doc-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

/* ——— Footer ——— */
.site-footer {
  background: #07090b;
  color: var(--mist);
  padding: 3.5rem 0 2rem;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 800px) {
  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr;
  }
}

.footer-brand {
  display: grid;
  gap: 0.85rem;
}

.footer-brand img {
  width: 3rem;
}

.footer-brand strong {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 1.15rem;
}

.footer-col h3 {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.9rem;
}

.footer-col a,
.footer-col p {
  display: block;
  color: var(--steel);
  margin-bottom: 0.45rem;
  font-size: 0.95rem;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--steel);
}

/* ——— Mobile nav ——— */
@media (max-width: 860px) {
  .nav-toggle {
    display: grid;
  }

  .nav-cta {
    display: none;
  }

  .nav-links {
    position: fixed;
    inset: 5.2rem 0.75rem auto;
    display: grid;
    gap: 0.25rem;
    padding: 0.75rem;
    border-radius: 1.25rem;
    background: rgba(11, 13, 16, 0.96);
    border: 1px solid var(--line);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: 0.35s var(--ease);
  }

  body.nav-open .nav-links {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .nav-links a {
    padding: 0.9rem 1rem;
  }

  .hero-scroll {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .hero-media img {
    transform: none;
  }
}
