:root {
  --green: #2ecc16;
  --green-dark: #24a611;
  --black: #0e0e0e;
  --dark: #141414;
  --gray-900: #1a1a1a;
  --gray-700: #4b4b4b;
  --gray-500: #6f6f6f;
  --gray-200: #e6e6e6;
  --gray-100: #f4f4f4;
  --white: #ffffff;
  --radius: 10px;
  --font-head: "Archivo Black", "Inter", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

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

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.icon {
  width: 1em;
  height: 1em;
  fill: currentColor;
  vertical-align: -0.15em;
  margin-right: 0.4em;
  flex-shrink: 0;
}

/* Top bar */
.topbar {
  background: var(--black);
  color: var(--gray-200);
  font-size: 13px;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 34px;
}
.topbar-left { display: flex; gap: 24px; }
.topbar-item { display: flex; align-items: center; }
.topbar-item .icon { fill: var(--green); }
.topbar-phone { color: var(--green); font-weight: 600; display: flex; align-items: center; }

/* Header */
.header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}
.brand-logo-wrap {
  display: inline-flex;
  flex-shrink: 0;
}
.footer .brand-logo-wrap {
  background: var(--white);
  border-radius: 8px;
  padding: 4px;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name { font-weight: 800; font-size: 16px; letter-spacing: 0.02em; }
.brand-sub { font-size: 10px; font-weight: 600; letter-spacing: 0.06em; color: var(--gray-500); }

.nav {
  display: flex;
  gap: 32px;
  font-size: 15px;
  font-weight: 500;
}
.nav a:hover { color: var(--green-dark); }

.header-right { display: flex; align-items: center; gap: 20px; }
.header-phone {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 15px;
  color: var(--black);
}
.header-phone .icon { fill: var(--green); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span { height: 2px; background: var(--black); border-radius: 2px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 11px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--green); color: var(--black); }
.btn-primary:hover { background: var(--green-dark); }
.btn-outline { background: transparent; border-color: var(--white); color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,0.08); }
.btn-lg { padding: 15px 26px; font-size: 15px; }
.btn-block { width: 100%; padding: 15px; font-size: 15px; }

/* Hero */
.hero {
  position: relative;
  background: var(--black);
  color: var(--white);
  overflow: hidden;
  min-height: 640px;
  display: flex;
  align-items: center;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.92) 20%, rgba(0,0,0,0.55) 60%, rgba(0,0,0,0.35) 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  padding-top: 72px;
  padding-bottom: 72px;
  max-width: 680px;
}
.badge {
  display: inline-flex;
  align-items: center;
  background: var(--green);
  color: var(--black);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 24px;
}
.badge .icon { fill: var(--black); }
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(38px, 6vw, 62px);
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-title .accent { color: var(--green); }
.hero-text {
  font-size: 17px;
  color: var(--gray-200);
  max-width: 520px;
  margin-bottom: 28px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--gray-200);
}
.stars { color: var(--green); letter-spacing: 2px; }
.dot { color: var(--gray-500); }
.check { display: flex; align-items: center; }
.check .icon { fill: var(--green); }

/* Stats */
.stats { background: var(--white); border-bottom: 1px solid var(--gray-200); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  padding: 40px 24px;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0 12px;
  border-right: 1px solid var(--gray-200);
}
.stat:last-child { border-right: none; }
.stat-num { font-family: var(--font-head); font-size: 30px; color: var(--green-dark); }
.stat-label { font-size: 12px; font-weight: 600; letter-spacing: 0.04em; color: var(--gray-500); text-transform: uppercase; }

/* Section shared */
.eyebrow {
  display: block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--green-dark);
  margin-bottom: 12px;
}
.eyebrow-light { color: var(--green); }
.section-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 42px);
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 16px;
}
.section-title-light { color: var(--white); }
.section-text { font-size: 16px; color: var(--gray-700); max-width: 640px; }
.section-text-light { color: var(--gray-200); }

/* Services */
.services { padding: 88px 0; }
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 44px;
}
.card {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px 22px;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.card:hover { box-shadow: 0 12px 28px rgba(0,0,0,0.08); transform: translateY(-2px); }
.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 20px;
  color: var(--black);
}
.card h3 { font-size: 15px; font-weight: 800; letter-spacing: 0.01em; margin-bottom: 8px; text-transform: uppercase; }
.card p { font-size: 14px; color: var(--gray-700); }

/* Why */
.why { background: var(--black); color: var(--white); padding: 88px 0; }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.why-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.why-item {
  background: var(--gray-900);
  border: 1px solid #2a2a2a;
  border-radius: var(--radius);
  padding: 20px;
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.check-icon { fill: var(--green); width: 1.2em; height: 1.2em; margin-right: 0; }

/* Book */
.book { padding: 88px 0; }
.book-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact-list {
  list-style: none;
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 15px;
}
.contact-list li { display: flex; align-items: center; }
.contact-list .icon { fill: var(--green-dark); }
.contact-list a:hover { color: var(--green-dark); }

.booking-form {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.06);
}
.booking-form h3 {
  font-family: var(--font-head);
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.form-sub { font-size: 13px; color: var(--gray-500); margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field { margin-bottom: 16px; }
.form-field label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 6px; }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 11px 12px;
  font-size: 14px;
  font-family: var(--font-body);
  background: var(--gray-100);
  resize: vertical;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--green);
  background: var(--white);
}
.form-fineprint { font-size: 12px; color: var(--gray-500); text-align: center; margin-top: 12px; }
.form-status { font-size: 13px; font-weight: 600; margin-top: 12px; text-align: center; }
.form-status.success { color: var(--green-dark); }
.form-status.error { color: #c0392b; }

/* Footer */
.footer { background: var(--black); color: var(--gray-200); padding-top: 56px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-brand p { margin-top: 14px; font-size: 14px; color: var(--gray-500); max-width: 280px; }
.footer .brand-sub { color: var(--gray-500); }
.footer-col { display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.footer-col h4 { font-size: 12px; color: var(--green); letter-spacing: 0.06em; margin-bottom: 6px; }
.footer-phone { color: var(--green); font-weight: 700; }
.footer-bottom { border-top: 1px solid #262626; }
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding: 18px 24px;
  font-size: 12px;
  color: var(--gray-500);
}

/* Mobile call button */
.mobile-call {
  display: none;
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 60;
  background: var(--green);
  color: var(--black);
  font-weight: 800;
  padding: 14px;
  border-radius: 10px;
  text-align: center;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(0,0,0,0.25);
}

/* Responsive */
@media (max-width: 960px) {
  .why-grid, .book-grid { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .header-inner { gap: 12px; }
  .nav { gap: 18px; font-size: 14px; }
  .header-phone { display: none; }
}

@media (max-width: 720px) {
  .topbar-left span:last-child { display: none; }
  .nav { display: none; }
  .header-phone { display: none; }
  .nav-toggle { display: flex; }
  .header.nav-open .nav {
    display: flex;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 16px 24px;
    gap: 16px;
    border-bottom: 1px solid var(--gray-200);
  }
  .cards-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px 0; }
  .stat { border-right: none; border-bottom: 1px solid var(--gray-200); padding-bottom: 16px; }
  .why-right { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .mobile-call { display: flex; }
  body { padding-bottom: 70px; }
}
