/* Neumann OHG – Stylesheet | Stand: 2026-04 */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── DARK MODE (default) ─────────────────────────────────── */
:root {
  --dark:     #0b0e13;
  --dark2:    #111520;
  --steel:    #1f2533;
  --line:     #2a3040;
  --gold:     #c9a84c;
  --gold-dim: #8a6f2e;
  --silver:   #c8c3bb;
  --light:    #f0ede8;
  --white:    #f0f4fa;
  --font-h:   'Barlow Condensed', sans-serif;
  --font-b:   'Barlow', sans-serif;
  --bg-body:  #0b0e13;
  --bg-card:  #111520;
  --bg-steel: #1f2533;
  --text-main:#f0ede8;
  --text-muted:#c8c3bb;
  --border:   #2a3040;
}

/* ── LIGHT MODE ──────────────────────────────────────────── */
[data-theme="light"] {
  --dark:     #f0f0ed;
  --dark2:    #e4e4e0;
  --steel:    #d4d4cf;
  --line:     #c0c0bb;
  --gold:     #a07828;
  --gold-dim: #b08838;
  --silver:   #555550;
  --light:    #1a1a18;
  --white:    #0a0a08;
  --bg-body:  #f0f0ed;
  --bg-card:  #e4e4e0;
  --bg-steel: #d4d4cf;
  --text-main:#1a1a18;
  --text-muted:#555550;
  --border:   #c0c0bb;
}

[data-theme="light"] body::before { opacity: 0.3; }
[data-theme="light"] .hero-bg-photo { filter: brightness(0.35) saturate(0.4); }

