/* ============================================================
   KESSLER GIPS AG — Design System v3.0
   Aesthetic: Dark Craft Editorial
   Brand Orange: #e15f36
   Author: inaffect AG / Micha Hänni
   ============================================================ */

/* ── Fonts ──────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,600;0,9..144,700;1,9..144,300;1,9..144,400&family=Syne:wght@400;500;600;700;800&display=swap');

/* ── Design Tokens ──────────────────────────────────────────── */
:root {
  /* Brand */
  --c-orange:       #e15f36;
  --c-orange-dk:    #c44f28;
  --c-orange-dim:   rgba(225,95,54,.12);

  /* Dark base */
  --c-base:         #0e0d0b;
  --c-surface:      #161513;
  --c-surface-2:    #1d1c1a;
  --c-edge:         #272421;
  --c-text:         #cac5bd;
  --c-muted:        rgba(202,197,189,.65);

  /* Cream (contrast sections) */
  --c-cream:        #e9e4db;
  --c-cream-2:      #ddd8cf;
  --c-cream-edge:   #b8b4ab;
  --c-cream-text:   #1b1a17;
  --c-cream-muted:  #65625c;
  --c-orange-cream: #a44527;

  /* Utility */
  --c-white:        #ffffff;
  --c-dark:         #0e0d0b;

  --font-display:   'Fraunces', Georgia, serif;
  --font-body:      'Syne', system-ui, sans-serif;

  /* No radius — sharp craft precision */
  --radius-sm:  0px;
  --radius-md:  0px;
  --radius-lg:  0px;

  --transition: 0.28s cubic-bezier(.4,0,.2,1);
  --max-w:      1380px;
  --gutter:     clamp(1.5rem, 4vw, 3rem);
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; color-scheme: dark; }
body {
  font-family: var(--font-body);
  background: var(--c-base);
  color: var(--c-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.1;
  color: var(--c-text);
}
h1 { font-size: clamp(2.5rem, 5vw, 5rem);   letter-spacing: -0.025em; }
h2 { font-size: clamp(2rem, 4vw, 3.75rem);  letter-spacing: -0.025em; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); }
h4 { font-size: clamp(1.05rem, 2vw, 1.4rem); }
p  { font-size: clamp(.9rem, 1.15vw, 1rem); line-height: 1.75; }

.display-xl {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 9rem);
  font-weight: 300;
  line-height: .92;
  letter-spacing: -0.035em;
}
.display-lg {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 6rem);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.03em;
}
.display-md {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 3.25rem);
  font-weight: 400;
  line-height: 1.15;
}

.label {
  font-family: var(--font-body);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--c-orange);
}
.text-muted { color: var(--c-muted); }
.text-white { color: var(--c-white); }
.italic { font-style: italic; }

