:root {
  --black: #0a0a0b;
  --charcoal: #17181a;
  --charcoal-2: #1f2023;
  --concrete: #2c2d30;
  --concrete-light: #45464a;
  --bronze: #b0793a;
  --bronze-light: #d19a56;
  --bronze-dim: #8a5f2c;
  --white: #f5f3ef;
  --gray-text: #b7b5b0;
  --gray-dim: #8a8884;
  --radius: 4px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --content-max: 1480px;
}

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

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, .brand-word, .stat-number, .eyebrow {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.grain-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%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");
}

.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--bronze), var(--bronze-light));
  z-index: 1001;
  transition: width 0.08s linear;
}

.eyebrow {
  color: var(--bronze);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  margin-bottom: 0.75rem;
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10, 10, 11, 0);
  border-bottom: 1px solid transparent;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease);
}
.site-header.scrolled {
  background: rgba(10, 10, 11, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(176, 121, 58, 0.15);
}
.header-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  padding: 6px 6px 6px 2px;
}
.brand::before {
  content: "";
  position: absolute;
  left: -6px;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(176,121,58,0.4), transparent 72%);
}
.brand-mark {
  position: relative;
  width: 50px; height: 50px;
  object-fit: contain;
  filter:
    drop-shadow(0 2px 6px rgba(0,0,0,0.7))
    drop-shadow(0 0 1px rgba(245,243,239,0.9))
    drop-shadow(0 0 14px rgba(176,121,58,0.35));
  transition: transform 0.35s var(--ease);
}
.brand:hover .brand-mark { transform: scale(1.08) rotate(-2deg); }
.brand-word {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.04em;
}
.brand-accent { color: var(--bronze-light); font-weight: 400; }

.main-nav { display: flex; gap: 2.2rem; }
.main-nav a {
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-text);
  position: relative;
  padding: 0.3rem 0;
  transition: color 0.25s;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--bronze);
  transition: width 0.3s var(--ease);
}
.main-nav a:hover { color: var(--white); }
.main-nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 1rem; }
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.8rem;
  border: 1px solid rgba(176, 121, 58, 0.35);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--white);
  transition: border-color 0.25s, background 0.25s;
}
.lang-toggle:hover { border-color: var(--bronze); background: rgba(176, 121, 58, 0.08); }
.flag-icon { font-size: 1rem; line-height: 1; }

.nav-burger { display: none; flex-direction: column; gap: 5px; width: 24px; }
.nav-burger span { display: block; width: 100%; height: 2px; background: var(--white); }

/* ===== HERO (full-bleed, parallax) ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--black);
}
.hero-bg-layer {
  position: absolute;
  inset: -8% 0 0 0;
  z-index: 0;
  will-change: transform;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) brightness(0.62) contrast(1.05);
}
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to top, rgba(10,10,11,0.96) 0%, rgba(10,10,11,0.55) 42%, rgba(10,10,11,0.35) 65%, rgba(10,10,11,0.55) 100%),
    linear-gradient(to right, rgba(10,10,11,0.3), transparent 50%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--content-max);
  margin: 0 auto;
  width: 100%;
  padding: 0 2rem 7rem;
  animation: fadeUp 1.1s var(--ease) both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow { color: var(--bronze-light); }
.hero-tag {
  font-size: clamp(2.1rem, 5.2vw, 4.4rem);
  line-height: 1.08;
  margin: 0.6rem 0 1.4rem;
  color: var(--white);
  max-width: 20ch;
}
.hero-desc {
  font-size: 1.1rem;
  color: var(--gray-text);
  max-width: 46ch;
  margin-bottom: 2.3rem;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 0.9rem 1.9rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 2px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s;
}
.btn-primary {
  background: linear-gradient(135deg, var(--bronze-light), var(--bronze-dim));
  color: var(--black);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px -8px rgba(176, 121, 58, 0.6);
}
.btn-ghost {
  border: 1px solid rgba(245, 243, 239, 0.3);
  color: var(--white);
}
.btn-ghost:hover {
  border-color: var(--bronze);
  background: rgba(176, 121, 58, 0.08);
  transform: translateY(-2px);
}

.scroll-cue {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-cue span {
  display: block;
  width: 1px; height: 40px;
  background: linear-gradient(var(--bronze-light), transparent);
  animation: cueMove 2s ease-in-out infinite;
}
@keyframes cueMove {
  0% { opacity: 0; transform: translateY(-10px); }
  50% { opacity: 1; }
  100% { opacity: 0; transform: translateY(10px); }
}

/* ===== MANIFESTO (pinned scroll-story) ===== */
.manifesto {
  position: relative;
  height: 340vh;
}
.manifesto-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.manifesto-bg { position: absolute; inset: 0; z-index: 0; }
.manifesto-bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.8) brightness(0.4);
  transform: scale(1.15);
  will-change: transform;
}
.manifesto-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse at center, rgba(10,10,11,0.4), rgba(10,10,11,0.88) 75%);
}
.manifesto-lines {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 2rem;
}
.manifesto-line {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: clamp(1.8rem, 5.5vw, 4rem);
  color: var(--white);
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, calc(-50% + 24px));
  opacity: 0;
  width: 90vw;
  max-width: 900px;
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
  pointer-events: none;
}
.manifesto-line.active {
  opacity: 1;
  transform: translate(-50%, -50%);
}
.manifesto-line-final {
  color: var(--bronze-light);
  font-size: clamp(1.5rem, 3.6vw, 2.6rem);
}

