/* ==========================================================================
   IMM TELECOM — PREMIUM TRAVEL JOURNAL DESIGN SYSTEM
   Palette: Ivory White, Ocean Blue, Sand & Brass, Dark Ink
   Typography: Elegant Serif Display + Crisp Sans-Serif Text
   ========================================================================== */

:root {
  /* Core Color Palette */
  --ivory-canvas: #FAF8F5;
  --ivory-pure: #FFFFFF;
  --ivory-subtle: #F3EEE7;
  --ivory-warm: #EAE3D6;
  
  --ocean-depth: #0A2239;
  --ocean-primary: #123C69;
  --ocean-azure: #1F618D;
  --ocean-mist: #EBF2F7;
  --ocean-soft: #D7E5EE;
  
  --sand-primary: #D4A373;
  --sand-gold: #C28E58;
  --sand-muted: #E2D3BE;
  --sand-border: #DACBB7;
  --sand-tag: #F6F0E6;
  
  --ink-dark: #192127;
  --ink-body: #37444F;
  --ink-muted: #6B7B88;
  --ink-border: #DCD4C8;
  
  /* Accent Stamps & Status */
  --stamp-red: #A8332A;
  --stamp-green: #2E6F40;
  --stamp-brass: #B8860B;

  /* Typography */
  --font-serif: "Playfair Display", "Songti SC", "Source Han Serif SC", "Noto Serif SC", "STSong", "Georgia", serif;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  --font-mono: "SF Mono", "Fira Code", "Courier New", monospace;

  /* Spacing & Geometry */
  --site-max-width: 1220px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --radius-pill: 9999px;

  /* Shadows with warm paper depth */
  --shadow-paper: 0 4px 20px -2px rgba(26, 34, 43, 0.06);
  --shadow-journal: 0 10px 30px -4px rgba(10, 34, 57, 0.08), 0 2px 6px 0 rgba(212, 163, 115, 0.1);
  --shadow-featured: 0 16px 40px -6px rgba(10, 34, 57, 0.15), 0 0 0 1px rgba(212, 163, 115, 0.35);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Reset & Box Sizing */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--ivory-canvas);
  color: var(--ink-body);
  font-family: var(--font-sans);
  line-height: 1.75;
  font-weight: 400;
  overflow-x: hidden;
  background-image: 
    radial-gradient(var(--sand-muted) 0.75px, transparent 0.75px),
    radial-gradient(var(--sand-muted) 0.75px, var(--ivory-canvas) 0.75px);
  background-size: 32px 32px;
  background-position: 0 0, 16px 16px;
}

/* Accessible focus outlines */
:focus-visible {
  outline: 2px solid var(--ocean-primary);
  outline-offset: 3px;
}

/* Links & Typography Defaults */
a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast), border-color var(--transition-fast);
}

img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

/* Layout Utilities */
.site-container {
  width: 100%;
  max-width: var(--site-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* ==========================================================================
   TOP JOURNAL ISSUE BAR
   ========================================================================== */
.journal-issue-bar {
  background-color: var(--ocean-depth);
  color: var(--sand-muted);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  padding: 6px 0;
  border-bottom: 1px solid rgba(212, 163, 115, 0.25);
}

.issue-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.issue-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.live-pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #48BB78;
  box-shadow: 0 0 0 2px rgba(72, 187, 120, 0.3);
  animation: pulseBeacon 2.5s infinite;
}

@keyframes pulseBeacon {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
  100% { transform: scale(1); opacity: 1; }
}

/* ==========================================================================
   MASTHEAD & NAVIGATION
   ========================================================================== */
.site-masthead {
  background-color: rgba(250, 248, 245, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--sand-border);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: all var(--transition-fast);
}

.masthead-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}

.brand-logotype {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-compass-icon {
  width: 38px;
  height: 38px;
  border: 1.5px solid var(--ocean-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, var(--ivory-subtle) 30%, var(--sand-tag) 100%);
  position: relative;
}

.brand-text-group {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ocean-depth);
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.brand-subtitle {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sand-gold);
  font-family: var(--font-mono);
}

