*,
*::before,
*::after { box-sizing: border-box; }

:root {
  --bg: #0a0a0a;
  --bg-elevated: #141414;
  --bg-light: #f8f7f4;
  --bg-light-2: #f0eeea;
  --panel: #161616;
  --line: #2e2e2e;
  --line-light: #e4e0d8;
  --line-gold: rgba(201, 168, 108, 0.35);
  --gold: #b8954f;
  --gold-bright: #d4b06a;
  --gold-dim: rgba(184, 149, 79, 0.12);
  --white: #fafafa;
  --text: #d4d4d4;
  --text-dark: #2c2c2c;
  --muted: #8a8a8a;
  --muted-dark: #5e5e5e;
  --max: 1320px;
  --font: "Outfit", system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --fs-base: 1.125rem;
  --fs-nav: 0.95rem;
}

html { scroll-behavior: smooth; overflow-x: clip; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: var(--fs-base);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── Topbar (flat, kein Greenkeeper-Shell) ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
  min-height: 80px;
  position: relative;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo img { height: 48px; width: auto; }

.logo__wordmark {
  padding-left: 0.6rem;
  border-left: 1px solid var(--line);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text);
  line-height: 1.1;
  white-space: nowrap;
}

@media (max-width: 520px) {
  .logo__wordmark { font-size: 0.88rem; letter-spacing: 0.03em; }
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.main-nav > a,
.nav-dropdown-btn {
  font-size: var(--fs-nav);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  padding: 0;
  transition: color 0.25s;
}

.main-nav > a:hover,
.nav-dropdown-btn:hover { color: var(--gold); }

.nav-dropdown-wrap { position: relative; }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 1rem);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 220px;
  margin: 0;
  padding: 0.35rem 0;
  list-style: none;
  background: var(--panel);
  border: 1px solid var(--line);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
}

.nav-dropdown-wrap.is-open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 0.6rem 1.1rem;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  text-transform: none;
  color: var(--text);
  border-left: 2px solid transparent;
}

.nav-dropdown a:hover,
.nav-dropdown a[aria-current="page"] {
  color: var(--gold);
  border-left-color: var(--gold);
  background: var(--gold-dim);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.5rem !important;
  border: 1px solid var(--line) !important;
  border-radius: 4px;
  background: var(--panel) !important;
  color: var(--white) !important;
  font-size: var(--fs-nav) !important;
  letter-spacing: 0.08em !important;
  line-height: 1.2 !important;
  transition: background 0.25s, border-color 0.25s, color 0.25s !important;
}

.nav-cta:hover {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: var(--bg) !important;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--panel);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--white);
}

/* ── Split Hero (nicht Glass-Box) ── */
.page-main { padding-top: 80px; }

.cine-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: calc(100vh - 72px);
  min-height: calc(100dvh - 72px);
  max-height: 900px;
  border-bottom: 1px solid var(--line);
}

.cine-hero__media {
  position: relative;
  overflow: hidden;
  border-right: 1px solid var(--line);
}

.cine-hero__slides { position: absolute; inset: 0; }

.cine-slide {
  position: absolute;
  inset: 0;
  background: center / cover no-repeat;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1s ease, transform 8s ease;
}

.cine-slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.cine-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, transparent 50%, rgba(5, 5, 5, 0.85) 100%);
  pointer-events: none;
}

.cine-hero__panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4rem);
  background: var(--bg);
  position: relative;
}

.cine-hero__panel::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15%;
  bottom: 15%;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}

.cine-contents {
  position: relative;
  min-height: 280px;
  padding-left: 1.5rem;
}

.cine-content {
  position: absolute;
  inset: 0;
  padding-left: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.cine-content.is-active {
  opacity: 1;
  visibility: visible;
}

.cine-index {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin: 0 0 1.25rem;
}

.cine-content h1,
.cine-content h2 {
  margin: 0 0 1rem;
  font-family: var(--font);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--white);
  letter-spacing: -0.02em;
}

