* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #0b0b0d;
  --panel: #111216;
  --panel-2: #16181d;
  --gold: #c6a66a;
  --gold-2: #e0c38c;
  --text: #f3f0e8;
  --muted: #b5aca0;
  --line: rgba(198, 166, 106, 0.18);
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
}

body {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.7;
  color: var(--text);
  background:
	radial-gradient(circle at top right, rgba(198,166,106,0.08), transparent 30%),
	radial-gradient(circle at bottom left, rgba(198,166,106,0.04), transparent 28%),
	var(--bg);
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 92%;
  max-width: 1160px;
  margin: auto;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(11, 11, 13, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  box-shadow:
	0 8px 24px rgba(198, 166, 106, 0.16),
	0 2px 10px rgba(224, 195, 140, 0.10);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  position: relative;
}

.logo {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--gold-2);
  text-transform: uppercase;
}

.menu {
  display: flex;
  align-items: center;
}

.menu a {
  margin-left: 24px;
  color: var(--muted);
  font-size: 0.95rem;
  letter-spacing: 0.4px;
  transition: 0.25s ease;
}

.menu a:hover {
  color: var(--gold-2);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,0.02);
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  box-shadow: 0 6px 18px rgba(198, 166, 106, 0.08);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--gold-2);
  border-radius: 999px;
  transition: 0.25s ease;
}

.hero {
  padding: 100px 0 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  padding: 7px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--gold-2);
  font-size: 0.82rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  background: rgba(198, 166, 106, 0.05);
}

.hero h1 {
  font-size: 3.3rem;
  line-height: 1.15;
  margin-bottom: 18px;
  font-weight: 700;
  color: var(--text);
  max-width: 700px;
}

.hero p {
  color: var(--muted);
  max-width: 620px;
  margin-bottom: 28px;
  font-size: 1rem;
}

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  transition: 0.25s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #17130c;
  margin-right: 12px;
  box-shadow: 0 12px 28px rgba(198, 166, 106, 0.18);
}

.btn-primary:hover {
  transform: translateY(-1px);
}

.btn-secondary {
  border: 1px solid var(--line);
  color: var(--gold-2);
  background: rgba(255,255,255,0.01);
}

.btn-secondary:hover {
  background: rgba(198, 166, 106, 0.06);
}

.hero-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border: 1px solid var(--line);
  padding: 34px;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.hero-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: var(--gold-2);
  font-weight: 600;
}

.hero-card p {
  color: var(--muted);
  margin-bottom: 16px;
}

.divider {
  height: 1px;
  background: var(--line);
  margin: 16px 0;
}

.section {
  padding: 75px 0;
}

.heading {
  text-align: center;
  margin-bottom: 42px;
}

.heading h2 {
  font-size: 2.2rem;
  margin-bottom: 12px;
  color: var(--text);
  font-weight: 600;
}

.heading p {
  color: var(--muted);
  max-width: 720px;
  margin: auto;
}

.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service {
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  padding: 28px;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: 0.25s ease;
}

.service:hover {
  transform: translateY(-4px);
  border-color: rgba(198, 166, 106, 0.28);
}

.service h3 {
  margin-bottom: 12px;
  color: var(--gold-2);
  font-size: 1.2rem;
  font-weight: 600;
}

.service p {
  color: var(--muted);
  font-size: 0.96rem;
}

.signature-band {
  margin-top: 10px;
  background: linear-gradient(135deg, #121317, #0e0f12);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 46px 36px;
  box-shadow: var(--shadow);
  text-align: center;
}

.signature-band h2 {
  font-size: 2.1rem;
  margin-bottom: 14px;
  color: var(--text);
  font-weight: 600;
}

.signature-band p {
  color: var(--muted);
  max-width: 780px;
  margin: auto;
}

.contact-strip {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.contact-box {
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  padding: 24px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.contact-box h3 {
  margin-bottom: 8px;
  color: var(--gold-2);
  font-size: 1.05rem;
  font-weight: 600;
}

.contact-box p {
  color: var(--muted);
  font-size: 0.94rem;
}

footer {
  border-top: 1px solid var(--line);
  margin-top: 30px;
  padding: 24px 0;
  text-align: center;
  color: #8e877d;
  font-size: 0.9rem;
}

@media (max-width: 950px) {
  .menu {
	display: none;
	position: absolute;
	top: calc(100% + 12px);
	right: 0;
	width: 220px;
	background: linear-gradient(180deg, var(--panel), var(--panel-2));
	border: 1px solid var(--line);
	border-radius: 16px;
	box-shadow: var(--shadow);
	padding: 12px;
	flex-direction: column;
	gap: 6px;
  }

  .menu a {
	display: block;
	margin-left: 0;
	padding: 12px 14px;
	border-radius: 10px;
	color: var(--muted);
  }

  .menu a:hover {
	background: rgba(198, 166, 106, 0.06);
	color: var(--gold-2);
  }

  .menu.show {
	display: flex;
  }

  .menu-toggle {
	display: inline-flex;
  }

  .hero-grid,
  .services,
  .contact-strip {
	grid-template-columns: 1fr;
  }

  .hero h1 {
	font-size: 2.4rem;
  }

  .hero {
	padding-top: 75px;
  }
}

.footer-links-band {
  padding: 26px 0 12px;
}

.footer-links-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  align-items: start;
}

.footer-col {
  padding: 0 24px;
}

.footer-col:not(:last-child) {
  border-right: 1px solid rgba(212, 175, 55, 0.35);
}

.footer-col h3 {
  margin-bottom: 14px;
  color: var(--gold-2);
  font-size: 1.05rem;
  font-weight: 600;
}

.footer-col p,
.footer-col a {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.95rem;
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--gold-2);
}

@media (max-width: 950px) {
  .footer-links-row {
    grid-template-columns: 1fr;
  }

  .footer-col {
    padding: 0 0 22px;
  }

  .footer-col:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid rgba(212, 175, 55, 0.25);
    margin-bottom: 22px;
  }
}