/* ── Layout ─────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section    { padding-block: clamp(5rem, 9vw, 9rem); }
.section-sm { padding-block: clamp(3rem, 5vw, 5rem); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.flex-center  { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-1 { gap: .5rem; }  .gap-2 { gap: 1rem; }  .gap-3 { gap: 1.5rem; }
.mb-1 { margin-bottom: .5rem; }  .mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; } .mb-4 { margin-bottom: 2rem; }
.mt-auto { margin-top: auto; }
.text-center { text-align: center; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .8rem 1.6rem;
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
  border-radius: 0;
}
.btn-primary {
  background: var(--c-orange);
  color: var(--c-base);
  border: 1px solid var(--c-orange);
}
.btn-primary:hover {
  background: transparent;
  color: var(--c-orange);
}
.btn-outline {
  border: 1px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.75);
}
.btn-outline:hover {
  border-color: rgba(255,255,255,.6);
  color: var(--c-white);
}
.btn-dark {
  background: var(--c-surface-2);
  color: var(--c-text);
  border: 1px solid var(--c-edge);
}
.btn-dark:hover { border-color: var(--c-orange); color: var(--c-orange); }
.btn-ghost {
  color: var(--c-text);
  padding-inline: 0;
  gap: .5rem;
}
.btn-ghost:hover { color: var(--c-orange); }
.btn-ghost svg { transition: transform .25s ease; }
.btn-ghost:hover svg { transform: translateX(5px); }
.btn-white {
  background: var(--c-white);
  color: var(--c-orange);
  font-weight: 700;
  border: 1px solid var(--c-white);
}
.btn-white:hover { background: transparent; color: var(--c-white); }
.btn-outline-white {
  border: 1px solid rgba(255,255,255,.5);
  color: var(--c-white);
}
.btn-outline-white:hover { border-color: var(--c-white); }
.btn-cookie-accept {
  background: var(--c-orange);
  color: var(--c-base);
  padding: .55rem 1.2rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  border-radius: 0;
}
.btn-cookie-decline {
  color: var(--c-muted);
  padding: .55rem 1rem;
  font-size: .78rem;
}
.btn-cookie-decline:hover { color: var(--c-text); }

.arrow-right { width: 1rem; height: 1rem; flex-shrink: 0; }

/* ── Navigation ─────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background .35s ease, border-color .35s ease;
  border-bottom: 1px solid transparent;
}
#navbar.scrolled {
  background: rgba(14,13,11,.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--c-edge);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo img {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav-links a {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  transition: color .2s ease;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--c-orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--c-white); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.lang-toggle {
  display: flex;
  align-items: center;
  gap: .15rem;
  border: 1px solid var(--c-edge);
  padding: .2rem .35rem;
}
.lang-btn {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  padding: .2rem .4rem;
  transition: all .2s ease;
}
.lang-btn.active { background: var(--c-orange); color: var(--c-base); }
.lang-btn:hover:not(.active) { color: var(--c-white); }
/* Suppress transition on lang buttons during initial language application */
html[data-lang-init] .lang-btn { transition: none !important; }
.nav-cta { display: none; min-width: 10.5rem; justify-content: center; }
@media (min-width: 1280px) { .nav-cta { display: inline-flex; } }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px;
}
.hamburger span {
  display: block;
  height: 1px;
  background: var(--c-text);
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav-mobile {
  position: fixed;
  inset: 0;
  background: var(--c-base);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--gutter);
  transform: translateX(100%);
  transition: transform .45s cubic-bezier(.77,0,.18,1);
  border-left: 1px solid var(--c-edge);
}
.nav-mobile.open { transform: translateX(0); }
.nav-mobile a {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 7vw, 3.5rem);
  font-weight: 300;
  color: var(--c-text);
  padding: .65rem 0;
  border-bottom: 1px solid var(--c-edge);
  transition: color .2s ease, padding-left .25s ease;
}
.nav-mobile a:hover { color: var(--c-white); padding-left: .75rem; }
.nav-mobile a.active { color: var(--c-orange); }
.nav-mobile-footer {
  position: absolute;
  bottom: 2.5rem;
  left: var(--gutter);
  right: var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  background: var(--c-base);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(160deg, rgba(14,13,11,.1) 0%, rgba(14,13,11,.5) 40%, rgba(14,13,11,.97) 100%);
  z-index: 1;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.04);
  transition: transform 10s cubic-bezier(.25,.46,.45,.94);
}
.hero-img.loaded { transform: scale(1); }

.hero-watermark {
  position: absolute;
  right: -0.04em;
  bottom: -0.12em;
  font-family: var(--font-display);
  font-size: clamp(16rem, 40vw, 58rem);
  font-weight: 700;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.055);
  letter-spacing: -0.04em;
  user-select: none;
  pointer-events: none;
  z-index: 2;
  white-space: nowrap;
  opacity: 0;
  animation: watermark-appear 2s ease 0.6s forwards;
}
@keyframes watermark-appear { to { opacity: 1; } }

.hero-accent {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom,
    transparent 0%,
    var(--c-orange) 25%,
    var(--c-orange) 75%,
    transparent 100%);
  z-index: 3;
  opacity: 0;
  animation: accent-appear 1.2s ease 0.8s forwards;
}
@keyframes accent-appear { to { opacity: 1; } }

.hero-content {
  position: relative;
  z-index: 4;
  width: 100%;
  padding-bottom: clamp(3.5rem, 7vw, 7rem);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .9rem;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: hero-fade-up .9s cubic-bezier(.4,0,.2,1) 0.3s forwards;
}
.hero-badge::after {
  content: '';
  display: block;
  width: 2.5rem;
  height: 1px;
  background: rgba(255,255,255,.2);
  flex-shrink: 0;
}
.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--c-orange);
  flex-shrink: 0;
  animation: pulse-ring 2.4s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(225,95,54,.5);
}
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(225,95,54,.6); }
  70%  { box-shadow: 0 0 0 8px rgba(225,95,54,0); }
  100% { box-shadow: 0 0 0 0 rgba(225,95,54,0); }
}
.hero-badge span {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
}

.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 11rem);
  font-weight: 300;
  line-height: .92;
  letter-spacing: -0.035em;
  color: var(--c-white);
  margin-bottom: 2rem;
  opacity: 0;
  animation: hero-fade-up 1s cubic-bezier(.4,0,.2,1) 0.5s forwards;
}
.hero-heading em {
  font-style: italic;
  color: var(--c-orange);
  display: block;
}
.hero-heading span { display: block; }

.hero-sub {
  font-size: clamp(.95rem, 1.4vw, 1.1rem);
  color: rgba(255,255,255,.52);
  max-width: 480px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: hero-fade-up .9s cubic-bezier(.4,0,.2,1) 0.75s forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-bottom: 4rem;
  opacity: 0;
  animation: hero-fade-up .9s cubic-bezier(.4,0,.2,1) 0.95s forwards;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.08);
  opacity: 0;
  animation: hero-fade-up .9s cubic-bezier(.4,0,.2,1) 1.15s forwards;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 300;
  color: var(--c-white);
  line-height: 1;
}
.hero-stat-num span { color: var(--c-orange); }
.hero-stat-label {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-top: .4rem;
}

