@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

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

:root {
  /* ── Light/Cussens palette — variable names kept, values flipped ── */
  --black: #14110d;        /* primary text — warm near-black */
  --off-black: #faf8f5;    /* light hover surface */
  --dark: #efece7;         /* cards / surface */
  --mid: #e3ded6;          /* hairline borders */
  --muted: #6b6258;        /* secondary text (AA on white) */
  --light: #8a8175;        /* labels / tertiary */
  --off-white: #f6f4f1;    /* alt section bg */
  --white: #ffffff;        /* page background */
  --gold: #e2622c;         /* ORANGE accent (name kept) */
  --gold-dim: #b8491c;     /* darker orange for small text on white */
  /* new semantic aliases */
  --accent: #e2622c;
  --accent-dim: #b8491c;
  --surface: #ffffff;
  --surface-2: #f6f4f1;
  --shadow-card: 0 1px 3px rgba(20,17,13,.06), 0 8px 24px rgba(20,17,13,.05);
  --font-display: 'Inter', system-ui, sans-serif;
  --font-ui: 'Inter', system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--white);
  color: var(--black);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.6;
  cursor: auto;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── Navbar ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 3rem;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--mid);
}

.nav-logo {
  font-family: var(--font-ui);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: none;
  position: relative;
  z-index: 1;
}

.nav-logo span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  position: relative;
  z-index: 1;
}

.nav-links a {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--light);
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--black);
}

.nav-links a.nav-active {
  color: var(--black);
}

.nav-links a:hover::after {
  width: 100%;
}

/* Nav CTA pill */
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: #fff !important;
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.3s ease;
}

.nav-cta::after { display: none; }

.nav-cta:hover {
  background: var(--accent-dim);
  transform: translateY(-1px);
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 9rem 3rem 4rem;
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.hero-head {
  max-width: 1100px;
  margin: 0 auto 3.5rem;
  width: 100%;
  text-align: center;
}

.hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.2s forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.6rem, 6.5vw, 5.5rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--black);
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: fadeUp 1.1s ease 0.35s forwards;
}

.hero-title em {
  font-style: normal;
  font-weight: 700;
  color: var(--accent);
}

.hero-sub {
  font-size: 1rem;
  letter-spacing: 0;
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto 2.25rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.55s forwards;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s ease 0.7s forwards;
}

/* Video slot — hidden until a showreel src is wired in */
.hero-video-slot {
  display: none;
}

.hero--video .hero-grid { display: none; }
.hero--video .hero-video-slot {
  display: block;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.hero-video-slot video {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 6px;
  display: block;
  box-shadow: var(--shadow-card);
}

/* Hero project grid — main visual for now */
.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  opacity: 0;
  animation: fadeUp 1.1s ease 0.85s forwards;
}

.hero-tile {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 6px;
  aspect-ratio: 4/3;
  text-decoration: none;
  background: var(--dark);
  box-shadow: var(--shadow-card);
}

.hero-tile.is-wide { grid-column: span 2; aspect-ratio: 16/9; }

.hero-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
}

.hero-tile:hover img { transform: scale(1.05); }

