:root {
  --bg: #0d0f12;
  --bg-alt: #15181d;
  --card: #1b1f26;
  --border: #2a2f38;
  --text: #eef0f3;
  --dim: #9aa2ad;
  --accent: #c9a24a;
  --accent-bright: #e3c064;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }

header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(13,15,18,0.92); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
nav { display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.5rem; max-width: 1100px; margin: 0 auto; }
.logo { font-weight: 800; font-size: 1.25rem; letter-spacing: 0.02em; }
.logo span { color: var(--accent); }
.nav-links { display: flex; gap: 1.75rem; font-size: 0.92rem; font-weight: 600; }
.nav-links a:hover, .nav-links a.active { color: var(--accent); }
.nav-cta {
  background: var(--accent); color: #14161a; padding: 0.55rem 1.2rem; border-radius: 8px;
  font-weight: 700; font-size: 0.88rem;
}
.nav-cta:hover { background: var(--accent-bright); }

.nav-toggle {
  display: none; background: none; border: 1px solid var(--border); border-radius: 8px;
  width: 48px; height: 48px; color: var(--text); font-size: 1.7rem; line-height: 1; cursor: pointer;
  align-items: center; justify-content: center; flex-shrink: 0;
}

@media (max-width: 680px) {
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0; background: var(--bg); border-bottom: 1px solid var(--border);
    padding: 0.5rem 1.5rem 1rem;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.75rem 0; border-bottom: 1px solid var(--border); }
  .nav-links a:last-child { border-bottom: none; }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  nav { position: relative; }
}

.page-hero {
  padding: 3.5rem 0 2.5rem; text-align: center;
  background: radial-gradient(900px 400px at 50% -10%, rgba(201,162,74,0.15), transparent 60%);
}
.page-hero .eyebrow { color: var(--accent); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.8rem; }
.page-hero h1 { font-size: 2.2rem; margin: 0.9rem 0 0.75rem; font-weight: 800; line-height: 1.2; }
.page-hero p { color: var(--dim); font-size: 1.05rem; max-width: 620px; margin: 0 auto; }

.hero {
  padding: 5rem 0 4rem; text-align: center;
  background: radial-gradient(900px 400px at 50% -10%, rgba(201,162,74,0.15), transparent 60%);
}
.hero .eyebrow { color: var(--accent); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.8rem; }
.hero h1 { font-size: 2.6rem; margin: 0.9rem 0 1rem; font-weight: 800; line-height: 1.15; }
.hero p { color: var(--dim); font-size: 1.1rem; max-width: 560px; margin: 0 auto 2rem; }
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--accent); color: #14161a; padding: 0.85rem 1.8rem; border-radius: 9px;
  font-weight: 700; font-size: 0.98rem; display: inline-block;
}
.btn-primary:hover { background: var(--accent-bright); }
.btn-secondary {
  border: 1px solid var(--border); padding: 0.85rem 1.8rem; border-radius: 9px;
  font-weight: 700; font-size: 0.98rem; display: inline-block;
}
.btn-secondary:hover { border-color: var(--accent); }

.trustbar {
  display: flex; justify-content: center; gap: 2.5rem; flex-wrap: wrap;
  padding: 1.5rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  color: var(--dim); font-size: 0.88rem; font-weight: 600;
}
.trustbar strong { color: var(--text); }

section { padding: 4.5rem 0; }
.section-head { text-align: center; max-width: 620px; margin: 0 auto 3rem; }
.section-head .eyebrow { color: var(--accent); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.8rem; }
.section-head h2 { font-size: 2rem; font-weight: 800; margin: 0.6rem 0 0.75rem; }
.section-head p { color: var(--dim); }

.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.25rem; }
.service-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 1.6rem;
  transition: border-color .15s ease, transform .15s ease;
}
.service-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.service-card .icon { margin-bottom: 0.9rem; color: var(--accent); }
.service-card .icon svg { width: 28px; height: 28px; }
.service-card h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.service-card p { color: var(--dim); font-size: 0.88rem; margin-bottom: 0.75rem; }
.service-card a { color: var(--accent); font-size: 0.85rem; font-weight: 700; }

.service-detail {
  background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 2rem;
  margin-bottom: 1.5rem; display: grid; grid-template-columns: auto 1fr; gap: 1.5rem; align-items: start;
}
.service-detail .icon { color: var(--accent); }
.service-detail .icon svg { width: 40px; height: 40px; }
.service-detail h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.service-detail p { color: var(--dim); }
@media (max-width: 600px) { .service-detail { grid-template-columns: 1fr; } }