/* Navigation Links */
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-size: 0.92rem;
  color: var(--ink-body);
  font-weight: 500;
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 1.5px;
  background-color: var(--ocean-azure);
  transition: width var(--transition-fast);
}

.nav-link:hover {
  color: var(--ocean-depth);
}

.nav-link:hover::after {
  width: 100%;
}

.masthead-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Buttons */
.btn-sand-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--ocean-primary);
  color: var(--ivory-pure);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--ocean-depth);
  box-shadow: 0 2px 6px rgba(18, 60, 105, 0.2);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.btn-sand-primary:hover {
  background-color: var(--ocean-depth);
  color: var(--sand-muted);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(10, 34, 57, 0.25);
}

.btn-sand-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: transparent;
  color: var(--ocean-depth);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--sand-gold);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.btn-sand-outline:hover {
  background-color: var(--sand-tag);
  border-color: var(--ocean-primary);
  color: var(--ocean-primary);
}

.mobile-toggle-btn {
  display: none;
  padding: 8px;
  color: var(--ocean-depth);
  border-radius: var(--radius-sm);
}

/* Mobile Drawer */
.mobile-nav-drawer {
  display: none;
  position: fixed;
  top: 74px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--ivory-canvas);
  border-bottom: 2px solid var(--sand-border);
  padding: 30px 24px;
  z-index: 99;
  flex-direction: column;
  gap: 20px;
  overflow-y: auto;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}

.mobile-nav-drawer.is-active {
  display: flex;
}

.mobile-nav-item {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--ocean-depth);
  padding: 10px 0;
  border-bottom: 1px dashed var(--sand-border);
}

/* ==========================================================================
   PANORAMIC HERO SECTION
   ========================================================================== */
.hero-panoramic {
  position: relative;
  padding: 70px 0 90px;
  overflow: hidden;
  border-bottom: 1px solid var(--sand-border);
}

/* Panoramic Sea-Sky Backdrop Gradient & CSS Wave Shapes */
.hero-backdrop-graphic {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.85;
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(212, 163, 115, 0.12) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(212, 163, 115, 0.12) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content-wrapper {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

/* Editorial Hero Left */
.journal-entry-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ocean-azure);
  background: var(--sand-tag);
  border: 1px solid var(--sand-border);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  margin-bottom: 22px;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: 3rem;
  line-height: 1.22;
  font-weight: 700;
  color: var(--ocean-depth);
  margin-bottom: 22px;
  letter-spacing: -0.01em;
}

.hero-headline em {
  font-style: italic;
  color: var(--ocean-azure);
  font-weight: 400;
  border-bottom: 2px solid var(--sand-gold);
}

.hero-lead-narrative {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--ink-body);
  margin-bottom: 34px;
}

.hero-actions-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-guarantee-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--sand-border);
  font-size: 0.84rem;
  color: var(--ink-muted);
}

.strip-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.strip-item svg {
  color: var(--sand-gold);
}

/* Panoramic Visual Frame Right */
.panoramic-voyage-frame {
  background: var(--ivory-pure);
  border: 1px solid var(--sand-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-journal);
  padding: 24px;
  position: relative;
}

.frame-brass-corner {
  position: absolute;
  width: 14px;
  height: 14px;
  border: 2px solid var(--sand-gold);
}

.frame-brass-corner.tl { top: -2px; left: -2px; border-right: none; border-bottom: none; }
.frame-brass-corner.tr { top: -2px; right: -2px; border-left: none; border-bottom: none; }
.frame-brass-corner.bl { bottom: -2px; left: -2px; border-right: none; border-top: none; }
.frame-brass-corner.br { bottom: -2px; right: -2px; border-left: none; border-top: none; }

.frame-header-stamp {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px dashed var(--sand-border);
  padding-bottom: 14px;
  margin-bottom: 18px;
}