.cine-lead {
  margin: 0 0 2rem;
  max-width: 38ch;
  font-size: 1.0625rem;
  color: var(--muted);
  line-height: 1.75;
}

.cine-controls {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: auto;
  padding: 2rem 0 0 1.5rem;
}

.cine-arrow {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--white);
  font-size: 1.25rem;
  cursor: pointer;
  transition: border-color 0.25s, color 0.25s;
}

.cine-arrow:hover { border-color: var(--gold); color: var(--gold); }

.cine-dots { display: flex; gap: 0.4rem; flex-wrap: wrap; }

.cine-dot {
  width: 28px;
  height: 2px;
  padding: 0;
  border: none;
  background: var(--line);
  cursor: pointer;
  transition: background 0.3s, width 0.3s;
}

.cine-dot.is-active { background: var(--gold); width: 48px; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 0;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: none;
  background: none;
  color: var(--gold);
  cursor: pointer;
  position: relative;
  transition: color 0.25s;
}

.btn::after {
  content: "→";
  transition: transform 0.25s var(--ease);
}

.btn:hover { color: var(--gold-bright); }
.btn:hover::after { transform: translateX(4px); }

.btn-solid {
  padding: 0.85rem 1.75rem;
  background: var(--gold);
  color: var(--bg);
}

.btn-solid::after { display: none; }
.btn-solid:hover { background: var(--gold-bright); color: var(--bg); }

/* ── Section typography ── */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.section-tag::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  margin: 0 0 1rem;
  font-family: var(--font);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--white);
}

.section-lead {
  margin: 0;
  max-width: 52ch;
  color: var(--muted);
  font-size: 1.08rem;
}

/* ── Light sections ── */
.section-light {
  background: var(--bg-light);
  color: var(--text-dark);
  border-color: var(--line-light);
}

.section-light .section-title { color: var(--text-dark); }
.section-light .section-lead,
.section-light p { color: var(--muted-dark); }
.section-light .section-tag { color: var(--gold); }

.stats-band.section-light {
  background: var(--bg-light);
  border-bottom: 1px solid var(--line-light);
}

.stats-band.section-light .stat {
  border-color: var(--line-light);
}

.stats-band.section-light .stat strong { color: var(--gold); }
.stats-band.section-light .stat span { color: var(--muted-dark); }

.showcase-section.section-light {
  background: var(--bg-light);
  border-bottom: 1px solid var(--line-light);
}

.showcase-section.section-light .service-card-c {
  background: #fff;
  border-color: var(--line-light);
}

.showcase-section.section-light .service-card-c h3 { color: var(--text-dark); }
.showcase-section.section-light .service-card-c p { color: var(--muted-dark); }

.stripe.section-light .stripe__copy {
  background: var(--bg-light);
  border-color: var(--line-light);
}

.stripe.section-light .stripe__copy p { color: var(--muted-dark); }
.stripe.section-light .section-title { color: var(--text-dark); }

/* Partner / teaser band */
.partner-band {
  padding: clamp(3.5rem, 7vw, 5rem) clamp(1.25rem, 4vw, 2.5rem);
  background: var(--bg-light-2);
  border-bottom: 1px solid var(--line-light);
}

.partner-band__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
}

.partner-band__visual {
  min-height: 280px;
  background: center / cover no-repeat;
  border: 1px solid var(--line-light);
}

.partner-band.section-light {
  background: var(--bg-light);
}

.partner-band h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 3.5vw, 2.4rem);
  font-weight: 500;
  color: var(--text-dark);
}

.partner-band p {
  margin: 0 0 1rem;
  color: var(--muted-dark);
  font-size: 1.05rem;
}

.partner-list {
  margin: 1.25rem 0 1.5rem;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.partner-list li {
  font-size: 0.95rem;
  color: var(--text-dark);
  padding-left: 1rem;
  position: relative;
}

.partner-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* Contact page */
.contact-page {
  background: var(--bg);
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  border-bottom: 1px solid var(--line);
}

.contact-page-info {
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 4vw, 3rem);
  background: var(--bg);
  color: var(--text);
  border-right: 1px solid var(--line);
}