.alt-bg { background: var(--bg-alt); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.why-card { text-align: center; padding: 1rem; }
.why-card .num { color: var(--accent); font-weight: 800; font-size: 1.8rem; }
.why-card h3 { margin: 0.5rem 0; font-size: 1.05rem; }
.why-card p { color: var(--dim); font-size: 0.9rem; }

.quote-section { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
@media (max-width: 800px) { .quote-section { grid-template-columns: 1fr; } }
.quote-info h2 { font-size: 1.9rem; font-weight: 800; margin-bottom: 1rem; }
.quote-info p { color: var(--dim); margin-bottom: 1.5rem; }
.info-row { display: flex; gap: 0.75rem; margin-bottom: 1rem; font-size: 0.95rem; }
.info-row .label { color: var(--dim); min-width: 70px; }

.quote-form { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 2rem; }
.quote-form h3 { margin-bottom: 1.25rem; }
.form-row { margin-bottom: 1rem; }
.form-row label { display: block; font-size: 0.85rem; color: var(--dim); margin-bottom: 0.4rem; font-weight: 600; }
.form-row input, .form-row select, .form-row textarea {
  width: 100%; background: var(--bg); border: 1px solid var(--border); border-radius: 8px;
  padding: 0.7rem 0.85rem; color: var(--text); font-size: 0.95rem; font-family: inherit;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { outline: none; border-color: var(--accent); }
.submit-btn {
  width: 100%; background: var(--accent); color: #14161a; border: none; padding: 0.85rem;
  border-radius: 9px; font-weight: 700; font-size: 0.98rem; cursor: pointer; margin-top: 0.5rem;
}
.submit-btn:hover { background: var(--accent-bright); }
.form-success { display: none; text-align: center; padding: 2rem 0; }
.form-success.show { display: block; }
.form-success .check { font-size: 2.5rem; margin-bottom: 0.75rem; }

.reviews-strip { background: var(--bg-alt); text-align: center; }
.stars { color: var(--accent); font-size: 1.5rem; letter-spacing: 0.2rem; margin-bottom: 0.75rem; }
.reviews-strip h2 { font-size: 1.6rem; margin-bottom: 0.5rem; }
.reviews-strip p { color: var(--dim); max-width: 500px; margin: 0 auto 1.5rem; }

.cta-banner {
  background: linear-gradient(135deg, var(--accent), var(--accent-bright));
  text-align: center; color: #14161a;
}
.cta-banner .eyebrow { color: #14161a; opacity: 0.7; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.8rem; }
.cta-banner h2 { font-size: 2rem; font-weight: 800; margin: 0.6rem 0 1.5rem; color: #14161a; }
.cta-banner .btn-primary { background: #14161a; color: #fff; }
.cta-banner .btn-primary:hover { background: #22262e; }

.about-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3rem; align-items: center; }
@media (max-width: 800px) { .about-grid { grid-template-columns: 1fr; } }
.about-grid h2 { font-size: 2rem; font-weight: 800; margin-bottom: 1.1rem; }
.about-grid p { color: var(--dim); margin-bottom: 1rem; }
.value-list { display: flex; flex-direction: column; gap: 1.25rem; }
.value-item { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 1.25rem 1.5rem; }
.value-item h3 { font-size: 1rem; margin-bottom: 0.3rem; }
.value-item p { color: var(--dim); font-size: 0.88rem; margin: 0; }

.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.25rem; }
.gallery-tile {
  aspect-ratio: 4/3; border-radius: 14px; border: 1px solid var(--border);
  background: linear-gradient(135deg, var(--card), var(--bg-alt));
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.5rem; color: var(--dim); text-align: center; padding: 1rem;
}
.gallery-tile .icon { font-size: 2rem; }
.gallery-tile .label { font-weight: 700; color: var(--text); font-size: 0.9rem; }
.gallery-tile .sub { font-size: 0.78rem; }
.gallery-note {
  background: var(--card); border: 1px dashed var(--border); border-radius: 12px;
  padding: 1.25rem 1.5rem; color: var(--dim); font-size: 0.9rem; text-align: center; margin-top: 2rem;
}

.gallery-photo {
  position: relative; aspect-ratio: 4/3; border-radius: 14px; overflow: hidden;
  border: 1px solid var(--border); display: block;
}
.gallery-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .2s ease; }
.gallery-photo:hover img { transform: scale(1.05); }
.gallery-photo .caption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 0.75rem 1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
  color: #fff; font-weight: 700; font-size: 0.88rem;
}

.feature-photo {
  border-radius: 16px; overflow: hidden; border: 1px solid var(--border);
}
.feature-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

.sticky-call {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 60;
  background: var(--accent); color: #14161a; text-align: center; font-weight: 700;
  padding: 0.9rem; gap: 0.5rem; align-items: center; justify-content: center;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.35);
  transform: translateY(0); transition: transform .25s ease;
}
.sticky-call.hide { transform: translateY(100%); }
.sticky-call svg { width: 18px; height: 18px; }
@media (max-width: 680px) {
  .sticky-call { display: flex; }
  body { padding-bottom: 60px; }
}

.status-pill {
  display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.78rem; font-weight: 700;
}
.status-pill .dot { width: 7px; height: 7px; border-radius: 50%; }
.status-pill.open .dot { background: #4ade80; box-shadow: 0 0 6px #4ade80; }
.status-pill.closed .dot { background: #f87171; }

.faq-item { border-bottom: 1px solid var(--border); padding: 1.1rem 0; }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-item summary {
  cursor: pointer; font-weight: 700; list-style: none; display: flex;
  justify-content: space-between; align-items: center; gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; color: var(--accent); font-size: 1.3rem; flex-shrink: 0; }
.faq-item[open] summary::after { content: '\2212'; }
.faq-item p { color: var(--dim); margin-top: 0.75rem; font-size: 0.92rem; }

footer { border-top: 1px solid var(--border); padding: 2.5rem 0; }
.footer-grid { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem; align-items: center; }
.footer-grid .logo { margin-bottom: 0.25rem; }
footer .muted { color: var(--dim); font-size: 0.85rem; }
