* {
  box-sizing: border-box;
}

:root {
  --bg: #f7f8fb;
  --surface: #ffffff;
  --text: #162033;
  --muted: #5f6b7c;
  --line: #dde4ee;
  --primary: #0f3d91;
  --primary-dark: #0b2f70;
  --accent: #d9a441;
  --shadow: 0 18px 40px rgba(14, 32, 67, 0.08);
  --radius: 22px;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(247, 248, 251, 0.84);
  border-bottom: 1px solid rgba(221, 228, 238, 0.8);
}

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

.brand {
  text-decoration: none;
  color: var(--text);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand span {
  color: var(--primary);
}

.site-nav {
  display: flex;
  gap: 22px;
}

.site-nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
}

.site-nav a:hover {
  color: var(--primary);
}

.menu-toggle {
  display: none;
  border: 0;
  background: var(--surface);
  box-shadow: var(--shadow);
  border-radius: 14px;
  width: 48px;
  height: 48px;
  font-size: 1.3rem;
}

.hero {
  padding: 72px 0 38px;
  background:
    radial-gradient(circle at top right, rgba(15, 61, 145, 0.08), transparent 34%),
    linear-gradient(180deg, #ffffff, #f7f8fb);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 34px;
  align-items: center;
}

.eyebrow {
  color: var(--primary);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  margin: 0 0 10px;
}

h1, h2, h3 {
  line-height: 1.1;
  margin: 0 0 14px;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.3rem, 5vw, 4.2rem);
  max-width: 12ch;
}

h2 {
  font-size: clamp(1.9rem, 3vw, 2.9rem);
  max-width: 18ch;
}

.lead,
.section-head p,
.service-card p,
.review-card p,
.contact-section p {
  color: var(--muted);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 28px 0 24px;
}

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

.btn-primary {
  background: var(--primary);
  color: white;
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-secondary {
  background: white;
  color: var(--text);
  box-shadow: var(--shadow);
}

.price-banner {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px 18px;
  display: inline-block;
  box-shadow: var(--shadow);
}

.price-banner span {
  color: var(--primary);
  font-size: 1.3rem;
  font-weight: 800;
}

.mini-points {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.mini-points div {
  background: rgba(15, 61, 145, 0.08);
  color: var(--primary-dark);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 600;
}

.hero-visual,
.service-card,
.review-card,
.contact-card,
.contact-form,
.trust-card,
.disclaimer-box {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-visual {
  padding: 18px;
}

.trust-strip {
  padding: 12px 0 18px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.trust-card {
  padding: 18px 20px;
  text-align: center;
  font-weight: 700;
}

.section {
  padding: 84px 0;
}

.alt-section {
  background: linear-gradient(180deg, rgba(15, 61, 145, 0.04), rgba(15, 61, 145, 0.02));
}

.section-head {
  margin-bottom: 34px;
}

.services-grid,
.reviews-grid,
.contact-cards {
  display: grid;
  gap: 20px;
}

.services-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  padding: 24px;
  border: 1px solid rgba(221, 228, 238, 0.7);
}

.service-card.featured {
  border: 2px solid rgba(15, 61, 145, 0.18);
}

.service-price {
  color: var(--primary) !important;
  font-weight: 800;
  font-size: 1.15rem;
}

.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 24px;
}

.gallery img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: white;
  padding: 12px;
}

.disclaimer-box {
  margin-top: 28px;
  padding: 26px;
  border-left: 6px solid var(--accent);
}

.reviews-grid {
  grid-template-columns: repeat(3, 1fr);
}

.review-card {
  padding: 24px;
}

.stars {
  color: var(--accent);
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 28px;
  align-items: start;
}

.contact-cards {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 24px;
}

.contact-card {
  padding: 20px;
}

.contact-form {
  padding: 24px;
  display: grid;
  gap: 16px;
}

.contact-form label {
  font-weight: 700;
  display: grid;
  gap: 8px;
}

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

.form-message {
  min-height: 24px;
  margin: 0;
  color: var(--primary);
  font-weight: 700;
}

.site-footer {
  padding: 28px 0 40px;
  border-top: 1px solid var(--line);
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 980px) {
  .hero-grid,
  .contact-grid,
  .services-grid,
  .reviews-grid,
  .contact-cards,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .hero h1,
  .section-head h2 {
    max-width: none;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    right: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 16px;
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
  }

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


.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-logo img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 50%;
  background: #f6f1e8;
  box-shadow: 0 8px 24px rgba(14, 32, 67, 0.10);
}

.brand-text {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
}

.hero-visual {
  position: relative;
  overflow: hidden;
}

.hero-watermark {
  position: absolute;
  inset: 18px 18px auto auto;
  width: 130px;
  opacity: 0.12;
  pointer-events: none;
}

.hero-watermark img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.quick-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 20px 0 16px;
}

.booking-note {
  color: var(--muted);
  margin-bottom: 18px;
}

@media (max-width: 760px) {
  .brand-text {
    display: none;
  }
  .brand-logo img {
    width: 50px;
    height: 50px;
  }
}
