
:root {
  --navy-950: #071327;
  --navy-900: #0b1733;
  --navy-800: #13254b;
  --blue-700: #244ba9;
  --blue-600: #3157d7;
  --blue-500: #4c75df;
  --blue-100: #eaf0ff;
  --red-600: #d94444;
  --red-500: #e94f4f;
  --ink: #172033;
  --muted: #5b6474;
  --line: #dce2ec;
  --surface: #ffffff;
  --surface-alt: #f6f8fc;
  --success: #166534;
  --shadow: 0 18px 50px rgba(11, 23, 51, 0.10);
  --radius-lg: 24px;
  --radius-md: 16px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.62;
}
img { max-width: 100%; height: auto; }
a { color: var(--blue-700); }
a:hover { color: var(--navy-900); }
button, input, textarea, select { font: inherit; }

.skip-link {
  position: absolute;
  left: -10000px;
  top: 8px;
  background: var(--surface);
  padding: 10px 14px;
  z-index: 999;
}
.skip-link:focus { left: 8px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(220,226,236,.85);
}
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 12px 22px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}
.brand img {
  width: 268px;
  max-height: 82px;
  object-fit: contain;
  object-position: left center;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.main-nav a {
  text-decoration: none;
  color: var(--navy-900);
  font-weight: 650;
  padding: 10px 12px;
  border-radius: 10px;
}
.main-nav a:hover,
.main-nav a[aria-current="page"] {
  background: var(--blue-100);
  color: var(--blue-700);
}
.menu-button {
  display: none;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  padding: 8px 11px;
  color: var(--navy-900);
}
.header-book {
  margin-left: 8px;
}

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}
.section { padding: 82px 0; }
.section-sm { padding: 54px 0; }
.surface-alt { background: var(--surface-alt); }
.eyebrow {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 800;
  color: var(--blue-700);
}
h1, h2, h3 {
  color: var(--navy-900);
  line-height: 1.14;
  letter-spacing: -.025em;
}
h1 { font-size: clamp(2.45rem, 5vw, 5rem); margin: 20px 0 22px; }
h2 { font-size: clamp(2rem, 3.5vw, 3.25rem); margin: 0 0 20px; }
h3 { font-size: 1.28rem; margin: 0 0 10px; }
.lead {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}
.muted { color: var(--muted); }
.narrow { max-width: 820px; }

.hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 8%, rgba(49,87,215,.17), transparent 28%),
    linear-gradient(135deg, #fff 0%, #f8faff 58%, #eef3ff 100%);
  border-bottom: 1px solid var(--line);
}
.hero-inner {
  min-height: 680px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 52px;
  align-items: center;
  padding: 76px 0;
}
.hero h1 span { color: var(--blue-700); }
.hero-actions, .button-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 750;
  cursor: pointer;
}
.button-primary {
  background: var(--blue-700);
  color: #fff;
  box-shadow: 0 12px 30px rgba(36,75,169,.22);
}
.button-primary:hover { background: var(--navy-900); color: #fff; }
.button-secondary {
  background: #fff;
  color: var(--navy-900);
  border-color: var(--line);
}
.button-secondary:hover { border-color: var(--blue-500); color: var(--blue-700); }

.hero-card {
  position: relative;
  background: var(--navy-900);
  color: #fff;
  border-radius: 30px;
  padding: 34px;
  box-shadow: var(--shadow);
}
.hero-card::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 21px;
  pointer-events: none;
}
.hero-card h2, .hero-card h3 { color: #fff; }
.hero-card p { color: #dbe5ff; }
.hero-card .status {
  display: inline-block;
  color: #d8e4ff;
  background: rgba(76,117,223,.22);
  border: 1px solid rgba(143,169,255,.35);
  padding: 7px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .9rem;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}
.check-list li {
  position: relative;
  padding: 10px 0 10px 30px;
  border-bottom: 1px solid rgba(255,255,255,.09);
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #8fafef;
  font-weight: 900;
}

.trust-strip {
  background: var(--navy-900);
  color: #fff;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-item {
  padding: 23px 24px;
  border-right: 1px solid rgba(255,255,255,.10);
}
.trust-item:last-child { border-right: 0; }
.trust-item strong { display: block; font-size: 1.05rem; }
.trust-item span { color: #bfcbea; font-size: .92rem; }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px;
  box-shadow: 0 10px 30px rgba(11,23,51,.045);
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease;
}
.icon-box {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  background: var(--blue-100);
  color: var(--blue-700);
  border-radius: 14px;
  margin-bottom: 18px;
  font-size: 1.45rem;
  font-weight: 900;
}
.card p { color: var(--muted); margin-bottom: 0; }

.process {
  counter-reset: process;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.process-step {
  position: relative;
  padding: 26px;
  border-left: 4px solid var(--blue-600);
  background: #fff;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  box-shadow: 0 8px 24px rgba(11,23,51,.055);
}
.process-step::before {
  counter-increment: process;
  content: counter(process);
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy-900);
  color: #fff;
  font-weight: 800;
  margin-bottom: 14px;
}

.notice {
  padding: 18px 20px;
  border-radius: 14px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: #7c2d12;
}
.notice strong { color: #7c2d12; }
.notice-owner {
  background: #eef3ff;
  border-color: #c8d7ff;
  color: var(--navy-900);
}

.cta-panel {
  background: linear-gradient(135deg, var(--navy-900), #183978);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 44px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}
.cta-panel h2 { color: #fff; margin-bottom: 10px; }
.cta-panel p { color: #d8e4ff; margin: 0; max-width: 730px; }

.page-hero {
  background: linear-gradient(135deg, #f6f8fc, #eaf0ff);
  padding: 74px 0;
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 4.4rem); }

.service-detail {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 38px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}
.service-detail:last-child { border-bottom: 0; }
.service-detail ul { margin-top: 8px; }

.booking-shell {
  min-height: 760px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}
.booking-frame {
  width: 100%;
  min-height: 760px;
  border: 0;
  display: block;
}
.contact-panel {
  background: var(--surface-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px;
}
.contact-row {
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}
.contact-row:last-child { border-bottom: 0; }

.prose h2 { margin-top: 42px; }
.prose h3 { margin-top: 28px; }
.prose p, .prose li { max-width: 900px; color: #3d4655; }

.site-footer {
  background: var(--navy-950);
  color: #d6def0;
  padding: 56px 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr .75fr;
  gap: 42px;
}
.footer-logo {
  width: 270px;
  padding: 8px;
  background: #fff;
  border-radius: 12px;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li { margin: 9px 0; }
.footer-links a { color: #d6def0; text-decoration: none; }
.footer-links a:hover { color: #fff; }
.footer-bottom {
  margin-top: 40px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #aab7d2;
  font-size: .92rem;
}

@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; min-height: auto; }
  .hero-card { max-width: 760px; }
  .grid-3, .process { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.10); }
  .service-detail { grid-template-columns: 1fr; gap: 8px; }
  .cta-panel { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
}

@media (max-width: 800px) {
  .header-inner { flex-wrap: wrap; }
  .brand img { width: 230px; }
  .menu-button { display: block; }
  .main-nav {
    display: none;
    order: 4;
    flex: 1 0 100%;
    flex-direction: column;
    align-items: stretch;
    margin: 0;
    padding: 8px 0 4px;
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 12px 10px; }
  .header-book { display: none; }
}

@media (max-width: 660px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .section { padding: 62px 0; }
  .grid-3, .grid-2, .process { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.10);
  }
  .trust-item:last-child { border-bottom: 0; }
  .hero-inner { padding: 54px 0; }
  .hero-card, .cta-panel { padding: 28px 22px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > :first-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .booking-frame, .booking-shell { min-height: 880px; }
}
