/* ── Variables ── */
:root {
  --black: #040404;
  --bg: #0a0a0a;
  --surface: #111111;
  --surface-2: #161616;
  --border: rgba(255,255,255,0.07);
  --border-light: rgba(255,255,255,0.12);
  --white: #ffffff;
  --grey: #888888;
  --grey-light: #aaaaaa;
  --silver: #c8c8c8;
  --accent: #d4d4d4;
  --font-display: 'Bebas Neue', sans-serif;
  --font-serif: 'Cormorant Garamond', serif;
  --font-body: 'DM Sans', sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ── Background FX ── */
.noise {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px;
  opacity: 0.35;
}
.gradient-orb {
  position: fixed; border-radius: 50%; pointer-events: none; z-index: 0;
  filter: blur(120px);
}
.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(180,180,180,0.04) 0%, transparent 70%);
  top: -200px; right: -200px;
}
.orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(150,150,150,0.03) 0%, transparent 70%);
  bottom: 200px; left: -200px;
}

/* ── Header ── */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 48px;
  height: 72px;
  display: flex; align-items: center;
  border-bottom: 1px solid var(--border);
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.header-inner {
  width: 100%; max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.brand {
  display: flex; align-items: center; gap: 14px;
}
.logo {
  width: 36px; height: 36px; object-fit: contain;
}
.brand-name {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.brand-name.small { font-size: 14px; }
.brand-name .white { color: var(--white); }
.brand-name .grey { color: var(--grey); }

.nav { display: flex; align-items: center; gap: 32px; }
.nav-link {
  font-size: 13px;
  font-weight: 400;
  color: var(--grey-light);
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--white); }

/* ── Buttons ── */
.btn-contact {
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
  background: var(--surface-2);
  border: 1px solid var(--border-light);
  padding: 8px 20px;
  border-radius: 100px;
  letter-spacing: 0.03em;
  transition: all 0.2s;
}
.btn-contact:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.25);
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
  background: var(--white);
  padding: 14px 28px;
  border-radius: 100px;
  letter-spacing: 0.02em;
  transition: all 0.25s;
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--silver);
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(255,255,255,0.12);
}
.btn-primary.large { font-size: 15px; padding: 16px 32px; }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14px;
  font-weight: 400;
  color: var(--grey-light);
  background: transparent;
  border: 1px solid var(--border-light);
  padding: 14px 24px;
  border-radius: 100px;
  letter-spacing: 0.02em;
  transition: all 0.25s;
  white-space: nowrap;
}
.btn-secondary:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.04);
}

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--grey-light);
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 4px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.2s;
}
.btn-outline:hover { color: var(--white); border-color: var(--white); }

/* ── Hero ── */
.hero {
  min-height: 100vh;
  padding: 160px 48px 100px;
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 36px;
}

.headline {
  font-family: var(--font-display);
  font-size: clamp(72px, 9vw, 120px);
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: var(--white);
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
}
.headline .dot { color: var(--grey); }

.subtext {
  font-size: 18px;
  font-weight: 300;
  color: var(--grey-light);
  line-height: 1.65;
  margin-bottom: 48px;
  font-family: var(--font-serif);
  font-size: 22px;
}

.cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── Hero Visual ── */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-display {
  position: relative;
  width: 320px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo {
  width: 200px;
  height: 200px;
  object-fit: contain;
  position: relative;
  z-index: 2;
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 20px 60px rgba(200,200,200,0.08));
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-14px); }
}

.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.06);
  animation: pulse 4s ease-in-out infinite;
}
.ring-1 { width: 260px; height: 260px; animation-delay: 0s; }
.ring-2 { width: 300px; height: 300px; animation-delay: 0.6s; border-color: rgba(255,255,255,0.035); }
.ring-3 { width: 340px; height: 340px; animation-delay: 1.2s; border-color: rgba(255,255,255,0.02); }

@keyframes pulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.02); }
}

/* ── Services ── */
.services {
  position: relative; z-index: 1;
  padding: 80px 48px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.services-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}
.service-item {
  background: var(--bg);
  padding: 48px 40px;
  transition: background 0.3s;
}
.service-item:hover {
  background: var(--surface);
}
.service-num {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--grey);
  display: block;
  margin-bottom: 20px;
}
.service-item h3 {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.service-item p {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.7;
  font-weight: 300;
}

/* ── Showcase ── */
.showcase {
  position: relative; z-index: 1;
  padding: 100px 48px;
}
.showcase-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: center;
}
.showcase-text .tag { margin-bottom: 24px; }
.showcase-text h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}
.showcase-text p {
  font-size: 15px;
  color: var(--grey);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 36px;
  font-weight: 300;
}

.showcase-badge {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 40px;
  min-width: 220px;
  text-align: center;
}
.badge-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.badge-label {
  font-size: 10px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--grey);
}
.badge-value {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.03em;
  color: var(--white);
  line-height: 1.2;
}
.badge-divider {
  width: 1px;
  height: 28px;
  background: var(--border);
  margin: 8px auto;
}

/* ── Contact Banner ── */
.contact-banner {
  position: relative; z-index: 1;
  padding: 60px 48px 80px;
  border-top: 1px solid var(--border);
}
.contact-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.contact-inner h2 {
  font-family: var(--font-display);
  font-size: 56px;
  letter-spacing: 0.02em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.contact-inner p {
  font-size: 15px;
  color: var(--grey);
  font-weight: 300;
}

/* ── Footer ── */
.footer {
  position: relative; z-index: 1;
  padding: 28px 48px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copy {
  font-size: 12px;
  color: var(--grey);
  letter-spacing: 0.02em;
}

/* ── Reveal animations ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.hero-content .reveal:nth-child(1) { transition-delay: 0.1s; }
.hero-content .reveal:nth-child(2) { transition-delay: 0.2s; }
.hero-content .reveal:nth-child(3) { transition-delay: 0.35s; }
.hero-content .reveal:nth-child(4) { transition-delay: 0.5s; }
.hero-visual.reveal { transition-delay: 0.4s; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .header { padding: 0 24px; }

  .hero {
    grid-template-columns: 1fr;
    padding: 120px 24px 80px;
    text-align: center;
    gap: 60px;
  }
  .hero-visual { order: -1; }
  .logo-display { width: 240px; height: 240px; }
  .hero-logo { width: 150px; height: 150px; }
  .ring-1 { width: 200px; height: 200px; }
  .ring-2 { width: 230px; height: 230px; }
  .ring-3 { width: 260px; height: 260px; }
  .cta-group { justify-content: center; }

  .services { padding: 60px 24px; }
  .services-inner { grid-template-columns: 1fr; }
  .service-item { padding: 36px 28px; }

  .showcase { padding: 60px 24px; }
  .showcase-inner { grid-template-columns: 1fr; gap: 40px; }
  .showcase-badge { align-self: flex-start; }

  .contact-banner { padding: 60px 24px; }
  .contact-inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer { padding: 24px; }
  .footer-inner { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .nav .nav-link { display: none; }
  .headline { font-size: 64px; }
  .subtext { font-size: 18px; }
  .cta-group { flex-direction: column; align-items: center; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
}

/* Fallback: show content even if JS fails */
@keyframes forceReveal {
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  animation: forceReveal 0s 1.5s forwards;
}
.reveal.visible {
  animation: none;
}
