@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url("../assets/fonts/cormorant-garamond-latin.woff2") format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url("../assets/fonts/inter-latin.woff2") format('woff2');
}

:root {
  --black: #0a0a0b;
  --near-black: #121214;
  --charcoal: #1c1c1f;
  --silver: #b9bcc2;
  --silver-dim: #7d818a;
  --white: #f5f5f3;
  --gold: #c9a768;
  --gold-bright: #e4c98a;
  --border: rgba(201, 167, 104, 0.18);
  --max-width: 1140px;
  --ease: cubic-bezier(.16, .8, .24, 1);
  font-size: 16px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--silver);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 300;
  line-height: 1.65;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: var(--white);
  font-weight: 600;
  letter-spacing: 0.01em;
}

a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

/* Marquee ticker */
.marquee {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  background: rgba(255,255,255,0.02);
  padding: 20px 0;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 30s linear infinite;
}
.marquee-track span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  color: var(--silver-dim);
  white-space: nowrap;
  padding-right: 4px;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Ghost numerals */
.ghost-num {
  position: absolute;
  top: -0.35em;
  right: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 600;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201, 167, 104, 0.16);
  line-height: 1;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}
.section-kicker, .section h2, .section-lead, .services-grid, .brand-feature, .contact-grid {
  position: relative;
  z-index: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Fixed skyline background */
.skyline-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 80% 55% at 50% 74%, rgba(201,167,104,0.11), transparent 72%),
    radial-gradient(ellipse at 50% -10%, rgba(201,167,104,0.10), transparent 55%),
    linear-gradient(180deg, #0a0a0b 0%, #0d0d10 60%, #0a0a0b 100%);
}
.skyline-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../assets/logo-icon-transparent.png");
  background-repeat: no-repeat;
  background-position: center 38%;
  background-size: 90% auto;
  opacity: 0.32;
}
.skyline-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 95% 75% at 50% 38%, transparent 42%, rgba(10,10,11,0.6) 74%, rgba(10,10,11,0.98) 96%),
    linear-gradient(180deg, rgba(10,10,11,0.05) 0%, rgba(10,10,11,0.55) 62%, #0a0a0b 100%);
}
/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #000000;
  border-bottom: 1px solid var(--border);
  transition: border-color 0.4s var(--ease);
}
.site-header.scrolled {
  border-bottom-color: rgba(201, 167, 104, 0.28);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  transition: height 0.35s var(--ease);
  position: relative;
  z-index: 1;
}
.site-header.scrolled .header-inner { height: 64px; }

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  width: 78px;
  height: 39px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: filter 0.3s ease;
}
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.brand:hover .brand-mark {
  filter: brightness(1.15) drop-shadow(0 0 6px rgba(201,167,104,0.3));
}
.brand-name {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  color: var(--white);
  line-height: 1.6;
  font-weight: 500;
}
.brand-name-sub {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  letter-spacing: 0.2em;
}
.brand-name-sub::before,
.brand-name-sub::after {
  content: "";
  width: 10px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

.main-nav {
  display: flex;
  gap: 36px;
}
.main-nav a {
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--silver);
  transition: color 0.25s ease;
  position: relative;
  padding-bottom: 4px;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.main-nav a:hover { color: var(--gold-bright); }
.main-nav a:hover::after { width: 100%; }
.main-nav a.active { color: var(--gold); }
.main-nav a.active::after { width: 100%; background: var(--gold); }

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

.lang-switch {
  background: none;
  border: 1px solid var(--border);
  padding: 6px 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: var(--silver-dim);
  transition: border-color 0.25s ease;
}
.lang-switch:hover { border-color: var(--gold); }
.lang-switch .lang-option { transition: color 0.2s ease; }
.lang-switch .lang-option.active { color: var(--gold-bright); font-weight: 600; }
.lang-divider { color: var(--silver-dim); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 22px;
  height: 1px;
  background: var(--silver);
  display: block;
  transition: background 0.25s ease;
}
.nav-toggle:hover span { background: var(--gold-bright); }

/* Hero */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(560px circle at var(--mx, 30%) var(--my, 35%), rgba(201, 167, 104, 0.14), transparent 60%);
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.4s ease;
}
.hero-inner {
  padding-top: 60px;
  padding-bottom: 60px;
  opacity: 0;
  transform: translateY(20px);
  animation: hero-in 1.1s var(--ease) 0.15s forwards;
  position: relative;
  z-index: 1;
}
@keyframes hero-in {
  to { opacity: 1; transform: none; }
}
.hero-text {
  max-width: 640px;
}
.eyebrow {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1.06;
  margin-bottom: 26px;
  background: linear-gradient(100deg, var(--white) 40%, var(--gold-bright) 120%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-subtitle {
  font-size: 1.15rem;
  color: var(--silver);
  max-width: 560px;
  margin-bottom: 44px;
  font-weight: 300;
}
.hero-cta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 38px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--silver-dim);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.7;
  cursor: pointer;
  transition: opacity 0.25s ease;
}
.scroll-cue:hover { opacity: 1; }
.scroll-cue span {
  width: 1px;
  height: 34px;
  background: linear-gradient(180deg, var(--gold), transparent);
  display: block;
  animation: scroll-cue-move 2.2s ease-in-out infinite;
}
@keyframes scroll-cue-move {
  0%, 100% { transform: translateY(0); opacity: 0.4; }
  50% { transform: translateY(6px); opacity: 1; }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease),
    color 0.3s var(--ease), box-shadow 0.3s var(--ease), transform 0.18s ease-out;
  position: relative;
}
.btn::after {
  content: "\2192";
  display: inline-block;
  transition: transform 0.3s var(--ease);
}
.btn:hover::after { transform: translateX(4px); }
.btn-primary {
  background: var(--gold);
  color: var(--black);
  font-weight: 600;
}
.btn-primary:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  box-shadow: 0 8px 30px -8px rgba(201, 167, 104, 0.55);
}
.btn-ghost {
  color: var(--white);
  border-color: var(--border);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
}

