:root {
  --blue: #082b6b;
  --deep-blue: #041c47;
  --light: #fff8f0;
  --yellow: #ffd54a;
  --cream: #fff5e8;
  --red: #ff4a2a;
  --ink: #082b6b;
  --white: #ffffff;
  --border: #0a3a84;

  --sunset-orange: #ff7a00;
  --sunset-gold: #ffb300;
  --sunset-yellow: #ffd54a;
  --water-blue: #00a8d8;
  --water-light: #35c8ef;

  --shadow: 0 20px 45px rgba(8, 43, 107, .18);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--light);
  font-family: "Inter", Arial, sans-serif;
}

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

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

.top-alert {
  background: linear-gradient(90deg, #ff4a2a, #ff7a00, #ffb300);
  color: #fff;
  text-align: center;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  padding: 8px 14px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 58px;
  padding: 10px 6vw;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid rgba(8,43,107,.14);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  color: var(--blue);
  text-transform: lowercase;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 2px solid var(--blue);
  border-radius: 50%;
  font-family: "Bebas Neue", sans-serif;
  font-size: 20px;
}

.main-nav {
  display: flex;
  gap: 24px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.book-btn,
.primary-btn,
.secondary-btn,
.card-action,
.signup button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  border: 0;
  background: linear-gradient(180deg, #ff7a00, #ff4a2a);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 13px 20px;
  box-shadow: 0 5px 0 rgba(8,43,107,.18);
}

.book-btn {
  background: var(--blue);
  color: #fff;
  padding: 11px 16px;
}

.hero {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      rgba(8, 22, 48, .34),
      rgba(8, 22, 48, .42)
    ),
    url("../images/nyc-sunset-cruise-hero.jpg") center/cover no-repeat;
  transform: scale(1.02);
}

.hero-content {
  position: relative;
  max-width: 820px;
  padding: 42px 24px;
}

.hero .eyebrow,
.hero h1,
.hero p {
  color: #fff;
  text-shadow: 0 3px 14px rgba(0, 0, 0, .45);
}

.eyebrow,
.section-label {
  font-size: 12px;
  line-height: 1.2;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--blue);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  text-transform: uppercase;
  color: var(--blue);
  line-height: .88;
  letter-spacing: .01em;
}

h1 {
  font-size: clamp(48px, 8.6vw, 112px);
  max-width: 700px;
  margin: 8px auto 14px;
}

h2 { font-size: clamp(44px, 7vw, 88px); }
h3 { font-size: clamp(40px, 6vw, 78px); }

.hero p:not(.eyebrow),
.intro p,
.story-copy p,
.fact-box p,
.footer p {
  max-width: 640px;
  margin: 0 auto 24px;
  font-weight: 700;
  line-height: 1.6;
}

.section-light {
  background: var(--light);
}

