:root {
  --ink: #10232c;
  --muted: #526068;
  --paper: #fbfaf6;
  --surface: #ffffff;
  --line: #d9e0df;
  --teal: #0f766e;
  --teal-dark: #0b4f4a;
  --gold: #ffb703;
  --coral: #e85d4f;
  --shadow: 0 24px 60px rgba(16, 35, 44, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(251, 250, 246, 0.92);
  border-bottom: 1px solid rgba(217, 224, 223, 0.8);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  text-decoration: none;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 8px;
}

nav {
  display: flex;
  gap: clamp(12px, 3vw, 28px);
  color: var(--muted);
  font-size: 0.94rem;
}

nav a {
  text-decoration: none;
}

nav a:hover {
  color: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 73px);
  padding: clamp(48px, 8vw, 96px) clamp(18px, 6vw, 76px) 42px;
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.14), transparent 40%),
    linear-gradient(315deg, rgba(232, 93, 79, 0.12), transparent 34%),
    var(--paper);
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 880px;
  margin-bottom: 20px;
  font-size: clamp(2.45rem, 7vw, 5.7rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(1.9rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.lead {
  max-width: 680px;
  color: #34464f;
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  background: var(--teal);
  color: #fff;
}

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

.button.secondary {
  background: transparent;
  border-color: var(--ink);
}

.trust-line {
  max-width: 600px;
  color: var(--muted);
  font-size: 0.98rem;
}

.deadline-panel,
.price-card,
.booking-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.deadline-panel {
  padding: 24px;
}

.panel-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.panel-top strong {
  color: var(--ink);
}

.checklist {
  display: grid;
  gap: 18px;
  padding: 22px 0 0;
  margin: 0;
  list-style: none;
}

.checklist li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
}

.checklist p,
.price-card p,
.steps p,
.booking p,
footer p {
  color: var(--muted);
}

.tick {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  background: rgba(15, 118, 110, 0.12);
  color: var(--teal-dark);
  border-radius: 50%;
  font-weight: 900;
}

.notice {
  display: flex;
  gap: 10px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px clamp(18px, 4vw, 28px);
  background: #fff3dc;
  border: 1px solid #f2d298;
  border-radius: 8px;
}

.section,
.split-section,
.booking {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(58px, 9vw, 92px) clamp(18px, 3vw, 24px);
}

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

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

.price-card {
  display: flex;
  min-height: 280px;
  flex-direction: column;
  padding: 24px;
}

.price-card.highlighted {
  border-color: var(--teal);
  transform: translateY(-8px);
}

.price {
  margin-bottom: 22px;
  color: var(--coral);
  font-size: 2.2rem;
  font-weight: 900;
}

.text-link {
  margin-top: auto;
  color: var(--teal-dark);
  font-weight: 800;
}

.split-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(24px, 5vw, 70px);
}

.steps {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.steps span {
  color: var(--coral);
  font-weight: 900;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.check-grid span {
  min-height: 72px;
  padding: 18px;
  background: #e7f2ef;
  border: 1px solid #cfe1dd;
  border-radius: 8px;
  font-weight: 700;
}

.booking {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
}

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

label {
  display: grid;
  gap: 8px;
  color: #2d3c43;
  font-weight: 800;
}

input,
select {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid #bdc9c8;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

input:focus,
select:focus {
  outline: 3px solid rgba(15, 118, 110, 0.22);
  border-color: var(--teal);
}

.form-note {
  min-height: 24px;
  margin: 0;
  font-size: 0.94rem;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(18px, 6vw, 76px);
  border-top: 1px solid var(--line);
}

footer p {
  margin: 0;
}

@media (max-width: 860px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .hero,
  .cards,
  .split-section,
  .check-grid,
  .booking {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .price-card.highlighted {
    transform: none;
  }

  footer {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  nav {
    width: 100%;
    justify-content: space-between;
    font-size: 0.88rem;
  }

  h1 {
    font-size: 2.55rem;
  }

  .notice {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }
}
