:root {
  color-scheme: light;
  --ink: #11151a;
  --muted: #66727c;
  --soft: #eef7f9;
  --paper: #f8fcfd;
  --line: rgba(17, 21, 26, 0.13);
  --gold: #f22634;
  --gold-dark: #c41421;
  --cyan: #9cecff;
  --cyan-deep: #147f95;
  --fern: #143d47;
  --moss: #18788b;
  --clay: #e32634;
  --charcoal: #080d10;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(7, 14, 18, 0.28);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 92px;
}

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

body::selection {
  background: var(--gold);
  color: #fff;
}

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

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  height: 84px;
  padding: 0 clamp(20px, 4vw, 56px);
  color: #fff;
  background: linear-gradient(180deg, rgba(10, 9, 7, 0.72), rgba(10, 9, 7, 0));
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 156px;
  min-width: 132px;
}

.brand img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.35));
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav a,
.header-cta {
  opacity: 0.9;
  transition: opacity 160ms ease, transform 160ms ease;
}

.desktop-nav a:hover,
.header-cta:hover {
  opacity: 1;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  grid-template-columns:
    minmax(24px, 1fr)
    minmax(0, 760px)
    minmax(340px, 420px)
    minmax(24px, 1fr);
  align-items: end;
  gap: 36px;
  padding: 132px 0 54px;
  overflow: hidden;
  color: #fff;
}

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

.hero-media {
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 10, 13, 0.91) 0%, rgba(5, 10, 13, 0.68) 42%, rgba(5, 10, 13, 0.22) 100%),
    linear-gradient(180deg, rgba(5, 10, 13, 0.2), rgba(5, 10, 13, 0.84));
}

.hero-content {
  position: relative;
  z-index: 2;
  grid-column: 2;
  min-width: 0;
  max-width: 740px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--gold-dark);
}

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

h1,
h2,
h3 {
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(4rem, 8.2vw, 7.2rem);
  line-height: 0.88;
  font-weight: 800;
}

.hero-copy {
  max-width: 640px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
  line-height: 1.62;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

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

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

.button-primary {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 14px 34px rgba(242, 38, 52, 0.34);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  backdrop-filter: blur(14px);
}

.booking-card {
  position: relative;
  z-index: 2;
  grid-column: 3;
  min-width: 0;
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(7, 12, 15, 0.76);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.booking-card > div {
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
}

.booking-card span {
  display: block;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.86rem;
  line-height: 1.45;
}

.booking-card .card-label {
  margin-bottom: 8px;
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.booking-card strong {
  display: block;
  margin-bottom: 3px;
  color: #fff;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 900;
  font-size: 1.75rem;
  line-height: 1.08;
}

.booking-card a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  background: var(--gold);
  color: #fff;
  font-weight: 900;
}

.section {
  width: min(100% - 40px, 1240px);
  margin: 0 auto;
  padding: 108px 0;
}

.intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(320px, 1.15fr);
  gap: 70px;
  align-items: start;
}

.intro h2,
.section-heading h2,
.conditions h2,
.final-cta h2 {
  margin-bottom: 0;
  font-size: clamp(2.35rem, 5vw, 5.4rem);
  line-height: 0.95;
  font-weight: 800;
}

.intro p:not(.eyebrow) {
  margin: 34px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.6vw, 1.26rem);
  line-height: 1.78;
}

.booking-calendar {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(360px, 1.2fr);
  gap: 44px;
  align-items: start;
  border-top: 1px solid var(--line);
}

.booking-copy {
  position: sticky;
  top: 112px;
}

.booking-copy h2 {
  margin-bottom: 22px;
  font-size: clamp(2.35rem, 5vw, 5.4rem);
  line-height: 0.95;
  font-weight: 800;
}

.booking-copy p:not(.eyebrow) {
  max-width: 560px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.4vw, 1.16rem);
  line-height: 1.7;
}

.booking-facts {
  display: grid;
  gap: 10px;
  color: var(--ink);
  font-weight: 850;
}

.booking-facts span {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fffdf8;
}

.fareharbor-widget {
  min-height: 560px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 24px 80px rgba(8, 12, 14, 0.12);
}

.fareharbor-widget iframe {
  display: block;
  width: 100% !important;
  height: 720px;
  max-width: 100%;
  border: 0;
}

.section-heading {
  max-width: 840px;
  margin-bottom: 44px;
}

.route {
  border-top: 1px solid var(--line);
}

.route-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: 22px;
}

.route-feature,
.route-list article,
.included-grid article,
.conditions-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffdf8;
}

.route-feature {
  display: grid;
  grid-template-rows: minmax(420px, 1fr) auto;
  overflow: hidden;
}

.route-feature img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.route-feature div {
  padding: 28px;
}

.route-feature span,
.route-list span {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--clay);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.9rem;
  font-weight: 900;
}

.route-feature h3,
.route-list h3,
.included-grid h3 {
  margin-bottom: 10px;
  font-size: 1.45rem;
  line-height: 1.08;
}

.route-feature p,
.route-list p,
.included-grid p,
.conditions-panel li {
  color: var(--muted);
  line-height: 1.68;
}

.route-feature p,
.route-list p,
.included-grid p {
  margin-bottom: 0;
}

