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

:root {
  --bg: #0c0c0d;
  --panel: #16161818;
  --panel: rgba(255,255,255,0.035);
  --panel-border: #2c2c2e;
  --text: #f5f5f5;
  --text-muted: #8a8a8a;
  --accent: #ffffff;
  --accent-2: #b0b0b0;
}

body {
  background: 
    radial-gradient(ellipse 120% 80% at 50% -20%, #232326 0%, #0c0c0d 55%),
    linear-gradient(180deg, #0c0c0d 0%, #131315 50%, #0a0a0b 100%);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

.mono { font-family: 'JetBrains Mono', monospace; }

/* ELEGANT BACKGROUND */
.bg-elegant {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

/* brushed metal sheen lines */
.bg-elegant::before {
  content: "";
  position: absolute;
  inset: -20%;
  background: repeating-linear-gradient(
    115deg,
    rgba(255,255,255,0.015) 0px,
    rgba(255,255,255,0.015) 1px,
    transparent 1px,
    transparent 3px
  );
  transform: rotate(0deg);
}

/* soft diagonal sheen highlight */
.bg-elegant::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    125deg,
    transparent 30%,
    rgba(255,255,255,0.04) 48%,
    rgba(255,255,255,0.02) 52%,
    transparent 70%
  );
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  background: radial-gradient(circle, rgba(255,255,255,0.06), transparent 70%);
  animation: drift 34s ease-in-out infinite alternate;
}

.glow-orb.one { width: 560px; height: 560px; top: -120px; left: -120px; }
.glow-orb.two { width: 640px; height: 640px; bottom: -100px; right: -180px; animation-delay: -17s; background: radial-gradient(circle, rgba(255,255,255,0.045), transparent 70%); }

/* vignette to darken edges, like metal under studio light */
.vignette {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 90% 70% at 50% 40%, transparent 40%, rgba(0,0,0,0.55) 100%);
}

@keyframes drift {
  from { transform: translate(0, 0); }
  to { transform: translate(70px, 50px); }
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--panel-border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-family: 'Fraunces', serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-size: 18px;
}

.nav-logo img { width: 28px; height: 28px; }
.nav-logo .dot { color: var(--accent); }

.nav-links { display: flex; gap: 28px; }

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

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

.nav-cta {
  background: var(--accent);
  color: var(--bg);
  padding: 8px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: opacity 0.2s ease;
}

.nav-cta:hover { opacity: 0.85; }

@media (max-width: 720px) {
  .nav-links { display: none; }
}

/* HERO */
.hero {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  padding: 80px 24px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.wordmark {
  font-family: 'Fraunces', serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-size: clamp(48px, 12vw, 72px);
  line-height: 1;
  letter-spacing: -0.02em;
}

.wordmark .dot { color: var(--accent); }

.tagline {
  margin-top: 20px;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.6;
  max-width: 420px;
}

.cursor { color: var(--text); animation: blink 1s step-end infinite; }
@keyframes blink { 50% { opacity: 0; } }

.hero-stats { display: flex; gap: 36px; margin-top: 40px; }
.stat { display: flex; flex-direction: column; align-items: center; }

.stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--accent);
}

.stat-label { font-size: 11px; color: var(--text-muted); margin-top: 2px; }

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-primary {
  background: var(--accent);
  color: var(--bg);
  padding: 13px 24px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: opacity 0.2s ease;
}

.btn-primary:hover { opacity: 0.85; }

.btn-secondary {
  border: 1px solid var(--panel-border);
  color: var(--text);
  padding: 13px 24px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: border-color 0.2s ease;
}

.btn-secondary:hover { border-color: var(--accent); }

/* SECTIONS */
.section { position: relative; z-index: 1; max-width: 960px; margin: 0 auto; padding: 80px 24px; }
.section-head { margin-bottom: 40px; }
.section-head.center { text-align: center; }

.section-tag {
  color: var(--text-muted);
  font-size: 12px;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 12px;
}

.section-head h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(26px, 5vw, 34px);
  font-weight: 600;
}

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.service-card {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 14px;
  padding: 28px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.service-card:hover { border-color: var(--accent); transform: translateY(-2px); }

.service-icon {
  width: 40px;
  height: 40px;
  color: var(--text);
  margin-bottom: 14px;
}

.service-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 16px;
}

.service-list {
  list-style: none;
  text-align: left;
  width: 100%;
  margin-bottom: 12px;
}

.service-list li {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.5;
  padding-left: 18px;
  position: relative;
  margin-bottom: 8px;
}

.service-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--text);
}

.service-note {
  font-size: 12px;
  color: var(--text-muted);
  font-style: italic;
  margin-top: auto;
  padding-top: 8px;
}

