/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #0d0d0d;
  --bg-card:   #141414;
  --fg:        #f0ede6;
  --fg-muted:  #7a7770;
  --accent:    #e8a430;
  --accent-dim:#a06810;
  --border:    #222222;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── Typography ─── */
.display { font-family: 'Bebas Neue', cursive; font-weight: 400; letter-spacing: 0.02em; }

h1, h2, h3 { line-height: 1.05; }

.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

/* ─── Nav ─── */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 60px;
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: 'Bebas Neue', cursive;
  font-size: 26px;
  letter-spacing: 0.04em;
  color: var(--fg);
}

.nav-tagline {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

/* ─── Hero ─── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 81px);
  border-bottom: 1px solid var(--border);
}

.hero-inner {
  padding: 80px 60px 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}

.hero-headline {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(72px, 8vw, 110px);
  line-height: 0.95;
  color: var(--fg);
  margin-bottom: 32px;
  letter-spacing: 0.01em;
}

.hero-sub {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 400px;
  line-height: 1.65;
  margin-bottom: 48px;
  font-weight: 300;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  text-transform: uppercase;
}

.hero-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.hero-visual {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #111 0%, #0a0a0a 60%, #1a1200 100%);
}

.hero-image-frame {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 60% 50%, rgba(232,164,48,0.08) 0%, transparent 70%),
    linear-gradient(180deg, rgba(232,164,48,0.04) 0%, transparent 40%);
}

.hero-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--bg) 0%, transparent 40%);
}

.hero-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232,164,48,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,164,48,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* ─── Services ─── */
.services {
  padding: 120px 60px;
  border-bottom: 1px solid var(--border);
}

.services-header {
  margin-bottom: 80px;
}

.services-header h2 {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(52px, 5vw, 72px);
  letter-spacing: 0.01em;
  color: var(--fg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.service-card {
  background: var(--bg);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-number {
  font-family: 'Bebas Neue', cursive;
  font-size: 40px;
  color: var(--accent);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 8px;
}

.service-card h3 {
  font-size: 18px;
  font-weight: 500;
  color: var(--fg);
  letter-spacing: 0.01em;
}

.service-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.7;
  font-weight: 300;
}

/* ─── Portfolio ─── */
.portfolio {
  padding: 120px 60px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-card);
}

.portfolio-header {
  max-width: 640px;
  margin-bottom: 80px;
}

.portfolio-header h2 {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(52px, 5vw, 72px);
  color: var(--fg);
  margin-bottom: 24px;
}

.portfolio-desc {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
  font-weight: 300;
}

.portfolio-categories {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.portfolio-cat {
  background: var(--bg);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-left: 3px solid transparent;
  transition: border-color 0.3s ease;
}

.portfolio-cat:hover {
  border-left-color: var(--accent);
}

.cat-name {
  font-size: 20px;
  font-weight: 500;
  color: var(--fg);
}

.cat-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ─── Philosophy ─── */
.philosophy {
  padding: 120px 60px;
  border-bottom: 1px solid var(--border);
}

.philosophy-inner {
  max-width: 760px;
}

blockquote {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.15;
  color: var(--fg);
  letter-spacing: 0.01em;
  margin-bottom: 40px;
}

.philosophy-body {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.8;
  max-width: 560px;
  font-weight: 300;
}

/* ─── Closing ─── */
.closing {
  padding: 140px 60px;
  background: linear-gradient(180deg, var(--bg) 0%, #0f0e00 100%);
}

.closing-inner {
  max-width: 700px;
}

.closing h2 {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(52px, 6vw, 88px);
  line-height: 0.97;
  color: var(--fg);
  margin-bottom: 56px;
  letter-spacing: 0.01em;
}

.closing-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.closing-tags span {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  padding: 8px 16px;
  border: 1px solid #2a2a2a;
  border-radius: 2px;
}

/* ─── Footer ─── */
footer {
  padding: 60px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-brand {
  font-family: 'Bebas Neue', cursive;
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--fg);
}

.footer-sub {
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 4px;
}

.footer-note {
  font-size: 11px;
  color: #3a3a3a;
  margin-top: 4px;
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
  nav, .hero-inner, .services, .portfolio, .philosophy, .closing, footer {
    padding-left: 28px;
    padding-right: 28px;
  }

  nav { padding-top: 20px; padding-bottom: 20px; }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-visual { display: none; }

  .hero-inner { padding: 60px 28px 48px; justify-content: flex-start; }

  .services-grid { grid-template-columns: 1fr; }

  .portfolio-categories { grid-template-columns: 1fr; }

  .closing { padding: 80px 28px; }
}

@media (max-width: 480px) {
  nav { padding: 16px 20px; }
  .hero-inner, .services, .portfolio, .philosophy, .closing, footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .services { padding-top: 80px; padding-bottom: 80px; }
  .portfolio { padding-top: 80px; padding-bottom: 80px; }
  .philosophy { padding-top: 80px; padding-bottom: 80px; }
  .closing { padding-top: 80px; padding-bottom: 80px; }

  .services-grid { gap: 0; }
}
