:root {
  --black: #1a1a1a;
  --dark-gray: #2b2b2b;
  --gray: #6b6b6b;
  --light-gray: #f4f4f4;
  --accent: #c9a227;
  --accent-light: #f6ecd1;
  --white: #ffffff;
  --font-heading: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--dark-gray);
  background: var(--white);
  line-height: 1.5;
}

h1, h2, h3, .logo {
  font-family: var(--font-heading);
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.site-header {
  background: var(--black);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  flex-wrap: wrap;
  gap: 10px;
}

.logo {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.logo span {
  display: block;
  font-size: 0.8rem;
  font-weight: 400;
  font-family: var(--font-body);
  color: var(--accent);
  letter-spacing: 0.3px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.call-btn,
.directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  font-weight: 600;
  padding: 9px 14px;
  border-radius: 6px;
  white-space: nowrap;
  font-size: 0.9rem;
  transition: transform 0.15s ease, background 0.15s ease;
}

.call-btn {
  background: var(--accent);
  color: var(--black);
  font-weight: 700;
}

.call-btn:hover {
  background: #ddb62d;
  transform: translateY(-1px);
}

.directions-btn {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
}

.directions-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--black), var(--dark-gray));
  color: var(--white);
  text-align: center;
  padding: 64px 20px 56px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  margin: 0 0 14px;
}

.hero h1 {
  margin: 0 0 14px;
  font-size: 2.4rem;
  font-weight: 700;
}

.hero-sub {
  margin: 0 auto 30px;
  color: #d5d5d5;
  font-size: 1.1rem;
  max-width: 520px;
}

.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1.05rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn-primary {
  background: var(--accent);
  color: var(--black);
}

.btn-primary:hover {
  background: #ddb62d;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(201, 162, 39, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

/* Trust bar */
.trust-bar {
  background: var(--light-gray);
  border-bottom: 1px solid #e8e8e8;
}

.trust-items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 22px;
  padding: 16px 20px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--dark-gray);
}

.trust-item svg {
  color: var(--accent);
  flex-shrink: 0;
}

/* Services */
.services {
  padding: 56px 0 30px;
  text-align: center;
}

h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 34px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.card {
  background: var(--light-gray);
  border-radius: 12px;
  padding: 30px 20px;
  border: 1px solid #e4e4e4;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.card-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--accent-light);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.card h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
}

.card .price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 15px;
  font-family: var(--font-heading);
}

.card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--gray);
}

.card li {
  padding: 4px 0;
}

.note {
  margin-top: 28px;
  color: var(--gray);
  font-style: italic;
}

/* Location */
.location {
  padding: 40px 30px;
  text-align: center;
  background: var(--light-gray);
  border-radius: 12px;
  margin: 10px 0 40px;
}

.location p {
  color: var(--gray);
  margin-bottom: 22px;
}

.map-wrap {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e4e4e4;
  margin-bottom: 22px;
}

#map {
  height: 320px;
  width: 100%;
  background: var(--light-gray);
}

#recenter-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1001;
  background: var(--white);
  color: var(--dark-gray);
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

#recenter-btn:hover {
  background: var(--accent-light);
  border-color: var(--accent);
}

/* Contact */
.contact {
  padding: 40px 0 60px;
  text-align: center;
  background: var(--light-gray);
  border-radius: 12px;
  margin-bottom: 40px;
}

.contact p a {
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
}

/* Footer */
.site-footer {
  background: var(--black);
  color: #bbb;
  text-align: center;
  padding: 20px 0;
  font-size: 0.9rem;
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.7rem; }
  .header-inner { justify-content: center; text-align: center; }
  .directions-btn span, .call-btn span { display: none; }
}