@keyframes hero-fade-up {
  from { opacity: 0; transform: translateY(1.25rem); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-watermark, .hero-accent,
  .hero-badge, .hero-heading, .hero-sub, .hero-actions, .hero-stats {
    animation: none; opacity: 1;
  }
}

/* ── Ticker ─────────────────────────────────────────────────── */
.ticker {
  background: var(--c-orange);
  overflow: hidden;
  padding-block: .75rem;
  border-top: 1px solid var(--c-orange-dk);
  border-bottom: 1px solid var(--c-orange-dk);
}
.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: ticker-scroll 35s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  padding-inline: 1.5rem;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--c-base);
  white-space: nowrap;
}
.ticker-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  flex-shrink: 0;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Section Header ─────────────────────────────────────────── */
.section-header { margin-bottom: clamp(3rem, 5vw, 5rem); }
.section-header.centered { text-align: center; }
.section-header .label { display: block; margin-bottom: 1rem; }
.section-header h2 { margin-bottom: 1.25rem; }
.section-header p { color: var(--c-muted); max-width: 540px; }
.section-header.centered p { margin-inline: auto; }

/* ── Services — Cream section, numbered list ────────────────── */
.services-section {
  background: var(--c-cream);
  color: var(--c-cream-text);
}
.services-section .section-header h2 { color: var(--c-cream-text); }
.services-section .section-header p  { color: var(--c-cream-muted); }
.services-section .label { color: var(--c-orange-cream); }
.service-card:hover .service-num { color: var(--c-orange-cream) !important; }
.service-card:hover .service-link { border-color: var(--c-orange-cream); color: var(--c-orange-cream); }

.services-grid {
  display: flex;
  flex-direction: column;
  background: transparent;
  border: none;
  border-top: 1px solid var(--c-cream-edge);
}
.service-card {
  background: transparent;
  display: grid;
  grid-template-columns: 3.5rem 1fr auto;
  grid-template-rows: auto auto;
  column-gap: 2.5rem;
  row-gap: 0;
  align-items: center;
  padding: 2rem 0 2rem 1.5rem;
  border-bottom: 1px solid var(--c-cream-edge);
  border-left: 2px solid transparent;
  overflow: visible;
  transition: border-left-color .22s ease, background .22s ease;
  position: relative;
}
.service-card::before { display: none; }
.service-card:hover {
  background: rgba(255,255,255,.35);
  border-left-color: var(--c-orange);
}
.service-num {
  grid-column: 1;
  grid-row: 1 / 3;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 300;
  color: var(--c-cream-edge);
  line-height: 1;
  transition: color .22s ease;
  display: flex;
  align-items: center;
}
.service-card:hover .service-num { color: var(--c-orange); opacity: 1; }
.service-icon { display: none; }
.service-title {
  grid-column: 2;
  grid-row: 1;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 400;
  color: var(--c-cream-text);
  margin: 0;
  transition: color .22s ease;
}
.service-card:hover .service-title { color: #0a0908; }
.service-desc {
  grid-column: 2;
  grid-row: 2;
  font-size: .82rem;
  color: var(--c-cream-muted);
  line-height: 1.6;
  margin-top: .3rem;
}
.service-link {
  grid-column: 3;
  grid-row: 1 / 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--c-cream-edge);
  color: var(--c-cream-muted);
  transition: border-color .22s ease, color .22s ease, background .22s ease;
  margin-top: 0;
}
.service-link svg { width: 1rem; height: 1rem; }
.service-card:hover .service-link {
  border-color: var(--c-orange);
  color: var(--c-orange);
  background: var(--c-orange-dim);
}

/* ── About ──────────────────────────────────────────────────── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-main {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 0;
  filter: brightness(.92) contrast(1.05);
}
.about-img-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--c-orange);
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .2rem;
  border: 4px solid var(--c-base);
}
.about-img-badge-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--c-white);
  line-height: 1;
}
.about-img-badge-label {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-base);
  text-align: center;
}
.about-text { display: flex; flex-direction: column; gap: 1.75rem; }
.about-text .label { margin-bottom: .25rem; }
.about-text h2 { color: var(--c-text); }
.about-quote {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--c-text);
  border-left: 2px solid var(--c-orange);
  padding-left: 1.5rem;
  line-height: 1.55;
}
.about-quote cite {
  display: block;
  font-style: normal;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-top: .75rem;
}
.about-features { display: flex; flex-direction: column; gap: .65rem; }
.about-feature {
  display: flex;
  align-items: center;
  gap: .85rem;
  font-size: .875rem;
  color: var(--c-text);
}
.about-feature-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--c-orange);
  flex-shrink: 0;
}

/* ── Stats ──────────────────────────────────────────────────── */
.stats-section {
  background: var(--c-surface);
  border-top: 1px solid var(--c-edge);
  border-bottom: 1px solid var(--c-edge);
}
.stats-section::before { display: none; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-left: 1px solid var(--c-edge);
}
.stat-item {
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: .5rem;
  border-right: 1px solid var(--c-edge);
  border-top: 1px solid var(--c-edge);
}
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  color: var(--c-white);
  line-height: 1;
}
.stat-number .stat-suffix { color: var(--c-orange); }
.stat-label {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  line-height: 1.4;
}
.stat-desc {
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  line-height: 1.55;
  margin-top: .25rem;
}