.stamp-badge {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  color: var(--ocean-azure);
  letter-spacing: 0.08em;
}

.passport-circle-seal {
  width: 44px;
  height: 44px;
  border: 1.5px dashed var(--sand-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sand-gold);
  font-size: 0.65rem;
  font-family: var(--font-mono);
  font-weight: 700;
  transform: rotate(-10deg);
}

/* Simulated Radar / Maritime Route Visualizer */
.maritime-radar-box {
  background: var(--ocean-depth);
  border-radius: var(--radius-sm);
  padding: 20px;
  color: var(--ivory-pure);
  position: relative;
  overflow: hidden;
  margin-bottom: 18px;
}

.radar-scan-line {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(31, 97, 141, 0.4) 0%, transparent 70%);
}

.radar-header-info {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--sand-muted);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.voyage-route-nodes {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.route-node-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.06);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--sand-gold);
  font-size: 0.84rem;
}

.node-city-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.node-ping-indicator {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: #48BB78;
}

.frame-footer-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--ink-muted);
  border-top: 1px solid var(--sand-border);
  padding-top: 14px;
}

.spec-box strong {
  display: block;
  color: var(--ocean-depth);
  font-size: 0.9rem;
}

/* ==========================================================================
   SECTION COMMON HEADERS (MAGAZINE EDITORIAL STYLE)
   ========================================================================== */
.section-editorial-header {
  margin-bottom: 50px;
  text-align: center;
  position: relative;
}

.section-volume-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--sand-gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-main-heading {
  font-family: var(--font-serif);
  font-size: 2.35rem;
  color: var(--ocean-depth);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 14px;
}

.section-deck-narrative {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.02rem;
  color: var(--ink-body);
  line-height: 1.7;
}

.ornament-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 18px auto 0;
  width: 180px;
}

.ornament-rule::before,
.ornament-rule::after {
  content: '';
  height: 1px;
  flex: 1;
  background-color: var(--sand-gold);
}

.ornament-diamond {
  width: 6px;
  height: 6px;
  background-color: var(--sand-gold);
  transform: rotate(45deg);
}

/* ==========================================================================
   SECTION 01: EDITORIAL FEATURE STORIES (ASYMMETRICAL MAGAZINE SPREAD)
   ========================================================================== */
.features-journal-section {
  padding: 90px 0;
  background-color: var(--ivory-subtle);
  border-bottom: 1px solid var(--sand-border);
}

/* Feature Story 1: Wide Lead Magazine Spread */
.story-spread-lead {
  background: var(--ivory-pure);
  border: 1px solid var(--sand-border);
  border-radius: var(--radius-md);
  padding: 44px;
  box-shadow: var(--shadow-paper);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 40px;
}

.story-lead-text h3 {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  color: var(--ocean-depth);
  line-height: 1.35;
  margin-bottom: 18px;
}

.story-drop-cap::first-letter {
  font-family: var(--font-serif);
  font-size: 3.4rem;
  float: left;
  line-height: 0.85;
  margin-right: 10px;
  margin-top: 4px;
  color: var(--ocean-primary);
  font-weight: 700;
}

.story-pull-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ocean-azure);
  border-left: 3px solid var(--sand-gold);
  padding-left: 18px;
  margin: 22px 0;
}

.blueprint-diagram-panel {
  background: var(--ocean-depth);
  color: var(--ivory-pure);
  border-radius: var(--radius-sm);
  padding: 24px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  border: 1px solid rgba(212, 163, 115, 0.3);
}

.blueprint-title {
  color: var(--sand-primary);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 8px;
}

.blueprint-flow {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.flow-step {
  display: flex;
  align-items: center;
  gap: 10px;
}

.flow-arrow {
  color: var(--sand-gold);
  padding-left: 12px;
}

/* Stories 2 & 3: Twin Complementary Editorial Columns */
.stories-twin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}

