* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.65;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; color: inherit; }

.container { width: min(1100px, calc(100% - 40px)); margin: 0 auto; }
.eyebrow {
  margin: 0 0 10px;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
h1, h2, h3 { font-family: var(--display); letter-spacing: -0.03em; line-height: 1.05; }
h1 { font-size: clamp(2.6rem, 7vw, 5.2rem); margin: 0 0 18px; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); margin: 0 0 14px; }
h3 { font-size: 1.15rem; margin: 0 0 8px; }
p { color: var(--muted); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  border: 0;
  font-weight: 700;
  background: var(--brand);
  color: #fff;
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(244, 243, 248, 0.88);
  backdrop-filter: blur(14px);
}
.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 700;
}
.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--brand);
}
.nav { margin-left: auto; display: flex; gap: 20px; color: var(--muted); }
.menu-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  background: none;
}
.menu-toggle span { display: block; width: 22px; height: 2px; margin: 5px 0; background: var(--text); }

.hero {
  position: relative;
  min-height: min(86vh, 760px);
  display: flex;
  align-items: center;
  padding: 72px 0;
  background: var(--hero-image) center/cover no-repeat;
  color: #fff;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 12, 18, 0.58) 0%, rgba(12, 12, 18, 0.22) 52%, rgba(12, 12, 18, 0.08) 100%),
    linear-gradient(180deg, rgba(12, 12, 18, 0.08) 0%, rgba(12, 12, 18, 0.28) 100%);
}
.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 720px;
}
.hero .eyebrow { color: #d7d2ff; }
.hero h1 {
  color: #fff;
  font-size: clamp(2.2rem, 4.8vw, 4rem);
}
.hero .lead {
  max-width: 38ch;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.86);
}

.services { padding: 72px 0; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.service-card {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
}
.dot {
  width: 10px;
  height: 10px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--brand);
}

.split { padding: 20px 0 72px; }
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}
.split-visual {
  min-height: 420px;
  border-radius: 28px;
  background: var(--about-image) center/cover no-repeat;
}
.check { list-style: none; padding: 0; display: grid; gap: 14px; }
.check li { padding-left: 18px; border-left: 2px solid var(--brand); }

.cta-band {
  padding: 28px 0;
}
.cta-band .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 28px 32px;
  border-radius: 24px;
  background: var(--brand);
  color: #fff;
}
.cta-band p { color: rgba(255,255,255,0.82); margin: 0; }
.cta-band .btn { background: #fff; color: var(--brand); }

.work { padding: 40px 0 72px; }
.work-visual {
  position: relative;
  min-height: 420px;
  border-radius: 28px;
  background: var(--work-image) center/cover no-repeat;
}
.play {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--brand);
  font-size: 1.2rem;
}

.contact { padding: 20px 0 80px; }
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 28px; }
.contact-form {
  display: grid;
  gap: 12px;
  padding: 24px;
  border-radius: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
}
.contact-form label { display: grid; gap: 6px; font-size: 0.92rem; }
.contact-form input,
.contact-form textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--bg);
}

.site-footer {
  padding: 48px 0 24px;
  background: var(--brand-dark);
  color: #fff;
}
.site-footer p, .site-footer a { color: #b7b7c5; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 24px; }
.footer-cta {
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

@media (max-width: 800px) {
  .nav { display: none; position: absolute; inset: 72px 20px auto; padding: 16px; background: #fff; border-radius: 14px; flex-direction: column; }
  .nav.open { display: flex; }
  .menu-toggle { display: block; }
  .service-grid, .split-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .cta-band .container { flex-direction: column; align-items: flex-start; }
  .header-cta { display: none; }
  .hero { min-height: 72vh; padding: 40px 0 48px; }
  .hero-copy { max-width: none; }
  .hero h1 { max-width: 10em; }
  .split-visual, .work-visual { min-height: 260px; }
}
