/* WorldCruiseShop.com prototype — Jwm.nyc */

:root {
  --navy: #0c1c2c;
  --navy-2: #122a40;
  --navy-3: #1a3a56;
  --ink: #22303d;
  --slate: #5b6b79;
  --ivory: #f7f2e9;
  --cream: #fcfaf5;
  --sand: #efe7d8;
  --gold: #b6975a;
  --gold-deep: #9a7c41;
  --gold-light: #d9c493;
  --sea: #2d6a88;
  --line: #e3dbca;
  --shadow: 0 18px 50px -18px rgba(12, 28, 44, 0.25);
  --radius: 6px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Jost", "Segoe UI", sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .serif {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
  color: var(--navy);
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

.scene img, .card .art img, .tile .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cur {
  font-family: "Jost", "Segoe UI", sans-serif;
  font-weight: 500;
  font-size: 0.78em;
  margin-right: 1px;
}

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 500;
  margin-bottom: 14px;
}

.section { padding: 88px 0; }
.section.tinted { background: var(--ivory); }
.section.dark { background: var(--navy); }
.section.dark h2, .section.dark h3 { color: var(--ivory); }
.section.dark p { color: #b9c4cf; }

.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); }
.section-head p { color: var(--slate); margin-top: 12px; }
.section-head.centered { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Header ---------- */

.topbar {
  background: var(--navy);
  color: #cfd8e0;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  padding: 8px 0;
}
.topbar .wrap { display: flex; justify-content: space-between; gap: 16px; }
.topbar span b { color: var(--gold-light); font-weight: 500; }

header.site {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(252, 250, 245, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
header.site .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand svg { width: 38px; height: 38px; flex: none; }
.brand .word {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.brand .word em { font-style: normal; color: var(--gold-deep); }

nav.main { display: flex; align-items: center; gap: 30px; }
nav.main a {
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
nav.main a:hover, nav.main a.active { color: var(--gold-deep); border-color: var(--gold); }
nav.main .mobile-cta { display: none; }

.btn {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  border: 1px solid var(--gold);
  padding: 13px 28px;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 3px;
  transition: background 0.2s, color 0.2s;
  text-align: center;
}
.btn:hover { background: var(--gold-deep); border-color: var(--gold-deep); }
.btn.ghost { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn.ghost:hover { background: var(--navy); color: var(--ivory); }
.btn.ghost.light { color: var(--ivory); border-color: rgba(247, 242, 233, 0.55); }
.btn.ghost.light:hover { background: var(--ivory); color: var(--navy); }
.btn.small { padding: 9px 18px; font-size: 0.74rem; }

.nav-toggle { display: none; background: none; border: none; }
.nav-toggle svg { width: 26px; height: 26px; stroke: var(--navy); }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  color: var(--ivory);
  overflow: hidden;
  background: linear-gradient(180deg, #0a1826 0%, #10293e 46%, #1c4258 72%, #2d5f79 100%);
}
.hero .scene { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero .scene::after, .voyage-hero .scene::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 21, 34, 0.44) 0%, rgba(8, 21, 34, 0.2) 48%, rgba(8, 21, 34, 0.5) 100%);
}
.hero .inner {
  position: relative;
  z-index: 2;
  padding: 120px 0 180px;
  max-width: 720px;
}
.hero h1 {
  color: var(--ivory);
  font-size: clamp(2.6rem, 5.4vw, 4.2rem);
  font-weight: 500;
}
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero p.lede {
  margin-top: 20px;
  font-size: 1.08rem;
  font-weight: 300;
  color: #ccd7e1;
  max-width: 560px;
}
.hero .actions { margin-top: 34px; display: flex; gap: 14px; flex-wrap: wrap; }

/* Search card */

.search-card {
  position: relative;
  z-index: 5;
  margin-top: -92px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px;
}
.search-card form {
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 18px;
  align-items: end;
}
.field label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 7px;
  font-weight: 500;
}
.field select, .field input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--cream);
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--ink);
}
.field select:focus, .field input:focus { outline: 2px solid var(--gold-light); border-color: var(--gold); }

/* ---------- Stats strip ---------- */

.stats { border-bottom: 1px solid var(--line); background: #fff; }
.stats .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-top: 34px;
  padding-bottom: 34px;
  text-align: center;
}
.stats b {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--navy);
}
.stats span { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--slate); }

/* ---------- Voyage cards ---------- */

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

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.card .art { position: relative; aspect-ratio: 16 / 8.5; overflow: hidden; }
.card .art svg { width: 100%; height: 100%; }
.card .badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(12, 28, 44, 0.82);
  color: var(--gold-light);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 2px;
}

.card .body { padding: 22px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.card .line-ship {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 500;
}
.card h3 { font-size: 1.42rem; margin-top: 8px; }
.card h3 a:hover { color: var(--gold-deep); }
.card .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--slate);
}
.card .meta span { display: inline-flex; align-items: center; gap: 6px; }
.card .meta svg { width: 14px; height: 14px; stroke: var(--gold); flex: none; }