.editorial-story-card {
  background: var(--ivory-pure);
  border: 1px solid var(--sand-border);
  border-radius: var(--radius-md);
  padding: 36px;
  box-shadow: var(--shadow-paper);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.story-kicker-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--sand-gold);
  margin-bottom: 12px;
}

.editorial-story-card h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--ocean-depth);
  line-height: 1.4;
  margin-bottom: 16px;
}

.platforms-inventory-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px dashed var(--sand-border);
}

.platform-badge {
  background: var(--sand-tag);
  border: 1px solid var(--sand-border);
  color: var(--ocean-depth);
  font-size: 0.78rem;
  font-family: var(--font-mono);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
}

/* ==========================================================================
   SECTION 02: DESTINATION-STYLE NODE COVERAGE (GLOBAL PORTS OF CALL)
   ========================================================================== */
.destinations-section {
  padding: 90px 0;
  border-bottom: 1px solid var(--sand-border);
  position: relative;
}

.route-filter-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.route-tab-btn {
  font-family: var(--font-mono);
  font-size: 0.84rem;
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--sand-border);
  background: var(--ivory-pure);
  color: var(--ink-body);
  transition: all var(--transition-fast);
}

.route-tab-btn.is-active,
.route-tab-btn:hover {
  background: var(--ocean-primary);
  color: var(--ivory-pure);
  border-color: var(--ocean-primary);
}

/* Destination Cards Grid */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.port-destination-card {
  background: var(--ivory-pure);
  border: 1px solid var(--sand-border);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-paper);
  position: relative;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.port-destination-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-journal);
  border-color: var(--sand-gold);
}

.port-header-line {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
}

.port-code-stamp {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ocean-primary);
  border: 1.5px solid var(--ocean-primary);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  line-height: 1;
}

.port-transit-badge {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  background: var(--ocean-mist);
  color: var(--ocean-azure);
  font-weight: 600;
}

.port-city-name {
  font-family: var(--font-serif);
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--ocean-depth);
  margin-bottom: 4px;
}

.port-coordinates {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  color: var(--sand-dark);
  margin-bottom: 14px;
}

.port-telemetry-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-top: 1px dashed var(--sand-border);
  border-bottom: 1px dashed var(--sand-border);
  margin-bottom: 12px;
  font-size: 0.85rem;
}

.latency-meter {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--stamp-green);
  display: flex;
  align-items: center;
  gap: 6px;
}

.port-best-for {
  font-size: 0.84rem;
  color: var(--ink-muted);
  line-height: 1.5;
}

/* ==========================================================================
   SECTION 03: SALON DE EXPEDITION (AI & STREAMING SUITES)
   ========================================================================== */
.expedition-salon-section {
  padding: 90px 0;
  background-color: var(--ivory-subtle);
  border-bottom: 1px solid var(--sand-border);
}

.salon-dual-spread {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.salon-panel {
  background: var(--ivory-pure);
  border: 1px solid var(--sand-border);
  border-radius: var(--radius-md);
  padding: 36px;
  box-shadow: var(--shadow-paper);
}

.salon-deck-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.salon-deck-title h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--ocean-depth);
}

.salon-lead {
  font-size: 0.95rem;
  color: var(--ink-body);
  margin-bottom: 24px;
  line-height: 1.65;
}

.salon-apps-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.salon-app-entry {
  padding: 14px;
  background: var(--sand-tag);
  border: 1px solid var(--sand-border);
  border-radius: var(--radius-sm);
}

.app-entry-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

.app-name-strong {
  font-weight: 600;
  color: var(--ocean-depth);
  font-size: 0.95rem;
}

.app-pass-stamp {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  padding: 2px 6px;
  border-radius: var(--radius-sm);
  background: var(--ivory-pure);
  border: 1px solid var(--sand-gold);
  color: var(--sand-dark);
}

.app-desc-text {
  font-size: 0.84rem;
  color: var(--ink-body);
}

