:root {
    --ink: #092c35;
    --ink-soft: #34545a;
    --cream: #f4f0e7;
    --paper: #fbfaf6;
    --sea: #0e6f78;
    --sea-light: #c7e3df;
    --coral: #e6684a;
    --line: rgba(9, 44, 53, .16);
    --shadow: 0 24px 70px rgba(9, 44, 53, .12);
    --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: Inter, sans-serif; line-height: 1.55; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button, select { cursor: pointer; }
.skip-link { position: fixed; z-index: 10000; top: 12px; left: 12px; padding: 10px 14px; border-radius: 8px; color: #fff; background: var(--ink); transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid rgba(230, 104, 74, .7); outline-offset: 3px; }
.shell { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }

.site-header { position: relative; z-index: 20; border-bottom: 1px solid var(--line); background: rgba(251, 250, 246, .92); backdrop-filter: blur(14px); }
.header-inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand-mark { width: 40px; height: 40px; display: block; flex: 0 0 auto; }
.brand-wordmark { display: grid; gap: 1px; line-height: 1; }
.brand-wordmark strong { font-family: "DM Serif Display", Georgia, serif; font-size: 17px; font-weight: 400; letter-spacing: -.02em; }
.brand-wordmark small { color: var(--sea); font-size: 9px; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; }
.nav { display: flex; gap: 30px; font-size: 14px; font-weight: 600; }
.nav a { padding: 8px 0; border-bottom: 1px solid transparent; }
.nav a:hover, .nav a:focus-visible, .nav a[aria-current="page"] { border-color: var(--ink); }

.hero { padding-block: 88px 42px; }
.hero-copy { max-width: 920px; }
.eyebrow { margin: 0 0 18px; color: var(--sea); font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.status-dot { width: 8px; height: 8px; display: inline-block; margin-right: 8px; border-radius: 50%; background: var(--coral); box-shadow: 0 0 0 5px rgba(230, 104, 74, .12); }
h1, h2 { margin: 0; font-family: "DM Serif Display", Georgia, serif; font-weight: 400; line-height: .95; letter-spacing: -.045em; }
h1 { font-size: clamp(62px, 9vw, 126px); }
h1 em, h2 em { color: var(--sea); font-weight: 400; }
.hero-lede { max-width: 700px; margin: 32px 0 0; color: var(--ink-soft); font-size: clamp(18px, 2.2vw, 25px); line-height: 1.45; }

.trip-search { display: grid; grid-template-columns: 1.5fr 1fr 1fr .55fr auto; gap: 0; margin-top: 52px; padding: 8px; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: var(--shadow); }
.field { display: grid; gap: 5px; min-width: 0; padding: 9px 16px; border-right: 1px solid var(--line); }
.field span { color: #718489; font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.field input, .field select { width: 100%; min-width: 0; padding: 0; border: 0; outline: 0; color: var(--ink); background: transparent; font-weight: 600; }
.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 18px; padding: 13px 20px; border: 1px solid transparent; border-radius: 12px; font-weight: 700; transition: transform .2s ease, background .2s ease, color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button--primary { color: #fff; background: var(--ink); }
.button--primary:hover { background: var(--sea); }
.button--light { color: var(--ink); background: var(--paper); }
.button--outline { min-height: 46px; border-color: var(--line); background: transparent; }
.button--outline:hover { color: #fff; background: var(--ink); }
.search-submit { white-space: nowrap; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 24px; margin-top: 22px; color: #718489; font-size: 12px; font-weight: 600; }
.hero-proof span::before { content: "✓"; margin-right: 8px; color: var(--sea); }
.hero-media, .page-visual { position: relative; margin: 54px 0 0; overflow: hidden; border-radius: 26px; background: var(--sea-light); }
.hero-media { height: clamp(360px, 49vw, 610px); }
.hero-media img, .page-visual img { width: 100%; height: 100%; display: block; object-fit: cover; }
.hero-media::after, .page-visual::after { content: ""; position: absolute; inset: 35% 0 0; background: linear-gradient(180deg, transparent, rgba(5,31,37,.78)); pointer-events: none; }
.hero-media figcaption, .page-visual figcaption { position: absolute; z-index: 1; right: 34px; bottom: 30px; left: 34px; display: flex; align-items: end; justify-content: space-between; gap: 30px; color: #fff; }
.hero-media figcaption span, .page-visual figcaption span { font-size: 10px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.hero-media figcaption strong, .page-visual figcaption strong { max-width: 520px; font-family: "DM Serif Display", Georgia, serif; font-size: clamp(25px, 3vw, 42px); font-weight: 400; line-height: 1.05; text-align: right; }

.home-hotels { padding-block: 100px; }
.home-hotel-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.home-hotel-card { min-width: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: #fff; transition: transform .22s ease, box-shadow .22s ease; }
.home-hotel-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.home-hotel-card > div { height: 190px; position: relative; overflow: hidden; }
.home-hotel-card img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .4s ease; }
.home-hotel-card:hover img { transform: scale(1.035); }
.home-hotel-card > div span { position: absolute; left: 14px; bottom: 14px; padding: 6px 9px; border-radius: 999px; color: #fff; background: rgba(9,44,53,.84); font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.home-hotel-card > p { margin: 19px 20px 6px; color: var(--sea); font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.home-hotel-card h3 { min-height: 72px; margin: 0; padding: 0 20px; font-family: "DM Serif Display", Georgia, serif; font-size: 25px; font-weight: 400; line-height: 1.08; }
.home-hotel-card > strong { display: block; margin: 18px 20px 20px; padding-top: 16px; border-top: 1px solid var(--line); font-size: 11px; }

.port-section { padding: 100px 0; background: var(--cream); }
.section-heading { display: grid; grid-template-columns: 1.5fr 1fr; align-items: end; gap: 60px; margin-bottom: 48px; }
.section-heading h2 { font-size: clamp(46px, 6vw, 80px); }
.section-heading > p { max-width: 480px; margin: 0 0 6px; color: var(--ink-soft); font-size: 17px; }
.section-heading--compact { align-items: start; margin-bottom: 34px; }
.section-heading--compact h2 { font-size: clamp(42px, 5vw, 64px); }

.explorer { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(390px, .92fr); align-items: start; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--paper); }
.port-list { max-height: 720px; overflow: auto; overscroll-behavior: contain; }
.port-row { display: grid; grid-template-columns: 48px 1.4fr .8fr 30px; align-items: center; gap: 16px; min-height: 90px; padding: 16px 22px; border-bottom: 1px solid var(--line); transition: background .2s ease, color .2s ease; }
.port-row:last-child { border-bottom: 0; }
.port-row:hover, .port-row:focus-visible, .port-row.is-active { color: #fff; background: var(--ink); outline: 0; }
.port-number { color: var(--coral); font-size: 12px; font-weight: 700; }
.port-main { display: grid; }
.port-main strong { font-family: "DM Serif Display", Georgia, serif; font-size: 25px; font-weight: 400; line-height: 1.1; }
.port-main small, .terminal-count { margin-top: 5px; color: #768b90; font-size: 11px; }
.port-row:is(:hover, :focus-visible, .is-active) .port-main small,
.port-row:is(:hover, :focus-visible, .is-active) .terminal-count { color: rgba(255,255,255,.66); }
.terminal-count { text-align: right; }
.row-arrow { justify-self: end; }
.map-panel { position: relative; min-width: 0; }
.map { width: 100%; height: 720px; background: var(--sea-light); }
.map--detail { height: 480px; }
.map-reset { position: absolute; z-index: 500; top: 14px; right: 14px; padding: 9px 12px; border: 1px solid var(--line); border-radius: 999px; color: var(--ink); background: rgba(255,255,255,.94); font-size: 11px; font-weight: 700; }
.map-caption { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 16px 18px 16px 22px; border-top: 1px solid var(--line); background: var(--paper); }
.map-caption > div { display: grid; gap: 4px; }
.map-caption span { color: #718489; font-size: 11px; text-transform: uppercase; letter-spacing: .1em; }
.map-caption strong { font-size: 13px; }
.map-port-link { min-height: 44px; white-space: nowrap; font-size: 12px; }
.map-caption--detail small { max-width: 210px; color: #718489; text-align: right; font-size: 11px; }
.port-marker-wrap { background: transparent; }
.port-marker { width: 34px; height: 34px; display: grid; place-items: center; border: 3px solid #fff; border-radius: 50% 50% 50% 8px; background: var(--ink); box-shadow: 0 8px 24px rgba(9,44,53,.3); transform: rotate(-45deg); transition: transform .2s ease, background .2s ease; }
.port-marker i { width: 8px; height: 8px; border-radius: 50%; background: #fff; }
.port-marker.is-active { background: var(--coral); transform: rotate(-45deg) scale(1.2); }
.hotel-marker-wrap { background: transparent; }
.hotel-marker { width: 34px; height: 34px; display: grid; place-items: center; border: 3px solid #fff; border-radius: 50%; color: #fff; background: var(--sea); box-shadow: 0 8px 24px rgba(9,44,53,.28); font-size: 12px; font-weight: 800; transition: transform .2s ease, background .2s ease; }
.hotel-marker.is-active { background: var(--coral); transform: scale(1.16); }
.leaflet-container { font-family: Inter, sans-serif; }
.leaflet-control-zoom a { color: var(--ink); background: rgba(251,250,246,.96); }
.leaflet-control-attribution { color: #526a6f; background: rgba(244,240,231,.84) !important; }
.leaflet-popup-content-wrapper { padding: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 14px; background: var(--paper); box-shadow: 0 12px 30px rgba(9,44,53,.18); }
.leaflet-popup-content { font-family: Inter, sans-serif; }
.map-place-label { width: max-content !important; height: auto !important; color: #34545a; font-family: Inter, sans-serif; font-size: 10px; font-weight: 800; letter-spacing: .1em; line-height: 1.2; text-align: center; text-shadow: -1px -1px 0 rgba(251,250,246,.95), 1px -1px 0 rgba(251,250,246,.95), -1px 1px 0 rgba(251,250,246,.95), 1px 1px 0 rgba(251,250,246,.95); text-transform: uppercase; }
.map-popup { min-width: 190px; display: grid; gap: 4px; }
.map-popup small, .map-popup span { color: #718489; font-size: 11px; }
.map-popup strong { font-family: "DM Serif Display", Georgia, serif; font-size: 20px; font-weight: 400; line-height: 1.15; }
.map-popup a { margin-top: 7px; padding-top: 8px; border-top: 1px solid var(--line); color: var(--sea); font-size: 11px; font-weight: 800; }
.map-popup--hotel img { width: calc(100% + 40px); height: 104px; margin: -20px -20px 9px; object-fit: cover; }
.mobile-view-switch { display: none; }

.principles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; padding-block: 100px; }
.principles article { padding: 28px 34px 36px; border-left: 1px solid var(--line); }
.principles article:last-child { border-right: 1px solid var(--line); }
.principle-icon { color: var(--coral); font-size: 12px; font-weight: 700; }
.principles h3 { margin: 40px 0 12px; font-family: "DM Serif Display", Georgia, serif; font-size: 30px; font-weight: 400; }
.principles p { margin: 0; color: var(--ink-soft); }
.closing-cta { min-height: 430px; display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 80px; padding: 52px; border-radius: 28px; color: #fff; background: var(--ink); overflow: hidden; position: relative; }
.closing-cta::after { content: ""; position: absolute; width: 380px; height: 380px; right: 14%; top: -45%; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; box-shadow: 0 0 0 50px rgba(255,255,255,.04), 0 0 0 100px rgba(255,255,255,.025); }
.closing-cta > * { position: relative; z-index: 1; }
.closing-cta .eyebrow { color: var(--sea-light); }
.closing-cta h2 { font-size: clamp(54px, 7vw, 92px); }

.port-hero { padding-block: 42px 62px; }
.back-link { display: inline-flex; margin-bottom: 70px; color: var(--ink-soft); font-size: 13px; font-weight: 600; }
.port-hero-grid { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(280px, .5fr); gap: 70px; align-items: end; }
.port-note { padding: 28px; border: 1px solid var(--line); border-radius: 18px; background: var(--cream); }
.port-note .note-icon { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--coral); }
.port-note p { margin: 30px 0 8px; color: var(--sea); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.port-note strong { display: block; font-family: "DM Serif Display", Georgia, serif; font-size: 24px; font-weight: 400; line-height: 1.35; }
.port-facts { display: flex; flex-wrap: wrap; gap: 34px; margin-top: 36px; }
.port-facts span { display: grid; gap: 3px; }
.port-facts small { color: #718489; font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }
.port-facts strong { font-size: 13px; }
.trip-search--port { grid-template-columns: 1fr 1fr .55fr auto; margin-top: 48px; }

.port-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 56px; padding-block: 88px; border-top: 1px solid var(--line); }
.port-layout h2 { margin-bottom: 34px; font-size: 56px; }
.terminal-list { border-top: 1px solid var(--line); }
.terminal-list div { display: grid; grid-template-columns: 42px 1fr; gap: 18px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.terminal-list span { color: var(--coral); font-size: 11px; font-weight: 700; }
.terminal-list strong { font-size: 15px; }
.method-note { margin-top: 24px; color: var(--ink-soft); font-size: 12px; }
.detail-map-wrap { min-width: 0; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); }
.port-photo-grid { min-width: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.port-photo-grid a { height: 210px; position: relative; overflow: hidden; border-radius: 16px; background: var(--sea-light); }
.port-photo-grid a::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(180deg, transparent, rgba(5,31,37,.76)); }
.port-photo-grid img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .35s ease; }
.port-photo-grid a:hover img { transform: scale(1.04); }
.port-photo-grid span { position: absolute; z-index: 1; right: 14px; bottom: 12px; left: 14px; overflow: hidden; color: #fff; font-size: 11px; font-weight: 700; text-overflow: ellipsis; white-space: nowrap; }

.stay-section, .hotel-section, .related-section { padding-block: 88px; }
.hotel-section--primary { padding-top: 82px; border-top: 1px solid var(--line); }
.city-explorer { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(420px, .92fr); align-items: start; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); }
.city-hotel-list { height: 780px; overflow: auto; overscroll-behavior: contain; }
.city-hotel-row { min-height: 152px; display: grid; grid-template-columns: 30px 126px minmax(0, 1fr) 74px; align-items: center; gap: 16px; padding: 14px 16px; border-bottom: 1px solid var(--line); transition: color .2s ease, background .2s ease; }
.city-hotel-row:last-child { border-bottom: 0; }
.city-hotel-row.is-active { color: #fff; background: var(--ink); }
.city-hotel-number { align-self: start; padding-top: 5px; color: var(--coral); font-size: 10px; font-weight: 800; }
.city-hotel-row > img { width: 126px; height: 106px; display: block; object-fit: cover; border-radius: 11px; background: var(--sea-light); }
.city-hotel-copy { min-width: 0; }
.city-hotel-copy p { margin: 0 0 6px; color: var(--sea); font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.city-hotel-row.is-active .city-hotel-copy p { color: var(--sea-light); }
.city-hotel-copy h3 { margin: 0 0 8px; font-family: "DM Serif Display", Georgia, serif; font-size: 23px; font-weight: 400; line-height: 1.08; }
.city-hotel-copy strong { display: block; color: var(--ink-soft); font-size: 10px; font-weight: 600; }
.city-hotel-row.is-active .city-hotel-copy strong { color: rgba(255,255,255,.68); }
.city-hotel-actions { display: grid; gap: 8px; }
.city-hotel-actions button, .city-hotel-actions a { min-height: 36px; display: flex; align-items: center; justify-content: center; gap: 5px; padding: 7px 8px; border: 1px solid var(--line); border-radius: 9px; color: var(--ink); background: #fff; font-size: 9px; font-weight: 800; }
.city-hotel-actions button span { width: 17px; height: 17px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--sea); }
.city-hotel-row.is-active .city-hotel-actions button, .city-hotel-row.is-active .city-hotel-actions a { border-color: rgba(255,255,255,.16); }
.city-map-panel { min-width: 0; position: relative; }
.city-map-panel .map { height: 692px; }
.city-map-caption { height: 88px; }
.city-map-caption span { text-transform: none; letter-spacing: 0; }
.hotel-section--primary .affiliate-note { margin-top: 18px; }
.hotel-section--primary .affiliate-note strong { color: var(--ink); }
.stay-section { background: var(--cream); width: 100%; max-width: none; padding-inline: max(20px, calc((100% - 1180px) / 2)); }
.area-grid, .hotel-grid, .related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.area-card { min-height: 300px; display: flex; flex-direction: column; padding: 28px; border: 1px solid var(--line); border-radius: 18px; background: var(--paper); }
.area-number { color: var(--coral); font-size: 12px; font-weight: 700; }
.area-card h3 { margin: 58px 0 10px; font-family: "DM Serif Display", Georgia, serif; font-size: 34px; font-weight: 400; }
.area-card p { margin: 0; color: var(--ink-soft); }
.area-card a { display: flex; justify-content: space-between; margin-top: auto; padding-top: 24px; border-top: 1px solid var(--line); font-weight: 700; font-size: 13px; }
.hotel-card { overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.hotel-visual { height: 220px; position: relative; overflow: hidden; background: var(--sea-light); }
.hotel-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(5,31,37,.68)); pointer-events: none; }
.hotel-visual img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .45s ease; }
.hotel-card:hover .hotel-visual img { transform: scale(1.035); }
.hotel-distance { position: absolute; z-index: 1; left: 16px; bottom: 14px; padding: 7px 10px; border-radius: 999px; color: #fff; background: rgba(9,44,53,.84); backdrop-filter: blur(8px); font-size: 10px; font-weight: 800; }
.hotel-copy { padding: 26px; }
.hotel-copy > p { margin: 0 0 7px; color: var(--sea); font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.hotel-copy h3 { min-height: 64px; margin: 0 0 10px; font-family: "DM Serif Display", Georgia, serif; font-size: 27px; font-weight: 400; line-height: 1.15; }
.hotel-copy > span { min-height: 48px; display: block; color: var(--ink-soft); font-size: 13px; }
.hotel-copy .button { width: 100%; margin-top: 24px; }
.affiliate-note { margin-top: 22px; padding: 16px 18px; border-left: 3px solid var(--coral); color: var(--ink-soft); background: var(--cream); font-size: 12px; }
.related-section { border-top: 1px solid var(--line); }
.related-grid a { min-height: 180px; display: flex; flex-direction: column; justify-content: end; padding: 24px; border: 1px solid var(--line); border-radius: 18px; transition: transform .2s ease, background .2s ease, color .2s ease; }
.related-grid a:hover { color: #fff; background: var(--ink); transform: translateY(-4px); }
.related-grid span { margin-bottom: auto; color: var(--coral); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.related-grid strong { font-family: "DM Serif Display", Georgia, serif; font-size: 32px; font-weight: 400; }
.related-grid small { color: #718489; }

.about-page { padding-block: 88px 120px; }
.about-page > h1 { max-width: 850px; }
.page-visual { height: clamp(320px, 45vw, 560px); margin-bottom: 76px; }
.page-visual--wide { margin-top: -24px; }
.article-cover { max-width: 980px; margin-top: -38px; margin-bottom: 76px; }
.about-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; margin: 0 0 48px; background: var(--line); border: 1px solid var(--line); }
.about-grid section { min-height: 260px; padding: 36px; background: var(--paper); }
.about-grid h2 { font-family: "DM Serif Display", Georgia, serif; font-size: 36px; font-weight: 400; line-height: 1.1; }
.about-grid p { color: var(--ink-soft); }
.error-page { min-height: 65vh; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.error-page h1 { margin-bottom: 20px; }

.site-footer { padding-block: 76px 32px; color: rgba(255,255,255,.82); background: #061f25; }
.footer-grid { display: grid; grid-template-columns: 1.35fr repeat(4, 1fr); gap: 42px; }
.brand--footer { color: #fff; }
.brand--footer .brand-wordmark small { color: var(--sea-light); }
.footer-brand p { max-width: 260px; color: rgba(255,255,255,.55); }
.footer-column { display: grid; align-content: start; gap: 11px; font-size: 12px; }
.footer-column strong { margin-bottom: 8px; color: #fff; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.footer-column a { color: rgba(255,255,255,.62); transition: color .2s ease; }
.footer-column a:hover { color: #fff; }
.footer-small { grid-column: 1 / -1; margin: 30px 0 0; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); font-size: 11px; }

.information-page { padding-block: 54px 120px; }
.information-hero { max-width: 980px; margin-bottom: 86px; }
.information-hero h1 { font-size: clamp(54px, 8vw, 106px); }
.information-layout { display: grid; grid-template-columns: 260px minmax(0, 720px); justify-content: space-between; gap: 80px; }
.information-index { position: sticky; top: 28px; height: max-content; display: grid; align-content: start; gap: 13px; }
.information-index > span { margin-bottom: 8px; color: var(--sea); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.information-index a { color: var(--ink-soft); font-size: 12px; }
.information-index a:hover { color: var(--sea); }
.information-content section { padding-bottom: 48px; margin-bottom: 48px; border-bottom: 1px solid var(--line); scroll-margin-top: 30px; }
.information-content section > span { color: var(--coral); font-size: 11px; font-weight: 800; }
.information-content h2 { margin: 16px 0 22px; font-size: clamp(38px, 5vw, 54px); line-height: 1; }
.information-content p { margin: 0; color: var(--ink-soft); font-size: 18px; line-height: 1.72; }
.information-callout { padding: 32px; border-radius: 20px; color: #fff; background: var(--ink); }
.information-callout span { color: var(--sea-light); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.information-callout p { margin: 14px 0 0; color: #fff; font-family: "DM Serif Display", Georgia, serif; font-size: 28px; line-height: 1.3; }

.home-guides, .guides-page, .directory-page { padding-block: 96px 120px; }
.home-guides { border-top: 1px solid var(--line); }
.page-intro { max-width: 980px; margin-bottom: 76px; }
.guide-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.guide-card { min-height: 390px; display: flex; flex-direction: column; padding: 28px; border: 1px solid var(--line); border-radius: 20px; background: #fff; transition: transform .22s ease, color .22s ease, background .22s ease; }
.guide-card:hover { color: #fff; background: var(--ink); transform: translateY(-5px); }
.guide-card > span { color: var(--coral); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.guide-card h2 { margin: 70px 0 18px; font-size: 39px; line-height: 1; }
.guide-card p { margin: 0; color: var(--ink-soft); font-size: 14px; }
.guide-card:hover p { color: rgba(255,255,255,.68); }
.guide-card > strong { margin-top: auto; padding-top: 24px; border-top: 1px solid var(--line); font-size: 12px; }
.directory-prompt { min-height: 130px; display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-top: 18px; padding: 26px 32px; border-radius: 20px; color: #fff; background: var(--sea); }
.directory-prompt span { display: grid; gap: 4px; }
.directory-prompt small { color: var(--sea-light); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.directory-prompt strong { font-family: "DM Serif Display", Georgia, serif; font-size: 34px; font-weight: 400; }
.directory-prompt b { font-size: 32px; }
.directory-photo-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin: -26px 0 70px; }
.directory-photo-strip a { height: 230px; position: relative; overflow: hidden; border-radius: 16px; background: var(--sea-light); }
.directory-photo-strip a::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(180deg, transparent, rgba(5,31,37,.78)); }
.directory-photo-strip img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .35s ease; }
.directory-photo-strip a:hover img { transform: scale(1.04); }
.directory-photo-strip span { position: absolute; z-index: 1; right: 14px; bottom: 12px; left: 14px; overflow: hidden; color: #fff; font-size: 10px; font-weight: 700; text-overflow: ellipsis; white-space: nowrap; }
.region-nav { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 76px; }
.region-nav a { padding: 10px 14px; border: 1px solid var(--line); border-radius: 999px; font-size: 11px; font-weight: 700; }
.directory-region { padding: 66px 0; border-top: 1px solid var(--line); scroll-margin-top: 24px; }
.directory-heading { display: flex; align-items: center; justify-content: space-between; }
.directory-heading span { color: #718489; font-size: 12px; }
.directory-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.directory-card { min-height: 190px; display: flex; flex-direction: column; padding: 20px; border: 1px solid var(--line); border-radius: 16px; background: var(--paper); transition: transform .2s ease, background .2s ease, color .2s ease; }
.directory-card:hover { color: #fff; background: var(--ink); transform: translateY(-3px); }
.directory-card--ready { background: var(--cream); }
.directory-card > span { color: var(--sea); font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.directory-card:hover > span { color: var(--sea-light); }
.directory-card strong { margin-top: auto; font-family: "DM Serif Display", Georgia, serif; font-size: 28px; font-weight: 400; line-height: 1.05; }
.directory-card small { margin-top: 7px; color: #718489; font-size: 10px; }
.directory-card:hover small { color: rgba(255,255,255,.62); }
.article-page { padding-block: 56px 120px; }
.article-header { max-width: 980px; margin-bottom: 80px; }
.article-header h1 { font-size: clamp(54px, 8vw, 108px); }
.article-layout { display: grid; grid-template-columns: 270px minmax(0, 720px); justify-content: space-between; gap: 80px; }
.article-index { display: grid; align-content: start; gap: 13px; position: sticky; top: 28px; height: max-content; }
.article-index span { margin-bottom: 8px; color: var(--sea); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.article-index a { color: var(--ink-soft); font-size: 12px; }
.article-content section { padding: 0 0 52px; margin-bottom: 52px; border-bottom: 1px solid var(--line); scroll-margin-top: 30px; }
.article-content section > span { color: var(--coral); font-size: 11px; font-weight: 800; }
.article-content h2 { margin: 18px 0 24px; font-size: 52px; line-height: 1; }
.article-content p { color: var(--ink-soft); font-size: 18px; line-height: 1.7; }
.article-takeaway { padding: 30px; border-radius: 18px; color: #fff; background: var(--ink); }
.article-takeaway span { color: var(--sea-light); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.article-takeaway p { margin-bottom: 0; color: #fff; font-family: "DM Serif Display", Georgia, serif; font-size: 28px; line-height: 1.3; }
.source-link { font-size: 12px !important; }

@media (max-width: 900px) {
    .trip-search { grid-template-columns: 1fr 1fr; gap: 1px; padding: 0; overflow: hidden; }
    .field { min-height: 72px; border-right: 0; border-bottom: 1px solid var(--line); padding: 14px 16px; }
    .field--port { grid-column: 1 / -1; }
    .field--guests { border-bottom: 0; }
    .search-submit { min-height: 72px; border-radius: 0; }
    .section-heading, .port-hero-grid, .port-layout { grid-template-columns: 1fr; }
    .section-heading { gap: 24px; }
    .home-hotel-grid, .directory-photo-strip { grid-template-columns: 1fr 1fr; }
    .explorer { grid-template-columns: 1fr; overflow: visible; }
    .mobile-view-switch { display: grid; grid-template-columns: 1fr 1fr; padding: 6px; border-bottom: 1px solid var(--line); background: var(--paper); }
    .mobile-view-switch button { padding: 10px; border: 0; border-radius: 8px; color: var(--ink-soft); background: transparent; font-weight: 700; }
    .mobile-view-switch button.is-active { color: #fff; background: var(--ink); }
    .explorer[data-mobile-view="map"] .port-list { display: none; }
    .explorer:not([data-mobile-view="map"]) .map-panel { display: none; }
    .port-list { max-height: none; }
    .port-row { grid-template-columns: 38px 1fr 28px; }
    .terminal-count { display: none; }
    .map { height: 560px; }
    .city-explorer { grid-template-columns: 1fr; }
    .city-hotel-list { height: 680px; }
    .city-map-panel .map { height: 520px; }
    .city-map-caption { height: auto; min-height: 88px; }
    .principles, .area-grid, .hotel-grid, .related-grid { grid-template-columns: 1fr; }
    .principles article { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
    .port-hero-grid { gap: 34px; }
    .back-link { margin-bottom: 46px; }
    .trip-search--port { grid-template-columns: 1fr 1fr; }
    .closing-cta { min-height: 380px; align-items: flex-start; flex-direction: column; }
    .guide-grid { grid-template-columns: 1fr 1fr; }
    .directory-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
    .footer-brand { grid-row: span 2; }
    .information-layout { grid-template-columns: 1fr; gap: 46px; }
    .information-index { position: static; padding-bottom: 28px; border-bottom: 1px solid var(--line); }
    .article-layout { grid-template-columns: 1fr; gap: 45px; }
    .article-index { position: static; padding-bottom: 28px; border-bottom: 1px solid var(--line); }
}

@media (max-width: 620px) {
    .shell { width: min(100% - 28px, 1180px); }
    .header-inner { min-height: 96px; align-items: flex-start; flex-direction: column; justify-content: center; gap: 9px; padding-block: 15px; }
    .nav { width: 100%; gap: 18px; padding-left: 47px; font-size: 12px; }
    .hero { padding-block: 62px 28px; }
    h1 { font-size: clamp(52px, 16vw, 80px); }
    .hero-lede { margin-top: 24px; font-size: 18px; }
    .trip-search { grid-template-columns: 1fr; margin-top: 36px; }
    .field--port { grid-column: auto; }
    .field--guests { border-bottom: 1px solid var(--line); }
    .hero-proof { gap: 10px 18px; }
    .hero-media { height: 285px; margin-top: 38px; border-radius: 18px; }
    .hero-media figcaption, .page-visual figcaption { right: 18px; bottom: 17px; left: 18px; align-items: flex-start; flex-direction: column; gap: 7px; }
    .hero-media figcaption strong, .page-visual figcaption strong { max-width: 310px; font-size: 25px; text-align: left; }
    .home-hotels { padding-block: 72px; }
    .home-hotel-grid { grid-template-columns: 1fr; }
    .home-hotel-card > div { height: 220px; }
    .home-hotel-card h3 { min-height: 0; }
    .port-section { padding-block: 72px; }
    .section-heading h2 { font-size: 47px; }
    .port-row { min-height: 84px; padding: 13px 15px; gap: 10px; }
    .port-main strong { font-size: 23px; }
    .map { height: 480px; }
    .map-caption { align-items: stretch; flex-direction: column; gap: 12px; }
    .map-port-link { width: 100%; }
    .map-caption--detail small { max-width: none; text-align: left; }
    .principles { padding-block: 70px; }
    .principles article { padding-inline: 22px; }
    .closing-cta { width: calc(100% - 28px); min-height: 420px; margin-bottom: 50px; padding: 30px; }
    .closing-cta h2 { font-size: 54px; }
    .port-hero { padding-block: 30px 44px; }
    .port-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
    .trip-search--port { grid-template-columns: 1fr; }
    .port-layout, .stay-section, .hotel-section, .related-section { padding-block: 64px; }
    .port-layout h2 { font-size: 46px; }
    .port-photo-grid { gap: 7px; }
    .port-photo-grid a { height: 145px; border-radius: 12px; }
    .map--detail { height: 390px; }
    .city-explorer { overflow: visible; border-radius: 16px; }
    .city-hotel-list { height: auto; }
    .city-hotel-row { min-height: 0; grid-template-columns: 22px 88px minmax(0, 1fr); gap: 10px; padding: 12px; }
    .city-hotel-row > img { width: 88px; height: 82px; }
    .city-hotel-copy h3 { font-size: 19px; }
    .city-hotel-copy p { font-size: 8px; }
    .city-hotel-actions { grid-column: 2 / -1; grid-template-columns: 1fr 1fr; }
    .city-map-panel { border-top: 1px solid var(--line); }
    .city-map-panel .map { height: 420px; }
    .city-map-caption { height: auto; }
    .section-heading--compact h2 { font-size: 46px; }
    .hotel-copy h3 { min-height: 0; }
    .about-page { padding-block: 64px 90px; }
    .page-visual { height: 270px; margin-top: 38px; margin-bottom: 52px; border-radius: 18px; }
    .page-visual--wide, .article-cover { margin-top: -16px; }
    .about-grid { grid-template-columns: 1fr; margin-top: 0; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-brand { grid-row: auto; }
    .information-page { padding-block: 38px 88px; }
    .information-hero { margin-bottom: 58px; }
    .information-content p { font-size: 16px; }
    .home-guides, .guides-page, .directory-page { padding-block: 70px 88px; }
    .guide-grid { grid-template-columns: 1fr; }
    .guide-card { min-height: 320px; }
    .guide-card h2 { margin-top: 54px; font-size: 36px; }
    .directory-prompt { align-items: flex-start; }
    .directory-prompt strong { font-size: 27px; }
    .directory-grid { grid-template-columns: 1fr 1fr; }
    .directory-photo-strip { grid-template-columns: 1fr 1fr; gap: 7px; margin-top: -20px; margin-bottom: 54px; }
    .directory-photo-strip a { height: 155px; border-radius: 12px; }
    .directory-card { min-height: 165px; }
    .article-page { padding-block: 38px 88px; }
    .article-header { margin-bottom: 56px; }
    .article-content h2 { font-size: 42px; }
    .article-content p { font-size: 16px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
