/* Base */

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

:root {
  --bg: #05060a;
  --bg-elevated: #0b0d14;
  --bg-soft: #10131d;
  --accent: #c9ff7a;
  --accent-soft: rgba(201, 255, 122, 0.18);
  --accent-strong: #e5ffb8;
  --text: #f5f5f7;
  --text-muted: #9a9fb0;
  --border-subtle: rgba(255, 255, 255, 0.06);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --shadow-soft: 0 24px 80px rgba(0, 0, 0, 0.7);
  --shadow-glow: 0 0 80px rgba(201, 255, 122, 0.35);
  --max-width: 1120px;
}

html,
body {
  margin: 0;
  padding: 0;
  background: radial-gradient(circle at top, #151827 0, #05060a 52%, #020308 100%);
  color: var(--text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* Ambient page glow */

.page-glow {
  position: fixed;
  inset: -40%;
  background:
    radial-gradient(circle at 10% 0%, rgba(201, 255, 122, 0.08), transparent 55%),
    radial-gradient(circle at 90% 10%, rgba(122, 196, 255, 0.08), transparent 55%),
    radial-gradient(circle at 50% 100%, rgba(255, 255, 255, 0.04), transparent 60%);
  opacity: 0.9;
  pointer-events: none;
  z-index: -1;
}

/* Layout */

main {
  width: 100%;
}

.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px 20px;
}

.section-header {
  margin-bottom: 32px;
}

.section-header h2 {
  font-size: 32px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 6px 0 0;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(5, 6, 10, 0.96), rgba(5, 6, 10, 0.82), transparent);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}

.logo-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 20%, var(--accent-strong), transparent 55%),
    radial-gradient(circle at 70% 80%, #7ac4ff, transparent 60%);
  box-shadow: var(--shadow-glow);
}

.logo-text span:first-child {
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.logo-sub {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
}

.nav {
  display: flex;
  gap: 18px;
  font-size: 13px;
}

.nav a {
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.2s ease-out;
}

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

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

/* Hero */

.hero {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px 20px 40px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.1;
  margin: 10px 0 16px;
}

.hero-body {
  color: var(--text-muted);
  max-width: 480px;
  font-size: 15px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.14);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.18s ease-out, color 0.18s ease-out, border-color 0.18s ease-out, transform 0.12s ease-out;
}

.button.primary {
  background: linear-gradient(135deg, var(--accent), #7ac4ff);
  color: #05060a;
  border-color: transparent;
  box-shadow: var(--shadow-glow);
}

.button.primary:hover {
  transform: translateY(-1px);
}

.button.ghost {
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
}

.button.ghost:hover {
  background: rgba(255, 255, 255, 0.06);
}

/* Hero visual */

.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-orbit {
  width: 280px;
  height: 280px;
  border-radius: 999px;
  position: relative;
  background: radial-gradient(circle at 30% 20%, rgba(201, 255, 122, 0.4), transparent 60%),
              radial-gradient(circle at 70% 80%, rgba(122, 196, 255, 0.4), transparent 60%);
  box-shadow: var(--shadow-soft), var(--shadow-glow);
  overflow: hidden;
}

.hero-orbit-ring {
  position: absolute;
  inset: 18%;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
}

.hero-orbit-core {
  position: absolute;
  inset: 34%;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #ffffff, transparent 60%);
  opacity: 0.9;
}

.hero-orbit-glow {
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle at 10% 0%, rgba(201, 255, 122, 0.35), transparent 60%),
    radial-gradient(circle at 90% 100%, rgba(122, 196, 255, 0.35), transparent 60%);
  mix-blend-mode: screen;
  opacity: 0.9;
  animation: orbitPulse 8s ease-in-out infinite;
}

.hero-caption {
  margin-top: 16px;
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
}

@keyframes orbitPulse {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.9;
  }
  50% {
    transform: translate3d(0, -6px, 0) scale(1.04);
    opacity: 1;
  }
}