.contact-page-info h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 500;
  color: var(--text);
}

.contact-page-info p,
.contact-page-info address {
  color: var(--muted);
  font-style: normal;
  line-height: 1.85;
  font-size: 1.05rem;
}

.contact-page-info a { color: var(--gold); }

.contact-page-info__cta { margin-top: 1.5rem; }

.contact-page-form {
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 4vw, 3rem);
  background: var(--bg-elevated);
}

.contact-page-form .contact-form {
  max-width: 520px;
  margin-inline: auto;
}

.contact-map-wrap {
  width: 100%;
}

.contact-map {
  display: block;
  width: 100%;
  height: min(52vh, 520px);
  min-height: 380px;
  border: none;
  filter: grayscale(0.25) contrast(1.05);
}

/* Subpage content light variant */
.page-content-light {
  background: var(--bg-light);
  color: var(--text-dark);
}

.page-content-light .service-article h2 { color: var(--gold); }
.page-content-light .service-article h3 { color: var(--text-dark); }
.page-content-light .service-article p,
.page-content-light .service-article li { color: var(--muted-dark); }

.job-card,
.sale-card {
  padding: 1.5rem;
  margin-bottom: 1rem;
  background: #fff;
  border: 1px solid var(--line-light);
}

.job-card h3,
.sale-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  color: var(--text-dark);
}

.job-card p,
.sale-card p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 1rem;
}

/* ── Full-bleed stripes (alternating) ── */
.stripe {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--line);
  min-height: 420px;
}

.stripe--reverse .stripe__visual { order: 2; }
.stripe--reverse .stripe__copy { order: 1; border-right: 1px solid var(--line); border-left: none; }

.stripe__visual {
  background: center / cover no-repeat;
  min-height: 320px;
  position: relative;
}

.stripe__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(5,5,5,0.1), rgba(5,5,5,0.55));
}

.stripe__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 5vw, 4.5rem);
  border-left: 1px solid var(--line);
}

.stripe__copy p { margin: 0 0 1rem; color: var(--muted); }

.stripe__copy ul {
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
}

.stripe__copy li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0.35rem;
  color: var(--muted);
}

.stripe__copy li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* ── Contact CTA band ── */
.cta-band {
  padding: clamp(4rem, 8vw, 5.5rem) clamp(1.25rem, 4vw, 2.5rem);
  text-align: center;
  border-bottom: 1px solid var(--line);
}

.cta-band__inner {
  max-width: 640px;
  margin: 0 auto;
}

.cta-band h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 3.5vw, 2.4rem);
  font-weight: 500;
  color: var(--white);
}

.cta-band p {
  margin: 0 0 1.5rem;
  color: var(--muted);
  font-size: 1.05rem;
}

/* ── Service showcase – centered grid ── */
.showcase-section {
  padding: clamp(4rem, 8vw, 6rem) clamp(1.25rem, 4vw, 2.5rem);
  border-bottom: 1px solid var(--line);
}

.showcase-header {
  width: min(100%, var(--max));
  margin: 0 auto 3rem;
  text-align: center;
}

.showcase-header .section-tag {
  justify-content: center;
}

.showcase-header .section-lead {
  margin-inline: auto;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 1020px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}

.service-card-c {
  text-align: center;
  border: 1px solid var(--line);
  background: var(--bg-elevated);
  transition: border-color 0.3s, transform 0.3s;
}

.service-card-c:hover {
  border-color: var(--line-gold);
  transform: translateY(-3px);
}

.service-card-c__img {
  height: 168px;
  background: center / cover no-repeat;
  border-bottom: 1px solid var(--line);
}

.service-card-c__body {
  padding: 1.35rem 1.25rem 1.5rem;
}

.service-card-c__num {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold);
}

.service-card-c h3 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
}

.service-card-c p {
  margin: 0 0 1rem;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}