/* ==========================================================================
   SECTION 04: ITINERARY-INSPIRED PRICING AREA (VOYAGE TICKETS)
   ========================================================================== */
.itinerary-pricing-section {
  padding: 90px 0;
  border-bottom: 1px solid var(--sand-border);
  position: relative;
}

.pricing-itinerary-deck {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
}

/* Boarding Pass / Ticket Style Card */
.voyage-pass-card {
  background: var(--ivory-pure);
  border: 1px solid var(--sand-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-paper);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  overflow: hidden;
}

.voyage-pass-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-journal);
}

/* Featured / Navigator's Choice Pass */
.voyage-pass-card.is-featured {
  border: 2px solid var(--sand-gold);
  box-shadow: var(--shadow-featured);
}

.featured-itinerary-ribbon {
  background: linear-gradient(135deg, var(--ocean-primary), var(--ocean-azure));
  color: var(--ivory-pure);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 6px;
  text-transform: uppercase;
}

/* Ticket Top Stub */
.ticket-stub-top {
  padding: 28px 24px 20px;
}

.ticket-folio-num {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: var(--sand-gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.ticket-class-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--ocean-depth);
  font-weight: 700;
  margin-bottom: 14px;
}

.ticket-fare-display {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}

.fare-currency {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--ocean-depth);
  font-weight: 600;
}

.fare-amount {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  line-height: 1;
  font-weight: 700;
  color: var(--ocean-depth);
}

.fare-cycle {
  font-size: 0.88rem;
  color: var(--ink-muted);
}

.ticket-quota-highlight {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  background: var(--sand-tag);
  border: 1px solid var(--sand-border);
  color: var(--ocean-primary);
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
}

/* Perforation Tear-Line Effect */
.ticket-perforation-divider {
  position: relative;
  height: 20px;
  display: flex;
  align-items: center;
}

.ticket-perforation-divider::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  border-top: 2px dashed var(--sand-border);
}

.cutout-hole-left,
.cutout-hole-right {
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: var(--ivory-canvas);
  border-radius: 50%;
  border: 1px solid var(--sand-border);
  top: 0;
  z-index: 2;
}

.cutout-hole-left {
  left: -11px;
}

.cutout-hole-right {
  right: -11px;
}

/* Ticket Body Specifications */
.ticket-body-itinerary {
  padding: 20px 24px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.itinerary-feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 26px;
  font-size: 0.88rem;
}

.feature-check-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.feature-check-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--stamp-green);
  margin-top: 2px;
}

.btn-itinerary-book {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.92rem;
  transition: all var(--transition-fast);
}

.btn-itinerary-book.solid {
  background: var(--ocean-primary);
  color: var(--ivory-pure);
  border: 1px solid var(--ocean-depth);
}

.btn-itinerary-book.solid:hover {
  background: var(--ocean-depth);
  color: var(--sand-muted);
}

.btn-itinerary-book.outline {
  background: transparent;
  color: var(--ocean-depth);
  border: 1px solid var(--sand-gold);
}

.btn-itinerary-book.outline:hover {
  background: var(--sand-tag);
  border-color: var(--ocean-primary);
}

/* ==========================================================================
   SECTION 05: EDITORIAL ESSAYS (9 SEO ARTICLES DIRECTORY)
   ========================================================================== */
.editorial-essays-section {
  padding: 90px 0;
  background-color: var(--ivory-subtle);
  border-bottom: 1px solid var(--sand-border);
}

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

.journal-article-card {
  background: var(--ivory-pure);
  border: 1px solid var(--sand-border);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-paper);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.journal-article-card:hover {
  transform: translateY(-3px);
  border-color: var(--sand-gold);
}

.article-category-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: var(--sand-dark);
  margin-bottom: 12px;
}

.article-category-badge {
  background: var(--sand-tag);
  border: 1px solid var(--sand-border);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  color: var(--ocean-depth);
}