/* ── Gallery ────────────────────────────────────────────────── */
.gallery-section { background: var(--c-base); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 0;
}
.gallery-item:nth-child(1) { grid-column: span 7; }
.gallery-item:nth-child(2) { grid-column: span 5; }
.gallery-item:nth-child(3) { grid-column: span 4; }
.gallery-item:nth-child(4) { grid-column: span 4; }
.gallery-item:nth-child(5) { grid-column: span 4; }
.gallery-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  filter: brightness(.85) contrast(1.05);
  transition: transform .7s cubic-bezier(.4,0,.2,1), filter .5s ease;
}
.gallery-item:nth-child(1) .gallery-img { height: 480px; }
.gallery-item:hover .gallery-img {
  transform: scale(1.06);
  filter: brightness(.95) contrast(1.05);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,13,11,.9) 0%, transparent 55%);
  opacity: 0;
  transition: opacity .4s ease;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-label {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
}

/* ── News — Cream, editorial list ──────────────────────────── */
.news-section {
  background: var(--c-cream);
  color: var(--c-cream-text);
}
.news-section .section-header h2 { color: var(--c-cream-text); }
.news-section .section-header p  { color: var(--c-cream-muted); }
.news-section .label { color: var(--c-orange-cream); }

.news-grid {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--c-cream-edge);
}
.news-card {
  display: grid;
  grid-template-columns: 7rem 1fr auto;
  align-items: center;
  gap: 2.5rem;
  padding: 2rem 0 2rem 1.5rem;
  border-bottom: 1px solid var(--c-cream-edge);
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
  border-left: 2px solid transparent;
  transition: background .2s ease, border-left-color .2s ease;
  cursor: pointer;
}
.news-card:hover {
  background: rgba(255,255,255,.35);
  border-left-color: var(--c-orange);
  transform: none;
  box-shadow: none;
}
.news-section .news-card-img { display: none !important; }
.news-card-body { display: contents; }
.news-card-meta {
  grid-column: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .4rem;
  margin: 0;
}
.news-tag {
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-orange);
  background: transparent;
  padding: 0;
  border-radius: 0;
}
.news-date {
  font-size: .7rem;
  color: var(--c-muted);
  letter-spacing: .04em;
}
.news-section .news-tag  { color: var(--c-orange-cream); }
.news-section .news-date { color: var(--c-cream-muted); }
.news-title {
  grid-column: 2;
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-weight: 400;
  color: var(--c-text);
  line-height: 1.35;
  margin: 0;
  transition: color .2s ease;
}
.news-section .news-title { color: var(--c-cream-text); }
.news-section .news-card:hover .news-title { color: #080807; }
.news-section .news-excerpt { display: none; }
.news-card .btn-ghost {
  grid-column: 3;
  color: var(--c-muted);
  transition: color .2s ease, transform .2s ease;
}
.news-section .news-card .btn-ghost { color: var(--c-cream-muted); }
.news-card:hover .btn-ghost {
  color: var(--c-orange);
  transform: translateX(4px);
}
.news-card .btn-ghost svg { display: block; }

/* ── Awards ─────────────────────────────────────────────────── */
.awards-section {
  background: var(--c-surface);
  border-top: 1px solid var(--c-edge);
}
.awards-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-top: 1px solid var(--c-edge);
  border-left: 1px solid var(--c-edge);
}
.award-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .85rem;
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--c-edge);
  border-bottom: 1px solid var(--c-edge);
  min-width: 180px;
  flex: 1;
  text-align: center;
  border-radius: 0;
  transition: background .22s ease;
}
.award-item:hover { background: var(--c-surface-2); }
.award-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.award-icon img { width: 100%; height: 100%; object-fit: contain; }
.award-name {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(202,197,189,.65);
  text-align: center;
  line-height: 1.5;
}
.award-item:hover .award-name { color: var(--c-text); }

/* ── CTA ─────────────────────────────────────────────────────── */
.cta-section {
  background: var(--c-orange);
  padding-block: clamp(4rem, 7vw, 6.5rem);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: 'Jetzt';
  position: absolute;
  right: -0.05em;
  top: -0.15em;
  font-family: var(--font-display);
  font-size: clamp(12rem, 30vw, 45rem);
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.1);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.cta-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 4rem);
  font-weight: 300;
  color: var(--c-white);
  margin-bottom: .5rem;
}
.cta-text p { color: rgba(14,13,11,.85); font-size: 1rem; }
.cta-actions { display: flex; gap: .75rem; flex-shrink: 0; flex-wrap: wrap; }

