:root {
  --bg: #f6f8fb;
  --surface: #ffffff;
  --surface-alt: #eef4fb;
  --text: #132238;
  --muted: #5f7087;
  --line: #dbe5f0;
  --accent: #1d6fd6;
  --accent-dark: #1454a2;
  --shadow: 0 18px 50px rgba(19, 34, 56, 0.08);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

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

a {
  color: var(--accent-dark);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  background: #fff;
  padding: 0.75rem 1rem;
  border-radius: 10px;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.narrow {
  width: min(820px, calc(100% - 2rem));
}

.section {
  padding: 5rem 0;
}

.alt {
  background: linear-gradient(180deg, rgba(255,255,255,0.6), rgba(238,244,251,0.9));
}

.site-header {
  background: #0d2036;
  color: #fff;
  padding: 1rem 0;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.eyebrow,
.section-label,
.badge {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
}

.eyebrow,
.section-label {
  color: #86b7ff;
  margin: 0 0 0.5rem;
}

.site-header h1,
.hero h2,
.section h3,
.card h4,
.policy-card h3,
.terms-box h4 {
  line-height: 1.15;
  margin: 0;
}

.site-header h1 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.phone-link {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
}

.hero {
  background:
    radial-gradient(circle at top right, rgba(29, 111, 214, 0.16), transparent 28%),
    linear-gradient(180deg, #ffffff, #f6f8fb 72%);
}

.hero-grid,
.offer-box,
.booking-grid,
.contact-grid,
.policy-grid {
  display: grid;
  gap: 2rem;
}

.hero-grid {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}

.hero-copy h2 {
  font-size: clamp(2.25rem, 7vw, 4.5rem);
  margin-top: 0.5rem;
}

.lead {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 44rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(29, 111, 214, 0.1);
  color: var(--accent-dark);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 1.6rem 0 0.85rem;
}

.hero-note,
.form-note {
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-media {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 8px);
  box-shadow: var(--shadow);
  padding: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
}

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

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--accent-dark);
}

.btn-secondary {
  background: #fff;
  color: var(--text);
  border-color: var(--line);
}

.section h3 {
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  margin-top: 0.25rem;
  margin-bottom: 1rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.card,
.booking-form,
.policy-card,
.terms-box {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card {
  padding: 1.5rem;
}

.card h4 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.card p,
.contact-list p,
.policy-card p,
.terms-box li {
  color: var(--muted);
}

.offer-box {
  grid-template-columns: 1.2fr 0.8fr;
  align-items: start;
}

.terms-box {
  padding: 1.5rem;
}

.terms-box ul {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
}

.booking-grid,
.contact-grid,
.policy-grid {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
}

.booking-form {
  padding: 1.5rem;
}

.booking-form label {
  display: block;
  margin-bottom: 1rem;
}

.booking-form span {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 600;
}

.booking-form input,
.booking-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.95rem 1rem;
  font: inherit;
  color: var(--text);
  background: #fff;
}

.booking-form input:focus,
.booking-form textarea:focus {
  outline: 2px solid rgba(29, 111, 214, 0.2);
  border-color: var(--accent);
}

.full {
  width: 100%;
}

.map-wrap {
  min-height: 360px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

.site-footer {
  padding: 2rem 0 4rem;
}

.footer-top {
  padding-bottom: 1.5rem;
}

.footer-top p {
  margin: 0;
  color: var(--muted);
}

.policy-card {
  padding: 1.5rem;
}

.policy-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 920px) {
  .hero-grid,
  .offer-box,
  .booking-grid,
  .contact-grid,
  .policy-grid,
  .cards {
    grid-template-columns: 1fr;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 4rem 0;
  }

  .container {
    width: min(1120px, calc(100% - 1.2rem));
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-media {
    padding: 0.7rem;
  }
}