.journal-article-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  line-height: 1.4;
  color: var(--ocean-depth);
  margin-bottom: 12px;
}

.journal-article-card h3 a:hover {
  color: var(--ocean-azure);
}

.article-excerpt-text {
  font-size: 0.88rem;
  color: var(--ink-body);
  line-height: 1.6;
  margin-bottom: 20px;
}

.article-colophon-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px dashed var(--sand-border);
  font-size: 0.8rem;
  color: var(--ink-muted);
}

.article-read-btn {
  font-weight: 600;
  color: var(--ocean-primary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.article-read-btn:hover {
  color: var(--sand-gold);
}

/* ==========================================================================
   SECTION 06: TRAVELERS' FIELD NOTES (TESTIMONIALS)
   ========================================================================== */
.field-notes-section {
  padding: 90px 0;
  border-bottom: 1px solid var(--sand-border);
}

.field-notes-triptych {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.voyager-note-slip {
  background: var(--ivory-pure);
  border: 1px solid var(--sand-border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-paper);
  position: relative;
}

.note-wax-seal {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--sand-tag);
  border: 1px solid var(--sand-gold);
  color: var(--sand-dark);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  padding: 2px 10px;
  border-radius: var(--radius-pill);
}

.note-quotation {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--ink-body);
  margin-bottom: 24px;
  position: relative;
}

.note-quotation::before {
  content: '“';
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--sand-muted);
  line-height: 0;
  position: absolute;
  top: -6px;
  left: -14px;
  opacity: 0.6;
}

.voyager-author-dossier {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px dashed var(--sand-border);
  padding-top: 16px;
}

.author-monogram-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--ocean-mist);
  border: 1px solid var(--ocean-azure);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--ocean-primary);
  font-size: 0.95rem;
}

.author-info h4 {
  font-size: 0.92rem;
  color: var(--ocean-depth);
  font-weight: 600;
}

.author-info p {
  font-size: 0.78rem;
  color: var(--ink-muted);
}

/* ==========================================================================
   SECTION 07: VOYAGE LOG & FAQ (ACCORDION)
   ========================================================================== */
.voyage-faq-section {
  padding: 90px 0;
  background-color: var(--ivory-subtle);
  border-bottom: 1px solid var(--sand-border);
}

.faq-accordion-stack {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-journal-entry {
  background: var(--ivory-pure);
  border: 1px solid var(--sand-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-paper);
}

.faq-journal-entry details {
  transition: all var(--transition-fast);
}

.faq-journal-entry summary {
  padding: 18px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  font-weight: 600;
  color: var(--ocean-depth);
  font-size: 1.02rem;
}

.faq-journal-entry summary::-webkit-details-marker {
  display: none;
}

.faq-summary-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.faq-index-log {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--sand-gold);
  letter-spacing: 0.08em;
}

.faq-toggle-arrow {
  width: 18px;
  height: 18px;
  color: var(--ocean-primary);
  transition: transform var(--transition-fast);
}

.faq-journal-entry details[open] .faq-toggle-arrow {
  transform: rotate(180deg);
}

.faq-expanded-text {
  padding: 0 24px 22px 52px;
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--ink-body);
  border-top: 1px dashed var(--sand-border);
  padding-top: 14px;
}

/* ==========================================================================
   JOURNAL COLOPHON & FOOTER
   ========================================================================== */
.site-journal-footer {
  background-color: var(--ocean-depth);
  color: var(--sand-muted);
  padding: 70px 0 30px;
  border-top: 3px double var(--sand-gold);
}

.footer-colophon-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand-column p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--sand-muted);
  margin-top: 14px;
  max-width: 320px;
}

.footer-section-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--ivory-pure);
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(212, 163, 115, 0.3);
  padding-bottom: 8px;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.86rem;
}

.footer-links-list a:hover {
  color: var(--ivory-pure);
  text-decoration: underline;
}

/* Curated Recommended Sites Line */
.footer-curated-recommendations {
  border-top: 1px dashed rgba(212, 163, 115, 0.3);
  padding: 22px 0;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.84rem;
}