/* ===== STATS ===== */
.stats-strip {
  background: var(--charcoal);
  border-top: 1px solid rgba(176,121,58,0.15);
  border-bottom: 1px solid rgba(176,121,58,0.15);
  padding: 3.5rem 2rem;
}
.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-number {
  display: block;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--bronze-light);
  line-height: 1;
  margin-bottom: 0.6rem;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--gray-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ===== SECTION SHARED ===== */
section:not(.hero):not(.manifesto):not(.reel-wrap) { padding: 6.5rem 2rem; max-width: var(--content-max); margin: 0 auto; }
.showcase { padding-bottom: 0 !important; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 3.5rem; }
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); margin-bottom: 0.8rem; }
.section-subtitle { color: var(--gray-text); font-size: 1rem; }

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  display: block;
  width: 100%;
  text-align: left;
  background: var(--charcoal);
  border: 1px solid rgba(176,121,58,0.12);
  border-radius: var(--radius);
  padding: 2.2rem 1.8rem;
  cursor: pointer;
  transition: transform 0.35s var(--ease), border-color 0.35s, background 0.35s, box-shadow 0.35s;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(176,121,58,0.5);
  background: var(--charcoal-2);
  box-shadow: 0 16px 32px -18px rgba(0,0,0,0.6);
}
.service-card:active { transform: translateY(-2px) scale(0.98); }
.service-icon {
  width: 44px; height: 44px;
  color: var(--bronze);
  margin-bottom: 1.3rem;
  transition: transform 0.35s var(--ease);
}
.service-card:hover .service-icon { transform: scale(1.1) rotate(-4deg); }
.service-icon svg { width: 100%; height: 100%; }
.service-card h3 {
  font-size: 1.02rem;
  margin-bottom: 0.7rem;
  color: var(--white);
  text-transform: none;
  letter-spacing: 0;
}
.service-card p { color: var(--gray-text); font-size: 0.92rem; }
.service-card .service-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--bronze-light);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.service-card:hover .service-cta { opacity: 1; transform: translateX(0); }