/* ── Footer ─────────────────────────────────────────────────── */
footer {
  background: var(--c-base);
  color: var(--c-text);
  border-top: 1px solid var(--c-edge);
}
.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-block: clamp(3.5rem, 6vw, 5.5rem);
  border-bottom: 1px solid var(--c-edge);
}
.footer-brand p {
  font-size: .875rem;
  color: var(--c-muted);
  line-height: 1.75;
  margin-top: 1.25rem;
  max-width: 280px;
}
.footer-logo { height: 28px; filter: brightness(0) invert(.7); }
.footer-heading {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(202,197,189,.65);
  margin-bottom: 1.5rem;
}
.footer-links { display: flex; flex-direction: column; gap: .65rem; }
.footer-links a {
  font-size: .875rem;
  color: rgba(202,197,189,.65);
  transition: color .2s ease;
}
.footer-links a:hover { color: var(--c-text); }
.footer-contact { display: flex; flex-direction: column; gap: .85rem; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .875rem;
  color: rgba(202,197,189,.65);
  line-height: 1.55;
}
.footer-contact-item svg {
  width: 14px; height: 14px;
  flex-shrink: 0;
  margin-top: .2rem;
  stroke: var(--c-orange);
}
.footer-contact-item a { transition: color .2s ease; }
.footer-contact-item a:hover { color: var(--c-text); }
.footer-social { display: flex; gap: .5rem; margin-top: 1.5rem; }
.social-link {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--c-edge);
  transition: border-color .2s ease, background .2s ease;
}
.social-link:hover { border-color: var(--c-orange); background: var(--c-orange-dim); }
.social-link svg { width: 14px; height: 14px; fill: rgba(202,197,189,.5); }
.social-link:hover svg { fill: var(--c-orange); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-block: 1.5rem;
}
.footer-bottom p { font-size: .75rem; color: rgba(202,197,189,.65); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a {
  font-size: .75rem;
  color: rgba(202,197,189,.65);
  transition: color .2s ease;
}
.footer-legal a:hover { color: var(--c-text); }

/* ── Page Hero (Sub-pages) ──────────────────────────────────── */
.page-hero {
  background: var(--c-base);
  padding-top: 150px;
  padding-bottom: clamp(3rem, 6vw, 6rem);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--c-edge);
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(225,95,54,.04) 100%);
  pointer-events: none;
}
.page-hero-label { margin-bottom: 1.25rem; }
.page-hero h1 { color: var(--c-white); }
.page-hero .page-hero-sub {
  color: var(--c-muted);
  font-size: clamp(.95rem, 1.4vw, 1.1rem);
  max-width: 540px;
  margin-top: 1rem;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1.5rem;
}
.breadcrumb a, .breadcrumb span {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(202,197,189,.65);
  transition: color .2s ease;
}
.breadcrumb a:hover { color: var(--c-text); }
.breadcrumb-sep { color: rgba(202,197,189,.15); font-size: .6rem; }
.breadcrumb .current { color: var(--c-orange); }

/* ── Sub-page content backgrounds ──────────────────────────── */
/* Text sections on sub-pages default to dark base */
.services-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-bottom: 2px;
  background: var(--c-edge);
}
.service-detail-card {
  border: none;
  background: var(--c-surface);
  padding: 2.5rem;
  transition: background .2s ease;
}
.service-detail-card:hover { background: var(--c-surface-2); }
.service-detail-num {
  font-family: var(--font-display);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .15em;
  color: var(--c-orange);
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.service-detail-card h3 {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  margin-bottom: .75rem;
  color: var(--c-text);
  font-weight: 400;
}
.service-detail-card p { color: var(--c-muted); margin-bottom: 1.25rem; }
.service-refs { display: flex; flex-wrap: wrap; gap: .5rem; }
.ref-tag {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .06em;
  background: var(--c-edge);
  color: rgba(202,197,189,.68);
  padding: .25rem .65rem;
  border-radius: 0;
  text-transform: uppercase;
}

/* ── Timeline ───────────────────────────────────────────────── */
.timeline-section {
  background: var(--c-cream);
  color: var(--c-cream-text);
}
.timeline-section .section-header h2 { color: var(--c-cream-text); }
.timeline-section .section-header p  { color: var(--c-cream-muted); }
.timeline-section .label { color: var(--c-orange-cream); }
.timeline-inner { max-width: 760px; margin-inline: auto; }
.timeline {
  position: relative;
  padding-left: 2.5rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: .5rem; bottom: .5rem;
  width: 1px;
  background: var(--c-cream-edge);
}
.timeline-item {
  position: relative;
  padding-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .5s ease, transform .5s ease;
}
.timeline-item.visible { opacity: 1; transform: none; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.5rem; top: .4rem;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--c-cream-edge);
  border: 2px solid var(--c-cream);
  box-shadow: 0 0 0 2px var(--c-cream-edge);
  transition: background .3s ease;
}
.timeline-item.highlight::before {
  background: var(--c-orange);
  box-shadow: 0 0 0 3px rgba(225,95,54,.2);
}
.timeline-year {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-orange-cream);
  margin-bottom: .3rem;
}
.timeline-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  color: var(--c-cream-text);
  margin-bottom: .35rem;
}
.timeline-text {
  font-size: .85rem;
  color: var(--c-cream-muted);
  line-height: 1.65;
}

