:root {
  --bg: #050505;
  --bg-alt: #111111;
  --card: #141414;
  --accent: #d4af37; /* gold tone */
  --text: #f7f7f7;
  --muted: #b3b3b3;
  --border-subtle: #2a2a2a;
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

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

.container {
  width: min(1100px, 100% - 2rem);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(5, 5, 5, 0.96);
  border-bottom: 1px solid var(--border-subtle);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid var(--border-subtle);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.brand-tagline {
  font-size: 0.78rem;
  color: var(--muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
}

.nav a {
  padding: 0.3rem 0.25rem;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

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

.btn {
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.55rem 1.1rem;
  font-size: 0.9rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #111;
  font-weight: 600;
}

.btn-outline {
  border-color: var(--border-subtle);
  background: transparent;
}

.btn-ghost {
  border-color: transparent;
  background: rgba(255, 255, 255, 0.02);
}

.btn:hover {
  filter: brightness(1.05);
}

.btn.full-width {
  width: 100%;
}

.hero {
  padding: 4.5rem 0 3.5rem;
  background: radial-gradient(circle at top left, rgba(212, 175, 55, 0.14), transparent 45%),
              radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.06), transparent 55%);
}

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

.hero-text {
  max-width: 620px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 2.8rem);
  line-height: 1.1;
  margin: 0 0 1rem;
}

.hero-copy {
  font-size: 0.98rem;
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.section {
  padding: 3.5rem 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section h2 {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.about-highlights {
  display: grid;
  gap: 1rem;
}

.highlight-card {
  border-radius: 1rem;
  background: var(--card);
  border: 1px solid var(--border-subtle);
  padding: 1rem 1.1rem;
}

.highlight-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
}

.highlight-card p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  border-radius: 1.1rem;
  background: var(--card);
  border: 1px solid var(--border-subtle);
  padding: 1.2rem 1.3rem;
}

.card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.05rem;
}

.card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.testimonial p {
  font-style: italic;
}

.testimonial-name {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--accent);
}

.section-connect {
  background: linear-gradient(135deg, #050505, #0d0d0d);
}

.connect-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: flex-start;
}

.connect-text p {
  color: var(--muted);
  max-width: 420px;
}

.contact-details {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  font-size: 0.9rem;
}

.contact-details li + li {
  margin-top: 0.3rem;
}

.connect-form-card {
  border-radius: 1.3rem;
  background: var(--card);
  border: 1px solid var(--border-subtle);
  padding: 1.5rem 1.6rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 0.9rem;
}

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

input,
select,
textarea {
  border-radius: 0.7rem;
  border: 1px solid var(--border-subtle);
  background: #050505;
  color: var(--text);
  padding: 0.55rem 0.7rem;
  font-size: 0.9rem;
  font-family: inherit;
}

input:focus,
select:focus,
textarea:focus {
  outline: 1px solid var(--accent);
  outline-offset: 1px;
  border-color: var(--accent);
}

textarea {
  resize: vertical;
}

.form-note {
  margin-top: 0.6rem;
  font-size: 0.75rem;
  color: var(--muted);
}

.hidden {
  display: none;
}

.site-footer {
  border-top: 1px solid var(--border-subtle);
  padding: 1.5rem 0 2rem;
  background: #050505;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-size: 0.8rem;
  color: var(--muted);
}

/* Responsive */
@media (max-width: 800px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .hero {
    padding-top: 3.5rem;
  }

  .two-column,
  .connect-inner {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 600px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .logo {
    width: 48px;
    height: 48px;
  }
}

header {
    position: relative;
    width: 100%;
    padding: 20px;
}
.main-logo {
    height: 80px;
    width: auto;
}
