:root {
  --bg: #f4f7fb;
  --card: #ffffff;
  --ink: #0c1f33;
  --muted: #5c6c7b;
  --line: #d9e1ea;
  --brand: #0b2d4d;
  --brand-soft: #e8f0f8;
  --shadow: 0 24px 80px rgba(12, 31, 51, 0.12);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(11, 45, 77, 0.14), transparent 32rem),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
}

a {
  color: var(--brand);
  text-decoration: none;
}

a:hover,
a:focus-visible {
  text-decoration: underline;
}

.page-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0;
}

.hero {
  display: grid;
  min-height: 68vh;
  place-items: center;
}

.hero__card {
  width: 100%;
  padding: clamp(32px, 6vw, 72px);
  overflow: hidden;
  border: 1px solid rgba(217, 225, 234, 0.9);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  position: relative;
}

.hero__card::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -110px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: var(--brand-soft);
  z-index: -1;
}

.logo {
  display: block;
  width: min(520px, 100%);
  height: auto;
  margin-bottom: 48px;
}

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

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

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(2.6rem, 7vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.lead {
  max-width: 760px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.65;
}

.availability {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}

.availability__label {
  color: var(--muted);
  font-size: 0.9rem;
}

.availability__date {
  color: var(--brand);
  font-weight: 800;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid var(--brand);
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.button:hover,
.button:focus-visible {
  text-decoration: none;
  transform: translateY(-1px);
}

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

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding-top: 28px;
}

.panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
}

.panel--wide {
  grid-column: 1 / -1;
}

.panel h2 {
  margin-bottom: 16px;
  color: var(--brand);
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.panel p {
  color: var(--muted);
  line-height: 1.7;
}

.panel p:last-child {
  margin-bottom: 0;
}

@media (max-width: 760px) {
  .page-shell {
    width: min(100% - 20px, 1120px);
    padding: 24px 0;
  }

  .hero {
    min-height: auto;
  }

  .hero__card {
    border-radius: 24px;
  }

  .logo {
    margin-bottom: 34px;
  }

  .availability {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
    border-radius: 18px;
  }

  .contact-actions,
  .button {
    width: 100%;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .panel {
    padding: 22px;
  }
}
