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

:root {
  --black: #0a0a0a;
  --panel: #151412;
  --white: #ffffff;
  --gold: #a37933;
  --gold-light: #c9a15c;
  --text-muted: #b7b2a8;
  --border: #2a2722;
  --max-width: 1040px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .site-name {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin: 0;
}

a { color: var(--gold-light); }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}

/* ---------- Header ---------- */

.site-header {
  border-bottom: 1px solid var(--border);
}

.site-header .wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  height: 34px;
  width: auto;
  display: block;
}

.site-name {
  color: var(--white);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}

.site-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  margin-left: 28px;
  transition: color 0.15s ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--gold-light);
}

/* ---------- Hero (landing page) ---------- */

.hero {
  min-height: calc(100vh - 78px - 90px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px;
}

.hero img {
  max-width: 420px;
  width: 100%;
  height: auto;
  animation: fade-in-up 0.7s ease both;
}

.hero .tagline {
  margin-top: 28px;
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 480px;
  animation: fade-in-up 0.7s ease 0.15s both;
}

.hero .rule {
  width: 64px;
  height: 2px;
  background: var(--gold);
  margin: 32px 0 0;
  animation: fade-in-up 0.7s ease 0.05s both;
}

.hero .cta {
  margin-top: 36px;
  animation: fade-in-up 0.7s ease 0.25s both;
}

@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .hero img, .hero .tagline, .hero .rule, .hero .cta {
    animation: none;
  }
}

.btn {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 13px 32px;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  transition: background 0.15s ease;
}

.btn:hover { background: var(--gold-light); }

/* ---------- Contact page ---------- */

.page-header {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 56px 24px 8px;
}

.page-header h1 {
  font-size: 1.9rem;
}

.page-header p {
  color: var(--text-muted);
  margin-top: 10px;
  max-width: 520px;
}

.contact-panel {
  background: var(--panel);
  border: 1px solid var(--border);
  max-width: var(--max-width);
  margin: 32px auto 80px;
  padding: 40px;
  border-radius: 4px;
}

@media (max-width: 600px) {
  .contact-panel { padding: 28px 20px; margin: 24px 16px 60px; }
}

form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 560px) {
  form .row { grid-template-columns: 1fr; }
}

.field {
  margin-bottom: 20px;
}

.field label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  background: #0d0c0b;
  border: 1px solid var(--border);
  color: var(--white);
  padding: 11px 13px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  border-radius: 3px;
}

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

.field input::placeholder,
.field textarea::placeholder {
  color: #6b675f;
}

.form-note {
  font-size: 0.82rem;
  color: #7c7870;
  margin-top: 4px;
}

.form-status {
  margin-bottom: 20px;
  padding: 12px 16px;
  border-radius: 3px;
  font-size: 0.9rem;
}

.form-status.success {
  background: rgba(163, 121, 51, 0.15);
  border: 1px solid var(--gold);
  color: var(--gold-light);
}

.form-status.error {
  background: rgba(200, 60, 60, 0.12);
  border: 1px solid #a34d33;
  color: #e0a58e;
}

/* ---------- Footer ---------- */

.site-footer {
  border-top: 1px solid var(--border);
  padding: 28px 24px;
  text-align: center;
  color: #6b675f;
  font-size: 0.85rem;
}
