:root {
  --bg: #0f0f0f;
  --bg-alt: #1a1a1a;
  --fg: #f0ece4;
  --fg-muted: #a09a8e;
  --accent: #e8a838;
  --accent-dim: #c4872a;
  --surface: #1e1d1b;
  --border: #2e2c28;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
}

/* ---------- HERO ---------- */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* Extra top padding to clear fixed nav */
  padding: 140px 7vw 60px;
  position: relative;
  background:
    radial-gradient(ellipse 60% 50% at 80% 30%, rgba(232,168,56,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(196,135,42,0.05) 0%, transparent 60%),
    var(--bg);
}

.hero-badge {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  max-width: 700px;
}

.hero h1 .accent {
  color: var(--accent);
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 520px;
  margin-bottom: 56px;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--fg);
}

.stat-label {
  display: block;
  font-size: 0.82rem;
  color: var(--fg-muted);
  margin-top: 2px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ---------- SERVICES ---------- */
.services {
  padding: 100px 7vw;
  background: var(--bg-alt);
}

.section-label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 48px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 28px;
  transition: border-color 0.25s;
}

.service-card:hover {
  border-color: var(--accent-dim);
}

.service-icon {
  font-size: 1.4rem;
  color: var(--accent);
  margin-bottom: 18px;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.92rem;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 18px;
}

.service-price {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent);
}

/* ---------- WHY ---------- */
.why {
  padding: 100px 7vw;
  background: var(--bg);
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.why-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.why-text p {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

.why-points {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.why-point {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.point-num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 3px;
}

.why-point h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.why-point p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ---------- PRICING ---------- */
.pricing {
  padding: 100px 7vw;
  background: var(--bg-alt);
}

.pricing h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 48px;
  max-width: 560px;
  line-height: 1.2;
}

.pricing-table {
  max-width: 640px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.price-service {
  font-size: 1rem;
  color: var(--fg);
}

.price-range {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent);
}

.pricing-note {
  margin-top: 28px;
  font-size: 0.9rem;
  color: var(--fg-muted);
}

/* ---------- CLOSING ---------- */
.closing {
  padding: 120px 7vw;
  text-align: center;
  background: 
    radial-gradient(ellipse 50% 40% at 50% 60%, rgba(232,168,56,0.06) 0%, transparent 70%),
    var(--bg);
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.closing p {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---------- FOOTER ---------- */
.footer {
  padding: 48px 7vw;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

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

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fg);
}

.footer-location {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

.footer-email {
  font-size: 0.85rem;
  color: var(--accent);
}

/* ---------- BUTTONS ---------- */
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #0f0f0f;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: -0.01em;
}

.btn-primary:hover {
  background: var(--accent-dim);
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--fg);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color 0.2s;
}

.btn-secondary:hover {
  border-color: var(--fg-muted);
}

.hero-actions {
  margin-bottom: 40px;
}

/* ---------- NAV ---------- */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 7vw;
  background: rgba(15, 15, 15, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fg);
  text-decoration: none;
}

.nav-cta {
  font-size: 0.9rem;
}

/* ---------- QUOTE FORM ---------- */
.quote-page {
  min-height: 100vh;
  padding: 120px 7vw 80px;
  background: var(--bg);
}

.quote-page h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 12px;
}

.quote-page h1 .accent {
  color: var(--accent);
}

.quote-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  margin-bottom: 56px;
}

.quote-form {
  max-width: 640px;
}

.form-group {
  margin-bottom: 28px;
}

.form-label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--fg-muted);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.form-label .required {
  color: var(--accent);
  margin-left: 2px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.2s;
  appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23a09a8e' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-select option {
  background: var(--surface);
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-hint {
  font-size: 0.82rem;
  color: var(--fg-muted);
  margin-top: 6px;
}

.form-error {
  background: rgba(220, 60, 60, 0.1);
  border: 1px solid rgba(220, 60, 60, 0.3);
  border-radius: 8px;
  padding: 14px 18px;
  color: #f87171;
  font-size: 0.95rem;
  margin-bottom: 28px;
}

.form-success {
  background: rgba(56, 232, 120, 0.08);
  border: 1px solid rgba(56, 232, 120, 0.25);
  border-radius: 12px;
  padding: 40px 36px;
  text-align: center;
  max-width: 520px;
}

.form-success h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--fg);
}

.form-success p {
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 28px;
}

/* ---------- ADMIN ---------- */
.admin-page {
  min-height: 100vh;
  padding: 80px 5vw;
  background: var(--bg);
}

.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px;
}

.admin-header h1 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
}

.admin-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.filter-btn {
  padding: 7px 16px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--fg-muted);
  font-size: 0.85rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}

.filter-btn.active,
.filter-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.quotes-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.quotes-table th {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--fg-muted);
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
}

.quotes-table td {
  padding: 16px 16px;
  border-bottom: 1px solid rgba(46, 44, 40, 0.5);
  vertical-align: top;
}

.quotes-table tr:hover td {
  background: var(--surface);
}

.quote-service {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 4px;
}

.quote-detail {
  font-size: 0.82rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

.status-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.status-new { background: rgba(232,168,56,0.15); color: var(--accent); }
.status-contacted { background: rgba(96,165,250,0.15); color: #60a5fa; }
.status-booked { background: rgba(52,211,153,0.15); color: #34d399; }
.status-completed { background: rgba(107,114,128,0.15); color: #9ca3af; }
.status-declined { background: rgba(248,113,113,0.15); color: #f87171; }

.status-form {
  display: flex;
  gap: 6px;
  align-items: center;
  margin-top: 6px;
}

.status-select {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--fg);
  font-size: 0.82rem;
  padding: 4px 8px;
  cursor: pointer;
}

.status-btn {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--accent);
  font-size: 0.82rem;
  padding: 4px 10px;
  cursor: pointer;
  transition: background 0.2s;
}

.status-btn:hover {
  background: var(--border);
}

.admin-empty {
  text-align: center;
  padding: 80px 20px;
  color: var(--fg-muted);
}

.admin-count {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-bottom: 20px;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 60px 6vw 48px;
  }

  .hero-stats {
    gap: 20px;
  }

  .stat-divider {
    display: none;
  }

  .services {
    padding: 64px 6vw;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .why {
    padding: 64px 6vw;
  }

  .why-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .pricing {
    padding: 64px 6vw;
  }

  .price-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .closing {
    padding: 80px 6vw;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}