/* Category */

.category {
  border-top: 1px solid var(--border-subtle);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.category-card {
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.04), transparent 60%);
  border-radius: var(--radius-md);
  padding: 20px 18px;
  border: 1px solid var(--border-subtle);
}

.category-card h3 {
  font-size: 16px;
  margin: 0 0 8px;
}

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

/* Objects */

.objects {
  border-top: 1px solid var(--border-subtle);
}

.objects-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.object-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.3fr);
  gap: 28px;
  align-items: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  border-radius: var(--radius-lg);
  padding: 22px;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
}

.object-image-wrap {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.06), transparent 60%);
}

.object-image-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.4s ease-out;
}

.image-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 0%, rgba(201, 255, 122, 0.2), transparent 60%),
              radial-gradient(circle at 80% 100%, rgba(122, 196, 255, 0.2), transparent 60%);
  mix-blend-mode: screen;
  opacity: 0.7;
  pointer-events: none;
}

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

.object-meta h3 {
  margin: 0 0 6px;
  font-size: 20px;
}

.object-tagline {
  margin: 0 0 10px;
  font-size: 14px;
  color: var(--accent-strong);
}

.object-body {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.object-specs {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--border-subtle);
  padding-top: 10px;
  display: grid;
  gap: 4px;
}

.object-specs li {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-muted);
}

.object-specs span:first-child {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
}

/* Light studies */

.light-studies {
  border-top: 1px solid var(--border-subtle);
}

.light-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.light-card {
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.04), transparent 60%);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.light-image-wrap {
  position: relative;
  overflow: hidden;
}

.light-image-wrap img {
  width: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform 0.4s ease-out;
}

.light-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 0%, rgba(201, 255, 122, 0.2), transparent 60%),
    radial-gradient(circle at 90% 100%, rgba(122, 196, 255, 0.2), transparent 60%);
  mix-blend-mode: screen;
  opacity: 0.7;
  pointer-events: none;
}

.light-card:hover img {
  transform: scale(1.06);
}

.light-caption {
  padding: 12px 14px 14px;
  font-size: 13px;
  color: var(--text-muted);
}

/* Studio */

.studio {
  border-top: 1px solid var(--border-subtle);
}

.studio-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.studio-text p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.studio-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.06), transparent 60%);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
}

.studio-image-wrap img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.studio-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(201, 255, 122, 0.2), transparent 60%),
    radial-gradient(circle at 80% 100%, rgba(122, 196, 255, 0.2), transparent 60%);
  mix-blend-mode: screen;
  opacity: 0.7;
}

/* Contact */

.contact {
  border-top: 1px solid var(--border-subtle);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 28px;
}

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

.contact-list {
  margin: 10px 0 0;
  padding-left: 18px;
  font-size: 14px;
  color: var(--text-muted);
}

.contact-panel {
  background: linear-gradient(135deg, rgba(201, 255, 122, 0.08), rgba(122, 196, 255, 0.08));
  border-radius: var(--radius-md);
  padding: 18px 16px;
  border: 1px solid rgba(201, 255, 122, 0.4);
  box-shadow: var(--shadow-glow);
}

.contact-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #1b1f10;
  margin-bottom: 4px;
}

.contact-email {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: #05060a;
  text-decoration: none;
  margin-bottom: 6px;
}

.contact-email:hover {
  text-decoration: underline;
}

.contact-note {
  font-size: 12px;
  color: #1b1f10;
}

/* Footer */

.site-footer {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 24px 20px 40px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-muted);
}

/* Responsive */

@media (max-width: 900px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-visual {
    order: -1;
  }

  .category-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .objects-grid .object-card {
    grid-template-columns: minmax(0, 1fr);
  }

  .light-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .studio-layout,
  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .nav {
    flex-wrap: wrap;
  }
}

@media (max-width: 600px) {
  .section {
    padding: 60px 16px;
  }

  .hero {
    padding: 60px 16px 30px;
  }
}