/* ── Team ───────────────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 2px;
  background: var(--c-edge);
}
.team-card {
  text-align: center;
  background: var(--c-surface);
  padding-bottom: 2rem;
}
.team-img-wrap {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--c-surface-2);
  margin-bottom: 1.25rem;
  position: relative;
}
.team-img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.88) grayscale(.2);
  transition: transform .5s ease, filter .4s ease;
}
.team-card:hover .team-img { transform: scale(1.04); filter: brightness(.95) grayscale(0); }
.team-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--c-text);
  margin-bottom: .25rem;
}
.team-role {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-orange);
}

/* ── Contact ────────────────────────────────────────────────── */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.contact-info-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.contact-info-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--c-orange-dim);
  border: 1px solid rgba(225,95,54,.2);
  flex-shrink: 0;
}
.contact-info-icon svg { width: 18px; height: 18px; stroke: var(--c-orange); }
.contact-info-label {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: .35rem;
}
.contact-info-value {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--c-text);
}
.contact-info-value a { transition: color .2s ease; }
.contact-info-value a:hover { color: var(--c-orange); }

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: .5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
label {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(202,197,189,.65);
}
input, textarea, select {
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--c-text);
  background: var(--c-surface);
  border: 1px solid var(--c-edge);
  border-radius: 0;
  padding: .9rem 1rem;
  width: 100%;
  transition: border-color .2s ease;
  resize: vertical;
}
input::placeholder, textarea::placeholder { color: var(--c-muted); }
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--c-orange);
}
textarea { min-height: 140px; }

/* ── Map ────────────────────────────────────────────────────── */
.map-section { height: 420px; background: var(--c-surface); }
.map-section iframe { width: 100%; height: 100%; border: none; display: block; filter: invert(.9) hue-rotate(175deg); }

/* ── Partners ───────────────────────────────────────────────── */
.partners-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  background: var(--c-edge);
}
.partner-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 2.5rem;
  background: var(--c-surface);
  border-radius: 0;
  min-width: 200px;
  flex: 1;
  transition: background .2s ease;
}
.partner-item:hover { background: var(--c-surface-2); }
.partner-item img {
  max-height: 44px;
  max-width: 130px;
  object-fit: contain;
  filter: brightness(0) invert(.5);
  transition: filter .2s ease;
}
.partner-item:hover img { filter: brightness(0) invert(.9); }

/* ── Cookie Banner ──────────────────────────────────────────── */
#cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 2 * var(--gutter));
  max-width: 680px;
  background: var(--c-surface-2);
  color: var(--c-text);
  border-radius: 0;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  border: 1px solid var(--c-edge);
  box-shadow: 0 8px 40px rgba(0,0,0,.5);
  z-index: 9999;
  opacity: 0;
  transform: translateX(-50%) translateY(16px);
  transition: opacity .4s ease, transform .4s ease;
}
#cookie-banner.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
#cookie-banner p { font-size: .82rem; color: var(--c-muted); flex: 1; }
#cookie-banner p a { color: var(--c-orange); }
.cookie-actions { display: flex; gap: .5rem; flex-shrink: 0; }

/* ── Scroll Reveal ──────────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}
[data-reveal].visible { opacity: 1; transform: none; }
[data-reveal-delay="100"] { transition-delay: .1s; }
[data-reveal-delay="200"] { transition-delay: .2s; }
[data-reveal-delay="300"] { transition-delay: .3s; }
[data-reveal-delay="400"] { transition-delay: .4s; }
[data-reveal-delay="500"] { transition-delay: .5s; }

/* ── Back to Top ────────────────────────────────────────────── */
#back-to-top {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 42px; height: 42px;
  background: var(--c-surface-2);
  border: 1px solid var(--c-edge);
  border-radius: 0;
  display: flex; align-items: center; justify-content: center;
  z-index: 100;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s ease, transform .3s ease, border-color .2s ease;
}
#back-to-top.show { opacity: 1; transform: none; }
#back-to-top:hover { border-color: var(--c-orange); }
#back-to-top svg { width: 16px; height: 16px; stroke: var(--c-text); }