/* Hero always stays light-on-dark regardless of theme */
[data-theme="light"] #hero h1 { color: #f0f4fa; }
[data-theme="light"] #hero h1 em { color: #c9a84c; }
[data-theme="light"] #hero .hero-sub { color: #c8c3bb; }
[data-theme="light"] #hero .hero-eyebrow { color: #c9a84c; }
[data-theme="light"] #hero .stat-num { color: #c9a84c; }
[data-theme="light"] #hero .stat-label { color: #c8c3bb; }
[data-theme="light"] #hero .hero-stats { border-color: rgba(201,168,76,0.2); }
[data-theme="light"] .marquee-bar { background: #ddddd8; border-color: #c0c0bb; }
[data-theme="light"] nav { background: rgba(240,240,237,0.93); border-color: #c0c0bb; }
[data-theme="light"] .nav-logo { color: #1a1a18; }
[data-theme="light"] .nav-links a { color: #555550; }
[data-theme="light"] .nav-links a:hover { color: var(--gold); }
[data-theme="light"] .team-img-wrap img { filter: grayscale(1) contrast(1.05) brightness(0.85); }
[data-theme="light"] .team-img-wrap::after { background: linear-gradient(160deg, rgba(160,120,40,0.18) 0%, rgba(240,240,237,0.4) 100%); }
[data-theme="light"] .partner-text-col { background: var(--dark2); }
[data-theme="light"] .why-card { background: #e4e4e0; border-color: #c0c0bb; }
[data-theme="light"] .why-card h3 { color: #1a1a18; }
[data-theme="light"] h2, [data-theme="light"] h3 { color: #1a1a18; }
[data-theme="light"] .lead { color: #555550; }
[data-theme="light"] .hero-sub { color: #ddddd8; }
[data-theme="light"] .about-text p { color: #555550; }
[data-theme="light"] .about-panel p { color: #555550; }
[data-theme="light"] .partner-text-col p { color: #555550; }
[data-theme="light"] .team-info { background: var(--dark2); }
[data-theme="light"] .team-name { color: #1a1a18; }
[data-theme="light"] .team-phone a { color: #555550; }
[data-theme="light"] footer { background: #ddddd8; border-color: #c0c0bb; color: #555550; }

/* ── THEME TOGGLE BUTTON ─────────────────────────────────── */
.theme-toggle {
  background: none;
  border: 1px solid var(--line);
  border-radius: 20px;
  color: var(--silver);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  transition: all 0.2s;
  margin-left: 0.5rem;
  flex-shrink: 0;
}
.theme-toggle:hover { border-color: var(--gold); color: var(--gold); }
.theme-toggle .icon-sun { display: none; }
.theme-toggle .icon-moon { display: block; }
[data-theme="light"] .theme-toggle .icon-sun { display: block; }
[data-theme="light"] .theme-toggle .icon-moon { display: none; }
html { scroll-behavior: smooth; }
body { background: var(--dark); color: var(--light); font-family: var(--font-b); font-size: 18px; line-height: 1.65; overflow-x: hidden; }
body::before { content: ''; position: fixed; inset: 0; z-index: 0; background-image: repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(255,255,255,0.015) 40px), repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(255,255,255,0.015) 40px); pointer-events: none; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark2); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 3px; }

/* ── NAV ── */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 0 5vw; height: 72px; background: rgba(11,14,19,0.93); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }
.nav-logo { font-family: var(--font-h); font-weight: 800; font-size: 1.4rem; letter-spacing: 0.12em; color: var(--white); text-decoration: none; }
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 2.2rem; list-style: none; }
.nav-links a { font-family: var(--font-h); font-weight: 600; font-size: 0.88rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--silver); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover { color: var(--gold); }
.nav-cta { background: var(--gold) !important; color: var(--dark) !important; padding: 0.45rem 1.2rem; border-radius: 2px; font-weight: 700 !important; }
.nav-cta:hover { background: var(--white) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--silver); border-radius: 1px; }
.mobile-menu { display: none; position: fixed; inset: 72px 0 0 0; background: var(--dark2); z-index: 99; flex-direction: column; padding: 2rem 5vw; gap: 1.2rem; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: var(--font-h); font-size: 1.4rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--silver); text-decoration: none; border-bottom: 1px solid var(--line); padding-bottom: 1rem; }
.mobile-menu a:hover { color: var(--gold); }

/* ── HERO ── */
#hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding: 140px 5vw 80px; overflow: hidden; }
.hero-bg-photo { position: absolute; inset: 0; z-index: 0; background-image: url('https://www.neumann-ohg.de/s/cc_images/cache_66380725.jpg'); background-size: cover; background-position: center; filter: brightness(0.22) saturate(0.5); }
.hero-bg-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(11,14,19,0.97) 40%, rgba(11,14,19,0.5) 70%, rgba(11,14,19,0.15) 100%), radial-gradient(ellipse 60% 70% at 70% 50%, rgba(201,168,76,0.06) 0%, transparent 65%); }
.hero-bg-lines { position: absolute; inset: 0; z-index: 2; background-image: repeating-linear-gradient(-55deg, transparent 0px, transparent 18px, rgba(201,168,76,0.035) 18px, rgba(201,168,76,0.035) 19px); }
.hero-content { position: relative; z-index: 3; max-width: 720px; }
.hero-eyebrow { display: flex; align-items: center; gap: 12px; font-family: var(--font-h); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.6rem; }
.hero-eyebrow::before { content: ''; display: block; width: 36px; height: 2px; background: var(--gold); }
h1 { font-family: var(--font-h); font-size: clamp(3rem, 7vw, 6rem); font-weight: 800; line-height: 0.95; letter-spacing: -0.01em; color: var(--white); margin-bottom: 1.6rem; }
h1 em { color: var(--gold); font-style: normal; }
.hero-sub { font-size: 1.15rem; font-weight: 400; color: var(--silver); max-width: 520px; margin-bottom: 2.8rem; line-height: 1.75; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary { display: inline-flex; align-items: center; gap: 10px; background: var(--gold); color: var(--dark); font-family: var(--font-h); font-weight: 700; font-size: 0.95rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.9rem 2rem; text-decoration: none; border-radius: 2px; transition: background 0.2s, transform 0.15s; border: none; cursor: pointer; }
.btn-primary:hover { background: var(--white); transform: translateY(-2px); }
.btn-outline { display: inline-flex; align-items: center; gap: 10px; background: transparent; color: var(--silver); font-family: var(--font-h); font-weight: 600; font-size: 0.95rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.9rem 2rem; text-decoration: none; border: 1px solid var(--line); border-radius: 2px; transition: border-color 0.2s, color 0.2s, transform 0.15s; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.hero-stats { position: relative; z-index: 3; display: flex; gap: 3rem; margin-top: 4rem; padding-top: 2.5rem; border-top: 1px solid rgba(201,168,76,0.2); }
.stat-num { font-family: var(--font-h); font-weight: 800; font-size: 2.4rem; color: var(--gold); line-height: 1; }
.stat-label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--silver); margin-top: 4px; }

/* ── MARQUEE ── */
.marquee-bar { background: var(--steel); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; padding: 0.8rem 0; }
.marquee-track { display: flex; width: max-content; animation: marquee 28s linear infinite; }
.marquee-item { font-family: var(--font-h); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--silver); padding: 0 2.5rem; display: flex; align-items: center; gap: 1.2rem; white-space: nowrap; }
.marquee-item::before { content: ''; display: inline-block; width: 6px; height: 6px; background: var(--gold); transform: rotate(45deg); flex-shrink: 0; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── SECTIONS ── */
section { position: relative; z-index: 1; }
.section-inner { padding: 100px 5vw; max-width: 1240px; margin: 0 auto; }
.section-tag { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-h); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.section-tag::before { content: ''; display: block; width: 24px; height: 2px; background: var(--gold); }
h2 { font-family: var(--font-h); font-weight: 800; font-size: clamp(2rem, 4.5vw, 3.6rem); line-height: 1.0; letter-spacing: -0.01em; color: var(--white); margin-bottom: 1rem; }
h2 em { color: var(--gold); font-style: normal; }
h3 { font-family: var(--font-h); font-weight: 700; font-size: 1.6rem; letter-spacing: 0.02em; color: var(--white); margin-bottom: 0.6rem; }
.lead { font-size: 1.1rem; font-weight: 400; color: var(--silver); max-width: 640px; line-height: 1.8; margin-bottom: 2rem; }

/* ── ABOUT ── */
#about { background: var(--dark2); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6vw; align-items: center; margin-top: 3rem; }
.about-text p { font-size: 1rem; color: var(--silver); margin-bottom: 1.2rem; line-height: 1.8; }
.value-list { list-style: none; margin-top: 2rem; display: flex; flex-direction: column; gap: 0.8rem; }
.value-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.95rem; color: var(--light); }
.value-list li::before { content: ''; display: block; width: 20px; height: 2px; background: var(--gold); margin-top: 12px; flex-shrink: 0; }
.about-panel { background: var(--steel); border: 1px solid var(--line); border-top: 3px solid var(--gold); padding: 2.5rem; }
.about-panel .big-year { font-family: var(--font-h); font-weight: 800; font-size: 6rem; line-height: 1; color: var(--line); margin-bottom: -1rem; }
.about-panel h3 { margin-top: 0.5rem; font-size: 1.3rem; }
.about-panel p { font-size: 0.95rem; color: var(--silver); line-height: 1.75; margin-top: 0.8rem; }
.about-panel .panel-flag { display: inline-block; font-family: var(--font-h); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); border: 1px solid var(--gold-dim); padding: 0.3rem 0.8rem; margin-top: 1.2rem; }

/* ── PARTNERS ── */
#partners { background: var(--dark); }
.partners-intro { margin-bottom: 4rem; }
.partner-block { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-bottom: 3px; border: 1px solid var(--line); overflow: hidden; transition: border-color 0.3s; }
.partner-block:hover { border-color: rgba(201,168,76,0.3); }
.partner-block.reverse { direction: rtl; }
.partner-block.reverse > * { direction: ltr; }
.partner-image-col { position: relative; overflow: hidden; min-height: 460px; }
.partner-image-col .main-img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; transition: transform 0.7s ease, filter 0.4s; filter: brightness(0.72) saturate(0.65); }
.partner-block:hover .partner-image-col .main-img { transform: scale(1.05); filter: brightness(0.88) saturate(0.9); }
.partner-image-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(11,14,19,0.45) 0%, transparent 55%); }
.partner-num-large { position: absolute; bottom: -0.05em; right: 0.05em; font-family: var(--font-h); font-size: 10rem; font-weight: 800; color: rgba(255,255,255,0.055); line-height: 1; pointer-events: none; user-select: none; }
.partner-text-col { background: var(--dark2); padding: 3rem 3.2rem; display: flex; flex-direction: column; justify-content: space-between; border-top: 3px solid var(--gold); }
.partner-tag-label { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-h); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-dim); margin-bottom: 0.6rem; }
.partner-tag-label::before { content: ''; display: block; width: 16px; height: 1px; background: var(--gold-dim); }
.partner-text-col h3 { font-size: 2rem; margin-bottom: 0.3rem; }
.partner-tagline { font-family: var(--font-h); font-size: 1.05rem; font-weight: 600; color: var(--gold); letter-spacing: 0.05em; margin-bottom: 1.2rem; }
.partner-text-col p { font-size: 0.93rem; color: var(--silver); line-height: 1.8; margin-bottom: 1.4rem; }
.partner-features { list-style: none; display: flex; flex-direction: column; gap: 0.45rem; margin-bottom: 1.8rem; }
.partner-features li { font-size: 0.87rem; color: var(--light); display: flex; align-items: center; gap: 10px; }
.partner-features li::before { content: ''; display: block; width: 14px; height: 1px; background: var(--gold); flex-shrink: 0; }
.partner-link { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-h); font-size: 0.85rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); text-decoration: none; transition: gap 0.2s; margin-bottom: 2rem; }
.partner-link:hover { gap: 14px; }
.photo-strip { display: flex; gap: 5px; overflow-x: auto; padding-bottom: 4px; scrollbar-width: thin; scrollbar-color: var(--gold-dim) var(--steel); }
.photo-strip::-webkit-scrollbar { height: 3px; }
.photo-strip::-webkit-scrollbar-thumb { background: var(--gold-dim); }
.photo-strip img { width: 82px; height: 62px; object-fit: cover; flex-shrink: 0; cursor: zoom-in; filter: brightness(0.6) saturate(0.5); transition: filter 0.25s, transform 0.25s; border: 1px solid var(--line); }
.photo-strip img:hover { filter: brightness(1) saturate(1); transform: scale(1.08); z-index: 1; position: relative; }