/* Sections */
.section {
  padding: 130px 0;
  border-top: 1px solid var(--border);
  scroll-margin-top: 88px;
}
.section-alt { background: linear-gradient(180deg, rgba(255,255,255,0.015), transparent); }

.section-kicker {
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-kicker::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}
.section h2 {
  font-size: clamp(2.1rem, 4vw, 2.9rem);
  margin-bottom: 30px;
}
.section-lead {
  max-width: 700px;
  font-size: 1.08rem;
  color: var(--silver);
  margin-bottom: 18px;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 54px;
  border: 1px solid var(--border);
}
.service-card {
  background: var(--near-black);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: background 0.4s var(--ease), transform 0.4s var(--ease);
}
.service-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.45s var(--ease);
}
.service-card:hover {
  background: #16161a;
  transform: translateY(-3px);
}
.service-card:hover::before { transform: scaleY(1); }
.service-index {
  position: absolute;
  top: -0.28em;
  right: 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 6rem;
  font-weight: 600;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201, 167, 104, 0.3);
  line-height: 1;
  z-index: 0;
  transition: -webkit-text-stroke-color 0.4s ease;
}
.service-card:hover .service-index {
  -webkit-text-stroke-color: rgba(201, 167, 104, 0.6);
}
.service-card h3 {
  font-size: 1.55rem;
  margin-bottom: 14px;
  margin-top: 34px;
  transition: color 0.3s ease;
  position: relative;
  z-index: 1;
}
.service-card:hover h3 { color: var(--gold-bright); }
.service-card p {
  font-size: 0.95rem;
  color: var(--silver-dim);
  position: relative;
  z-index: 1;
}

