:root {
  --black: #030303;
  --soft-black: #080808;
  --card-black: #0d0d0d;
  --gold: #d6aa28;
  --gold-light: #f2d36b;
  --gold-bright: #fff1a8;
  --gold-dark: #8f5f08;
  --text-muted: #c9c9c9;
}

body {
  background: var(--black);
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
}

a {
  text-decoration: none;
}

.gold-text {
  background: linear-gradient(135deg, #fff1a8 0%, #d6aa28 28%, #8f5f08 55%, #f4d46a 74%, #b87910 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 24px rgba(214,170,40,.18);
}

.btn-gradient {
  background-image: linear-gradient(to right, var(--bs-btn-bg) 0%, var(--bs-btn-bg-gradient) 100%);
  background-size: 200% auto;
  transition: background-position 0.5s ease-out;
}

.btn-gold {
  background: var(--gold);
  color: #000;
  border: 1px solid var(--gold);
  font-weight: 800;
  border-radius: 16px;
  padding: 14px 24px;
}

.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: #000;
}

.btn-outline-gold {
  color: var(--gold-light);
  border: 1px solid rgba(214,170,40,.55);
  border-radius: 16px;
  padding: 14px 24px;
  font-weight: 800;
  background: transparent;
}

.btn-outline-gold:hover {
  background: rgba(214,170,40,.10);
  color: var(--gold-bright);
  border-color: var(--gold-light);
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(214,170,40,.25);
  background: radial-gradient(circle at top right, rgba(214,170,40,.20), transparent 35%), radial-gradient(circle at left, rgba(214,170,40,.10), transparent 34%), linear-gradient(135deg, #000, #090909 55%, #000);
}

.corner-line-vertical {
  position: absolute;
  left: 32px;
  top: 32px;
  width: 1px;
  height: 290px;
  background: linear-gradient(to bottom, var(--gold-light), var(--gold), transparent);
}

.corner-line-horizontal {
  position: absolute;
  left: 32px;
  top: 32px;
  height: 1px;
  width: 290px;
  background: linear-gradient(to right, var(--gold-light), var(--gold), transparent);
}

.nav-logo-circle, .logo-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(214,170,40,.32);
  background: rgba(0,0,0,.7);
  box-shadow: 0 0 45px rgba(214,170,40,.18);
  border-radius: 999px;
  flex: 0 0 auto;
}

.nav-logo-circle {
  width: 64px;
  height: 64px;
}

.logo-circle {
  width: 96px;
  height: 96px;
  margin: 0 auto;
}

.header-image {
  margin: 0 auto;
}

.h-mark {
  position: relative;
  font-family: Georgia, serif;
  font-weight: 900;
  line-height: 1;
  color: var(--gold);
}

.nav-logo-circle .h-mark {
  font-size: 48px;
}

.logo-circle .h-mark {
  font-size: 72px;
}

.h-mark::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -2px;
  width: 120%;
  height: 8px;
  transform: translateX(-50%) rotate(-7deg);
  border-radius: 999px;
  background: linear-gradient(to right, transparent, var(--gold-light), transparent);
}

.hero-title {
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: .95;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.badge-local {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(214,170,40,.35);
  background: rgba(214,170,40,.10);
  color: var(--gold-light);
  border-radius: 999px;
  padding: 9px 16px;
  font-size: .95rem;
  font-weight: 600;
}

.card-dark {
  background: rgba(8,8,8,.96);
  border: 1px solid rgba(214,170,40,.25);
  border-radius: 28px;
  box-shadow: 0 25px 55px rgba(0,0,0,.55);
}

.contact-box {
  background: #000;
  border: 1px solid rgba(214,170,40,.22);
  border-radius: 24px;
  padding: 24px;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #eee;
  font-size: 1.05rem;
  margin-bottom: 16px;
  word-break: break-word;
}

.contact-row i {
  color: var(--gold);
}

.contact-row:hover {
  color: var(--gold-light);
}

.gold-panel {
  background: radial-gradient(circle at 25% 20%, rgba(255,230,126,.75), transparent 18%), linear-gradient(135deg, #8c5d08, #d6aa28 35%, #f0c65a 50%, #9b6509 78%, #6b4100);
  border-top: 1px solid rgba(240,204,88,.75);
  border-bottom: 1px solid rgba(240,204,88,.75);
  color: #000;
  box-shadow: 0 0 40px rgba(214,170,40,.22);
}

.feature-card, .service-card, .category-card {
  background: var(--card-black);
  border: 1px solid rgba(214,170,40,.15);
  border-radius: 24px;
  height: 100%;
}

.feature-card, .category-card {
  padding: 28px;
}

.feature-icon, .category-icon {
  color: var(--gold);
  font-size: 2.25rem;
}

.muted-copy {
  color: var(--text-muted);
  line-height: 1.75;
}

.services-section {
  background: var(--soft-black);
  border-top: 1px solid rgba(214,170,40,.10);
  border-bottom: 1px solid rgba(214,170,40,.10);
}

.service-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #000;
  border: 1px solid rgba(214,170,40,.16);
  border-radius: 16px;
  padding: 16px;
  color: #e8e8e8;
  height: 100%;
}

.service-pill i {
  color: var(--gold);
}

.quote-section {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(214,170,40,.15);
  background: #000;
}

.quote-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(214,170,40,.18), transparent 42%);
}

.quote-content {
  position: relative;
  z-index: 1;
}

footer {
  background: var(--black);
  border-top: 1px solid rgba(214,170,40,.10);
}

.small-heading {
  color: var(--gold-light);
  font-size: .85rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-weight: 800;
}

@media (max-width: 767px) {
  img.header-image {
    display: block;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .corner-line-vertical, .corner-line-horizontal {
    display: none;
  }
}

@media (max-width: 767px) {
  .nav-logo-circle {
    width: 52px;
    height: 52px;
  }
}

@media (max-width: 767px) {
  .nav-logo-circle .h-mark {
    font-size: 40px;
  }
}

@media (max-width: 767px) {
  .hero {
    text-align: left;
  }
}

