/* === Reset & Base === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-bg: #0d0d0d;
  --color-surface: #1a1a1a;
  --color-surface-alt: #111111;
  --color-gold: #a4832d;
  --color-gold-light: #c9a84c;
  --color-text: #e0e0e0;
  --color-text-muted: #999999;
  --color-border: #2a2a2a;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Cinzel', serif;
  --max-width: 1100px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--color-gold-light);
  text-decoration: none;
}

a:hover {
  color: #fff;
}

/* === Layout === */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 50px 0;
}

.section-dark {
  background-color: var(--color-surface-alt);
}

/* === Navigation === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: rgba(13, 13, 13, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-gold-light);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
}

.nav-logo:hover {
  color: #fff;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  color: var(--color-text-muted);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--color-gold-light);
}

/* === Hero === */
.hero {
  padding: 180px 0 60px;
  text-align: center;
  background: linear-gradient(180deg, var(--color-surface-alt) 0%, var(--color-bg) 100%);
}

.hero-logo {
  margin: 0 auto 32px;
  opacity: 0.9;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 400;
  color: var(--color-gold);
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--color-text-muted);
  font-weight: 300;
}

/* === Section Elements === */
.section-accent {
  width: 50px;
  height: 3px;
  background-color: var(--color-gold);
  border-radius: 2px;
  margin: 0 auto 32px;
}

.section-text {
  font-size: 17px;
  line-height: 1.8;
  color: var(--color-text);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 16px;
  text-align: center;
}

.section-text strong {
  color: #fff;
}

/* === Services Grid === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.card {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.2s;
  position: relative;
}

.card:hover {
  border-color: var(--color-gold);
}

.card-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  opacity: 0.6;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 50%, rgba(0,0,0,0));
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 50%, rgba(0,0,0,0));
}

.card-body {
  padding: 28px;
}

.card-title {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}

.card-meta {
  font-size: 14px;
  color: var(--color-gold-light);
  margin-bottom: 16px;
  font-weight: 500;
}

.card-body p {
  color: var(--color-text-muted);
  margin-bottom: 12px;
  font-size: 15px;
}

.card-badges {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
}

.card-badges img {
  max-height: 55px;
  max-width: 130px;
  opacity: 0.85;
  filter: brightness(1.2);
}

/* === Pricing === */
.pricing-card {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 48px;
  max-width: 650px;
  margin-top: 40px;
}

.pricing-title {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 28px;
}

.pricing-list {
  list-style: none;
  margin-bottom: 32px;
}

.pricing-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text-muted);
  font-size: 15px;
}

.pricing-list li:last-child {
  border-bottom: none;
}

.pricing-amount {
  text-align: center;
  margin-bottom: 24px;
}

.price {
  display: block;
  font-size: 48px;
  font-weight: 400;
  color: var(--color-gold);
}

.price-note {
  font-size: 14px;
  color: var(--color-text-muted);
}

.pricing-cta {
  text-align: center;
  font-size: 15px;
  color: var(--color-text-muted);
}

/* === Contact === */
.contact-title {
  font-family: var(--font-display);
  font-size: 42px;
  color: var(--color-gold);
  margin-bottom: 16px;
}

/* === Footer === */
.footer {
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid var(--color-border);
}

.footer p {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 4px;
}

/* === Responsive === */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    gap: 20px;
  }

  .nav-links a {
    font-size: 12px;
  }

  .pricing-card {
    padding: 32px 24px;
  }

  .hero {
    padding: 140px 0 60px;
  }
}

@media (max-width: 480px) {
  .nav-links {
    gap: 12px;
  }

  .section {
    padding: 60px 0;
  }

  .card-body {
    padding: 20px;
  }
}
