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

:root {
  --bg: #0a0a0a;
  --panel: #111111;
  --panel-2: #171717;
  --text: #f5f5f5;
  --muted: #9b9b9b;
  --line: #252525;
  --accent: #ffffff;
  --max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 80% 10%, rgba(255,255,255,.07), transparent 30%),
    var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a { color: inherit; text-decoration: none; }

.site-header {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: .08em;
}

.brand-mark, .mini-logo {
  display: grid;
  place-items: center;
  border: 1px solid #3a3a3a;
  background: #fff;
  color: #090909;
  font-weight: 800;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav a {
  color: var(--muted);
  font-size: .95rem;
  transition: .2s ease;
}

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

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--text);
  border-radius: 10px;
  width: 42px;
  height: 42px;
  font-size: 1.25rem;
}

main {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.hero {
  min-height: 680px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 80px;
  align-items: center;
}

.hero h1, .page-hero h1 {
  margin: 8px 0 18px;
  font-size: clamp(4rem, 11vw, 9rem);
  line-height: .88;
  letter-spacing: -.065em;
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(3rem, 8vw, 6.5rem);
}

.eyebrow {
  color: #bdbdbd;
  font-size: .75rem;
  letter-spacing: .2em;
  font-weight: 700;
}

.lead {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.7;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 12px;
  font-weight: 700;
  transition: transform .2s ease, opacity .2s ease;
}

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

.button.primary {
  background: #fff;
  color: #090909;
}

.button.secondary {
  border: 1px solid var(--line);
  background: var(--panel);
}

.hero-card {
  min-height: 420px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, #161616, #0e0e0e);
  border-radius: 28px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.hero-card .glow {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255,255,255,.09);
  filter: blur(24px);
}

.mini-logo {
  width: 110px;
  height: 110px;
  border-radius: 28px;
  font-size: 3rem;
  z-index: 1;
}

.hero-card p {
  position: absolute;
  bottom: 24px;
  left: 28px;
  color: var(--muted);
  font-size: .9rem;
}

.section {
  padding: 100px 0;
  border-top: 1px solid var(--line);
}

.section h2 {
  max-width: 800px;
  margin: 10px 0 42px;
  font-size: clamp(2rem, 5vw, 4rem);
  letter-spacing: -.04em;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.card {
  min-height: 230px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel);
}

.card span {
  color: #6f6f6f;
  font-size: .8rem;
}

.card h3 {
  margin: 50px 0 10px;
  font-size: 1.5rem;
}

.card p, .prose p, .muted {
  color: var(--muted);
  line-height: 1.7;
}

.page-hero {
  padding: 130px 0 110px;
}

.split {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 80px;
}

.prose {
  font-size: 1.1rem;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.gallery-item {
  min-height: 280px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  display: flex;
  align-items: flex-end;
  color: rgba(255,255,255,.7);
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,.18), transparent 30%),
    linear-gradient(145deg, #1c1c1c, #101010);
}

.gallery-item:nth-child(odd) { grid-column: span 7; }
.gallery-item:nth-child(even) { grid-column: span 5; }

.g3, .g4 { min-height: 360px; }

.contact-box {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--panel);
  padding: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.contact-box h2 {
  margin: 8px 0;
  font-size: clamp(1.6rem, 4vw, 3rem);
}

footer {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 34px 0 48px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: .85rem;
}

@media (max-width: 800px) {
  .site-header { height: 76px; }
  .menu-toggle { display: block; }
  .nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 20px;
    right: 20px;
    z-index: 10;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: #111;
    border: 1px solid var(--line);
    border-radius: 14px;
  }
  .nav.open { display: flex; }
  .nav a { padding: 14px; }
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 44px;
    padding: 90px 0;
  }
  .hero-card { min-height: 320px; }
  .cards { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 16px; }
  .gallery-item,
  .gallery-item:nth-child(odd),
  .gallery-item:nth-child(even) { grid-column: span 12; }
  .contact-box { align-items: flex-start; flex-direction: column; }
  footer { flex-direction: column; }
}
