/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #09090b;
  --surface: #111113;
  --surface-2: #1a1a1d;
  --fg: #fafafa;
  --fg-muted: #71717a;
  --fg-dim: #52525b;
  --accent: #f59e0b;
  --accent-dim: #78350f;
  --accent-text: #fcd34d;
  --border: #27272a;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === TYPOGRAPHY === */
h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.1; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }

.section-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.15;
  margin-bottom: 2rem;
}

.body-text {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.body-text em { color: var(--fg); font-style: italic; }

/* === NAV === */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.75rem 5%;
  border-bottom: 1px solid var(--border);
}

.nav-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.03em;
}

.nav-tagline {
  font-size: 0.875rem;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* === HERO === */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 0 5%;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(245,158,11,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  padding: 5rem 0;
}

.hero-label {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero-accent { color: var(--accent); }

.hero-sub {
  font-size: 1.15rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 520px;
}

/* === HERO VISUAL === */
.hero-right { position: relative; }

.hero-visual {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--surface);
  aspect-ratio: 4/3;
}

.visual-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  z-index: 1;
  pointer-events: none;
}

.visual-blocks {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 2px;
  z-index: 2;
}

.block {
  background: var(--surface-2);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.block-1 { background: var(--accent-dim); }
.block-2 { background: #18181b; }
.block-3 { background: #0f0f12; }
.block-4 { background: #1c1c1f; }
.block-5 { background: #141417; }

.block::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 30px;
  border: 2px solid rgba(245,158,11,0.3);
  border-radius: 50%;
}

.visual-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(9,9,11,0.95) 0%, transparent 100%);
  padding: 1.5rem 1.5rem 1rem;
  font-size: 0.75rem;
  color: var(--fg-dim);
  letter-spacing: 0.04em;
  z-index: 3;
}

/* === PHILOSOPHY === */
.philosophy {
  padding: 7rem 5%;
  border-top: 1px solid var(--border);
}

.philosophy-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 5rem;
  align-items: start;
}

.stat-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(4rem, 8vw, 7rem);
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.05em;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--fg-muted);
  margin-top: 0.75rem;
  max-width: 200px;
  line-height: 1.5;
}

/* === SERVICES === */
.services {
  padding: 7rem 5%;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.services-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg);
  transition: border-color 0.2s;
}

.service-card:hover { border-color: rgba(245,158,11,0.3); }

.service-icon {
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.service-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.service-desc {
  color: var(--fg-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* === TASTE === */
.taste {
  padding: 7rem 5%;
  border-bottom: 1px solid var(--border);
}

.taste-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.taste-sub {
  font-size: 1.15rem;
  color: var(--fg-muted);
  margin-bottom: 2.5rem;
  margin-top: -1rem;
}

.taste-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.tag {
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.85rem;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
}

.taste-manifesto {
  max-width: 720px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--fg-muted);
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

.taste-manifesto em { color: var(--fg); font-style: italic; }

/* === CLOSING === */
.closing {
  padding: 7rem 5%;
}

.closing-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 5rem;
  align-items: center;
}

.closing-box {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 3rem 3.5rem;
  text-align: center;
  background: var(--surface);
}

.closing-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.5rem, 6vw, 5rem);
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.04em;
}

.closing-period {
  font-size: 0.9rem;
  color: var(--fg-muted);
  margin-top: 0.5rem;
}

.closing-desc {
  color: var(--fg-muted);
  font-size: 0.95rem;
  margin-top: 1.25rem;
  line-height: 1.65;
}

.closing-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.closing-sub {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 580px;
}

/* === FOOTER === */
.footer {
  padding: 4rem 5%;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.footer-desc {
  color: var(--fg-muted);
  font-size: 0.95rem;
}

.footer-note {
  color: var(--fg-dim);
  font-size: 0.8rem;
  margin-top: 1.5rem;
  letter-spacing: 0.04em;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .philosophy-inner { grid-template-columns: 1fr; gap: 3rem; }
  .closing-inner { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 3rem 0;
  }
  .hero-right { order: -1; }
  .hero-visual { aspect-ratio: 16/9; }
  .services-grid { grid-template-columns: 1fr; }
  .taste-tags { gap: 0.5rem; }
  .tag { font-size: 0.8rem; padding: 0.4rem 1rem; }
  .closing-box { padding: 2rem; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2.5rem; }
  .section-headline { font-size: 1.8rem; }
  .nav-tagline { display: none; }
}