.service-card-c a {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

/* legacy row layout hidden */
.service-list { display: none; }

/* ── Timeline centered with background ── */
.timeline-section {
  position: relative;
  padding: clamp(5rem, 10vw, 7rem) clamp(1.25rem, 4vw, 2.5rem);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.timeline-section__bg {
  position: absolute;
  inset: 0;
  background: center / cover no-repeat;
  opacity: 0.14;
  filter: grayscale(0.3);
}

.timeline-section__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(5, 5, 5, 0.75) 45%, var(--bg) 100%);
}

.timeline-inner {
  position: relative;
  z-index: 1;
  width: min(100%, 920px);
  margin-inline: auto;
  text-align: center;
}

.timeline-inner .section-tag {
  justify-content: center;
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.75rem;
  text-align: center;
}

.timeline-card {
  padding: 1.75rem 1.25rem;
  border: 1px solid var(--line);
  background: rgba(14, 14, 14, 0.85);
  backdrop-filter: blur(8px);
}

.timeline-card__step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 1rem;
  border: 1px solid var(--gold);
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
}

.timeline-card h3 {
  margin: 0 0 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
}

.timeline-card p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
}

.timeline { display: none; }

/* ── Stats band ── */
.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
}

.stat {
  padding: 2rem;
  text-align: center;
  border-right: 1px solid var(--line);
}

.stat:last-child { border-right: none; }

.stat strong {
  display: block;
  font-family: var(--font);
  font-size: 2rem;
  color: var(--gold);
  font-weight: 400;
}

.stat span { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }

/* ── Contact ── */
.contact-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  border-bottom: 1px solid var(--line);
}

.contact-aside {
  padding: clamp(3rem, 6vw, 5rem) clamp(1.25rem, 4vw, 3rem);
  border-right: 1px solid var(--line);
}

.contact-aside address {
  font-style: normal;
  margin-top: 2rem;
  color: var(--text);
  line-height: 1.9;
}

.contact-form-wrap {
  padding: clamp(3rem, 6vw, 5rem) clamp(1.25rem, 4vw, 3rem);
  background: var(--bg-elevated);
}

.contact-form {
  display: grid;
  gap: 1.25rem;
  max-width: 520px;
}

.contact-form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  padding: 0.75rem 0;
  font: inherit;
  color: var(--white);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-bottom-color: var(--gold);
}

.checkbox-label {
  display: flex !important;
  align-items: flex-start;
  gap: 0.6rem;
  text-transform: none !important;
  font-size: 0.82rem !important;
  letter-spacing: 0 !important;
  color: var(--muted) !important;
}

.checkbox-label a { color: var(--gold); text-decoration: underline; }
.form-note { margin: 0; font-size: 0.78rem; color: var(--muted); }

/* ── Service subpages ── */
.page-main--sub { padding-top: 72px; }

.sub-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  background: center / cover no-repeat;
  border-bottom: 1px solid var(--line);
}

.sub-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg) 0%, transparent 55%);
}

.sub-hero__inner {
  position: relative;
  z-index: 1;
  width: min(100% - 2.5rem, var(--max));
  margin: 0 auto;
  padding: 3rem 0;
}

.sub-hero h1 {
  margin: 0;
  font-family: var(--font);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 400;
  color: var(--white);
}

