:root {
  --bg-main: #05070a;
  --bg-section: #0b0f14;
  --accent-gold: #bd9b53;
  --text-main: #e6e6e6;
  --text-muted: #9ca3af;
  --border-soft: #1f2933;
  --max-width: 1100px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: radial-gradient(circle at top, #111827 0, #05070a 55%);
  color: var(--text-main);
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Header / Nav */

header {
  border-bottom: 1px solid rgba(255,255,255,0.03);
  backdrop-filter: blur(16px);
  background: linear-gradient(to bottom, rgba(5,7,10,0.9), rgba(5,7,10,0.7));
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.8rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 500;
}

.brand-mark {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.brand span {
  font-family: "Playfair Display", serif;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.9rem;
}

.nav-links a {
  color: var(--text-muted);
  position: relative;
  padding-bottom: 0.2rem;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--accent-gold);
  transition: width 0.25s ease;
}

.nav-links a:hover {
  color: var(--text-main);
}

.nav-links a:hover::after {
  width: 100%;
}

/* Page layout */

main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem 1.25rem 3.5rem;
}

/* Hero (home) */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 2.5rem;
  padding: 3.5rem 1.25rem 3rem;
  border-radius: 1.5rem;
  background: radial-gradient(circle at top left, #111827 0, #05070a 50%);
  border: 1px solid var(--border-soft);
  box-shadow: 0 24px 60px rgba(0,0,0,0.65);
  margin-top: 1.5rem;
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.7rem;
  color: var(--accent-gold);
  margin-bottom: 1rem;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.1rem, 3vw + 1rem, 3.1rem);
  line-height: 1.15;
  margin-bottom: 0.9rem;
}

.hero-tagline {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 1.5rem;
}

.hero-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.8rem;
}

.hero-badge {
  border-radius: 999px;
  border: 1px solid rgba(189,155,83,0.4);
  padding: 0.35rem 0.8rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
}

.btn-primary {
  background: var(--accent-gold);
  color: #05070a;
  border-radius: 999px;
  padding: 0.75rem 1.6rem;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

.btn-primary:hover {
  background: #c8a969;
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border-radius: 999px;
  padding: 0.7rem 1.4rem;
  font-size: 0.85rem;
  border: 1px solid var(--border-soft);
  cursor: pointer;
  transition: border 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.btn-ghost:hover {
  color: var(--text-main);
  border-color: rgba(189,155,83,0.4);
  background: rgba(15,23,42,0.7);
}

.hero-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.hero-meta span {
  color: var(--accent-gold);
}

.hero-right {
  border-radius: 1.1rem;
  border: 1px solid var(--border-soft);
  background: radial-gradient(circle at top, rgba(189,155,83,0.12), transparent 55%), 
              linear-gradient(to bottom right, #05070a, #0b0f14);
  padding: 1.5rem 1.4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.2rem;
}

.pill-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
}

.metric {
  margin-top: 0.6rem;
  font-size: 1.6rem;
  font-family: "Playfair Display", serif;
}

.metric-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.divider-soft {
  height: 1px;
  border: none;
  background: linear-gradient(to right, transparent, var(--border-soft), transparent);
  margin: 0.8rem 0 1rem;
}

.list-soft {
  list-style: none;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.list-soft li {
  margin-bottom: 0.3rem;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.4rem;
}

.chip {
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.5);
  padding: 0.25rem 0.6rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
}

/* Generic sections */

section {
  margin-top: 3.5rem;
}

.section-label {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.7rem;
  color: var(--accent-gold);
  margin-bottom: 0.7rem;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 1.55rem;
  margin-bottom: 0.4rem;
}

.section-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 1.4rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
}

.card {
  background: var(--bg-section);
  border-radius: 1rem;
  border: 1px solid var(--border-soft);
  padding: 1.2rem 1.1rem;
  font-size: 0.9rem;
}

.card-title {
  font-size: 0.98rem;
  margin-bottom: 0.4rem;
}

.card-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.card p {
  color: var(--text-muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

.muted-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.8rem;
}

/* Simple page header */

.page-hero {
  margin-top: 2rem;
  padding: 2.2rem 1.4rem;
  border-radius: 1.4rem;
  background: radial-gradient(circle at top right, #111827 0, #05070a 50%);
  border: 1px solid var(--border-soft);
  box-shadow: 0 18px 50px rgba(0,0,0,0.55);
}

.page-hero small {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.7rem;
  color: var(--accent-gold);
  margin-bottom: 0.8rem;
}

.page-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  margin-bottom: 0.6rem;
}

.page-hero p {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 620px;
}

/* Contact form */

.form-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.2fr);
  gap: 1.6rem;
}

form label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

input, select, textarea {
  width: 100%;
  background: #020308;
  border-radius: 0.6rem;
  border: 1px solid var(--border-soft);
  padding: 0.65rem 0.75rem;
  color: var(--text-main);
  font-size: 0.9rem;
  outline: none;
}

input:focus, select:focus, textarea:focus {
  border-color: rgba(189,155,83,0.6);
}

textarea {
  min-height: 130px;
  resize: vertical;
}

/* Footer */

footer {
  border-top: 1px solid rgba(15,23,42,1);
  padding: 1.6rem 1.25rem 2rem;
  margin-top: 2.5rem;
  background: #05070a;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: space-between;
  align-items: center;
}

.footer-inner span.highlight {
  color: var(--accent-gold);
}

/* Responsive */

@media (max-width: 860px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
    padding: 2.5rem 1.2rem 2.2rem;
  }

  .hero-right {
    order: -1;
  }

  .grid-3, .grid-2, .form-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .nav-links {
    display: none;
  }

  main {
    padding-inline: 1rem;
  }

  footer {
    padding-inline: 1rem;
  }
}
