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

/* Prevent browser from auto-styling phone/email/address links */
a[href^="tel"],
a[href^="mailto"] {
  color: inherit;
  text-decoration: none;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}

/* ── Section base ── */
section { padding: 120px 60px; }

.section-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--accent);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.section-tag::before { content: ''; width: 24px; height: 1px; background: var(--accent); }

h2.section-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.5px;
}
h2.section-title em { font-style: italic; color: var(--accent); }

/* ── Shared buttons ── */
.btn-primary {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--black);
  background: var(--accent);
  padding: 16px 36px;
  border: none;
  cursor: none;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}
.btn-primary:hover { background: var(--white); }

.btn-secondary {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 16px 36px;
  cursor: none;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}
.btn-secondary:hover { color: var(--white); border-color: rgba(255,255,255,0.3); }
