:root {
  --bg: #0f1115;
  --surface: #171a21;
  --muted: #8b909a;
  --text: #e8eaed;
  --brand: #d4a373;
  --brand-2: #c97a40;
  --error: #ff6b6b;
  --success: #22c55e;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.6;
}

img, svg, video {
  max-width: 100%;
  height: auto;
  display: block;
}

a { color: inherit; text-decoration: none; }

.container {
  width: min(1120px, 92%);
  margin-inline: auto;
}

/* Header */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15,17,21,0.7);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.brand-logo {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: radial-gradient(120% 120% at 20% 20%, var(--brand) 0%, var(--brand-2) 60%, #834624 100%);
  box-shadow: 0 6px 18px rgba(212,163,115,0.25);
}

.nav-links {
  display: flex;
  gap: 16px;
}

.nav-links a {
  padding: 8px 12px;
  border-radius: 8px;
  color: var(--muted);
}

.nav-links a:hover, .nav-links a.active {
  color: var(--text);
  background: rgba(212,163,115,0.12);
}

.hamburger {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
}

/* Hero */
.hero {
  position: relative;
  min-height: 72vh;
  display: grid;
  align-items: center;
  padding: 64px 0 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.eyebrow:before {
  content: "";
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--brand), transparent);
  border-radius: 2px;
}

.hero h1 {
  font-size: clamp(32px, 6vw, 56px);
  line-height: 1.1;
  margin: 10px 0 14px;
}

.hero p.lead {
  color: var(--muted);
  font-size: 18px;
}

.cta-row {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}

.btn-primary {
  background: linear-gradient(180deg, var(--brand), var(--brand-2));
  color: #0b0c0f;
  border: none;
}

.btn:hover { transform: translateY(-1px); }

.hero-media {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #111;
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
}

.hero-media img { width: 100%; height: 100%; object-fit: cover; }

.glass {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
}

/* Sections */
section { padding: 56px 0; }
.section-title { font-size: 28px; margin: 0 0 8px; }
.section-sub { color: var(--muted); margin: 0 0 22px; }

/* Cards grid */
.grid {
  display: grid;
  gap: 18px;
}

.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.card {
  padding: 16px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(23,26,33,0.9), rgba(23,26,33,0.7));
  border: 1px solid rgba(255,255,255,0.06);
}

.card h3 { margin: 8px 0 6px; font-size: 18px; }
.card p { margin: 0; color: var(--muted); }
.price { color: var(--brand); font-weight: 700; }

/* Testimonials */
.testimonial {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.avatar {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(180deg, #2a2f3a, #1c1f27);
}

/* About */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.rounded {
  border-radius: 16px;
  overflow: hidden;
}

/* Contact & form */
form {
  display: grid;
  gap: 12px;
}
label { font-size: 14px; color: var(--muted); }
input, select, textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text);
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: rgba(212,163,115,0.6);
}
.form-row { display: grid; gap: 12px; grid-template-columns: 1fr 1fr; }
.helper { color: var(--muted); font-size: 12px; }
.success { color: var(--success); font-size: 14px; }
.error { color: var(--error); font-size: 14px; }

/* Footer */
footer {
  padding: 36px 0 48px;
  color: var(--muted);
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .hamburger { display: inline-flex; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}


