:root {
  --navy: #06283b;
  --navy-soft: #174760;
  --teal: #007d99;
  --blue: #039bc2;
  --yellow: #ffc83d;
  --orange: #f55b31;
  --sand: #f8f4ec;
  --white: #fff;
  --line: #dde7e8;
  --muted: #587181;
  --shadow: 0 18px 46px rgba(6, 40, 59, .1);
}

* { box-sizing: border-box; }

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  margin: 0;
  color: var(--navy);
  background: var(--white);
  font-family: "Segoe UI", Arial, sans-serif;
}

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

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 78px;
  border-bottom: 1px solid rgba(6, 40, 59, .08);
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(15px);
}

.bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  max-width: 1260px;
  min-width: 0;
  height: 100%;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 42px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 27px;
  font-weight: 800;
  letter-spacing: -.06em;
}

.brand-mark {
  width: 48px;
  height: 48px;
  stroke: none;
}

.brand small {
  display: block;
  margin-top: -3px;
  color: var(--teal);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.navigation {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  color: var(--navy-soft);
  font-size: 14px;
  font-weight: 650;
}

.navigation > a:not(.nav-ticket):hover { color: var(--blue); }

.nav-ticket {
  padding: 14px 25px;
  border-radius: 12px;
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 12px 22px rgba(245, 91, 49, .2);
}

.nav-toggle { display: none; }

.hero {
  position: relative;
  min-height: min(720px, calc(100svh - 78px));
  overflow: hidden;
  color: var(--white);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center 47%;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(4, 29, 44, .86) 0%, rgba(4, 29, 44, .7) 36%, rgba(4, 29, 44, .19) 67%, rgba(4, 29, 44, .38) 100%),
    linear-gradient(0deg, rgba(4, 29, 44, .42), transparent 43%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1260px;
  min-width: 0;
  margin: 0 auto;
  padding: clamp(72px, 10vw, 115px) clamp(20px, 4vw, 42px) 140px;
}

.overline {
  margin: 0 0 19px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.overline.dark { color: var(--teal); }

h1 {
  max-width: 680px;
  margin: 0 0 21px;
  font-size: clamp(47px, 6.5vw, 76px);
  line-height: 1.04;
  letter-spacing: -.07em;
  overflow-wrap: break-word;
}

h1 span { color: var(--yellow); }

.hero-text {
  max-width: 515px;
  margin: 0 0 37px;
  color: rgba(255, 255, 255, .88);
  font-size: 17px;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 13px;
  font-size: 15px;
  font-weight: 700;
  transition: transform .18s ease, box-shadow .18s ease;
}

.button:hover { transform: translateY(-2px); }

.button svg {
  width: 20px;
  height: 20px;
}

.primary {
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 15px 25px rgba(245, 91, 49, .27);
}

.ghost {
  border: 1px solid rgba(255, 255, 255, .42);
  color: var(--white);
  background: rgba(255, 255, 255, .1);
}

.blue { background: var(--teal); box-shadow: none; }

.light {
  min-width: 183px;
  color: var(--navy);
  background: var(--white);
}

.quick-panel {
  position: absolute;
  z-index: 2;
  right: max(calc((100% - 1176px) / 2), clamp(20px, 4vw, 42px));
  bottom: 42px;
  width: 325px;
  padding: 22px;
  border-radius: 21px;
  color: var(--navy);
  background: var(--white);
  box-shadow: var(--shadow);
}

.quick-panel strong {
  display: block;
  margin-bottom: 15px;
  font-size: 17px;
}

.quick-items {
  display: grid;
  gap: 9px;
}

.quick-items a {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 13px;
  border-radius: 11px;
  color: var(--navy-soft);
  background: #f4f8f8;
  font-size: 14px;
  font-weight: 600;
}

.quick-items a:hover { background: #e9f5f6; }

.quick-items svg {
  width: 21px;
  height: 21px;
  color: var(--teal);
}

.section {
  max-width: 1260px;
  min-width: 0;
  margin: 0 auto;
  padding: 78px clamp(20px, 4vw, 42px);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 35px;
}

h2 {
  margin: 0;
  font-size: clamp(31px, 4vw, 43px);
  line-height: 1.14;
  letter-spacing: -.055em;
}

.text-link {
  flex: none;
  color: var(--teal);
  font-weight: 700;
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 17px;
}

.destination-grid > *,
.ticket-section > *,
.ticket-steps > *,
.service-grid > * {
  min-width: 0;
}

.destination-card {
  min-height: 242px;
  padding: 28px 24px;
  border-radius: 20px;
}

.destination-card svg {
  width: 47px;
  height: 47px;
  margin-bottom: 27px;
  stroke-width: 1.55;
}

.destination-card h3,
.ticket-steps h3,
.service-grid h3 {
  margin: 0 0 9px;
  font-size: 20px;
  letter-spacing: -.035em;
}

.destination-card p,
.ticket-steps p,
.service-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.58;
}

.beach { background: #edf7f8; }
.beach svg { color: var(--teal); }
.dufan { background: #fff2e9; }
.dufan svg { color: var(--orange); }
.seaworld { background: #eaf7fd; }
.seaworld svg { color: var(--blue); }
.atlantis { background: #f4f0fc; }
.atlantis svg { color: #7755bd; }

.ticket-section {
  display: grid;
  grid-template-columns: .9fr 1.15fr;
  align-items: start;
  gap: clamp(42px, 7vw, 82px);
  max-width: none;
  padding-inline: max(calc((100% - 1176px) / 2), clamp(20px, 4vw, 42px));
  background: var(--sand);
}

.ticket-copy p:not(.overline) {
  margin: 20px 0 31px;
  color: var(--muted);
  line-height: 1.72;
}

.ticket-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
}

.ticket-steps article {
  position: relative;
  min-height: 250px;
  padding: 27px 20px 21px;
  border-radius: 19px;
  background: var(--white);
}

.ticket-steps span {
  position: absolute;
  top: 19px;
  right: 18px;
  color: #b9ced4;
  font-size: 13px;
  font-weight: 800;
}

.ticket-steps svg {
  width: 42px;
  height: 42px;
  margin: 40px 0 26px;
  color: var(--teal);
}

.practical { padding-bottom: 64px; }

.visit-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 42px;
  padding: clamp(30px, 5vw, 46px);
  border-radius: 26px;
  color: var(--white);
  background: var(--navy);
}

.visit-banner h2 { max-width: 690px; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-grid article {
  padding: 24px 25px;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.service-grid svg {
  width: 34px;
  height: 34px;
  margin-bottom: 21px;
  color: var(--teal);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px 48px;
  max-width: 1260px;
  margin: 0 auto;
  padding: 44px clamp(20px, 4vw, 42px) 37px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.footer-brand strong {
  color: var(--navy);
  font-size: 18px;
}

.footer-brand p {
  max-width: 510px;
  margin: 10px 0 0;
  line-height: 1.55;
}

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

.footer-links a:hover { color: var(--teal); }

.copyright {
  grid-column: 1 / -1;
  margin: 0;
}

@media (max-width: 980px) {
  .navigation {
    position: absolute;
    top: calc(100% + 1px);
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border-radius: 16px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .navigation.open { display: flex; }

  .nav-toggle {
    display: grid;
    gap: 5px;
    padding: 12px;
    border: 0;
    border-radius: 10px;
    background: #edf5f6;
    cursor: pointer;
  }

  .nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--navy);
  }

  .quick-panel { display: none; }
  .hero-content { padding-bottom: clamp(70px, 12vw, 110px); }
  .destination-grid { grid-template-columns: repeat(2, 1fr); }
  .ticket-section { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .site-header { height: 70px; }
  .brand { font-size: 24px; }
  .brand-mark { width: 43px; height: 43px; }

  .hero { min-height: 630px; }

  .hero-image { object-position: 66% center; }

  .hero-shade {
    background: linear-gradient(90deg, rgba(4, 29, 44, .86) 0%, rgba(4, 29, 44, .72) 82%, rgba(4, 29, 44, .6));
  }

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

  .hero-content,
  .section,
  .site-footer {
    width: 100%;
    max-width: 100vw;
  }

  h1 { font-size: clamp(37px, 12vw, 48px); }

  .hero-text { font-size: 15px; }

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

  .section { padding-block: 54px; }
  .section-head { flex-direction: column; align-items: start; }
  .destination-grid,
  .ticket-steps,
  .service-grid { grid-template-columns: 1fr; }
  .destination-card { min-height: auto; }
  .ticket-steps article { min-height: auto; }
  .visit-banner { flex-direction: column; align-items: start; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-links { justify-content: start; }
}
