:root {
  --bg: #f6f8fc;
  --surface: #ffffff;
  --text: #0f1724;
  --muted: #5b6678;
  --line: #dde4ee;
  --brand: #0f1724;
  --accent: #c9a35f;
  --accent-2: #b78b43;
  --sky: #6ea8ff;
  --teal: #5cc8be;
  --violet: #7f8cff;
  --rose: #ff8ea3;
  --ok: #1f8a4d;
  --err: #c93c3c;
  --shadow: 0 20px 42px rgba(16, 26, 44, 0.08);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Outfit", sans-serif;
  background:
    radial-gradient(circle at 8% 6%, rgba(126, 169, 255, 0.3) 0%, transparent 26%),
    radial-gradient(circle at 95% 18%, rgba(92, 200, 190, 0.2) 0%, transparent 28%),
    radial-gradient(circle at 80% 92%, rgba(255, 142, 163, 0.18) 0%, transparent 24%),
    linear-gradient(180deg, #f9fbff 0%, var(--bg) 100%);
  color: var(--text);
  line-height: 1.55;
}

h1, h2, h3 {
  font-family: "Sora", sans-serif;
  margin: 0 0 10px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2rem, 8vw, 3.6rem); }
h2 { font-size: clamp(1.5rem, 6vw, 2.4rem); }
h3 { font-size: 1.15rem; }
p { margin: 0 0 10px; color: var(--muted); }

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--line);
  background: rgba(249, 251, 255, 0.92);
  backdrop-filter: blur(8px);
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 70px;
}

.brand {
  text-decoration: none;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  width: 220px;
  max-width: 56vw;
  height: auto;
  display: block;
}

.hero { padding: 26px 0 20px; }
.hero-grid {
  display: grid;
  gap: 18px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #425a80;
  font-weight: 700;
}

.lead {
  font-size: 1.03rem;
  max-width: 48ch;
}

.hero-cta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 18px 0 14px;
}

.bullets {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
  color: #334661;
  font-weight: 600;
  font-size: 0.95rem;
}

.lead-card {
  background:
    linear-gradient(160deg, rgba(110, 168, 255, 0.12), rgba(127, 140, 255, 0.08)),
    var(--surface);
  border: 1px solid #cddaf0;
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.form-stack { display: grid; gap: 10px; }
input, select, textarea {
  width: 100%;
  border: 1px solid #cdd7e5;
  background: #fff;
  border-radius: 12px;
  padding: 12px;
  font: inherit;
  color: var(--text);
}

.btn {
  border: 0;
  border-radius: 12px;
  min-height: 46px;
  padding: 12px 14px;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.btn-dark {
  background: linear-gradient(140deg, #16263f, #0f1724 65%);
  color: #fff;
}

.btn-gold {
  background: linear-gradient(120deg, var(--accent), var(--accent-2) 55%, #d7b478);
  color: #17120b;
}

.btn-light {
  background: #fff;
  color: var(--text);
  border: 1px solid var(--line);
}

.proof { padding: 8px 0 26px; }
.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.proof-grid article {
  border: 1px solid #d3e0f2;
  background: linear-gradient(170deg, #ffffff, #f4f8ff);
  border-radius: 14px;
  padding: 14px;
}
.proof-grid strong {
  display: block;
  font-size: 1.25rem;
  color: #203250;
}
.proof-grid span {
  color: var(--muted);
  font-size: 0.9rem;
}

.visuals {
  padding: 22px 0 16px;
}

.visual-head {
  margin-bottom: 12px;
}

.visual-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.visual-card {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #d3deed;
  box-shadow: var(--shadow);
  min-height: 220px;
}

.visual-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.services, .testimonial, .coverage, .booking { padding: 28px 0; }
.services {
  background: linear-gradient(180deg, rgba(127, 140, 255, 0.08), rgba(255, 255, 255, 0));
}
.testimonial {
  background: linear-gradient(180deg, rgba(92, 200, 190, 0.08), rgba(255, 255, 255, 0));
}
.section-copy { margin-bottom: 14px; }

.service-grid,
.review-grid {
  display: grid;
  gap: 12px;
}

.service-card,
.review-grid article,
.steps {
  border: 1px solid #d5e1f1;
  background: linear-gradient(160deg, #ffffff, #f6f9ff);
  border-radius: 16px;
  padding: 16px;
}

.service-card strong {
  font-size: 1.05rem;
  color: #22324d;
}

.service-card.featured {
  border-color: #d6bb8f;
  background: linear-gradient(160deg, #fffaf2, #f6f9ff);
  box-shadow: var(--shadow);
}

.service-card.featured span {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 800;
  color: #7e5a24;
}

.review-grid p { color: #2d425f; font-weight: 500; }
.review-grid span { color: #5c6b7f; font-size: 0.9rem; }
.review-grid article:nth-child(1) { border-top: 3px solid var(--sky); }
.review-grid article:nth-child(2) { border-top: 3px solid var(--teal); }
.review-grid article:nth-child(3) { border-top: 3px solid var(--rose); }

.coverage-wrap {
  display: grid;
  gap: 12px;
}

.steps ol {
  margin: 0;
  padding-left: 20px;
  color: #2c3e58;
  display: grid;
  gap: 6px;
  font-weight: 600;
}

.booking {
  background:
    radial-gradient(circle at 100% 0%, rgba(127, 140, 255, 0.15), transparent 40%),
    linear-gradient(180deg, rgba(110, 168, 255, 0.06), rgba(255, 255, 255, 0));
}

.booking-form {
  display: grid;
  gap: 10px;
}

.field { display: grid; gap: 6px; }
.field label {
  font-size: 0.92rem;
  color: #2f4668;
  font-weight: 600;
}

.full { grid-column: 1 / -1; }
.form-status { min-height: 20px; margin: 0; font-weight: 600; }
.form-status.ok { color: var(--ok); }
.form-status.err { color: var(--err); }

.site-footer {
  border-top: 1px solid var(--line);
  padding: 26px 0 82px;
  background: #edf3fb;
}

.footer-wrap {
  display: grid;
  gap: 10px;
}

.footer-wrap a {
  text-decoration: none;
  color: #355174;
  display: block;
}

.footer-logo {
  width: 220px;
  max-width: 70vw;
  height: auto;
  display: block;
  margin-bottom: 8px;
}

.mobile-sticky-cta {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 12px;
  z-index: 50;
  text-align: center;
  text-decoration: none;
  background: linear-gradient(120deg, #13233b, #29456f);
  color: #fff;
  border-radius: 12px;
  min-height: 50px;
  display: grid;
  place-items: center;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(15, 23, 36, 0.35);
}

.hide-mobile { display: none; }

@media (min-width: 760px) {
  .brand-logo { width: 260px; max-width: none; }
  .footer-logo { width: 260px; max-width: none; }
  .hero { padding-top: 48px; }
  .hero-grid { grid-template-columns: 1.15fr 0.85fr; gap: 22px; align-items: start; }
  .hero-cta { grid-template-columns: auto auto; justify-content: start; }
  .proof-grid { grid-template-columns: repeat(4, 1fr); }
  .visual-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 240px;
  }
  .service-grid { grid-template-columns: repeat(3, 1fr); }
  .review-grid { grid-template-columns: repeat(3, 1fr); }
  .coverage-wrap { grid-template-columns: 1.2fr 0.8fr; align-items: start; }
  .booking-form { grid-template-columns: 1fr 1fr; }
  .hide-mobile { display: inline-flex; }
  .mobile-sticky-cta { display: none; }
  .site-footer { padding-bottom: 30px; }
}