/* Brands */
.brand-feature {
  margin-top: 44px;
  padding: 52px;
  border: 1px solid var(--gold);
  background: linear-gradient(135deg, rgba(201,167,104,0.07), transparent 60%);
  max-width: 780px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.5s var(--ease), transform 0.5s var(--ease);
}
.brand-feature:hover {
  box-shadow: 0 20px 60px -20px rgba(201, 167, 104, 0.28);
  transform: translateY(-3px);
}
.brand-feature-mark {
  position: absolute;
  top: 22px;
  right: 32px;
  font-size: 2.4rem;
  color: rgba(201, 167, 104, 0.35);
}
.brand-feature h3 {
  font-size: 2.1rem;
  color: var(--gold-bright);
  margin-bottom: 20px;
  max-width: 85%;
}
.brand-feature p {
  color: var(--silver);
  margin-bottom: 16px;
  font-size: 1rem;
}
.brand-note {
  color: var(--silver-dim) !important;
  font-size: 0.9rem !important;
  font-style: italic;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 60px;
  margin-top: 50px;
  max-width: 780px;
}
.contact-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 18px;
  padding-left: 16px;
  border-left: 1px solid transparent;
  transition: border-color 0.3s ease, padding-left 0.3s ease;
}
.contact-item:hover {
  border-left-color: var(--gold);
  padding-left: 22px;
}
.contact-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.contact-value {
  font-size: 1.05rem;
  color: var(--white);
}
.contact-value a { transition: color 0.25s ease; }
.contact-value a:hover { color: var(--gold-bright); }
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.social-link svg { flex-shrink: 0; color: var(--gold); transition: color 0.25s ease; }
.social-link:hover svg { color: var(--gold-bright); }
.social-link:hover { color: var(--gold-bright); }
.brand-instagram {
  margin-top: 20px;
  color: var(--silver);
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1;
}

/* Footer */
.site-footer {
  background: #000000;
  border-top: 1px solid var(--border);
  padding: 50px 0 34px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-brand .brand-mark {
  width: 56px;
  height: 28px;
}
.footer-brand-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-name {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: var(--silver);
}
.footer-name-gold { color: var(--gold); letter-spacing: 0.2em; }
.footer-founders {
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  color: var(--silver-dim);
}

.impressum summary {
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--silver);
  letter-spacing: 0.04em;
  list-style: none;
  transition: color 0.25s ease;
}
.impressum summary:hover { color: var(--gold-bright); }
.impressum summary::-webkit-details-marker { display: none; }
.impressum summary::before { content: "+ "; color: var(--gold); }
.impressum[open] summary::before { content: "\2212 "; }
.impressum-body {
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--silver-dim);
  max-width: 520px;
}
.impressum-body p { margin-bottom: 10px; }
.impressum-placeholder {
  color: var(--gold) !important;
  font-style: italic;
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--silver-dim);
}

/* Mobile */
@media (max-width: 860px) {
  .main-nav {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: rgba(10,10,11,0.98);
    flex-direction: column;
    padding: 30px 24px;
    gap: 22px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.25s ease;
  }
  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-toggle { display: flex; }
  .brand { gap: 8px; }
  .brand-mark { width: 52px; height: 26px; }
  .brand-name { font-size: 0.5rem; letter-spacing: 0.1em; line-height: 1.4; }
  .brand-name-sub { gap: 5px; }
  .brand-name-sub::before, .brand-name-sub::after { width: 6px; }
  .services-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .section { padding: 84px 0; }
  .brand-feature { padding: 32px 26px; }
  .scroll-cue { display: none; }
  .marquee-track span { font-size: 1.05rem; }
  .ghost-num { font-size: clamp(4.5rem, 22vw, 7rem); top: -0.2em; }
  .service-index { font-size: 4rem; right: 14px; }
  .brand-feature-mark { top: 16px; right: 20px; font-size: 1.8rem; }
  .skyline-bg::before { background-position: center 30%; }
}