.hero-tile-cap {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  background: linear-gradient(to top, rgba(20,17,13,0.7) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.hero-tile:hover .hero-tile-cap { opacity: 1; }

.hero-tile-tag {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffd9c4;
  margin-bottom: 0.3rem;
}

.hero-tile-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: #fff;
  line-height: 1.1;
}

/* ── Reel Section ── */
.reel-section {
  padding: 8rem 3rem;
  position: relative;
}

.reel-label {
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.reel-title {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: clamp(2rem, 5vw, 4.5rem);
  color: var(--black);
  margin-bottom: 3rem;
  line-height: 1.1;
}

.reel-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--dark);
  border: 1px solid var(--mid);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.reel-placeholder:hover {
  border-color: var(--gold-dim);
}

.play-btn {
  width: 72px;
  height: 72px;
  border: 1px solid rgba(226,98,44,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.reel-placeholder:hover .play-btn {
  border-color: var(--gold);
  background: rgba(226,98,44,0.08);
  transform: scale(1.05);
}

.play-triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 18px;
  border-color: transparent transparent transparent var(--gold);
  margin-left: 4px;
}

.reel-hint {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── Services Section ── */
.services-section {
  padding: 8rem 3rem;
  border-top: 1px solid var(--mid);
}

.section-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: 5rem;
}

.section-label {
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.1;
  color: var(--black);
}

.section-title em {
  font-style: normal;
  font-weight: 700;
  color: var(--accent);
}

.section-desc {
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 320px;
  align-self: end;
  line-height: 1.9;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--surface);
  border: 1px solid var(--mid);
  border-radius: 8px;
  overflow: hidden;
}

.service-item {
  background: var(--surface);
  padding: 3rem 2.5rem;
  transition: background 0.4s ease;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--mid);
  border-left: 1px solid var(--mid);
}

/* Hairlines nur zwischen den Karten — erste Reihe ohne Oberkante,
   erste Spalte ohne linke Kante. So bleibt eine leere Zelle einfach
   weiß (kein grauer Block), falls die Kartenanzahl kein Vielfaches
   von 3 ist. */
.service-item:nth-child(1),
.service-item:nth-child(2),
.service-item:nth-child(3) { border-top: none; }
.service-item:nth-child(3n+1) { border-left: none; }

.service-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.5s ease;
}

.service-item:hover {
  background: var(--off-black);
}

.service-item:hover::before {
  width: 100%;
}

.service-num {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: var(--gold-dim);
  margin-bottom: 2rem;
}

.service-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--black);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.service-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.9;
}

/* ── About Teaser ── */
.about-teaser {
  padding: 8rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  border-top: 1px solid var(--mid);
}

.about-quote {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  line-height: 1.3;
  color: var(--black);
}

.about-quote em {
  color: var(--accent);
  font-style: normal;
  font-weight: 700;
}

.about-body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-body p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.9;
}

.about-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: gap 0.3s ease;
  margin-top: 0.5rem;
}

.about-link:hover {
  gap: 1.25rem;
}

.about-link-line {
  width: 30px;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.about-link:hover .about-link-line {
  width: 50px;
}

/* ── Footer ── */
footer {
  padding: 3rem;
  border-top: 1px solid var(--mid);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  font-family: var(--font-ui);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer-logo span {
  color: var(--gold-dim);
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--light);
  letter-spacing: 0.1em;
}

.footer-login {
  font-size: 0.72rem;
  color: var(--light);
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-login:hover { color: var(--gold-dim); }

/* ── Work Section ── */
.work-section {
  border-top: 1px solid var(--mid);
}

.work-intro {
  padding: 6rem 3rem 4rem;
  border-bottom: 1px solid var(--mid);
}

.work-intro-title {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 1;
  color: var(--black);
  margin-top: 1rem;
}

.work-intro-title em {
  font-style: normal;
  font-weight: 700;
  color: var(--accent);
}

/* ── Filter chips ── */
.work-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 0 3rem 2.5rem;
}

.filter-chip {
  background: transparent;
  border: 1px solid var(--mid);
  color: var(--muted);
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  cursor: pointer;
  transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease;
}

.filter-chip:hover { color: var(--black); border-color: var(--light); }

.filter-chip.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* ── Work grid ── */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 0 3rem 5rem;
}

.work-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 6px;
  aspect-ratio: 4/3;
  text-decoration: none;
  background: var(--dark);
  box-shadow: var(--shadow-card);
}

.work-card.is-hidden { display: none; }

.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
}

.work-card:hover img { transform: scale(1.05); }

.work-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(20,17,13,0.75) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.work-card:hover .work-card-overlay { opacity: 1; }

.work-card-tag {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffd9c4;
  margin-bottom: 0.35rem;
}

