:root {
  --bg: #0c0e12;
  --bg-alt: #14171d;
  --surface: #1a1d24;
  --surface-hover: #20242c;
  --border: #2a2e38;
  --red: #ff4d38;
  --red-dark: #e0392a;
  --text: #edeef1;
  --text-muted: #9aa0ac;
  --white: #ffffff;
  --radius: 12px;
  --max-width: 1140px;
  --shadow: 0 8px 24px rgba(0,0,0,0.35);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

h1, h2, h3 { line-height: 1.2; margin: 0 0 0.5em; color: var(--white); }

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

ul { list-style: none; padding: 0; margin: 0; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12, 14, 18, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.9rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
}

.logo span { color: var(--red); }

.main-nav {
  display: flex;
  gap: 1.75rem;
  flex: 1;
  justify-content: center;
}

.main-nav a {
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
  opacity: 0.85;
  transition: opacity 0.15s, color 0.15s;
}

.main-nav a:hover { opacity: 1; color: var(--red); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.call-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--red);
  color: var(--white);
  padding: 0.55rem 1rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(255, 77, 56, 0.3);
  transition: background 0.15s, box-shadow 0.15s, transform 0.15s;
}

.call-btn:hover {
  background: var(--red-dark);
  box-shadow: 0 6px 18px rgba(255, 77, 56, 0.4);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  display: block;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: radial-gradient(ellipse 900px 500px at 50% -10%, rgba(255, 77, 56, 0.16), transparent 60%), var(--bg);
  color: var(--white);
  text-align: center;
  padding: 7rem 1.5rem;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.hero-inner { max-width: 720px; margin: 0 auto; position: relative; }

.hero h1 { font-size: 2.75rem; margin-bottom: 0.6em; letter-spacing: -0.01em; }

.hero p { font-size: 1.15rem; color: var(--text-muted); margin-bottom: 2rem; }

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.15s;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(255, 77, 56, 0.3);
}

.btn-primary:hover {
  background: var(--red-dark);
  box-shadow: 0 6px 22px rgba(255, 77, 56, 0.42);
  transform: translateY(-1px);
}

.btn-outline {
  border-color: var(--border);
  color: var(--white);
  background: var(--surface);
}

.btn-outline:hover {
  border-color: var(--text-muted);
  background: var(--surface-hover);
}

/* ---------- Sections ---------- */
.section { padding: 5.5rem 1.5rem; }

.section-alt { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.section-inner { max-width: var(--max-width); margin: 0 auto; }

.section h2 {
  font-size: 2rem;
  text-align: center;
}

.section-sub {
  text-align: center;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  border-top: 3px solid var(--red);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  background: var(--surface-hover);
}

.service-card h3 { font-size: 1.15rem; }

.service-card p { color: var(--text-muted); margin: 0; }

/* ---------- About ---------- */
.about-inner { max-width: 720px; }

.about-text h2 { text-align: left; }

.about-text p { color: var(--text-muted); }

.about-list {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.75rem;
}

.about-list li {
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-muted);
}

.about-list li::before {
  content: "✓";
  color: var(--red);
  position: absolute;
  left: 0;
  font-weight: 700;
}

/* ---------- Booking ---------- */
.booking-embed { display: flex; justify-content: center; }

.booking-placeholder {
  width: 100%;
  max-width: 480px;
  background: var(--surface);
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 3rem 2rem;
  text-align: center;
}

.booking-placeholder p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

/* ---------- Reviews ---------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.review-card p { color: var(--text-muted); }

.stars { color: var(--red); font-size: 1rem; margin: 0 0 0.75rem; letter-spacing: 2px; }

.review-author {
  color: var(--text-muted) !important;
  font-weight: 600;
  margin: 1rem 0 0;
}

/* ---------- Contact ---------- */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: stretch;
}

.contact-info h2 { text-align: left; }

.contact-info p { margin: 0 0 1.25rem; color: var(--text-muted); }

.contact-info a { color: var(--white); }

.contact-map {
  min-height: 320px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  filter: grayscale(0.15) contrast(0.95);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  text-align: center;
  padding: 1.5rem;
  font-size: 0.9rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .contact-inner { grid-template-columns: 1fr; }
  .contact-map { min-height: 260px; }
}

@media (max-width: 720px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: center;
    padding: 1rem 0;
    gap: 1rem;
    display: none;
  }

  .main-nav.open { display: flex; }

  .nav-toggle { display: flex; }

  .call-btn span { display: none; }

  .hero h1 { font-size: 1.9rem; }

  .hero { padding: 4rem 1.25rem; }

  .section { padding: 3.5rem 1.25rem; }
}
