@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');

:root {
  --bg: #ffffff;
  --surface: #f7f7f7;
  --border: #e5e5e5;
  --text: #111111;
  --text-muted: #888888;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 3rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: -0.01em;
  color: var(--text);
  text-decoration: none;
}

.nav-logo span { color: var(--text-muted); }

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: color 0.15s;
}

.nav-links a:hover { color: var(--text); }

/* ─── HERO ─── */
.hero {
  display: flex;
  flex-direction: column;
  padding: 7rem 3rem 5rem;
  border-bottom: 1px solid var(--border);
}

.hero-badge {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 800px;
}

.hero h1 em {
  font-style: normal;
  font-weight: 600;
}

.hero-sub {
  margin-top: 2rem;
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 440px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  padding: 0.7rem 1.6rem;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.15s;
}

.btn-primary {
  background: var(--text);
  color: #fff;
}

.btn-primary:hover { background: #333; }

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-outline:hover { border-color: #aaa; }

/* ─── STATS BAR ─── */
.stats-bar {
  display: flex;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.stat {
  flex: 1;
  padding: 1.8rem 2.5rem;
  border-right: 1px solid var(--border);
}

.stat:last-child { border-right: none; }

.stat-number {
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
  font-weight: 500;
}

/* ─── SECTIONS ─── */
section { padding: 6rem 3rem; }

.section-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--text-muted);
  max-width: 480px;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ─── SERVICES ─── */
#services { border-bottom: 1px solid var(--border); }

.services-header { margin-bottom: 3rem; }

.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: 2rem;
  transition: background 0.15s;
}

.service-card:hover { background: var(--surface); }

.service-icon {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  display: block;
  filter: grayscale(1);
}

.service-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

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

/* ─── CONTACT ─── */
#contact { background: var(--surface); }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
  margin-top: 2rem;
  background: var(--border);
  border: 1px solid var(--border);
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1.25rem 1.5rem;
  background: var(--bg);
}

.contact-item-label {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}

.contact-item-value {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
}

.contact-item-value:hover { color: #555; }

.contact-hours-note {
  margin-top: 0.2rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.contact-side { padding-top: 0.5rem; }

.contact-tagline {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}

.cred-list {
  list-style: none;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border);
}

.cred-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.9rem 1.25rem;
  border-bottom: 1px solid var(--border);
}

.cred-item:last-child { border-bottom: none; }

.cred-name {
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
}

.cred-detail {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: right;
}

/* ─── FOOTER ─── */
footer {
  border-top: 1px solid var(--border);
  padding: 1.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-logo {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text);
}

.footer-logo span { color: var(--text-muted); }

.footer-copy {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .hero { padding: 5rem 1.5rem 3rem; }
  section { padding: 4rem 1.5rem; }
  .stats-bar { flex-wrap: wrap; }
  .stat { min-width: 50%; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
.contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  footer { flex-direction: column; text-align: center; padding: 1.5rem; }
}
