:root {
  --ink: #111827;
  --muted: #5a6475;
  --line: #dbe2ea;
  --surface: #ffffff;
  --soft-surface: #f5f7fb;
  --deep-teal: #0b5563;
  --teal: #138496;
  --coral: #ee6c4d;
  --gold: #c99700;
  --navy: #17233c;
  --shadow: 0 24px 70px rgba(17, 24, 39, 0.16);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(238, 108, 77, 0.18), transparent 34rem),
    linear-gradient(135deg, #f7fbff 0%, #eef3f7 48%, #ffffff 100%);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(219, 226, 234, 0.88);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

.navbar {
  width: min(1180px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-size: 1.2rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--deep-teal), var(--coral));
  font-size: 0.9rem;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  flex-wrap: wrap;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 12px;
  border-radius: 8px;
  color: #22304a;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  cursor: default;
}

.nav-links a[href] {
  cursor: pointer;
}

.nav-links a[href]:hover,
.nav-links a[aria-current="page"] {
  color: #ffffff;
  background: var(--deep-teal);
}

main {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.booking-hero,
.support-hero {
  display: grid;
  align-items: center;
  gap: 32px;
  padding: 44px 0;
}

.booking-hero {
  display: block;
  min-height: auto;
  padding: 24px 0 18px;
}

.support-hero {
  grid-template-columns: 0.82fr 1fr;
}

.hero-copy,
.support-copy {
  padding: 24px 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 650px;
  color: var(--navy);
  font-size: clamp(3rem, 8vw, 6.4rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  color: var(--navy);
  font-size: 1.65rem;
  letter-spacing: 0;
}

.hero-copy p:last-child,
.support-copy p:last-child {
  max-width: 540px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.65;
}

.booking-form,
.support-form,
.panel {
  border: 1px solid rgba(219, 226, 234, 0.95);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(6, minmax(112px, 1fr)) minmax(138px, auto);
  align-items: end;
  gap: 14px;
  padding: 20px;
}

.support-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  padding: 30px;
}

.form-field {
  display: grid;
  grid-template-rows: 18px 52px;
  gap: 8px;
}

.form-field:has(textarea) {
  grid-template-rows: 18px auto;
}

.full-width {
  grid-column: 1 / -1;
}

label {
  color: #26344e;
  font-size: 0.84rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  height: 52px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 0 14px;
  color: var(--ink);
  font: inherit;
  line-height: 1.2;
  background: #ffffff;
  outline: none;
}

select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #5a6475 50%), linear-gradient(135deg, #5a6475 50%, transparent 50%);
  background-position: calc(100% - 18px) 22px, calc(100% - 12px) 22px;
  background-repeat: no-repeat;
  background-size: 6px 6px, 6px 6px;
  padding-right: 36px;
}

textarea {
  height: auto;
  min-height: 172px;
  padding: 14px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(19, 132, 150, 0.15);
}

.primary-button {
  min-height: 52px;
  border: 0;
  border-radius: 8px;
  padding: 0 22px;
  color: #ffffff;
  font: inherit;
  font-weight: 800;
  background: linear-gradient(135deg, var(--deep-teal), var(--teal));
  box-shadow: 0 16px 32px rgba(11, 85, 99, 0.25);
  cursor: pointer;
}

.booking-form .primary-button,
.support-form .primary-button {
  grid-column: auto;
}

.primary-button:hover {
  filter: brightness(1.05);
}

.content-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  padding: 0 0 48px;
}

.panel {
  padding: 28px;
}

.panel-header {
  margin-bottom: 20px;
}

.review {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.review p {
  margin: 8px 0 10px;
  color: #26344e;
  font-size: 1.02rem;
  line-height: 1.55;
}

.review span,
.award span {
  color: var(--muted);
  font-size: 0.95rem;
}

.stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 0;
}

.award {
  display: grid;
  gap: 8px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.award strong {
  color: var(--navy);
  font-size: 1.05rem;
}

@media (max-width: 900px) {
  .navbar {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .booking-hero,
  .support-hero,
  .content-grid {
    grid-template-columns: 1fr;
  }

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

  .booking-form .primary-button {
    grid-column: 1 / -1;
  }

  .booking-hero,
  .support-hero {
    min-height: auto;
  }

  h1 {
    font-size: clamp(2.7rem, 14vw, 5rem);
  }
}

@media (max-width: 620px) {
  main,
  .navbar {
    width: min(100% - 24px, 1180px);
  }

  .booking-form,
  .support-form {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .nav-links a {
    min-height: 36px;
    padding: 0 9px;
    font-size: 0.88rem;
  }
}