/* ===== SHOWCASE REEL (pinned horizontal scroll) ===== */
.reel-wrap {
  position: relative;
  height: 520vh; /* fallback only — main.js sets the real height from the track width */
}
.reel-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.reel-hint {
  position: absolute;
  top: 2.5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gray-dim);
  opacity: 0.85;
}
.reel-track {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0 4vw;
  will-change: transform;
}
.reel-card {
  position: relative;
  flex: 0 0 auto;
  width: min(34vw, 520px);
  height: min(62vh, 560px);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(176,121,58,0.12);
  transition: border-color 0.3s, transform 0.4s var(--ease);
}
.reel-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) brightness(0.9);
  transition: transform 0.6s var(--ease), filter 0.4s;
}
.reel-card:hover img { transform: scale(1.06); filter: saturate(1.05) brightness(1); }
.reel-card:hover { border-color: rgba(176,121,58,0.55); }
.reel-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,11,0.5), transparent 40%);
}
.reel-progress {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  width: min(60vw, 640px);
  height: 2px;
  background: rgba(245,243,239,0.12);
  border-radius: 2px;
  overflow: hidden;
}
.reel-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--bronze), var(--bronze-light));
}

/* ===== WHY ===== */
.why { background: var(--charcoal); }
.why-inner { max-width: 1000px; margin: 0 auto; }
.why-lead {
  text-align: center;
  color: var(--gray-text);
  font-size: 1rem;
  max-width: 62ch;
  margin: 0.5rem auto 0;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem 3rem;
  margin-bottom: 3rem;
}
.why-item {
  display: flex;
  align-items: baseline;
  gap: 1.2rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid rgba(176,121,58,0.12);
}
.why-num {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  color: var(--bronze);
  font-weight: 600;
  flex-shrink: 0;
}
.why-item p { color: var(--gray-text); font-size: 0.98rem; }
.why-closing {
  text-align: center;
  font-size: 1.15rem;
  color: var(--white);
  font-style: italic;
  max-width: 60ch;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== CONTACT ===== */
.contact-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.contact-inner .section-head { max-width: 60ch; }

.contact-form {
  width: 100%;
  max-width: 560px;
  text-align: left;
  margin-top: 2.5rem;
  background: var(--charcoal);
  border: 1px solid rgba(176,121,58,0.15);
  border-radius: var(--radius);
  padding: 2.2rem;
}
.form-row { margin-bottom: 1.3rem; }
.form-row label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-dim);
  margin-bottom: 0.5rem;
}
.form-row input, .form-row textarea {
  width: 100%;
  background: var(--black);
  border: 1px solid rgba(245,243,239,0.12);
  border-radius: 2px;
  padding: 0.8rem 1rem;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.25s;
}
.form-row input:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--bronze);
}
.form-submit { width: 100%; text-align: center; border: none; }
.form-note {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--gray-dim);
  text-align: center;
}

/* ===== FOOTER ===== */
.site-footer {
  border-top: 1px solid rgba(176,121,58,0.15);
  padding: 3rem 2rem;
}
.footer-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-brand { display: flex; align-items: center; gap: 1rem; }
.footer-logo {
  width: 30px; height: 30px;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5));
}
.footer-brand p { color: var(--gray-dim); font-size: 0.85rem; max-width: 40ch; }
.footer-meta { font-size: 0.8rem; color: var(--gray-dim); }

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10,10,11,0.96);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 3rem;
}
.lightbox.open { display: flex; }
.lightbox-img {
  max-width: 90vw;
  max-height: 86vh;
  border-radius: 2px;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.8);
  animation: lbIn 0.35s var(--ease);
}
@keyframes lbIn { from { opacity: 0; transform: scale(0.96); } to { opacity: 1; transform: scale(1); } }
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  font-size: 2.2rem;
  color: var(--white);
  line-height: 1;
}
.lightbox-close:hover { color: var(--bronze-light); }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
  color: var(--white);
  padding: 0.5rem 1rem;
  transition: color 0.2s;
}
.lightbox-nav:hover { color: var(--bronze-light); }
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 860px) {
  .main-nav { display: none; }
  .nav-burger { display: flex; }
  .main-nav.open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--black);
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 1.2rem;
    border-bottom: 1px solid rgba(176,121,58,0.2);
  }
  .hero-content { padding-bottom: 5rem; }
  .hero-tag { max-width: none; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  section:not(.hero):not(.manifesto):not(.reel-wrap) { padding: 4.5rem 1.2rem; }
  .manifesto { height: 280vh; }
  .reel-wrap { height: 900vh; }
  .reel-card { width: 78vw; height: 52vh; }
}