.service-article {
  width: min(100% - 2.5rem, 720px);
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.service-article h2 {
  margin: 2.5rem 0 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.service-article h2:first-of-type { margin-top: 0; }

.service-article h3 {
  margin: 1.5rem 0 0.5rem;
  font-size: 1.05rem;
  color: var(--white);
}

.service-article p,
.service-article li { color: var(--muted); line-height: 1.85; }

.service-article ul { padding-left: 1.2rem; margin: 0 0 1.25rem; }

.service-back {
  display: inline-block;
  margin-bottom: 2rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.service-cta-box {
  margin-top: 3rem;
  padding: 2rem;
  border: 1px solid var(--line);
  text-align: center;
}

.service-cta-box h3 { margin: 0 0 0.5rem; color: var(--white); }
.service-cta-box p { margin: 0 0 1.25rem; }

/* Legal */
.legal-wrap {
  width: min(100% - 2.5rem, 720px);
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.legal-wrap h1 {
  font-family: var(--font);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 400;
  color: var(--white);
  margin: 0 0 2rem;
}

.legal-wrap h2 {
  margin: 2rem 0 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.legal-wrap p { color: var(--muted); margin: 0 0 1rem; }
.legal-wrap a { color: var(--gold); }

/* Footer */
.site-footer {
  position: relative;
  overflow: hidden;
  padding: 2.5rem clamp(1.25rem, 4vw, 2.5rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.site-footer::before {
  content: "";
  position: absolute;
  left: clamp(0.5rem, 3vw, 2rem);
  bottom: 0.75rem;
  width: min(320px, 55vw);
  aspect-ratio: 220 / 64;
  background: url("../images/logo.png") no-repeat left bottom / contain;
  opacity: 0.07;
  filter: grayscale(1) brightness(1.6);
  pointer-events: none;
  z-index: 0;
}

.site-footer > * { position: relative; z-index: 1; }

.footer-logo { display: none; }

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-nav a {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer-nav a:hover { color: var(--gold); }

.footer-meta {
  width: 100%;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--muted);
}

.footer-meta a { color: var(--gold); }

/* Animations */
[data-animate] .reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}

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

.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }
.reveal-d5 { transition-delay: 0.4s; }
.reveal-d6 { transition-delay: 0.48s; }

[data-animate-single].reveal-hero {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

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

.service-card-c.reveal-card {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease), border-color 0.3s;
}

[data-animate].is-visible .service-card-c.reveal-card {
  opacity: 1;
  transform: none;
}

/* Legacy class aliases for subpages during transition */
.section-block { border: none; background: transparent; margin: 0; border-radius: 0; }
.section-block-inner { padding: 0; }
.service-hero { display: none; }
.service-page { display: none; }
.header-shell { all: unset; }
.header-inner { all: unset; }

/* Responsive */
@media (max-width: 960px) {
  .cine-hero { grid-template-columns: 1fr; max-height: none; }
  .cine-hero__media { min-height: 45vh; border-right: none; border-bottom: 1px solid var(--line); }
  .cine-hero__media::after { background: linear-gradient(to top, var(--bg), transparent 40%); }
  .cine-hero__panel::before { display: none; }
  .cine-contents, .cine-content { padding-left: 0; }
  .cine-controls { padding-left: 0; }
  .stripe { grid-template-columns: 1fr; }
  .stripe--reverse .stripe__visual { order: -1; }
  .stripe__copy { border-left: none !important; border-top: 1px solid var(--line); }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .timeline-grid { grid-template-columns: 1fr; max-width: 400px; margin-inline: auto; }
  .stats-band { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: none; }
  .stat { border-bottom: 1px solid var(--line); }
  .contact-section { grid-template-columns: 1fr; }
  .partner-band__inner { grid-template-columns: 1fr; }
  .partner-list { grid-template-columns: 1fr; }
  .contact-page-grid { grid-template-columns: 1fr; }
  .contact-page-info { border-right: none; border-bottom: 1px solid var(--line); }
  .contact-map { min-height: 320px; height: 50vh; }
}

@media (max-width: 600px) {
  .service-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem;
    background: var(--bg);
    border: 1px solid var(--line);
    display: none;
  }
  .main-nav.open { display: flex; }
  .main-nav > a, .nav-dropdown-wrap { padding: 0.65rem 0; border-bottom: 1px solid var(--line); }
  .nav-dropdown { position: static; transform: none; opacity: 1; visibility: visible; display: none; border: none; padding-left: 0.5rem; }
  .nav-dropdown-wrap.is-open .nav-dropdown { display: block; }
  .topbar { position: relative; }
}

@media (prefers-reduced-motion: reduce) {
  .cine-slide, .reveal, .reveal-hero, .service-row.reveal-row {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