.card .foot {
  margin-top: auto;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-top: 1px solid var(--line);
}
.card .body > .meta { margin-bottom: 18px; }
.price small { display: block; font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--slate); }
.price b { font-family: "Cormorant Garamond", serif; font-size: 1.5rem; color: var(--navy); font-weight: 600; }

/* ---------- Collections ---------- */

.collections { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.tile {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  color: var(--ivory);
  min-height: 250px;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  transition: transform 0.25s;
}
.tile:hover { transform: translateY(-4px); }
.tile .bg { position: absolute; inset: 0; }
.tile .bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 21, 34, 0.08) 35%, rgba(8, 21, 34, 0.72) 100%);
}
.tile .label { position: relative; z-index: 2; }
.tile .label b { font-family: "Cormorant Garamond", serif; font-size: 1.35rem; font-weight: 600; display: block; }
.tile .label span { font-size: 0.78rem; color: #c9d3dd; }

/* ---------- Lead magnet ---------- */

.magnet {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}
.magnet .guide-visual {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 60%, #275b76 100%);
  border-radius: var(--radius);
  padding: 46px;
  box-shadow: var(--shadow);
}
.magnet .guide-visual .cover {
  background: var(--ivory);
  border-radius: 4px;
  padding: 38px 32px;
  max-width: 320px;
  margin: 0 auto;
  text-align: center;
  border: 1px solid var(--gold-light);
}
.magnet .cover .rule { width: 44px; height: 1px; background: var(--gold); margin: 16px auto; }
.magnet .cover .t {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  color: var(--navy);
  line-height: 1.2;
  font-weight: 600;
}
.magnet .cover small { font-size: 0.7rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold-deep); }
.magnet .cover ul { list-style: none; margin-top: 18px; text-align: left; font-size: 0.84rem; color: var(--slate); }
.magnet .cover ul li { padding: 5px 0; display: flex; gap: 8px; align-items: baseline; }
.magnet .cover ul li::before { content: "•"; color: var(--gold); }

.inline-form { display: flex; gap: 12px; margin-top: 26px; flex-wrap: wrap; }
.inline-form input {
  flex: 1;
  min-width: 200px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 3px;
  font-family: inherit;
  font-size: 0.95rem;
  background: #fff;
}
.inline-form input:focus { outline: 2px solid var(--gold-light); border-color: var(--gold); }
.form-note { font-size: 0.8rem; color: var(--slate); margin-top: 12px; }

.success {
  background: var(--ivory);
  border: 1px solid var(--gold-light);
  border-radius: var(--radius);
  padding: 22px 26px;
  margin-top: 26px;
  display: none;
}
.success.show { display: block; }
.success b { font-family: "Cormorant Garamond", serif; font-size: 1.2rem; color: var(--navy); }
.success p { font-size: 0.9rem; color: var(--slate); margin-top: 6px; }

/* ---------- Steps ---------- */

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.step {
  background: rgba(247, 242, 233, 0.04);
  border: 1px solid rgba(247, 242, 233, 0.14);
  border-radius: var(--radius);
  padding: 34px 30px;
}
.step .num {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.6rem;
  color: var(--gold-light);
  font-weight: 500;
  line-height: 1;
}
.step h3 { margin-top: 14px; font-size: 1.35rem; }
.step p { margin-top: 10px; font-size: 0.92rem; }

/* ---------- Consult band ---------- */

.consult {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.consult-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 34px;
}
.consult-card .slots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 18px 0; }
.consult-card .slot {
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 10px 6px;
  text-align: center;
  font-size: 0.82rem;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  background: var(--cream);
}
.consult-card .slot:hover { border-color: var(--gold); }
.consult-card .slot.picked { background: var(--navy); color: var(--ivory); border-color: var(--navy); }
.consult-card .slot b { display: block; font-size: 0.9rem; }

/* ---------- Newsletter / footer ---------- */