.work-card-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.1;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.btn--accent {
  background: var(--accent);
  color: #fff;
}
.btn--accent:hover { background: var(--accent-dim); transform: translateY(-1px); }

.btn--ghost {
  background: transparent;
  color: var(--black);
  border-color: var(--mid);
}
.btn--ghost:hover { border-color: var(--black); }

.btn--whatsapp {
  background: #25D366;
  color: #fff;
}
.btn--whatsapp:hover { background: #1da851; transform: translateY(-1px); }

/* ── Process (home) ── */
.process {
  padding: 8rem 3rem;
  border-top: 1px solid var(--mid);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--mid);
  border: 1px solid var(--mid);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 4rem;
}

.process-item {
  background: var(--surface);
  padding: 3rem 2.5rem;
}

.process-num {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.process-item h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: -0.01em;
  color: var(--black);
  margin-bottom: 0.75rem;
}

.process-item p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.8;
}

/* ── Pricing ── */
.pricing {
  padding: 8rem 3rem;
  border-top: 1px solid var(--mid);
  background: var(--surface-2);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

.pricing-tier {
  background: var(--surface);
  border: 1px solid var(--mid);
  border-radius: 10px;
  padding: 2.75rem 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow: var(--shadow-card);
  position: relative;
}

.pricing-tier.is-featured {
  border-color: var(--accent);
  box-shadow: 0 8px 30px rgba(226,98,44,0.14);
}

.pricing-badge {
  position: absolute;
  top: -0.75rem;
  left: 2.25rem;
  background: var(--accent);
  color: #fff;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
}

.pricing-name {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--light);
}

.pricing-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.4rem;
  letter-spacing: -0.02em;
  color: var(--black);
  line-height: 1;
}

.pricing-price span {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 400;
  letter-spacing: 0;
}

.pricing-tier ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.pricing-tier li {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
  padding-left: 1.5rem;
  position: relative;
}

.pricing-tier li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
}

.pricing-tier .btn { width: 100%; justify-content: center; margin-top: auto; }

.pricing-note {
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: var(--light);
  margin-top: 2.5rem;
}

/* ── CTA band ── */
.cta-band {
  padding: 6rem 3rem;
  background: var(--black);
  color: var(--white);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.05;
  color: #fff;
  max-width: 720px;
}

.cta-band h2 em { font-style: normal; color: var(--accent); }

.cta-band-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.cta-band .btn--ghost {
  color: #fff;
  border-color: rgba(255,255,255,0.3);
}
.cta-band .btn--ghost:hover { border-color: #fff; }

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.1); }
}

/* ── Responsive ── */
@media (max-width: 900px) {
  nav { padding: 1rem 1.25rem; }
  .nav-links { gap: 1.25rem; }
  .hero { padding: 7.5rem 1.25rem 3rem; }
  .hero-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-tile.is-wide { grid-column: span 2; }
  .about-teaser { padding: 5rem 1.5rem; grid-template-columns: 1fr; gap: 3rem; }
  footer { flex-direction: column; gap: 1rem; text-align: center; }
  .services-section, .process, .pricing { padding: 5rem 1.5rem; }
  .services-grid, .process-grid { grid-template-columns: 1fr; }
  /* In einer Spalte trennt jede Karte oben — erste Karte ohne Linie */
  .service-item { border-left: none; border-top: 1px solid var(--mid); }
  .service-item:first-child { border-top: none; }
  .pricing-grid { grid-template-columns: 1fr; }
  .work-intro { padding: 4rem 1.5rem 2rem; }
  .work-filter { padding: 0 1.5rem 2rem; }
  .work-grid { grid-template-columns: 1fr; padding: 0 1.5rem 3rem; }
  .section-header { grid-template-columns: 1fr; gap: 1.5rem; }
  .cta-band { padding: 4rem 1.5rem; }
}

@media (max-width: 600px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-tile.is-wide { grid-column: span 1; }
}
