:root {
  --bg: #f6f8fb;
  --text: #15202b;
  --muted: #5f6d7a;
  --surface: #ffffff;
  --surface-2: #f0f4f9;
  --line: #d8e2ec;
  --brand: #0f7a8a;
  --brand-dark: #0b5f6b;
  --accent: #ff8a5b;
  --ok: #157a5a;
  --shadow: 0 22px 44px rgba(15, 39, 69, 0.14);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", sans-serif;
  background: linear-gradient(180deg, #f8fbff 0%, #eef4fa 100%);
  color: var(--text);
  line-height: 1.6;
}

h1,
h2,
h3,
h4 {
  font-family: "Fraunces", serif;
  line-height: 1.15;
  margin: 0 0 0.8rem;
}

p {
  margin: 0 0 1rem;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.bg-orb {
  position: fixed;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.33;
  z-index: -1;
}

.orb-left {
  background: #6bd4e2;
  top: -120px;
  left: -120px;
}

.orb-right {
  background: #ffc38f;
  top: -80px;
  right: -120px;
}

.site-header {
  padding: 1.25rem 0 3rem;
}

.top-nav {
  position: sticky;
  top: 0.9rem;
  z-index: 10;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(216, 226, 236, 0.7);
  border-radius: 14px;
  padding: 0.7rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  text-decoration: none;
  color: var(--text);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

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

.hero {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 1.2rem;
  align-items: start;
}

.hero-copy {
  background: linear-gradient(160deg, #eff7ff 0%, #fbffff 100%);
  border: 1px solid #d8e6f3;
  border-radius: 22px;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.hero-copy h1 {
  font-size: clamp(2rem, 4.8vw, 3.5rem);
  max-width: 18ch;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--brand);
}

.hero-actions {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.button {
  border: 0;
  border-radius: 10px;
  padding: 0.78rem 1rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(120deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(8, 84, 95, 0.22);
}

.button-ghost {
  background: transparent;
  color: var(--brand-dark);
  border: 2px solid var(--brand-dark);
}

.header-booking {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(250, 253, 255, 0.96));
  border: 1px solid #d8e2ec;
  border-radius: 18px;
  padding: 1rem;
  box-shadow: var(--shadow);
}

.badge {
  display: inline-block;
  border-radius: 999px;
  padding: 0.2rem 0.6rem;
  background: #e6f8fb;
  color: #0b5f6b;
  font-size: 0.76rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.booking-form,
.survey-form {
  display: grid;
  gap: 0.75rem;
}

.form-row {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

label {
  display: grid;
  gap: 0.34rem;
  font-size: 0.9rem;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #bed0df;
  border-radius: 10px;
  font: inherit;
  padding: 0.62rem 0.7rem;
  background: #fff;
}

input[type="range"] {
  accent-color: var(--brand);
  padding: 0;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(15, 122, 138, 0.22);
  border-color: var(--brand);
}

.form-status {
  min-height: 1.2rem;
  margin: 0.15rem 0 0;
  color: var(--ok);
  font-size: 0.9rem;
}

.section {
  padding: 3.2rem 0;
}

.section h2 {
  max-width: 24ch;
}

.section-alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0.8));
  border-top: 1px solid rgba(216, 226, 236, 0.8);
  border-bottom: 1px solid rgba(216, 226, 236, 0.8);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem;
  box-shadow: 0 8px 20px rgba(22, 46, 73, 0.08);
}

.split {
  display: grid;
  grid-template-columns: 1.25fr 0.95fr;
  gap: 1rem;
}

.support-note {
  background: linear-gradient(160deg, #102a43 0%, #1d3b5a 100%);
  color: #f5f9ff;
  border-radius: 16px;
  padding: 1rem;
}

.timeline {
  display: grid;
  gap: 0.9rem;
}

.timeline-item {
  display: flex;
  gap: 0.78rem;
  align-items: flex-start;
  padding: 0.85rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
}

.timeline-item span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(160deg, var(--accent), #ff6f61);
}

.site-footer {
  background: #122130;
  color: #e8f2fe;
  padding: 2rem 0;
}

.footer-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(9, 24, 43, 0.62);
  padding: 1rem;
}

.modal.is-open {
  display: flex;
  animation: fadeIn 0.22s ease;
}

.modal-panel {
  width: min(760px, 100%);
  max-height: 90vh;
  overflow: auto;
  background: #ffffff;
  border: 1px solid #d9e3ef;
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 1.15rem;
  animation: riseIn 0.24s ease;
}

.modal-close {
  margin-left: auto;
  display: block;
  border: 0;
  border-radius: 999px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  background: #e6edf6;
  color: #18324b;
  font-size: 1rem;
  font-weight: 700;
}

.inline-check {
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.5rem;
}

.inline-check input {
  width: auto;
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  animation: revealIn 0.6s ease forwards;
}

.reveal:nth-child(2) {
  animation-delay: 0.08s;
}

.reveal:nth-child(3) {
  animation-delay: 0.16s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes revealIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .hero,
  .card-grid,
  .split,
  .footer-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

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

  .hero-copy {
    padding: 1.2rem;
  }
}