/* ── Hero Split — Homepage v4 ───────────────────────────────── */
.hero-split {
  display: grid;
  grid-template-columns: 58fr 42fr;
  min-height: 100svh;
  background: var(--c-base);
}
.hero-panel-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(5rem, 9vw, 9rem) clamp(2rem, 5vw, 5.5rem) clamp(3.5rem, 6vw, 6rem);
  border-right: 1px solid rgba(255,255,255,.065);
  position: relative;
}
.hero-panel-photo {
  position: relative;
  overflow: hidden;
}
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  filter: brightness(.85) contrast(1.06) saturate(.9);
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: hero-fade-up .8s cubic-bezier(.4,0,.2,1) .2s forwards;
}
.hero-eyebrow-tag { color: var(--c-orange); }
.hero-eyebrow-line {
  display: block;
  width: 1.5rem;
  height: 1px;
  background: rgba(255,255,255,.14);
  flex-shrink: 0;
}
.hero-eyebrow-dot { color: rgba(255,255,255,.18); }
.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 6.5vw, 8.5rem);
  font-weight: 300;
  line-height: .9;
  letter-spacing: -0.038em;
  margin-bottom: 2rem;
  opacity: 0;
  animation: hero-fade-up 1s cubic-bezier(.4,0,.2,1) .4s forwards;
}
.hero-h1-solid {
  display: block;
  color: var(--c-white);
}
.hero-h1-outline {
  display: block;
  font-style: italic;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--c-orange);
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-bottom: 4rem;
  opacity: 0;
  animation: hero-fade-up .9s cubic-bezier(.4,0,.2,1) .85s forwards;
}
.btn-ghost-white {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  padding: .9rem 1.6rem;
  border: 1px solid rgba(255,255,255,.1);
  transition: color var(--transition), border-color var(--transition);
}
.btn-ghost-white:hover {
  color: var(--c-white);
  border-color: rgba(255,255,255,.3);
}
.hero-stats-bar {
  display: flex;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.07);
  opacity: 0;
  animation: hero-fade-up .9s cubic-bezier(.4,0,.2,1) 1.05s forwards;
}
.hs-item {
  display: flex;
  flex-direction: column;
  gap: .2rem;
  flex: 1;
}
.hs-num {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.5rem);
  font-weight: 300;
  color: var(--c-white);
  line-height: 1;
  letter-spacing: -0.02em;
}
.hs-plus { color: var(--c-orange); font-size: .65em; }
.hs-cert {
  font-size: clamp(.75rem, 1vw, .95rem);
  font-weight: 700;
  color: var(--c-white);
  letter-spacing: .04em;
  line-height: 1;
}
.hs-lbl {
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-top: .15rem;
}
.hs-div {
  width: 1px;
  height: 2.5rem;
  background: rgba(255,255,255,.07);
  flex-shrink: 0;
  margin-inline: clamp(1rem, 2.5vw, 2.5rem);
}
@media (prefers-reduced-motion: reduce) {
  .hero-eyebrow, .hero-h1, .hero-ctas, .hero-stats-bar {
    animation: none; opacity: 1;
  }
}

/* ── Services Index — Homepage ──────────────────────────────── */
.svc-index {
  background: var(--c-cream);
  color: var(--c-cream-text);
  padding-block: clamp(4rem, 7vw, 7rem);
}
.svc-index-hd {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--c-cream-edge);
  margin-bottom: 0;
}
.svc-index-hd-left {
  display: flex;
  align-items: baseline;
  gap: .75rem;
}
.svc-index-count {
  font-size: .68rem;
  font-weight: 600;
  color: var(--c-cream-muted);
  letter-spacing: .06em;
}
.svc-index-more {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-cream-muted);
  transition: color var(--transition);
}
.svc-index .label { color: var(--c-orange-cream); }
.svc-index-more:hover { color: var(--c-orange-cream); }
.svc-index-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1px;
  background: var(--c-cream-edge);
}
.svc-index-col {
  display: flex;
  flex-direction: column;
  background: var(--c-cream);
}
.svc-row {
  display: grid;
  grid-template-columns: 2.75rem 1fr auto;
  align-items: center;
  gap: 1.25rem;
  padding: 1.3rem 1.25rem 1.3rem 1.5rem;
  border-bottom: 1px solid var(--c-cream-edge);
  border-left: 2px solid transparent;
  transition: background .15s ease, border-left-color .15s ease;
  text-decoration: none;
  color: var(--c-cream-text);
}
.svc-row:hover {
  background: rgba(255,255,255,.5);
  border-left-color: var(--c-orange);
}
.svc-num {
  font-family: var(--font-display);
  font-size: .85rem;
  font-weight: 400;
  color: var(--c-cream-edge);
  transition: color .15s ease;
  flex-shrink: 0;
}
.svc-row:hover .svc-num { color: var(--c-orange-cream); }
.svc-name {
  font-family: var(--font-display);
  font-size: clamp(.95rem, 1.4vw, 1.15rem);
  font-weight: 400;
  line-height: 1.2;
  min-width: 0;
}
.svc-arrow {
  opacity: 0;
  color: var(--c-orange);
  transition: opacity .15s ease, transform .15s ease;
  flex-shrink: 0;
}
.svc-row:hover .svc-arrow {
  opacity: 1;
  transform: translateX(2px);
}