/* PORTFOLIO */
.portfolio-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--panel-border);
  border: 1px solid var(--panel-border);
  border-radius: 14px;
  overflow: hidden;
}

.portfolio-item { background: var(--panel); padding: 28px; display: flex; gap: 24px; }
.portfolio-num { color: var(--text-muted); font-size: 14px; flex-shrink: 0; }

.portfolio-content h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.portfolio-content p { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 14px; }
.portfolio-tags { display: flex; gap: 8px; flex-wrap: wrap; }

.portfolio-tags .mono {
  font-size: 11px;
  color: var(--text);
  background: rgba(255,255,255,0.06);
  padding: 3px 8px;
  border-radius: 6px;
}

@media (max-width: 560px) {
  .portfolio-item { flex-direction: column; gap: 10px; }
}

/* ABOUT */
.about-content { display: flex; flex-direction: column; gap: 16px; max-width: 720px; }
.about-content p { font-size: 15px; color: var(--text-muted); line-height: 1.8; }

/* PROCESS */
.process-list { display: flex; flex-direction: column; gap: 0; }

.process-item {
  display: flex;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--panel-border);
  align-items: baseline;
}

.process-item:last-child { border-bottom: none; }
.process-num { color: var(--text-muted); font-size: 14px; width: 24px; flex-shrink: 0; }

.process-item h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.process-item p { font-size: 14px; color: var(--text-muted); }

/* CTA CARDS */
.actions { display: flex; flex-direction: column; gap: 14px; }

.card {
  display: block;
  text-align: left;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 14px;
  padding: 20px 22px;
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.15), 0 8px 24px -8px rgba(0,0,0,0.5);
}

.card-disabled { opacity: 0.45; cursor: not-allowed; }

.card-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }

.tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.05em;
  padding: 3px 8px;
  border-radius: 6px;
}

.tag-live { color: var(--text); background: rgba(255,255,255,0.08); }
.tag-soon { color: var(--text-muted); background: rgba(255,255,255,0.05); }

.card-body h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 4px;
}

.card-body p { font-size: 14px; color: var(--text-muted); line-height: 1.5; }

.card-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--panel-border);
}

.arrow { color: var(--text); transition: transform 0.2s ease; }
.card:hover .arrow { transform: translateX(4px); }

.logo-img {
  width: 72px;
  height: 72px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 20px rgba(255,255,255,0.12));
}

footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px 24px 60px;
  color: var(--text-muted);
  font-size: 12px;
}

.gallery-scroll {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.gallery-scroll::-webkit-scrollbar { height: 6px; }
.gallery-scroll::-webkit-scrollbar-thumb { background: var(--panel-border); border-radius: 3px; }

.gallery-scroll img {
  height: 320px;
  width: auto;
  flex-shrink: 0;
  border-radius: 12px;
  border: 1px solid var(--panel-border);
  scroll-snap-align: start;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.gallery-scroll img:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.gallery-hint {
  margin-top: 12px;
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0,0,0,0.9);
  align-items: center;
  justify-content: center;
  padding: 24px;
  cursor: zoom-out;
}

.lightbox.active { display: flex; }

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.card-icon-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.card-icon {
  width: 22px;
  height: 22px;
  color: var(--text);
  flex-shrink: 0;
}

.card-disabled .card-icon { color: var(--text-muted); }

.cta-closing {
  text-align: center;
  margin-top: 72px;
  padding-top: 56px;
  border-top: 1px solid var(--panel-border);
}

.cta-closing h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(24px, 5vw, 32px);
  font-weight: 600;
  margin-bottom: 24px;
}

@media (max-width: 480px) {
  .gallery-scroll img { height: 260px; }
}

@media (max-width: 480px) {
  .hero { padding: 56px 20px 40px; }
  .section { padding: 56px 20px; }
}

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.active span:nth-child(2) { opacity: 0; }
.nav-burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 65px;
  left: 0;
  right: 0;
  z-index: 9;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--panel-border);
  padding: 8px 24px 24px;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.mobile-menu.active {
  display: flex;
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu a {
  color: var(--text);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid var(--panel-border);
  font-size: 15px;
}

.mobile-menu a:last-child { border-bottom: none; }

.mobile-cta {
  margin-top: 12px;
  background: var(--accent);
  color: var(--bg) !important;
  text-align: center;
  border-radius: 10px;
  padding: 12px !important;
  font-weight: 600;
}

@media (max-width: 720px) {
  .nav-cta { display: none; }
  .nav-burger { display: flex; }
}

/* SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.08s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.24s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.32s; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.4s; }

.reveal-stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}