.route-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.route-list article {
  padding: 26px;
}

.included {
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100vw - 1240px) / 2));
  background: var(--charcoal);
  color: #fff;
}

.included .eyebrow.dark {
  color: var(--gold);
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.included-grid article {
  min-height: 250px;
  padding: 26px;
  background: #181714;
  border-color: rgba(255, 255, 255, 0.12);
}

.included-grid svg {
  width: 36px;
  height: 36px;
  margin-bottom: 28px;
  color: var(--gold);
}

.included-grid h3 {
  color: #fff;
}

.included-grid p {
  color: rgba(255, 255, 255, 0.68);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-template-rows: 280px 280px;
  gap: 14px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.gallery-grid img:first-child {
  grid-row: span 2;
}

.gallery-grid img:nth-child(4) {
  grid-column: span 2;
}

.conditions {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1.2fr);
  gap: 54px;
  align-items: start;
  border-top: 1px solid var(--line);
}

.conditions-panel {
  padding: 34px;
}

.conditions-panel ul {
  display: grid;
  gap: 16px;
  margin: 0 0 28px;
  padding-left: 20px;
}

.conditions-panel a {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--gold);
  color: #fff;
  font-weight: 900;
}

.final-cta {
  position: relative;
  display: grid;
  min-height: 560px;
  align-items: end;
  overflow: hidden;
  margin: 0;
  padding: 84px max(20px, calc((100vw - 1240px) / 2));
  color: #fff;
}

.final-cta img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  z-index: -2;
}

.final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(13, 12, 10, 0.86), rgba(13, 12, 10, 0.32));
}

.final-cta > div {
  max-width: 680px;
}

.final-cta p:not(.eyebrow) {
  max-width: 520px;
  margin: 22px 0 28px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.72;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 34px max(20px, calc((100vw - 1240px) / 2));
  background: #060a0c;
  color: #fff;
}

.footer div,
.footer address {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
  font-style: normal;
}

.footer span,
.footer a {
  color: rgba(255, 255, 255, 0.64);
}

@media (max-width: 980px) {
  .site-header {
    height: 72px;
    grid-template-columns: auto 1fr;
  }

  .desktop-nav {
    display: none;
  }

  .header-cta {
    justify-self: end;
    min-height: 40px;
    padding-inline: 16px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 20px minmax(0, 1fr) 20px;
    padding: 112px 0 28px;
  }

  .hero-content,
  .booking-card {
    grid-column: 2;
  }

  .booking-card {
    margin-top: 34px;
  }

  h1 {
    font-size: clamp(3rem, 13.4vw, 5.1rem);
    max-width: 100%;
  }

  .intro,
  .booking-calendar,
  .route-grid,
  .conditions {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .booking-copy {
    position: static;
  }

  .included-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 260px 220px 220px;
  }

  .gallery-grid img:first-child,
  .gallery-grid img:nth-child(4) {
    grid-column: span 2;
    grid-row: auto;
  }
}

@media (max-width: 640px) {
  .brand {
    width: 126px;
  }

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

  .header-cta {
    font-size: 0.86rem;
  }

  .hero {
    grid-template-columns: 16px minmax(0, 1fr) 16px;
    padding-top: 102px;
  }

  h1 {
    font-size: clamp(2.95rem, 12.6vw, 4.45rem);
    line-height: 0.9;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .button {
    width: 100%;
  }

  .booking-card {
    grid-template-columns: 1fr 1fr;
    margin-top: 24px;
  }

  .booking-card > div {
    padding: 15px;
  }

  .booking-card > div:nth-child(3),
  .booking-card a {
    grid-column: 1 / -1;
  }

  .booking-card strong {
    font-size: 1.22rem;
  }

  .booking-card span {
    font-size: 0.78rem;
  }

  .booking-card a {
    min-height: 52px;
  }

  .section {
    width: min(100% - 32px, 1240px);
    padding: 76px 0;
  }

  .included {
    width: 100%;
    padding: 76px 16px;
  }

  .intro h2,
  .booking-copy h2,
  .section-heading h2,
  .conditions h2,
  .final-cta h2 {
    font-size: clamp(2.25rem, 12vw, 3.7rem);
  }

  .booking-calendar {
    padding-top: 64px;
  }

  .booking-facts span {
    border-radius: var(--radius);
  }

  .fareharbor-widget {
    min-height: 720px;
    margin-inline: -8px;
    border-radius: 10px;
  }

  .fareharbor-widget iframe {
    height: 720px;
  }

  .route-feature {
    grid-template-rows: 320px auto;
  }

  .route-feature img {
    min-height: 320px;
  }

  .route-feature div,
  .route-list article,
  .included-grid article,
  .conditions-panel {
    padding: 22px;
  }

  .included {
    padding-inline: 16px;
  }

  .included-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .included-grid article {
    min-height: 0;
  }

  .gallery-grid {
    grid-template-rows: repeat(4, 260px);
  }

  .gallery-grid img:first-child,
  .gallery-grid img:nth-child(4) {
    grid-column: auto;
  }

  .final-cta {
    min-height: 520px;
    padding: 72px 16px;
  }

  .footer {
    display: grid;
  }
}