/* ── LIGHTBOX ── */
.lightbox { display: none; position: fixed; inset: 0; z-index: 200; background: rgba(11,14,19,0.97); backdrop-filter: blur(8px); align-items: center; justify-content: center; cursor: zoom-out; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 88vw; max-height: 86vh; object-fit: contain; border: 1px solid var(--line); }
.lightbox-close { position: absolute; top: 1.5rem; right: 2rem; font-family: var(--font-h); font-size: 2rem; color: var(--silver); cursor: pointer; transition: color 0.2s; }
.lightbox-close:hover { color: var(--gold); }

/* ── WHY ── */
#why { background: var(--dark2); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3rem; }
.why-card { background: var(--steel); border: 1px solid var(--line); padding: 2rem 1.6rem; transition: border-color 0.25s; }
.why-card:hover { border-color: rgba(201,168,76,0.3); }
.why-icon { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.2); margin-bottom: 1.2rem; color: var(--gold); }
.why-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; }
.why-card p { font-size: 0.88rem; color: var(--silver); line-height: 1.7; }

/* ── TEAM ── */
#team { background: var(--dark); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.team-card { background: var(--dark2); border: 1px solid var(--line); overflow: hidden; transition: border-color 0.3s; }
.team-card:hover { border-color: rgba(201,168,76,0.35); }

