:root {
  --navy: #0b2545;
  --blue: #1f6fd1;
  --blue-dark: #1558a8;
  --ink: #1b2430;
  --muted: #5a6573;
  --line: #e3e8ef;
  --bg: #ffffff;
  --soft: #f4f7fb;
  --radius: 14px;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.6;
}

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

a { color: var(--blue); }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 20px; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 10;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; gap: 12px;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--navy); }
.brand img { width: 42px; height: 42px; }
.brand span { font-weight: 800; letter-spacing: .02em; font-size: 16px; line-height: 1.1; }
.header-actions { display: flex; align-items: center; gap: 14px; }
.header-phone { color: var(--navy); font-weight: 600; text-decoration: none; white-space: nowrap; }

/* Buttons */
.btn {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  padding: 15px 28px;
  border-radius: 999px;
  font-size: 17px;
  transition: background .15s ease;
}
.btn:hover { background: var(--blue-dark); }
.btn-small { padding: 10px 18px; font-size: 15px; }

/* Hero */
.hero { background: var(--soft); }
.hero .wrap {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 40px;
  align-items: center; padding-top: 48px; padding-bottom: 48px;
}
.eyebrow {
  text-transform: uppercase; letter-spacing: .12em; font-size: 13px;
  font-weight: 700; color: var(--blue); margin: 0 0 12px;
}
.hero h1 {
  font-size: clamp(34px, 5vw, 54px); line-height: 1.08;
  margin: 0 0 16px; color: var(--navy); letter-spacing: -.01em;
}
.price-line { display: flex; align-items: baseline; gap: 12px; margin: 0 0 18px; flex-wrap: wrap; }
.price { font-size: clamp(38px, 5vw, 52px); font-weight: 800; color: var(--navy); line-height: 1; }
.price-note { color: var(--muted); font-size: 15px; }
.hero-list { list-style: none; padding: 0; margin: 0 0 26px; }
.hero-list li { padding-left: 30px; position: relative; margin: 6px 0; }
.hero-list li::before {
  content: ""; position: absolute; left: 0; top: 7px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--blue) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 11px no-repeat;
}
.hero-cta { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.hero-cta small { color: var(--muted); font-size: 14px; }
.hero-img img { border-radius: var(--radius); width: 100%; height: auto; object-fit: cover; }

/* Sections */
section { padding: 64px 0; }
section h2 {
  font-size: clamp(26px, 3.4vw, 36px); line-height: 1.15;
  color: var(--navy); margin: 0 0 14px; letter-spacing: -.01em;
}
.lead { font-size: 19px; color: var(--muted); max-width: 720px; margin: 0 0 8px; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 30px; }
.card {
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; background: #fff;
}
.card h3 { margin: 0 0 8px; font-size: 19px; color: var(--navy); }
.card p { margin: 0; color: var(--muted); font-size: 16px; }
.step-num {
  display: inline-flex; width: 34px; height: 34px; border-radius: 50%;
  align-items: center; justify-content: center;
  background: var(--navy); color: #fff; font-weight: 700; margin-bottom: 12px;
}

.band { background: var(--navy); color: #fff; }
.band h2 { color: #fff; }
.band .lead { color: #c9d6e8; }

.included { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 32px; margin-top: 26px; }
.included div { border-top: 1px solid var(--line); padding-top: 14px; }
.included strong { display: block; color: var(--navy); }
.included span { color: var(--muted); font-size: 16px; }

.faq { max-width: 820px; }
.faq details { border-bottom: 1px solid var(--line); padding: 18px 0; }
.faq summary { font-weight: 700; color: var(--navy); cursor: pointer; font-size: 18px; }
.faq details p { margin: 10px 0 0; color: var(--muted); }

.final { text-align: center; background: var(--soft); }
.final .lead { margin: 0 auto 24px; }

/* Booking page */
.booking-head { padding: 40px 0 10px; }
.booking-head h1 { font-size: clamp(30px, 4vw, 42px); color: var(--navy); margin: 0 0 10px; line-height: 1.1; }
.booking-points { display: flex; flex-wrap: wrap; gap: 10px 22px; margin: 16px 0 0; padding: 0; list-style: none; color: var(--muted); font-size: 15px; }
.booking-points li::before { content: "✓ "; color: var(--blue); font-weight: 700; }
.calendar { padding: 20px 0 60px; }
.calendar iframe { width: 100%; border: none; min-height: 900px; overflow: hidden; }

/* Legal page */
.legal { max-width: 820px; padding: 48px 20px 72px; }
.legal h1 { color: var(--navy); margin-top: 0; }
.legal h2 { font-size: 22px; margin: 32px 0 8px; }
.legal h3 { font-size: 17px; margin: 20px 0 6px; color: var(--navy); }
.legal p, .legal li { color: #3b4655; }

/* Footer */
.site-footer { border-top: 1px solid var(--line); padding: 30px 0; font-size: 14px; color: var(--muted); }
.site-footer .wrap { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.site-footer a { color: var(--muted); }
.disclaimer { max-width: 620px; }

@media (max-width: 860px) {
  .hero .wrap { grid-template-columns: 1fr; padding-top: 28px; gap: 26px; }
  .hero-img { order: -1; }
  .grid-3 { grid-template-columns: 1fr; }
  .included { grid-template-columns: 1fr; }
  section { padding: 48px 0; }
}
@media (max-width: 520px) {
  .header-phone { display: none; }
  .brand span { font-size: 14px; }
  .btn { width: 100%; text-align: center; }
}
