@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&display=swap');

:root {
  --gold: #c8a96e;
  --gold-dim: #3a2e1a;
  --bg: #0a0a0a;
  --bg-card: #111;
  --bg-card-2: #161616;
  --border: #1e1e1e;
  --border-2: #2a2a2a;
  --text: #f0ede6;
  --text-dim: #888;
  --text-dimmer: #555;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  line-height: 1.6;
}

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

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-label {
  font-family: 'Syne', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}

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

.nav-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--text);
}

.nav-cta {
  font-size: 12px;
  font-weight: 500;
  color: var(--gold);
  border: 1px solid var(--gold-dim);
  padding: 7px 16px;
  border-radius: 2px;
  transition: background 0.2s, border-color 0.2s;
}

.nav-cta:hover {
  background: var(--gold-dim);
  border-color: var(--gold);
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(200,169,110,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
}

.hero-eyebrow {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 800;
  line-height: 1.0;
  margin-bottom: 24px;
  max-width: 700px;
}

.hero-sub {
  font-size: 17px;
  color: var(--text-dim);
  font-weight: 300;
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: #0a0a0a;
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 2px;
  transition: opacity 0.2s;
}

.btn-primary:hover { opacity: 0.85; }

/* SERVICES */
.services {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.service-card {
  background: var(--bg);
  padding: 40px;
  transition: background 0.2s;
}

.service-card:hover { background: var(--bg-card); }

.service-icon {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.service-name {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-desc {
  font-size: 14px;
  color: var(--text-dim);
  font-weight: 300;
  line-height: 1.7;
}

/* STYLE */
.style-section {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}

.style-intro {
  font-size: 15px;
  color: var(--text-dim);
  font-weight: 300;
  margin-bottom: 40px;
  max-width: 480px;
}

.style-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.style-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 2px solid var(--gold);
  padding: 28px;
  border-radius: 2px;
}

.style-name {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}

.style-desc {
  font-size: 13px;
  color: var(--text-dim);
  font-weight: 300;
  line-height: 1.7;
}

/* PRICING */
.pricing {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 28px;
  border-radius: 2px;
  position: relative;
}

.price-card.featured {
  border-color: var(--gold);
  background: #131109;
}

.price-tag {
  font-family: 'Syne', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.price-name {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dim);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.price-amount {
  font-family: 'Syne', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.price-per {
  font-size: 12px;
  color: var(--text-dimmer);
  font-weight: 300;
  margin-bottom: 16px;
  margin-top: 4px;
}

.price-desc {
  font-size: 13px;
  color: var(--text-dim);
  font-weight: 300;
  line-height: 1.6;
}

/* CTA */
.cta-section {
  padding: 100px 0;
  border-top: 1px solid var(--border);
  text-align: center;
}

.cta-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-sub {
  font-size: 16px;
  color: var(--text-dim);
  font-weight: 300;
  margin-bottom: 36px;
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 28px 0;
}

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

.footer-logo {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 800;
}

.footer-note {
  font-size: 12px;
  color: var(--text-dimmer);
  font-weight: 300;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; }
  .style-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
  .hero-title { font-size: 48px; }
}