.section-blue {
  background: linear-gradient(180deg, #082b6b 0%, #0a3a84 100%);
}

.section-yellow {
  background: linear-gradient(180deg, #ffb300, #ffd54a);
}

.intro {
  text-align: center;
  padding: 76px 20px 68px;
}

.intro p {
  margin-top: 16px;
}

.featured-cruises {
  padding: 58px 6vw 70px;
  color: #fff;
  text-align: center;
}

.featured-cruises .section-label,
.reviews .section-label {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  background: #fff;
  padding: 8px 24px;
  margin-bottom: 42px;
  clip-path: polygon(8% 0, 92% 0, 100% 50%, 92% 100%, 8% 100%, 0 50%);
}

.section-label span {
  color: var(--red);
}

.cruise-grid {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(40px, 10vw, 120px);
  align-items: start;
}

.cruise-card {
  position: relative;
}

.cruise-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.round-card img {
  border-radius: 24px;
}

.card-action {
  position: relative;
  margin-top: -24px;
  z-index: 2;
}

.cruise-card h3 {
  color: #fff;
  margin-top: 28px;
}

.cruise-card p {
  max-width: 360px;
  margin: 12px auto 0;
  line-height: 1.55;
  font-weight: 700;
}

.smooth {
  padding: 66px 6vw 72px;
  text-align: center;
}

.info-grid {
  max-width: 1080px;
  margin: 38px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.info-card {
  min-height: 132px;
  padding: 22px;
  border: 2px solid var(--border);
  border-radius: 14px;
  background: #fff;
  display: grid;
  grid-template-columns: 1fr auto;
  align-content: space-between;
  text-align: left;
  transition: transform .2s ease, box-shadow .2s ease;
}

.info-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.info-card span {
  font-size: 30px;
  grid-column: 1 / -1;
}

.info-card strong {
  max-width: 120px;
  font-size: 15px;
  line-height: 1.1;
  letter-spacing: .08em;
}

.info-card em {
  font-style: normal;
  font-size: 24px;
}

.story-section {
  padding: 70px 0 70px 4vw;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 42px;
  align-items: center;
  overflow: hidden;
}

.story-copy {
  position: relative;
  z-index: 2;
}

.story-copy h2 {
  font-size: clamp(48px, 5vw, 78px);
}

.story-copy p {
  margin: 22px 0;
  font-size: 16px;
  line-height: 1.55;
}

.text-link {
  display: inline-block;
  border-bottom: 3px solid var(--blue);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .08em;
}

.story-controls {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 36px;
}

.story-controls button {
  width: 54px;
  height: 54px;
  border: 3px solid var(--blue);
  border-radius: 50%;
  background: transparent;
  color: var(--blue);
  font-size: 28px;
  font-weight: 900;
  cursor: pointer;
}

.story-controls strong {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.story-cards {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 10px 4vw 18px 0;
}

.story-cards::-webkit-scrollbar {
  display: none;
}

.story-cards article {
  flex: 0 0 360px;
  scroll-snap-align: start;
  background: var(--blue);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.story-cards img {
  height: 300px;
  width: 100%;
  object-fit: cover;
}

.story-cards h3 {
  min-height: 120px;
  color: #fff;
  padding: 24px;
  font-size: 42px;
  line-height: .95;
}

.excellence {
  text-align: center;
  padding: 72px 6vw 95px;
  background: #fff8f0;
}

.badge-row {
  max-width: 900px;
  margin: 44px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.badge-row small {
  display: block;
  margin-bottom: 12px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.badge-row strong {
  font-family: Georgia, serif;
  font-size: 28px;
  color: #111;
}

.reviews {
  position: relative;
  padding: 80px 6vw 90px;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(180deg, #ffb300, #ffd54a);
  border-top: 10px solid #082b6b;
}

.reviews .section-label {
  margin-bottom: 48px;
}

.review-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

blockquote {
  margin: 0;
  font-size: clamp(20px, 2.2vw, 32px);
  font-weight: 900;
  line-height: 1.25;
}

.trusted,
.fact-card {
  text-align: center;
  padding: 72px 6vw;
}

.trusted-grid {
  max-width: 620px;
  margin: 38px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.round-badge {
  width: 112px;
  height: 112px;
  margin: 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 4px solid var(--blue);
  background: #fff;
  color: var(--blue);
  font-family: "Bebas Neue", sans-serif;
  font-size: 46px;
  box-shadow: inset 0 0 0 8px #fff5e8;
}

.fact-card {
  padding-top: 34px;
}

.fact-box {
  max-width: 820px;
  margin: 0 auto;
  padding: 54px 32px;
  border: 2px solid var(--border);
  border-radius: 22px;
  background: #fff;
}

.fact-box p {
  margin: 28px auto;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(30px, 4vw, 52px);
  line-height: .95;
}

.secondary-btn {
  background: var(--blue);
  color: #fff;
}

.footer {
  background: linear-gradient(180deg, #082b6b, #041c47);
  color: #fff;
  margin-top: 40px;
}

.skyline {
  height: 210px;
  background-color: var(--light);
  background-image: url("../images/skyline-silhoutte.png");
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 100% 210px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 36px;
  padding: 42px 6vw 70px;
}

.footer h2,
.footer h3 {
  color: #fff;
}

.footer h2 {
  font-size: 42px;
}

.footer h3 {
  font-size: 30px;
  margin-bottom: 12px;
}

.footer p {
  margin: 14px 0 0;
  font-size: 14px;
}

.footer a {
  display: block;
  margin: 8px 0;
  font-weight: 700;
}

.signup label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: .1em;
  margin-top: 10px;
}

.signup input {
  width: 100%;
  margin: 8px 0 12px;
  padding: 14px 12px;
  border: 2px solid rgba(255,255,255,.65);
  background: transparent;
  color: #fff;
}

.signup input::placeholder {
  color: rgba(255,255,255,.72);
}

.signup button {
  cursor: pointer;
}

@media (max-width: 900px) {
  .main-nav {
    display: none;
  }

  .hero {
    min-height: 420px;
  }

  .cruise-grid,
  .story-section,
  .review-row,
  .footer-content {
    grid-template-columns: 1fr;
  }

  .info-grid,
  .badge-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .story-section {
    padding: 56px 20px;
  }

  .story-cards {
    padding-right: 0;
  }

  .story-cards article {
    flex-basis: 280px;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 10px 16px;
  }

  .logo span:last-child {
    font-size: 13px;
  }

  .book-btn {
    padding: 10px 12px;
    font-size: 10px;
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 46px;
  }

  .hero-content {
    padding: 44px 18px;
  }

  .featured-cruises,
  .smooth,
  .story-section,
  .excellence,
  .trusted,
  .fact-card,
  .reviews {
    padding-left: 20px;
    padding-right: 20px;
  }

  .info-grid,
  .badge-row,
  .trusted-grid,
  .review-row {
    grid-template-columns: 1fr;
  }

  .cruise-card img {
    height: 310px;
  }

  .fact-box {
    padding: 38px 20px;
  }
}