:root {
  --bg: #0f1115;
  --bg-alt: #15181d;
  --card: #1b1f26;
  --text: #eef0f3;
  --muted: #9aa3af;
  --accent: #ff6a3d;
  --accent-2: #ffb454;
  --border: #2a2f38;
  --radius: 14px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Segoe UI", system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.5;
}

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

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
  font-weight: 600;
  color: var(--accent-2);
  margin: 0 0 .6rem;
}
.eyebrow.center { text-align: center; }
.center { text-align: center; }

h1, h2, h3 { font-weight: 750; letter-spacing: -0.01em; margin: 0; }

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15,17,21,.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.1rem; }
.brand-logo { height: 32px; width: 32px; object-fit: contain; }
.nav-links { display: flex; gap: 22px; margin-left: auto; }
.nav-links a { color: var(--muted); font-size: .92rem; transition: color .15s; }
.nav-links a:hover { color: var(--text); }
.nav-cta { display: none; }
@media (min-width: 640px) { .nav-cta { display: inline-flex; } }

.icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--muted);
  flex-shrink: 0;
  transition: color .15s ease, border-color .15s ease, transform .15s ease;
}
.icon-link svg { width: 18px; height: 18px; }
.icon-link:hover { color: var(--accent); border-color: var(--accent); transform: translateY(-1px); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .94rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #1a1100;
  box-shadow: 0 8px 24px -8px rgba(255,106,61,.6);
}
.btn-secondary {
  background: var(--card);
  border-color: var(--border);
  color: var(--text);
}
.btn-ghost {
  border-color: var(--border);
  color: var(--text);
  padding: 9px 18px;
}
.btn.full { width: 100%; }

/* Hero */
.hero {
  position: relative;
  padding: 56px 24px 80px;
  overflow: hidden;
  text-align: center;
}
.hero-glow {
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 480px;
  background: radial-gradient(60% 60% at 50% 30%, rgba(255,106,61,.28), transparent 70%);
  filter: blur(10px);
  pointer-events: none;
}
.hero-inner { max-width: 760px; margin: 0 auto; position: relative; z-index: 1; }
.hero-brand {
  font-weight: 800;
  font-size: clamp(3rem, 6.5vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: .02em;
  color: var(--text);
  margin: 0 0 10px;
}
.hero h1 { font-size: clamp(2.4rem, 6vw, 4rem); line-height: 1.05; }
.accent { color: var(--accent); }
.hero-sub { color: var(--muted); font-size: 1.08rem; max-width: 560px; margin: 22px auto 32px; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 620px;
  margin: 56px auto 0;
  border-top: 1px solid var(--border);
  padding-top: 28px;
}
.hero-stats div { display: flex; flex-direction: column; gap: 4px; }
.hero-stats strong { font-size: 1.3rem; color: var(--accent-2); }
.hero-stats span { font-size: .8rem; color: var(--muted); }

/* Sections */
.section { padding: 90px 24px; }
.section.alt { background: var(--bg-alt); }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); margin-bottom: 36px; }
.section .muted { color: var(--muted); }

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  margin-top: 12px;
}
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-4px); border-color: var(--accent); }
.card-icon { font-size: 1.8rem; margin-bottom: 14px; }
.card h3 { font-size: 1.15rem; margin-bottom: 4px; }
.card .price { color: var(--accent-2); font-weight: 700; font-size: .92rem; margin: 4px 0 12px; }
.card p:last-child { color: var(--muted); font-size: .95rem; }

.two-col {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 800px) { .two-col { grid-template-columns: 1fr; } }

.checklist { list-style: none; padding: 0; margin: 20px 0 28px; display: flex; flex-direction: column; gap: 12px; }
.checklist li { padding-left: 28px; position: relative; color: var(--muted); }
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 800;
}

.why-card {
  background: linear-gradient(160deg, var(--card), var(--bg-alt));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  align-self: center;
}
.why-quote { font-size: 1.25rem; font-style: italic; margin: 0 0 14px; }
.why-sign { color: var(--accent-2); font-weight: 600; margin: 0; }

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 12px;
}
.gallery img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: transform .25s ease, border-color .25s ease;
}
.gallery img:hover { transform: scale(1.03); border-color: var(--accent); }
@media (max-width: 720px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 460px) {
  .gallery { grid-template-columns: 1fr; }
}

.contact-info { display: flex; flex-direction: column; gap: 10px; margin-top: 18px; }
.contact-info a {
  font-weight: 600;
  color: var(--accent-2);
}
.contact-info a:hover { color: var(--accent); }

.contact-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }
.contact-form input,
.contact-form textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--text);
  font-size: .94rem;
  font-family: inherit;
  width: 100%;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.form-note { font-size: .85rem; color: var(--muted); margin: 0; min-height: 1.1em; }

.footer {
  border-top: 1px solid var(--border);
  padding: 28px 24px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
  font-size: .85rem;
}
