/* ─── Interaction Layer — Exclusive ─── */
:root {
  --bg: #08080b;
  --surface: #111116;
  --surface-hover: #18181f;
  --border: #1e1e2a;
  --text: #e4e4e9;
  --text-muted: #88889a;
  --accent: #c4a458;
  --accent-hover: #d4b868;
  --accent-subtle: rgba(196, 164, 88, 0.08);
  --radius: 4px;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
}

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

html {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ─── Typography ─── */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.5rem, 5vw, 4rem); line-height: 1.1; }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 1.5rem; }
h3 { font-size: 1.2rem; color: var(--accent); font-family: var(--font-body); font-weight: 500; text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.75rem; margin-bottom: 0.5rem; }

p { color: var(--text-muted); max-width: 56ch; }
a { color: var(--accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent-hover); }

.accent-dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  margin-right: 0.6rem;
  vertical-align: middle;
}

/* ─── Layout ─── */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 6rem 0;
}

.section-label {
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
}

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

nav .logo { height: 36px; }
nav .logo img { height: 100%; width: auto; }

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

nav .nav-links a {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
nav .nav-links a:hover,
nav .nav-links a.active { color: var(--text); }

/* ─── Hero ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero h1 { margin-bottom: 1.5rem; }
.hero p { font-size: 1.15rem; color: var(--text-muted); margin-bottom: 2.5rem; }

.hero .accent-line {
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 2.5rem;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.25s;
  font-family: var(--font-body);
}

.btn-primary {
  background: var(--accent);
  color: #08080b;
  border: none;
}
.btn-primary:hover { background: var(--accent-hover); color: #08080b; }

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

/* ─── Focus Cards ─── */
.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.focus-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  transition: border-color 0.3s, background 0.3s;
}
.focus-card:hover {
  border-color: var(--accent);
  background: var(--surface-hover);
}

.focus-card .number {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 1rem;
  opacity: 0.7;
}

.focus-card h4 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: var(--text);
}

.focus-card p {
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ─── Credentials Bar ─── */
.credentials {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3rem 0;
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.credentials-item .stat {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--accent);
  line-height: 1.2;
}
.credentials-item .label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.3rem;
}

/* ─── Work Section ─── */
.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.work-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}

.work-card .tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  background: var(--accent-subtle);
  padding: 0.3rem 0.7rem;
  border-radius: 2px;
  margin-bottom: 1rem;
}

.work-card h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.work-card p { font-size: 0.88rem; }

/* ─── Footer ─── */
footer {
  margin-top: auto;
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.8rem;
}

footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ─── Contact Page ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info dt {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 0.3rem;
}
.contact-info dd {
  color: var(--text);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.calendly-placeholder {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 3rem;
  text-align: center;
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .focus-grid, .credentials-grid, .work-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  nav .nav-links { gap: 1.2rem; }
  .hero { min-height: 80vh; }
  .section { padding: 4rem 0; }
}

/* ─── Animations ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate { animation: fadeUp 0.6s ease-out forwards; }
.animate-d1 { animation-delay: 0.1s; opacity: 0; }
.animate-d2 { animation-delay: 0.2s; opacity: 0; }
.animate-d3 { animation-delay: 0.3s; opacity: 0; }
.animate-d4 { animation-delay: 0.4s; opacity: 0; }
