:root {
  --bg: #fffafc;
  --surface: rgba(255, 255, 255, 0.84);
  --surface-strong: #ffffff;
  --text: #123a61;
  --muted: #4e6883;
  --blue: #2c89c8;
  --blue-deep: #155988;
  --pink: #f49ab8;
  --pink-soft: #ffd7e5;
  --line: rgba(18, 58, 97, 0.12);
  --shadow: 0 24px 80px rgba(44, 137, 200, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Outfit", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(244, 154, 184, 0.24), transparent 28%),
    radial-gradient(circle at top right, rgba(44, 137, 200, 0.18), transparent 30%),
    linear-gradient(180deg, #fff9fc 0%, #f9fdff 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

.site-shell {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 48px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  position: sticky;
  top: 14px;
  z-index: 20;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  position: relative;
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(44, 137, 200, 0.18), rgba(244, 154, 184, 0.22));
  overflow: hidden;
  flex-shrink: 0;
}

.sun {
  position: absolute;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--pink);
  top: 10px;
  right: 9px;
}

.screen {
  position: absolute;
  left: 11px;
  bottom: 11px;
  width: 38px;
  height: 24px;
  border: 3px solid var(--blue);
  border-radius: 8px;
}

.screen::after {
  content: "";
  position: absolute;
  left: 9px;
  bottom: -9px;
  width: 14px;
  height: 3px;
  border-radius: 999px;
  background: var(--blue);
}

.brand-title,
.brand-subtitle {
  margin: 0;
  line-height: 1;
}

.brand-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.brand-subtitle {
  margin-top: 5px;
  color: var(--pink);
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 500;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: 999px;
  padding: 14px 22px;
  font: inherit;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), #4ea8e5);
  box-shadow: 0 14px 34px rgba(44, 137, 200, 0.24);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  cursor: pointer;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(44, 137, 200, 0.3);
}

.button-small {
  padding: 10px 18px;
}

.button-secondary {
  color: var(--blue-deep);
  background: #ffffff;
  border: 1px solid rgba(44, 137, 200, 0.18);
  box-shadow: none;
}

.button-light {
  background: #ffffff;
  color: var(--blue-deep);
}

.hero,
.booking-hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: center;
  padding: 74px 8px 32px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--pink);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.82rem;
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.02;
}

h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.6rem, 5vw, 5rem);
  max-width: 12ch;
}

h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.hero-text,
.section p,
.booking-panel p,
.sidebar-card li,
.sidebar-card a {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

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

.hero-points {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
}

.hero-points li {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  font-weight: 600;
}

.hero-card,
.booking-panel,
.sidebar-card,
.service-card,
.value-card,
.status-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.hero-card {
  position: relative;
  padding: 24px;
  min-height: 430px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 245, 249, 0.92)),
    linear-gradient(135deg, rgba(44, 137, 200, 0.1), rgba(244, 154, 184, 0.12));
}

.status-card {
  height: 100%;
  padding: 26px;
  background:
    radial-gradient(circle at top right, rgba(244, 154, 184, 0.28), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(245, 251, 255, 0.96));
}

.status-label {
  margin: 0 0 18px;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 800;
}

.status-card ul,
.sidebar-card ul {
  margin: 0;
  padding-left: 20px;
  color: var(--text);
  line-height: 1.8;
}

.floating-note {
  position: absolute;
  right: -10px;
  bottom: 26px;
  display: grid;
  gap: 4px;
  padding: 18px 20px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--pink), #ffbfd2);
  color: #742b47;
  box-shadow: 0 16px 36px rgba(244, 154, 184, 0.28);
}

.section {
  padding: 64px 8px 10px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.service-grid,
.value-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.service-card,
.value-card {
  padding: 24px;
}

.split-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  align-items: start;
}

.cta-band {
  margin-top: 34px;
  padding: 34px;
  border-radius: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: linear-gradient(135deg, var(--blue-deep), var(--blue));
  color: #ffffff;
}

.cta-band .eyebrow,
.cta-band h2 {
  color: #ffffff;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 60px;
  padding: 28px 8px 10px;
  border-top: 1px solid var(--line);
}

.contact-list {
  display: grid;
  gap: 10px;
  justify-items: end;
}

.booking-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.72fr;
  gap: 24px;
  padding: 12px 8px 24px;
}

.booking-panel {
  padding: 28px;
}

.quick-contact {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.booking-form {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.booking-form label {
  display: grid;
  gap: 8px;
  font-weight: 600;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border: 1px solid rgba(18, 58, 97, 0.14);
  border-radius: 18px;
  padding: 14px 16px;
  font: inherit;
  color: var(--text);
  background: #ffffff;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: 2px solid rgba(44, 137, 200, 0.18);
  border-color: rgba(44, 137, 200, 0.4);
}

.booking-sidebar {
  display: grid;
  gap: 20px;
  align-content: start;
}

.sidebar-card {
  padding: 24px;
}

.sidebar-card a {
  display: block;
}

@media (max-width: 900px) {
  .topbar,
  .hero,
  .booking-hero,
  .booking-layout,
  .split-section,
  .footer,
  .cta-band {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .topbar {
    position: static;
  }

  .nav,
  .contact-list {
    justify-items: start;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .service-grid,
  .value-list {
    grid-template-columns: 1fr;
  }

  .hero-card {
    min-height: auto;
  }

  .floating-note {
    position: static;
    margin-top: 18px;
  }
}

@media (max-width: 640px) {
  .site-shell {
    width: min(100% - 20px, 1160px);
  }

  .topbar {
    padding: 16px;
  }

  .nav {
    gap: 12px;
    font-size: 0.95rem;
  }

  h1 {
    max-width: 100%;
  }
}