.newsletter {
  border-top: 1px solid rgba(247, 242, 233, 0.14);
  padding: 46px 0;
  background: var(--navy);
}
.newsletter .wrap { display: flex; gap: 32px; align-items: center; justify-content: space-between; flex-wrap: wrap; }
.newsletter h3 { color: var(--ivory); font-size: 1.5rem; }
.newsletter p { color: #b9c4cf; font-size: 0.9rem; margin-top: 4px; }
.newsletter form { display: flex; gap: 10px; flex-wrap: wrap; }
.newsletter input {
  padding: 13px 16px;
  border-radius: 3px;
  border: 1px solid rgba(247, 242, 233, 0.25);
  background: rgba(247, 242, 233, 0.07);
  color: var(--ivory);
  font-family: inherit;
  min-width: 260px;
}
.newsletter input::placeholder { color: #8fa0b0; }

footer.site {
  background: #081522;
  color: #94a5b5;
  padding: 56px 0 34px;
  font-size: 0.88rem;
}
footer.site .cols {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(247, 242, 233, 0.1);
}
footer.site .word { font-family: "Cormorant Garamond", serif; font-size: 1.3rem; color: var(--ivory); }
footer.site .word em { font-style: normal; color: var(--gold-light); }
footer.site h4 {
  color: var(--ivory);
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-weight: 500;
}
footer.site ul { list-style: none; }
footer.site ul li { padding: 4px 0; }
footer.site a:hover { color: var(--gold-light); }
footer.site .legal {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.78rem;
  color: #6b7d8e;
}

/* ---------- Listing page ---------- */

.page-head {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
  color: var(--ivory);
  padding: 72px 0 64px;
}
.page-head h1 { color: var(--ivory); font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 500; }
.page-head p { color: #b9c4cf; margin-top: 10px; max-width: 560px; }

.filters {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
  margin-top: -40px;
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  align-items: end;
}
.results-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 34px 0 22px;
  gap: 16px;
  flex-wrap: wrap;
}
.results-bar .count { font-size: 0.95rem; color: var(--slate); }
.results-bar .count b { color: var(--navy); }

.empty {
  text-align: center;
  padding: 70px 20px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  color: var(--slate);
}

/* ---------- Voyage detail ---------- */

.voyage-hero {
  position: relative;
  color: var(--ivory);
  overflow: hidden;
}
.voyage-hero .scene { position: absolute; inset: 0; width: 100%; height: 100%; }
.voyage-hero .inner { position: relative; z-index: 2; padding: 110px 0 96px; max-width: 760px; }
.voyage-hero .crumb { font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-light); }
.voyage-hero h1 { color: var(--ivory); font-size: clamp(2.1rem, 4.2vw, 3.4rem); font-weight: 500; margin-top: 14px; }
.voyage-hero .chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.chip {
  border: 1px solid rgba(247, 242, 233, 0.35);
  border-radius: 100px;
  padding: 7px 16px;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--ivory);
  background: rgba(8, 21, 34, 0.35);
}

.detail-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
  padding: 64px 0 88px;
}

.detail-main h2 { font-size: 1.8rem; margin-bottom: 16px; }
.detail-main .overview { color: var(--slate); font-size: 1.02rem; max-width: 640px; }

.leg { margin-top: 34px; }
.leg h3 {
  font-size: 1.05rem;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: flex;
  align-items: center;
  gap: 14px;
}
.leg h3::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.ports { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.port {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 0.88rem;
  color: var(--ink);
}

.ship-facts {
  margin-top: 46px;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.ship-facts div b { display: block; font-family: "Cormorant Garamond", serif; font-size: 1.35rem; color: var(--navy); }
.ship-facts div span { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--slate); }

.sidebar { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 22px; }
.fare-card, .form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
}
.fare-card h3, .form-card h3 { font-size: 1.3rem; margin-bottom: 14px; }
.fare-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
}
.fare-row:last-child { border-bottom: none; }
.fare-row b { font-family: "Cormorant Garamond", serif; font-size: 1.15rem; color: var(--navy); }
.fare-note { font-size: 0.76rem; color: var(--slate); margin-top: 12px; }

.form-card .field { margin-bottom: 14px; }
.form-card textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--cream);
  font-family: inherit;
  font-size: 0.92rem;
  resize: vertical;
  min-height: 84px;
}
.form-card .btn { width: 100%; }

.related { padding-bottom: 88px; }

/* ---------- Responsive ---------- */

@media (max-width: 1020px) {
  .grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
  .collections { grid-template-columns: repeat(2, 1fr); }
  .search-card form { grid-template-columns: repeat(2, 1fr); }
  .filters { grid-template-columns: repeat(2, 1fr); }
  .detail-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .magnet, .consult { grid-template-columns: 1fr; gap: 40px; }
  .steps { grid-template-columns: 1fr; }
  footer.site .cols { grid-template-columns: 1fr 1fr; }
  .stats .wrap { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  nav.main {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    padding: 18px 24px 26px;
    gap: 16px;
    align-items: flex-start;
  }
  nav.main.open { display: flex; }
  nav.main .mobile-cta {
    display: inline-block;
    background: var(--gold);
    color: #fff;
    padding: 12px 24px;
    border-radius: 3px;
    border-bottom: none;
    margin-top: 6px;
  }
  .nav-toggle { display: block; }
  .header-cta { display: none; }
  .hero .scene::after { background: rgba(8, 21, 34, 0.75); }
  footer.site .cols { grid-template-columns: 1fr; gap: 28px; }
  footer.site li, footer.site a { overflow-wrap: break-word; }
  .grid.cols-3 { grid-template-columns: 1fr; }
  .collections { grid-template-columns: 1fr; }
  .hero .inner { padding: 84px 0 150px; }
  .ship-facts { grid-template-columns: repeat(2, 1fr); }
  .topbar { display: none; }
}
