:root {
  --brand:  #E07B20;
  --bg:     #18181B;
  --fg:     #FAFAFA;
  --muted:  #71717A;
  --border: #27272A;
}

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

html, body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Space Grotesk', sans-serif;
}

/* ── Mobile (default) ── */
.layout {
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
  padding: 2.5rem 1.5rem;
  gap: 2.5rem;
}

.left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.left .top-label,
.left .bottom-label {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}

.logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-wrap img {
  width: 100%;
  max-width: 240px;
  height: auto;
  user-select: none;
}

.right {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* ── Desktop ── */
@media (min-width: 768px) {
  html, body { height: 100%; overflow: hidden; }

  .layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 2.5rem 4rem;
    gap: 4rem;
    min-height: unset;
  }

  .left {
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    gap: 0;
  }

  .logo-wrap { flex: 1; }

  .logo-wrap img { max-width: 520px; }

  .right {
    justify-content: space-between;
    gap: 0;
  }
}

/* Headline */
.headline h1 {
  font-size: clamp(1.75rem, 2.8vw, 2.5rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.headline h1 em {
  font-style: normal;
  color: var(--brand);
}

/* Services */
.services {
  list-style: none;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.services li {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border);
}

.services li:last-child { border-bottom: none; }

.services .num {
  font-size: 0.75rem;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
  padding-top: 0.15em;
}

.services h3 {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.services p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 0.2rem;
  font-weight: 300;
  line-height: 1.5;
}

/* Contact */
.contact .label {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: clamp(0.9rem, 1.4vw, 1.15rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--fg);
  text-decoration: none;
  transition: color 0.15s;
}

.contact a:hover { color: var(--brand); }

.contact .arrow {
  color: var(--brand);
  display: inline-block;
  transition: transform 0.15s;
}

.contact a:hover .arrow { transform: translateX(4px); }
