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

:root {
  --brand: #d97706;
  --brand-dark: #b45309;
  --bg: #0f0f0f;
  --bg-card: #1a1a1a;
  --bg-dark: #0a0a0a;
  --text: #e5e5e5;
  --text-muted: #999;
  --border: #2a2a2a;
  --radius: 8px;
}

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--brand-dark); }

.container { max-width: 960px; margin: 0 auto; padding: 0 24px; }

/* NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(15, 15, 15, 0.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 960px; margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-brand { font-weight: 800; font-size: 18px; color: var(--text); letter-spacing: -0.5px; }
.nav-links { display: flex; gap: 24px; align-items: center; }
.nav-links a { color: var(--text-muted); font-size: 14px; font-weight: 500; }
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: var(--brand) !important; color: #000 !important;
  padding: 8px 16px; border-radius: var(--radius); font-weight: 600 !important;
}
.nav-cta:hover { background: var(--brand-dark) !important; }

/* HERO */
.hero {
  padding: 140px 24px 80px;
  text-align: center;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-dark) 100%);
}
.hero-inner { max-width: 700px; margin: 0 auto; }
.hero h1 {
  font-size: clamp(40px, 8vw, 64px);
  font-weight: 800; line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 18px; color: var(--text-muted); line-height: 1.7;
  margin-bottom: 32px; max-width: 560px; margin-left: auto; margin-right: auto;
}

/* BUTTONS */
.btn {
  display: inline-block; padding: 14px 28px; border-radius: var(--radius);
  font-size: 15px; font-weight: 600; cursor: pointer; border: none;
  transition: all 0.15s;
}
.btn-primary { background: var(--brand); color: #000; }
.btn-primary:hover { background: var(--brand-dark); color: #000; }
.btn-outline {
  background: transparent; color: var(--text); border: 1px solid var(--border);
  margin-left: 12px;
}
.btn-outline:hover { border-color: var(--text-muted); color: #fff; }
.btn-full { width: 100%; text-align: center; }

/* SECTIONS */
.section { padding: 80px 0; }
.section-dark { background: var(--bg-dark); }
.section h2 {
  font-size: 32px; font-weight: 800; text-align: center;
  margin-bottom: 8px; letter-spacing: -1px;
}
.section-sub {
  text-align: center; color: var(--text-muted); font-size: 16px;
  margin-bottom: 48px; max-width: 500px; margin-left: auto; margin-right: auto;
}

/* SERVICES */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.service-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
}
.service-icon { font-size: 28px; margin-bottom: 12px; }
.service-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.service-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* GALLERY */
.gallery {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border);
}
.gallery-item img { width: 100%; height: 280px; object-fit: cover; display: block; }

/* ABOUT */
.about-section { max-width: 680px; }
.about-section p { color: var(--text-muted); margin-bottom: 16px; font-size: 16px; line-height: 1.8; }

/* CONTACT FORM */
.contact-form { max-width: 600px; margin: 0 auto; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--text-muted); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 14px; border-radius: var(--radius);
  border: 1px solid var(--border); background: var(--bg-card); color: var(--text);
  font-family: inherit; font-size: 15px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--brand);
}
.form-group select { appearance: none; }
.form-group textarea { resize: vertical; }

.form-consent { margin-top: 8px; }
.checkbox-label {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 13px; color: var(--text-muted); line-height: 1.5; cursor: pointer;
}
.checkbox-label input[type="checkbox"] {
  width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0;
  accent-color: var(--brand);
}
.checkbox-label a { color: var(--brand); }

.form-status { margin-top: 16px; text-align: center; font-size: 14px; }
.form-success { color: #22c55e; }
.form-error { color: #ef4444; }

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
}
.footer-inner { text-align: center; }
.footer-brand strong { font-size: 16px; }
.footer-brand p { font-size: 13px; color: var(--text-muted); margin-top: 4px; }
.footer-brand a { color: var(--brand); }
.footer-links { margin-top: 16px; display: flex; justify-content: center; gap: 24px; }
.footer-links a { font-size: 13px; color: var(--text-muted); }
.footer-links a:hover { color: var(--text); }
.footer-copy { margin-top: 16px; font-size: 12px; color: #555; }

/* MOBILE */
@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
  .btn-outline { margin-left: 0; margin-top: 12px; }
  .hero { padding: 120px 20px 60px; }
  .nav-links a:not(.nav-cta) { display: none; }
}

/* LEGAL PAGES */
.legal { padding: 100px 24px 60px; max-width: 700px; margin: 0 auto; }
.legal h1 { font-size: 28px; font-weight: 800; margin-bottom: 8px; }
.legal .date { font-size: 13px; color: var(--text-muted); margin-bottom: 32px; }
.legal h2 { font-size: 18px; font-weight: 700; margin-top: 32px; margin-bottom: 8px; }
.legal p, .legal li { font-size: 15px; color: var(--text-muted); line-height: 1.8; margin-bottom: 12px; }
.legal ul { padding-left: 24px; }
.legal a { color: var(--brand); }
