:root {
  --bg: #08111d;
  --card: rgba(11, 23, 38, 0.88);
  --border: rgba(255,255,255,0.08);
  --text: #f8fafc;
  --muted: #9fb3c8;
  --gold: #d4a94d;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, Arial, sans-serif;
  background:
    radial-gradient(circle at top, rgba(201, 178, 127, 0.18), transparent 28%),
    linear-gradient(180deg, #d8cbb8 0%, #c9b8a0 45%, #b9a58d 100%);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
  overflow-y: auto;
}

.background-grid {
  position: fixed;
  inset: 0;

  background-image:
    linear-gradient(rgba(92, 74, 52, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(92, 74, 52, 0.08) 1px, transparent 1px);

  background-size: 56px 56px;

  mask-image:
    radial-gradient(circle at center, black 55%, transparent 95%);
}

.hero {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  padding: 24px 24px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content-card {
  background: var(--card);
  border: 1px solid var(--border);
  backdrop-filter: blur(14px);
  border-radius: 28px;
  padding: 56px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.45);
  text-align: center;
}

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  margin-bottom: 18px;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 1.05;
  margin: 0 0 24px;
}

.lead {
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.8;
  max-width: 680px;
  margin: 0 auto 36px;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
}

.service-list span {
  border: 1px solid rgba(212,169,77,0.35);
  background: rgba(212,169,77,0.08);
  color: #f5d897;
  padding: 12px 16px;
  border-radius: 999px;
  font-size: 0.92rem;
}

.divider {
  width: 90px;
  height: 1px;
  background: rgba(255,255,255,0.12);
  margin: 0 auto 32px;
}

.footer-copy {
  color: var(--muted);
  line-height: 1.8;
}

.footer-copy a {
  color: var(--gold);
  text-decoration: none;
}

.footer-copy a:hover {
  text-decoration: underline;
}

@media (max-width: 640px) {
  .content-card {
    padding: 38px 24px;
  }

  h1 {
    font-size: 2.4rem;
  }

  .lead {
    font-size: 1rem;
  }
}

.logo-image {
  width: 720px;
  max-width: 100%;
  height: auto;

  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 18px;

  object-fit: contain;

  filter:
    drop-shadow(0 12px 28px rgba(0,0,0,0.18));
}

.logo-tagline {
  margin: -10px 0 34px;
  color: var(--gold);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}