:root {
  --bg: #0f1115;
  --bg-alt: #161922;
  --text: #f2f1ec;
  --text-dim: #a7a9b4;
  --accent: #e8b64c;
  --accent-dim: #c99a3a;
  --border: rgba(242,241,236,0.1);
  --radius: 10px;
  --max-w: 1100px;
  --font-head: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

html { scroll-behavior: smooth; }

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

img { max-width: 100%; display: block; }

.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.2; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 12px;
}
.eyebrow.center { text-align: center; }

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

/* Header */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(15,17,21,0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 20px;
}
.logo .dot { color: var(--accent); }

.nav {
  display: flex;
  gap: 32px;
}
.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dim);
  transition: color .2s;
}
.nav a:hover { color: var(--text); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
  display: block;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 68px;
  background:
    radial-gradient(ellipse at top right, rgba(232,182,76,0.08), transparent 60%),
    var(--bg);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(44px, 7vw, 72px);
  font-weight: 800;
  margin-bottom: 18px;
}
.tagline-pill {
  display: inline-block;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 999px;
  margin-bottom: 24px;
}
.hero-copy {
  font-size: 17px;
  color: var(--text-dim);
  max-width: 480px;
  margin: 0 0 36px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.hero-media {
  aspect-ratio: 4 / 5;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-alt);
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  transition: all .2s;
}
.btn-primary {
  background: var(--accent);
  color: #16130a;
}
.btn-primary:hover { background: var(--accent-dim); }
.btn-ghost {
  border: 1px solid var(--border);
  color: var(--text);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

.social-row {
  display: flex;
  gap: 20px;
  justify-content: center;
}
.social-row a {
  color: var(--text-dim);
  transition: color .2s;
}
.social-row a:hover { color: var(--accent); }

/* About */
.about { padding: 120px 0; background: var(--bg-alt); text-align: center; }
.about .wrap { max-width: 680px; }
.about h2 {
  font-size: clamp(26px, 4vw, 34px);
  margin-bottom: 18px;
}
.about p { color: var(--text-dim); margin-bottom: 14px; }
.pull-quote {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 20px;
  color: var(--accent) !important;
}

/* Services */
.services { padding: 120px 0; }
.services h2 {
  text-align: center;
  font-size: clamp(28px, 4vw, 38px);
  margin-bottom: 56px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color .2s, transform .2s;
}
.service-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.service-num {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--accent);
  font-size: 14px;
}
.service-card h3 {
  font-size: 19px;
  margin: 10px 0 12px;
}
.service-card p { color: var(--text-dim); font-size: 15px; }

/* Approach */
.approach { padding: 120px 0; background: var(--bg-alt); }
.approach-inner { max-width: 900px; }
.approach h2 {
  font-size: clamp(26px, 4vw, 36px);
  margin-bottom: 16px;
}
.approach-lead {
  color: var(--text-dim);
  margin-bottom: 48px;
  max-width: 560px;
}
.approach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.approach-step {
  color: var(--accent);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
}
.approach-item h4 { margin: 10px 0 8px; font-size: 17px; }
.approach-item p { color: var(--text-dim); font-size: 14px; }

/* Contact */
.contact { padding: 120px 0; text-align: center; }
.contact h2 {
  font-size: clamp(26px, 4vw, 38px);
  max-width: 640px;
  margin: 0 auto 56px;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.contact-item {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color .2s;
}
a.contact-item:hover { border-color: var(--accent); }
.contact-label {
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--text-dim);
}
.contact-value { font-weight: 600; font-size: 15px; word-break: break-word; }

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 28px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--text-dim);
}
.footer-social { display: flex; gap: 20px; }
.footer-social a:hover { color: var(--accent); }

/* Responsive */
@media (max-width: 800px) {
  .nav {
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 16px 24px;
    display: none;
  }
  .nav.open { display: flex; }
  .nav-toggle { display: flex; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-media { max-width: 320px; margin: 0 auto; order: -1; }
  .service-grid { grid-template-columns: 1fr; }
  .approach-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}
