@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:ital,wght@1,700&display=swap');

:root {
  --paper: #f5f2eb;
  --paper-2: #ede8dd;
  --ink: #102922;
  --muted: #60716c;
  --line: #d4d0c6;
  --coral: #ff6f55;
  --yellow: #f6c84a;
  --blue: #4aa8c7;
  --green: #77aa76;
  --white: #fffdf8;
  --radius: 20px;
  --shadow: 0 18px 50px rgba(16, 41, 34, .10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
.shell { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.hero {
  position: relative;
  overflow: hidden;
  padding-bottom: 88px;
  background:
    radial-gradient(circle at 88% 16%, rgba(246,200,74,.82) 0 12%, transparent 12.2%),
    radial-gradient(circle at 79% 32%, rgba(255,111,85,.56) 0 18%, transparent 18.2%),
    linear-gradient(135deg, #f8f4e9 0%, #efe7d6 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -5% -160px 35%;
  height: 280px;
  border: 2px solid rgba(16,41,34,.12);
  border-radius: 50%;
  transform: rotate(-8deg);
  pointer-events: none;
}
.nav { height: 90px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { font-size: .92rem; font-weight: 800; letter-spacing: .16em; text-decoration: none; }
.brand span { color: var(--coral); margin-inline: 4px; }
.nav-links { display: flex; align-items: center; gap: 28px; font-size: .9rem; font-weight: 600; }
.nav-links a { text-decoration: none; }
.nav-cta { padding: 10px 18px; border: 1px solid var(--ink); border-radius: 999px; }

.hero-grid { display: grid; grid-template-columns: 1.25fr .75fr; align-items: end; gap: 80px; padding-top: 86px; }
.eyebrow { margin: 0 0 16px; color: #826d48; font-size: .75rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow.light { color: #dce6e1; }
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 28px; font-size: clamp(3.6rem, 7.5vw, 7rem); line-height: .9; letter-spacing: -.065em; font-weight: 700; }
h1 em { font-family: "Playfair Display", Georgia, serif; color: var(--coral); font-weight: 700; }
.intro { max-width: 660px; margin-bottom: 34px; color: #455c55; font-size: 1.08rem; }
.hero-actions, .card-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 22px; border: 1px solid var(--ink); border-radius: 999px; font-size: .9rem; font-weight: 700; text-decoration: none; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.button:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(16,41,34,.15); }
.button.primary { background: var(--ink); color: white; }
.button.ghost { background: transparent; }
.quick-card { position: relative; z-index: 1; padding: 34px; border: 1px solid rgba(16,41,34,.16); border-radius: 28px; background: rgba(255,253,248,.86); box-shadow: var(--shadow); backdrop-filter: blur(8px); }
.quick-label, .badge { display: inline-flex; padding: 7px 11px; border-radius: 999px; background: var(--coral); color: white; font-size: .68rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.quick-time { margin: 28px 0 0; font-family: "Playfair Display", Georgia, serif; font-style: italic; font-size: 4.2rem; line-height: 1; color: var(--coral); }
.quick-card h2 { margin-bottom: 10px; font-size: 1.55rem; }
.quick-card > p { color: var(--muted); }
.quick-card dl { display: grid; grid-template-columns: repeat(3, 1fr); margin: 28px 0; padding: 20px 0; border-block: 1px solid var(--line); }
.quick-card dl div + div { border-left: 1px solid var(--line); padding-left: 16px; }
dt { color: var(--muted); font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; }
dd { margin: 4px 0 0; font-size: .9rem; font-weight: 700; }
.text-link, .source-link { font-weight: 700; text-underline-offset: 3px; }

.notice { position: relative; z-index: 2; display: grid; grid-template-columns: 180px 1fr; gap: 30px; margin-top: -28px; padding: 22px 28px; border-radius: 15px; background: var(--ink); color: white; box-shadow: var(--shadow); font-size: .9rem; }
.notice span { color: #d4dfdb; }
.section { padding-block: 110px; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 50px; margin-bottom: 44px; }
.section-heading h2, .decision-band h2, .practical h2 { margin-bottom: 0; font-size: clamp(2.2rem, 4.7vw, 4.2rem); line-height: 1.03; letter-spacing: -.05em; }
.section-heading > p { max-width: 420px; margin-bottom: 5px; color: var(--muted); }

.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 18px; background: var(--white); box-shadow: 0 8px 30px rgba(16,41,34,.05); }
table { width: 100%; min-width: 1120px; border-collapse: collapse; font-size: .82rem; }
th, td { padding: 19px 16px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
thead th { background: var(--paper-2); color: #687772; font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; }
tbody tr:last-child th, tbody tr:last-child td { border-bottom: 0; }
tbody tr:hover { background: #faf7f0; }
tbody th { min-width: 190px; font-size: .88rem; }
tbody td:nth-child(2) { min-width: 255px; }
tbody td:nth-child(5) { min-width: 220px; }
.dot { display: inline-block; width: 9px; height: 9px; margin-right: 10px; border-radius: 50%; }
.dot.coral { background: var(--coral); }.dot.yellow { background: var(--yellow); }.dot.blue { background: var(--blue); }.dot.green { background: var(--green); }.dot.ink { background: var(--ink); }
.recommended { box-shadow: inset 4px 0 var(--coral); }
.mini-link { display: inline-block; white-space: nowrap; color: #173f35; font-weight: 800; text-underline-offset: 3px; }
.fine-print { margin: 14px 2px 0; color: var(--muted); font-size: .76rem; }

.decision-band { padding-block: 110px; background: var(--ink); color: white; }
.decision-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 60px; background: rgba(255,255,255,.15); }
.decision-grid article { min-height: 280px; padding: 35px; background: var(--ink); }
.decision-grid article > span { color: var(--coral); font-size: .72rem; font-weight: 800; letter-spacing: .12em; }
.decision-grid h3 { margin: 70px 0 12px; font-size: 1.35rem; }
.decision-grid p { color: #bacac4; }

.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.cruise-card { padding: 36px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: 0 8px 30px rgba(16,41,34,.05); }
.cruise-card.featured { grid-column: 1 / -1; background: #fff7f0; border-color: #e7b8aa; }
.card-topline { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.rank { font-family: "Playfair Display", Georgia, serif; color: var(--coral); font-size: 2.3rem; font-style: italic; line-height: 1; }
.badge.soft { background: var(--paper-2); color: var(--ink); }
.cruise-card h3 { margin-bottom: 4px; font-size: 1.75rem; letter-spacing: -.03em; }
.card-subtitle { color: #826d48; font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.card-copy { max-width: 720px; color: var(--muted); }
.slots { display: flex; flex-wrap: wrap; align-items: center; gap: 7px; margin: 28px 0; }
.slots strong { margin-right: 5px; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
.slots span { padding: 7px 10px; border: 1px solid var(--line); border-radius: 999px; background: white; font-size: .75rem; }
.slots b { color: var(--coral); }
.facts { display: grid; grid-template-columns: repeat(2, 1fr); margin: 0 0 30px; border-top: 1px solid var(--line); }
.facts div { padding: 15px 16px 15px 0; border-bottom: 1px solid var(--line); }
.facts div:nth-child(odd) { border-right: 1px solid var(--line); }
.facts div:nth-child(even) { padding-left: 16px; }
.source-link { font-size: .82rem; }

.practical { display: grid; grid-template-columns: .75fr 1.25fr; gap: 80px; padding: 0 0 110px; }
.practical ol { margin: 0; padding: 0; list-style: none; counter-reset: steps; }
.practical li { position: relative; padding: 22px 0 22px 60px; border-top: 1px solid var(--line); color: var(--muted); }
.practical li:last-child { border-bottom: 1px solid var(--line); }
.practical li::before { counter-increment: steps; content: "0" counter(steps); position: absolute; left: 0; color: var(--coral); font-weight: 800; }
.practical strong { color: var(--ink); }

footer { padding-block: 48px; background: #091b17; color: white; }
.footer-grid { display: flex; justify-content: space-between; gap: 40px; }
.brand.inverse { color: white; }
.footer-grid p { margin: 12px 0 0; color: #9fb1aa; font-size: .8rem; }
.footer-grid > p { text-align: right; }

:focus-visible { outline: 3px solid var(--coral); outline-offset: 3px; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; padding-top: 55px; }
  .quick-card { max-width: 600px; }
  .section-heading { align-items: start; flex-direction: column; gap: 15px; }
  .decision-grid { grid-template-columns: 1fr; }
  .decision-grid article { min-height: auto; }
  .decision-grid h3 { margin-top: 35px; }
  .cards { grid-template-columns: 1fr; }
  .cruise-card.featured { grid-column: auto; }
  .practical { grid-template-columns: 1fr; gap: 45px; }
}

@media (max-width: 640px) {
  .shell { width: min(100% - 28px, 1160px); }
  .nav { height: 74px; }
  .nav-links > a:not(.nav-cta) { display: none; }
  .nav-cta { padding: 8px 13px; }
  .hero { padding-bottom: 66px; }
  .hero-grid { padding-top: 42px; }
  h1 { font-size: clamp(3.15rem, 17vw, 5rem); }
  .intro { font-size: 1rem; }
  .quick-card { padding: 26px 22px; border-radius: 22px; }
  .quick-time { font-size: 3.4rem; }
  .quick-card dl { grid-template-columns: 1fr; }
  .quick-card dl div { display: flex; justify-content: space-between; align-items: baseline; padding: 10px 0; }
  .quick-card dl div + div { border-left: 0; border-top: 1px solid var(--line); padding-left: 0; }
  .notice { grid-template-columns: 1fr; gap: 6px; margin-top: -22px; padding: 19px; }
  .section, .decision-band { padding-block: 80px; }
  .cruise-card { padding: 27px 20px; }
  .facts { grid-template-columns: 1fr; }
  .facts div:nth-child(odd) { border-right: 0; }
  .facts div:nth-child(even) { padding-left: 0; }
  .card-actions { align-items: flex-start; flex-direction: column; }
  .button { width: 100%; }
  .footer-grid { flex-direction: column; }
  .footer-grid > p { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
