/* ─── Reset & Base ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #0a0a0a;
  --bg-raised: #111111;
  --border:    #1f1f1f;
  --text:      #f0ece6;
  --muted:     #6b6560;
  --accent:    #c8925a;
  --accent-dim:#7a4f2a;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }

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

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

/* ─── Typography ────────────────────────────────────────────────── */
.display {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.display em {
  font-style: normal;
  color: var(--accent);
}

h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.02em;
}

p { color: var(--muted); line-height: 1.75; }

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

/* ─── Nav ───────────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.4rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}

nav.scrolled {
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(12px);
  border-color: var(--border);
}

.nav-logo {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
}

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

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

.nav-links a {
  font-size: 0.875rem;
  color: var(--muted);
  transition: color 0.2s;
}

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

.nav-cta {
  font-size: 0.875rem !important;
  color: var(--text) !important;
  padding: 0.5rem 1.2rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  transition: border-color 0.2s, background 0.2s !important;
}

.nav-cta:hover {
  border-color: var(--accent) !important;
  background: rgba(200, 146, 90, 0.08) !important;
  color: var(--accent) !important;
}

/* ─── Hero ──────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 2rem 5rem;
}

.hero .container { max-width: 900px; }

.hero-headline { margin-bottom: 1.75rem; }

.hero-sub {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 3rem;
  line-height: 1.8;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ─── Buttons ───────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  font-family: var(--font);
}

.btn-primary {
  background: var(--accent);
  color: #0a0a0a;
}

.btn-primary:hover {
  background: #d9a370;
  transform: translateY(-1px);
}


/* ─── Footer ────────────────────────────────────────────────────── */
footer {
  padding: 3rem 2rem;
  border-top: 1px solid var(--border);
}

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

.footer-logo {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

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

footer p { font-size: 0.8rem; color: var(--muted); }

/* ─── Contact Page ──────────────────────────────────────────────── */
.contact-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 2rem 5rem;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6rem;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
}

.contact-lede {
  font-size: 1rem;
  color: var(--muted);
  margin-top: 1rem;
  line-height: 1.8;
}

.contact-detail {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.detail-item { font-size: 0.875rem; color: var(--muted); }
.detail-item strong { color: var(--text); display: block; margin-bottom: 0.2rem; font-weight: 500; }

/* ─── Form ──────────────────────────────────────────────────────── */
form { display: flex; flex-direction: column; gap: 1.25rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

label {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

input, textarea, select {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: var(--text);
  font-family: var(--font);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

input:focus, textarea:focus, select:focus {
  border-color: var(--accent);
}

textarea { resize: vertical; min-height: 140px; }

.form-note {
  font-size: 0.78rem;
  color: var(--muted);
  opacity: 0.7;
}

.form-success {
  display: none;
  padding: 1.25rem 1.5rem;
  background: rgba(200, 146, 90, 0.1);
  border: 1px solid var(--accent-dim);
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--accent);
}

/* ─── Responsive ────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 1rem; text-align: center; }
  .nav-links li:not(:last-child) { display: none; }
}
