/* ── Reset & Base ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:   #0d0d14;
  --surface: #111120;
  --footer:  #080810;
  --gold:    #c9a84c;
  --cream:   #f5f0e8;
  --muted:   #8b8b9a;
  --divider: #1e1e2e;
  --red:     #ef4444;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--muted);
  background: var(--black);
  line-height: 1.7;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ── Header ───────────────────────────────────────────────────────────────── */
.site-header {
  background: var(--black);
  border-bottom: 1px solid var(--gold);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--gold);
}

.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-zion {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.06em;
}

.brand-lk {
  font-size: 0.6rem;
  font-variant: small-caps;
  letter-spacing: 0.18em;
  color: var(--muted);
}

.header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.header-phone {
  border: 1px solid var(--gold);
  color: var(--gold);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.4rem 1rem;
  border-radius: 4px;
  transition: background 0.2s;
}

.header-phone:hover { background: rgba(201,168,76,0.1); }

.always-avail {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-top: 0.3rem;
  font-variant: small-caps;
}

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.hero {
  background: var(--black);
  min-height: 560px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
}

.hero-accent {
  position: absolute;
  left: max(1.25rem, calc(50vw - 550px));
  top: 10%;
  bottom: 10%;
  width: 3px;
  background: var(--gold);
}

.hero-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem 0 calc(1.25rem + 20px);
  width: 100%;
  max-width: 560px;
  margin-left: max(1.25rem, calc(50vw - 550px));
  padding-left: 2rem;
  position: relative;
  z-index: 2;
}

.badge {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.68rem;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.18em;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.hero-sub {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 2.25rem;
  max-width: 460px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 1.75rem;
  border-radius: 4px;
  display: inline-block;
  transition: background 0.2s;
  letter-spacing: 0.02em;
}

.btn-primary:hover { background: #b8973f; }

.btn-ghost {
  border: 1px solid var(--divider);
  color: var(--muted);
  font-size: 0.95rem;
  padding: 0.85rem 1.5rem;
  border-radius: 4px;
  display: inline-block;
  transition: border-color 0.2s, color 0.2s;
}

.btn-ghost:hover { border-color: var(--muted); color: var(--cream); }

.hero-graphic {
  position: absolute;
  right: max(1.25rem, calc(50vw - 550px + 60px));
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.6;
}

/* ── Trust Bar ────────────────────────────────────────────────────────────── */
.trust-bar {
  background: var(--surface);
  border-top: 0.5px solid var(--divider);
  border-bottom: 0.5px solid var(--divider);
}

.trust-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.75rem 1.25rem;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1rem;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 100px;
}

.trust-stat {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.trust-label {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.3rem;
  letter-spacing: 0.04em;
}

/* ── Services ─────────────────────────────────────────────────────────────── */
.services {
  padding: 5rem 0;
  background: var(--black);
}

.section-label {
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  margin-bottom: 3rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--divider);
  border: 1px solid var(--divider);
}

.service-card {
  background: var(--surface);
  border-left: 2px solid var(--gold);
  padding: 2rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.service-card.service-emergency { border-left-color: var(--red); }

.service-num {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--cream);
  opacity: 0.07;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.service-num--em { color: var(--red); opacity: 0.12; }

.service-card h2 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.5rem;
  position: relative;
}

.service-card p { font-size: 0.9rem; position: relative; }

/* ── Reviews ──────────────────────────────────────────────────────────────── */
.reviews {
  background: var(--surface);
  padding: 5rem 0;
}

.review-item { padding: 2rem 0; }

.review-divider {
  border-top: 0.5px solid var(--divider);
}

.stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.review-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 680px;
  margin-bottom: 1rem;
  line-height: 1.75;
}

.reviewer {
  font-size: 0.78rem;
  font-variant: small-caps;
  letter-spacing: 0.1em;
  color: var(--muted);
}

/* ── About ────────────────────────────────────────────────────────────────── */
.about {
  padding: 5rem 0;
  background: var(--black);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 1.25rem;
  line-height: 1.25;
}

.about-text p { margin-bottom: 1.5rem; font-size: 0.95rem; }

.service-area {
  display: inline-block;
  border: 1px solid var(--divider);
  color: var(--gold);
  font-size: 0.8rem;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  letter-spacing: 0.04em;
}

.about-photo {
  min-height: 260px;
  border: 1px solid var(--gold);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.85rem;
}

/* ── FAQ ──────────────────────────────────────────────────────────────────── */
.faq {
  padding: 5rem 0;
  background: var(--surface);
}

.faq-list { max-width: 720px; margin: 0 auto; }

.faq-item { border-bottom: 0.5px solid var(--divider); }

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
  cursor: pointer;
  user-select: none;
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  gap: 1rem;
}

.faq-toggle {
  font-size: 1.4rem;
  color: var(--gold);
  flex-shrink: 0;
  line-height: 1;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer.open { max-height: 300px; }

.faq-answer p {
  padding-bottom: 1.2rem;
  color: var(--muted);
  font-size: 0.92rem;
}

/* ── Footer ───────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--footer);
  border-top: 1px solid var(--gold);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 3.5rem 1.25rem;
}

.footer-col h3 {
  font-size: 0.7rem;
  font-variant: small-caps;
  letter-spacing: 0.16em;
  color: var(--gold);
  margin-bottom: 1.1rem;
}

.footer-phone {
  display: block;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.footer-col p { font-size: 0.85rem; margin-bottom: 0.3rem; }

.footer-col ul li { font-size: 0.85rem; padding: 0.25rem 0; }

.footer-copy {
  border-top: 0.5px solid var(--divider);
  padding: 1.1rem 1.25rem;
}

.footer-copy p {
  font-size: 0.75rem;
  color: #2a2a3a;
  text-align: center;
}

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 700px) {
  .hero { padding: 3.5rem 0 3rem; min-height: auto; }

  .hero-accent { display: none; }

  .hero-content {
    padding-left: 1.25rem;
    margin-left: 0;
    max-width: 100%;
  }

  .hero-graphic { display: none; }

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

  .about-inner { grid-template-columns: 1fr; }
  .about-photo { min-height: 160px; }

  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }

  .btn-primary { width: 100%; text-align: center; }
}

@media (max-width: 480px) {
  .trust-inner { gap: 1.5rem; }
  .trust-item { min-width: 80px; }
  .header-phone { font-size: 0.85rem; padding: 0.35rem 0.75rem; }
}
