@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&display=swap');

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

body {
  font-family: 'DM Sans', sans-serif;
  background: #0a0a0a;
  color: #f0ece4;
  min-height: 100vh;
  padding-bottom: 4rem;
}

body.centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

/* ── Navigation ── */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  border-bottom: 0.5px solid rgba(240,236,228,0.12);
}

a.logo, .logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 4px;
  color: #f0ece4;
  text-decoration: none;
}

.gold { color: #c8a97e; }

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

.nav-links a {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(240,236,228,0.45);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover, .nav-links a.active { color: #f0ece4; }

/* ── Page content ── */
.page-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 2rem 2rem;
}

.hero-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c8a97e;
  margin-bottom: 1rem;
}

.page-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 9vw, 80px);
  line-height: 0.95;
  letter-spacing: 2px;
  color: #f0ece4;
  margin-bottom: 2rem;
}

.page-subtitle {
  font-size: 15px;
  color: rgba(240,236,228,0.45);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 480px;
}

/* ── Card (used on centered pages) ── */
.card {
  background: #141414;
  border: 0.5px solid rgba(240,236,228,0.1);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  max-width: 440px;
  width: 100%;
}

.text-center { text-align: center; }

.icon-wrap {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(200,169,126,0.12);
  border: 0.5px solid rgba(200,169,126,0.3);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
}

.title { font-size: 22px; font-weight: 500; color: #f0ece4; margin-bottom: 0.5rem; }
.subtitle { font-size: 14px; color: rgba(240,236,228,0.45); font-weight: 300; line-height: 1.7; margin-bottom: 2rem; }

/* ── Buttons ── */
.dl-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px;
  border-radius: 6px;
  background: #c8a97e;
  border: none;
  color: #0a0a0a;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s;
  margin-bottom: 1.25rem;
  text-decoration: none;
}

.dl-btn:hover { opacity: 0.88; }

/* ── Links ── */
.text-link { color: #c8a97e; text-decoration: none; }
.text-link:hover { text-decoration: underline; }

.back-link {
  font-size: 13px;
  color: rgba(240,236,228,0.4);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

.back-link:hover { color: #f0ece4; }

/* ── Divider ── */
.divider {
  height: 0.5px;
  background: rgba(240,236,228,0.07);
  margin-bottom: 1.5rem;
}

/* ── About page ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 3rem;
  align-items: start;
}

.about-text p {
  font-size: 15px;
  color: rgba(240,236,228,0.7);
  font-weight: 300;
  line-height: 1.9;
  margin-bottom: 1.25rem;
}

.section-heading {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #c8a97e;
  margin: 2rem 0 0.75rem;
  font-weight: 400;
}

.sidebar-card {
  background: #141414;
  border: 0.5px solid rgba(240,236,228,0.08);
  border-radius: 8px;
  padding: 0.875rem 1rem;
  margin-bottom: 8px;
}

.sidebar-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(240,236,228,0.3);
  margin-bottom: 3px;
}

.sidebar-value {
  font-size: 14px;
  font-weight: 400;
  color: #f0ece4;
}

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

.field-group { display: flex; flex-direction: column; gap: 6px; }

.field-label {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(240,236,228,0.4);
}

.field-input {
  background: #141414;
  border: 0.5px solid rgba(240,236,228,0.15);
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 14px;
  color: #f0ece4;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  transition: border-color 0.2s;
  width: 100%;
}

.field-input:focus {
  outline: none;
  border-color: rgba(200,169,126,0.5);
}

.field-input option { background: #141414; }

textarea.field-input { resize: vertical; min-height: 120px; }

.contact-alt { padding-top: 1.5rem; }

/* ── 404 ── */
.fourofour {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 96px;
  letter-spacing: 4px;
  color: rgba(200,169,126,0.2);
  line-height: 1;
  margin-bottom: 1rem;
}

/* ── Footer ── */
.site-footer {
  border-top: 0.5px solid rgba(240,236,228,0.07);
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 900px;
  margin: 2rem auto 0;
  font-size: 12px;
  color: rgba(240,236,228,0.25);
}

.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { color: rgba(240,236,228,0.25); text-decoration: none; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; transition: color 0.2s; }
.footer-links a:hover { color: rgba(240,236,228,0.6); }

/* ── Responsive ── */
@media (max-width: 640px) {
  nav { flex-direction: column; gap: 1rem; }
  .about-grid { grid-template-columns: 1fr; }
  .site-footer { flex-direction: column; gap: 1rem; text-align: center; }
}

/* ── Logo image in nav ── */
.nav-logo-img {
  width: 220px;
  height: auto;
  display: block;
  object-fit: contain;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