.recommendations-label {
  color: var(--sand-gold);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.partner-links-pack {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.partner-link-item {
  color: var(--ivory-pure);
  text-decoration: none;
  border-bottom: 1px dotted var(--sand-gold);
  transition: color var(--transition-fast);
}

.partner-link-item:hover {
  color: var(--sand-gold);
}

.footer-colophon-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.76rem;
  color: rgba(226, 211, 190, 0.7);
  font-family: var(--font-mono);
}

/* ==========================================================================
   SUPPORTING & ARTICLE PAGE ESSENTIALS
   ========================================================================== */
.page-article-header {
  padding: 50px 0 30px;
  background-color: var(--ivory-subtle);
  border-bottom: 1px solid var(--sand-border);
}

.breadcrumbs-trail {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--ink-muted);
  margin-bottom: 16px;
}

.breadcrumbs-trail a:hover {
  color: var(--ocean-primary);
}

.article-title-major {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--ocean-depth);
  line-height: 1.3;
  margin-bottom: 16px;
}

.article-meta-dossier {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.84rem;
  color: var(--ink-muted);
  font-family: var(--font-mono);
}

.article-body-layout {
  padding: 60px 0 80px;
}

.article-body-container {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  background: var(--ivory-pure);
  border: 1px solid var(--sand-border);
  border-radius: var(--radius-md);
  padding: 44px 48px;
  box-shadow: var(--shadow-paper);
}

.article-markdown-content h2 {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  color: var(--ocean-depth);
  margin: 36px 0 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--sand-border);
}

.article-markdown-content h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--ocean-primary);
  margin: 24px 0 12px;
}

.article-markdown-content p {
  margin-bottom: 18px;
  line-height: 1.8;
  color: var(--ink-body);
}

.article-markdown-content ul,
.article-markdown-content ol {
  margin: 16px 0 22px 24px;
  line-height: 1.75;
}

.article-markdown-content li {
  margin-bottom: 8px;
}

.article-markdown-content blockquote {
  border-left: 3px solid var(--sand-gold);
  background: var(--sand-tag);
  padding: 16px 20px;
  margin: 24px 0;
  font-style: italic;
}

.article-markdown-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 0.9rem;
}

.article-markdown-content th,
.article-markdown-content td {
  border: 1px solid var(--sand-border);
  padding: 10px 14px;
  text-align: left;
}

.article-markdown-content th {
  background: var(--sand-tag);
  color: var(--ocean-depth);
  font-weight: 600;
}

.article-callout-box {
  background: var(--ocean-mist);
  border: 1px solid var(--ocean-azure);
  border-radius: var(--radius-sm);
  padding: 20px;
  margin: 28px 0;
}

/* ==========================================================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-content-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .pricing-itinerary-deck {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .essays-editorial-grid {
    grid-template-columns: 1fr 1fr;
  }

  .salon-dual-spread {
    grid-template-columns: 1fr;
  }

  .footer-colophon-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  
  .mobile-toggle-btn {
    display: block;
  }
  
  .hero-headline {
    font-size: 2.2rem;
  }
  
  .story-spread-lead {
    grid-template-columns: 1fr;
    padding: 24px;
  }
  
  .stories-twin-grid {
    grid-template-columns: 1fr;
  }
  
  .field-notes-triptych {
    grid-template-columns: 1fr;
  }
  
  .essays-editorial-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-colophon-grid {
    grid-template-columns: 1fr;
  }

  .article-body-container {
    padding: 24px 20px;
  }
  
  .faq-expanded-text {
    padding-left: 24px;
  }
}

/* ==========================================================================
   ARTICLE PAGE TWO-COLUMN LAYOUT & SIDEBAR WIDGETS
   ========================================================================== */
.top-edition-bar {
  background-color: var(--ocean-depth);
  color: var(--sand-muted);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  padding: 6px 0;
  border-bottom: 1px solid rgba(212, 163, 115, 0.25);
}

