:root {
  --blue: #7aaace;
  --blue-deep: #5f91b8;
  --blue-dark: #3f7198;
  --blue-soft: #e8f2f8;
  --white: #ffffff;
  --ink: #213845;
  --muted: #5f7480;
  --line: rgba(255, 255, 255, 0.22);
  --shadow: 0 22px 60px rgba(15, 38, 54, 0.2);
  --container: min(1120px, calc(100vw - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--blue);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

img {
  display: block;
  max-width: 100%;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
  min-height: 78px;
  padding: 14px max(16px, calc((100vw - 1120px) / 2));
  color: var(--white);
  background: rgba(63, 113, 152, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: fit-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
}

.brand small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

.main-nav a,
.header-cta {
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
}

.main-nav a {
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.76);
}

.main-nav a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.header-cta {
  padding: 12px 18px;
  color: var(--blue-dark);
  background: var(--white);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  min-height: calc(100vh - 78px);
  overflow: hidden;
  color: var(--white);
  background: var(--blue-dark);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(63, 113, 152, 0.9) 0%, rgba(63, 113, 152, 0.68) 48%, rgba(63, 113, 152, 0.28) 100%),
    linear-gradient(0deg, rgba(63, 113, 152, 0.76) 0%, rgba(63, 113, 152, 0) 52%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: var(--container);
  align-self: center;
  margin: 0 auto;
  padding: clamp(56px, 9vw, 112px) 0 clamp(128px, 16vw, 172px);
}

.eyebrow,
.section-label {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

.hero h1 {
  max-width: 830px;
  margin-bottom: 24px;
  font-size: clamp(2.7rem, 7vw, 6.5rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-text {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.02rem, 1.8vw, 1.25rem);
  line-height: 1.7;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
}

.button-light {
  color: var(--blue-dark);
  background: var(--white);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.18);
}

.button-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
}

.button:hover,
.header-cta:hover,
.text-link:hover {
  transform: translateY(-1px);
}

.booking-card {
  position: absolute;
  right: max(16px, calc((100vw - 1120px) / 2));
  bottom: 34px;
  z-index: 1;
  width: min(360px, calc(100vw - 32px));
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.booking-card span {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
}

.booking-card strong {
  display: block;
  font-size: 1.35rem;
  line-height: 1.15;
}

.booking-card p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.quick-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: var(--container);
  margin: -1px auto 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.22);
}

.quick-points article {
  padding: 26px;
  color: var(--white);
  background: rgba(63, 113, 152, 0.24);
}

.quick-points strong {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.quick-points span {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.section,
.image-section,
.cta-band,
.site-footer {
  width: var(--container);
  margin: 0 auto;
}

.section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(32px, 7vw, 96px);
  padding: clamp(72px, 10vw, 128px) 0;
}

.section-label {
  color: rgba(255, 255, 255, 0.68);
}

h2 {
  color: var(--white);
  font-size: clamp(2rem, 4.5vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.check-list p,
.check-list li,
.services p,
.about p,
.plain-list li,
.image-section p,
.cta-band p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.02rem;
  line-height: 1.75;
}

.check-list ul,
.plain-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.plain-list li {
  position: relative;
  padding-left: 32px;
}

.check-list li::before,
.plain-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.12);
}

.section-heading {
  grid-column: 1 / -1;
  max-width: 700px;
}

.services {
  display: block;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.service-grid article {
  min-height: 260px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.11);
}

.service-grid span {
  display: block;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.58);
  font-weight: 900;
}

h3 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 1.35rem;
}

.image-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  padding: 0 0 clamp(72px, 10vw, 128px);
}

.image-section img,
.portrait-wrap img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.image-section img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--white);
  font-weight: 900;
  border-bottom: 2px solid rgba(255, 255, 255, 0.72);
}

.about {
  align-items: center;
}

.portrait-wrap img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: 50% 18%;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 26px;
  padding: clamp(32px, 5vw, 56px);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: var(--blue-dark);
  box-shadow: var(--shadow);
}

.cta-band h2 {
  max-width: 760px;
  margin-bottom: 12px;
}

.contact-actions {
  justify-content: flex-end;
  min-width: min(100%, 320px);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  justify-content: space-between;
  padding: 28px 0 40px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
}

.site-footer a {
  color: var(--white);
  font-weight: 800;
}

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

  .main-nav {
    order: 3;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 4px;
  }

  .main-nav a {
    padding: 10px 6px;
    text-align: center;
    white-space: normal;
  }

  .hero-content {
    padding-bottom: 212px;
  }

  .booking-card {
    left: 16px;
    right: 16px;
  }

  .quick-points,
  .service-grid,
  .section,
  .image-section {
    grid-template-columns: 1fr;
  }

  .section {
    gap: 24px;
  }

  .quick-points article,
  .service-grid article {
    min-height: auto;
  }

  .image-section {
    padding-top: 18px;
  }

  .cta-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: auto;
  }

  .brand small {
    max-width: 170px;
  }

  .header-cta {
    padding-inline: 14px;
  }

  .main-nav a {
    font-size: 0.82rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding-top: 54px;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 15vw, 4.2rem);
  }

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

  .quick-points {
    width: 100%;
    border-left: 0;
    border-right: 0;
  }

  .section,
  .image-section,
  .cta-band,
  .site-footer {
    width: calc(100vw - 28px);
  }
}