/* ── Photo Break — Homepage ──────────────────────────────────── */
.photo-break {
  position: relative;
  height: clamp(42vh, 58vh, 72vh);
  overflow: hidden;
}
.photo-break img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: brightness(.78) contrast(1.12) saturate(.82);
}
.photo-break-caption {
  position: absolute;
  bottom: 1.5rem;
  right: 2rem;
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  text-shadow: 0 1px 3px rgba(0,0,0,.6);
}

/* ── Manifesto — Homepage ────────────────────────────────────── */
.manifesto {
  background: var(--c-base);
  padding-block: clamp(5rem, 10vw, 11rem);
  border-top: 1px solid var(--c-edge);
}
.manifesto-quote {
  max-width: 1060px;
}
.manifesto-quote p {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.5vw, 6.5rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--c-white);
  margin-bottom: 3rem;
}
.manifesto-footer {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid var(--c-edge);
}
.manifesto-cite {
  font-style: normal;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(202,197,189,.65);
}
.manifesto-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-orange);
  transition: gap var(--transition);
}
.manifesto-link:hover { gap: .7rem; }

/* ── Numbers Row — Homepage ──────────────────────────────────── */
.numbers-section {
  background: var(--c-surface);
  padding-block: clamp(5rem, 9vw, 9rem);
  border-top: 1px solid var(--c-edge);
  border-bottom: 1px solid var(--c-edge);
}
.numbers-eyebrow {
  color: rgba(202,197,189,.65);
  margin-bottom: 3.5rem;
}
.numbers-row {
  display: flex;
  align-items: flex-start;
}
.num-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .45rem;
}
.num-sep {
  width: 1px;
  align-self: stretch;
  background: var(--c-edge);
  flex-shrink: 0;
  margin-inline: clamp(1.5rem, 3vw, 3.5rem);
  margin-block: .5rem;
}
.num-val {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 7rem);
  font-weight: 300;
  color: var(--c-white);
  line-height: 1;
  letter-spacing: -0.03em;
}
.num-val sup {
  font-size: .4em;
  color: var(--c-orange);
  vertical-align: .6em;
  letter-spacing: 0;
}
.num-lbl {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(202,197,189,.65);
}
.num-desc {
  font-size: .78rem;
  color: rgba(202,197,189,.65);
  line-height: 1.6;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hamburger { display: flex; }
  .nav-links { display: none; }
  .about-split { grid-template-columns: 1fr; gap: 4rem; }
  .about-img-wrap { order: -1; }
  .about-img-badge { right: 1rem; bottom: -1rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .services-detail-grid { grid-template-columns: 1fr; }
  .contact-split { grid-template-columns: 1fr; }
  /* Hero split responsive */
  .hero-split { grid-template-columns: 1fr; min-height: auto; }
  .hero-panel-photo { display: none; }
  .hero-panel-text { padding: 7.5rem 1.75rem 3.5rem; border-right: none; }
  .hs-div { margin-inline: 1rem; }
}
@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 2px; }
  .gallery-item:nth-child(n) { grid-column: span 1; }
  .gallery-item:nth-child(1) { grid-column: span 2; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr; gap: 2.5rem; }
  .cta-inner { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
  .news-card { grid-template-columns: 5rem 1fr; }
  .news-card .btn-ghost { display: none; }
  .service-card { grid-template-columns: 3rem 1fr; }
  .service-link { display: none; }
  .awards-grid { border: none; }
  .award-item { min-width: 140px; }
  .partners-grid { gap: 0; border: none; background: transparent; }
  .partner-item { border: 1px solid var(--c-edge); background: var(--c-surface); }
  /* Services index responsive */
  .svc-index-grid { grid-template-columns: 1fr; background: none; gap: 0; }
  /* Numbers responsive */
  .numbers-row { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
  .num-sep { display: none; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(n) { grid-column: span 1; }
  .gallery-img { height: 260px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .news-card { grid-template-columns: 1fr; padding-left: 0; border-left: none; }
  .news-card-meta { display: none; }
  /* Numbers single col on very small screens */
  .numbers-row { grid-template-columns: 1fr; gap: 2.5rem; }
}

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

/* ── Focus Visible ──────────────────────────────────────────── */
:focus-visible {
  outline: 1px solid var(--c-orange);
  outline-offset: 3px;
}

/* ── Print ──────────────────────────────────────────────────── */
@media print {
  #navbar, .ticker, footer, #back-to-top, #cookie-banner { display: none; }
  .hero { min-height: auto; padding-top: 2rem; }
  body { background: #fff; color: #000; }
}