.edition-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.edition-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.edition-tag {
  background: var(--sand-gold);
  color: var(--ocean-depth);
  font-weight: 700;
  padding: 2px 6px;
  border-radius: var(--radius-sm);
}

.site-header {
  background-color: rgba(250, 248, 245, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--sand-border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.brand-logo {
  display: flex;
  flex-direction: column;
}

.brand-tagline {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sand-gold);
  font-family: var(--font-mono);
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--ocean-primary);
  color: var(--ivory-pure);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--ocean-depth);
  box-shadow: 0 2px 6px rgba(18, 60, 105, 0.2);
  transition: all var(--transition-fast);
}

.btn-cta:hover {
  background-color: var(--ocean-depth);
  color: var(--sand-muted);
}

.article-header-hero {
  padding: 40px 0 24px;
  border-bottom: 1px solid var(--sand-border);
  margin-bottom: 36px;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--ink-muted);
  margin-bottom: 14px;
}

.breadcrumb-sep {
  color: var(--sand-gold);
}

.article-hero-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  line-height: 1.3;
  color: var(--ocean-depth);
  margin-bottom: 14px;
}

.article-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--ink-muted);
}

.article-layout-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
  margin-bottom: 70px;
}

.article-main-column {
  background: var(--ivory-pure);
  border: 1px solid var(--sand-border);
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-paper);
}

.article-lead-p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--ink-body);
  border-left: 3px solid var(--sand-gold);
  padding-left: 18px;
  margin-bottom: 24px;
  font-style: italic;
}

.article-prose h2 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--ocean-depth);
  margin: 34px 0 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--sand-border);
}

.article-prose h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--ocean-primary);
  margin: 22px 0 12px;
}

.article-prose p {
  margin-bottom: 16px;
  line-height: 1.8;
  color: var(--ink-body);
}

.article-prose ul,
.article-prose ol {
  margin: 16px 0 20px 24px;
  line-height: 1.75;
}

.article-prose li {
  margin-bottom: 8px;
}

.article-prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 0.88rem;
}

.article-prose th,
.article-prose td {
  border: 1px solid var(--sand-border);
  padding: 10px 12px;
  text-align: left;
}

.article-prose th {
  background: var(--sand-tag);
  color: var(--ocean-depth);
}

/* Sidebar Widgets */
.article-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-widget {
  background: var(--ivory-pure);
  border: 1px solid var(--sand-border);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-paper);
}

.widget-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--ocean-depth);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px dashed var(--sand-border);
}

.widget-article-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.widget-article-item a {
  font-family: var(--font-serif);
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--ocean-depth);
  line-height: 1.4;
  display: block;
  margin-bottom: 4px;
}

.widget-article-item a:hover {
  color: var(--ocean-azure);
}

.widget-article-meta {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: var(--sand-dark);
}

/* Site Footer In Articles */
.site-footer {
  background-color: var(--ocean-depth);
  color: var(--sand-muted);
  padding: 50px 0 30px;
  border-top: 3px double var(--sand-gold);
}

.footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.84rem;
}

.footer-bottom-bar a {
  color: var(--sand-muted);
}

.footer-bottom-bar a:hover {
  color: var(--ivory-pure);
}

.footer-curated-links-bar {
  border-top: 1px dashed rgba(212, 163, 115, 0.3);
  padding-top: 18px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.84rem;
}

.curated-label {
  color: var(--sand-gold);
  font-family: var(--font-mono);
  font-size: 0.78rem;
}

.curated-links-group {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.curated-link-item {
  color: var(--ivory-pure);
  border-bottom: 1px dotted var(--sand-gold);
}

.curated-link-item:hover {
  color: var(--sand-gold);
}

@media (max-width: 900px) {
  .article-layout-grid {
    grid-template-columns: 1fr;
  }
}

/* Reduced Motion Preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