/* Photo container with duotone effect */
.team-img-wrap {
  height: 267px; background: var(--steel);
  overflow: hidden; position: relative;
}
/* Base: full grayscale + slight contrast boost */
.team-img-wrap img {
  width: 100%; height: 100%;
  object-fit: contain; object-position: center top;
  display: block;
  filter: grayscale(1) contrast(1.1) brightness(0.65);
  transition: transform 0.5s ease;
}
.team-card:hover .team-img-wrap img { transform: scale(1.02); }

/* Gold duotone wash */
.team-img-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(201,168,76,0.28) 0%, rgba(11,14,19,0.55) 100%);
  mix-blend-mode: color;
  pointer-events: none;
  transition: opacity 0.4s;
}
.team-card:hover .team-img-wrap::after { opacity: 0.6; }

/* Vignette for depth */
.team-img-wrap::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(ellipse 90% 90% at 50% 30%, transparent 50%, rgba(11,14,19,0.55) 100%);
  pointer-events: none;
}

.team-placeholder { width: 90px; height: 90px; background: var(--line); border-radius: 50%; display: none; align-items: center; justify-content: center; font-family: var(--font-h); font-size: 2rem; font-weight: 800; color: var(--silver); position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.team-info { padding: 1.6rem; border-top: 2px solid var(--gold); }
.team-role { font-family: var(--font-h); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.3rem; }
.team-name { font-family: var(--font-h); font-size: 1.4rem; font-weight: 700; color: var(--white); }
.team-phone { margin-top: 0.8rem; font-size: 0.88rem; color: var(--silver); display: flex; align-items: center; gap: 6px; }
.team-phone a { color: var(--silver); text-decoration: none; transition: color 0.2s; }
.team-phone a:hover { color: var(--gold); }

/* ── CONTACT ── */
#contact { background: radial-gradient(ellipse 50% 60% at 80% 50%, rgba(201,168,76,0.05) 0%, transparent 60%), var(--dark2); border-top: 1px solid var(--line); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 6vw; align-items: start; }
.contact-info p { font-size: 1rem; color: var(--silver); line-height: 1.8; margin-bottom: 2rem; }
.contact-detail { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.contact-item { display: flex; gap: 12px; align-items: flex-start; }
.contact-item-icon { width: 36px; height: 36px; background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--gold); }
.contact-item-text { font-size: 0.92rem; line-height: 1.6; }
.contact-item-text strong { display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold-dim); margin-bottom: 2px; }
.contact-item-text a { color: var(--light); text-decoration: none; transition: color 0.2s; }
.contact-item-text a:hover { color: var(--gold); }
.lead-form { background: var(--steel); border: 1px solid var(--line); border-top: 3px solid var(--gold); padding: 2.8rem; }
.form-heading { font-family: var(--font-h); font-size: 1.3rem; font-weight: 700; color: var(--white); margin-bottom: 0.4rem; }
.form-sub { font-size: 0.88rem; color: var(--silver); margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group label { font-family: var(--font-h); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--silver); }
.form-group input, .form-group select, .form-group textarea { background: var(--dark2); border: 1px solid var(--line); color: var(--light); font-family: var(--font-b); font-size: 0.95rem; padding: 0.75rem 1rem; border-radius: 2px; transition: border-color 0.2s, box-shadow 0.2s; outline: none; width: 100%; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.12); }
.form-group select option { background: var(--dark2); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; margin-top: 0.6rem; }
.form-note { font-size: 0.78rem; color: var(--silver); margin-top: 0.8rem; text-align: center; line-height: 1.6; }
.form-success { display: none; text-align: center; padding: 2rem; }
.form-success .success-icon { width: 60px; height: 60px; background: rgba(201,168,76,0.1); border: 2px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.2rem; font-size: 1.6rem; }
.form-success h3 { color: var(--gold); margin-bottom: 0.5rem; }
.form-success p { color: var(--silver); font-size: 0.95rem; }

/* ── FOOTER ── */
footer { background: var(--dark); border-top: 1px solid var(--line); padding: 3rem 5vw; }
.footer-inner { max-width: 1240px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.5rem; }
.footer-logo { font-family: var(--font-h); font-weight: 800; font-size: 1.2rem; letter-spacing: 0.12em; color: var(--white); text-decoration: none; }
.footer-logo span { color: var(--gold); }
.footer-copy { font-size: 0.82rem; color: var(--silver); }
.footer-links { display: flex; gap: 1.6rem; }
.footer-links a { font-size: 0.82rem; color: var(--silver); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }

/* ── ANIMATIONS ── */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* ── RESPONSIVE ── */
@media (max-width: 1000px) {
  .partner-block, .partner-block.reverse { grid-template-columns: 1fr; direction: ltr; }
  .partner-image-col { min-height: 300px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .team-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 1.5rem; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .lead-form { padding: 1.8rem; }
  .partner-text-col { padding: 2rem 1.6rem; }
}
