/* =============================================
   VIRELLO — COASTAL MAGAZINE STYLESHEET
   Passenger Cruise Journal | Houston, TX, USA
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button, input, textarea, select { font-family: inherit; font-size: inherit; }

/* ---- CSS VARIABLES ---- */
:root {
  --navy:        #0B2D48;
  --ocean:       #1A6B8A;
  --teal:        #4A9BAD;
  --sand:        #F5EFE0;
  --cream:       #FDFAF4;
  --coral:       #C9593C;
  --gold:        #B58F2E;
  --dark:        #1C2B3A;
  --gray-700:    #3D546A;
  --gray-500:    #7A92A5;
  --gray-300:    #C5D1DC;
  --gray-100:    #EEF2F6;
  --white:       #FFFFFF;

  --ff-serif:    'Playfair Display', Georgia, 'Times New Roman', serif;
  --ff-sans:     'Inter', system-ui, -apple-system, sans-serif;

  --container:   1280px;
  --pad:         1.5rem;
  --section-py:  5rem;
  --r-sm:        4px;
  --r-md:        8px;
  --r-lg:        16px;

  --shadow-sm:   0 2px 8px rgba(11,45,72,.08);
  --shadow-md:   0 4px 20px rgba(11,45,72,.12);
  --shadow-lg:   0 8px 40px rgba(11,45,72,.16);
  --transition:  .3s ease;
}

/* ---- BASE ---- */
body {
  background: var(--cream);
  color: var(--dark);
  font-family: var(--ff-sans);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ---- TYPOGRAPHY SCALE ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-serif);
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p { margin-bottom: 1rem; color: var(--gray-700); line-height: 1.75; }
p:last-child { margin-bottom: 0; }

strong { font-weight: 600; color: var(--dark); }
em { font-style: italic; }

/* ---- LAYOUT CONTAINER ---- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--pad); }
.container--narrow { max-width: 860px; margin: 0 auto; padding: 0 var(--pad); }
.container--wide { max-width: 1440px; margin: 0 auto; padding: 0 var(--pad); }

/* ---- GRID SYSTEMS ---- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.grid-2-1 { display: grid; grid-template-columns: 2fr 1fr; gap: 3rem; }
.grid-1-2 { display: grid; grid-template-columns: 1fr 2fr; gap: 3rem; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col { display: flex; flex-direction: column; }
.gap-1 { gap: 1rem; }
.gap-2 { gap: 2rem; }
.gap-3 { gap: 3rem; }

/* ---- SECTION BASE ---- */
.section { padding: var(--section-py) 0; }
.section--light { background: var(--cream); }
.section--sand { background: var(--sand); }
.section--navy { background: var(--navy); }
.section--ocean { background: var(--ocean); }
.section--gray { background: var(--gray-100); }

.section-tag {
  display: inline-block;
  font-family: var(--ff-sans);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: .75rem;
}
.section-title { margin-bottom: 1rem; }
.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-500);
  max-width: 600px;
  font-family: var(--ff-sans);
  font-weight: 400;
  margin-bottom: 3rem;
}
.section-rule {
  width: 60px;
  height: 3px;
  background: var(--coral);
  margin: 1.25rem 0 2rem;
  display: block;
}
.section-header-centered { text-align: center; }
.section-header-centered .section-rule { margin-left: auto; margin-right: auto; }
.section-header-centered .section-subtitle { margin-left: auto; margin-right: auto; }

/* ---- TOP INFO BAR ---- */
.topbar {
  background: var(--navy);
  color: var(--gray-300);
  font-size: .8rem;
  padding: .5rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.topbar-left { display: flex; align-items: center; gap: 1.5rem; }
.topbar-right { display: flex; align-items: center; gap: 1.5rem; }
.topbar a { color: var(--gray-300); transition: color var(--transition); }
.topbar a:hover { color: var(--white); }
.topbar-divider { width: 1px; height: 14px; background: var(--gray-500); opacity: .4; }

/* ---- MAIN HEADER ---- */
.site-header {
  background: var(--white);
  box-shadow: 0 1px 0 var(--gray-100);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 2rem;
}

/* ---- LOGO ---- */
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 2px;
}
.logo-name {
  font-family: var(--ff-serif);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .02em;
}
.logo-tagline {
  font-family: var(--ff-sans);
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--coral);
}

/* ---- NAVIGATION ---- */
.main-nav { display: flex; align-items: center; gap: .25rem; }
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: .85rem;
  font-weight: 500;
  color: var(--gray-700);
  padding: .5rem .8rem;
  border-radius: var(--r-sm);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav-link:hover { color: var(--ocean); background: var(--gray-100); }
.nav-link.active { color: var(--navy); font-weight: 600; }
.nav-link svg { width: 12px; height: 12px; transition: transform var(--transition); flex-shrink: 0; }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

/* ---- DROPDOWN ---- */
.dropdown-menu {
  position: absolute;
  top: calc(100% + .5rem);
  left: 0;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: .5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  z-index: 100;
}
.nav-item:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-link {
  display: block;
  padding: .65rem 1.25rem;
  font-size: .85rem;
  color: var(--gray-700);
  transition: color var(--transition), background var(--transition);
  border-left: 3px solid transparent;
}
.dropdown-link:hover { color: var(--ocean); background: var(--sand); border-left-color: var(--coral); }
.dropdown-divider { height: 1px; background: var(--gray-100); margin: .35rem 0; }

/* ---- BURGER BUTTON ---- */
.burger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: .4rem;
}
.burger-btn span { display: block; width: 24px; height: 2px; background: var(--navy); transition: all var(--transition); border-radius: 2px; }
.burger-btn.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger-btn.active span:nth-child(2) { opacity: 0; }
.burger-btn.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- MOBILE NAV OVERLAY ---- */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 999;
  padding: 5rem 2rem 2rem;
  overflow-y: auto;
  flex-direction: column;
  gap: 0;
}
.mobile-nav.open { display: flex; }
.mobile-nav .nav-link {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 500;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  border-radius: 0;
  width: 100%;
}
.mobile-nav .nav-link:hover { background: transparent; color: var(--teal); }
.mobile-nav-sub { padding-left: 1rem; }
.mobile-nav-sub .nav-link { font-size: .95rem; color: var(--gray-300); border-bottom-color: rgba(255,255,255,.05); }
.mobile-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
}

/* ---- HERO BANNER ---- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--navy);
}
.hero-media {
  position: relative;
  height: clamp(560px, 80vh, 820px);
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(11,45,72,.85) 40%, rgba(11,45,72,.25) 100%);
}
.hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 4rem var(--pad) 4rem;
  max-width: var(--container);
  margin: 0 auto;
}
.hero-issue {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 1.25rem;
}
.hero-issue::before { content: ''; display: block; width: 30px; height: 2px; background: var(--coral); }
.hero h1, .hero-title { color: var(--white) !important; max-width: 700px; margin-bottom: 1.25rem; }
.hero-desc { color: rgba(255,255,255,.8); font-size: 1.05rem; max-width: 550px; margin-bottom: 2rem; line-height: 1.7; }
.hero-meta { display: flex; align-items: center; gap: 1.5rem; }
.hero-meta-item { color: rgba(255,255,255,.6); font-size: .8rem; display: flex; align-items: center; gap: .4rem; }
.hero-meta-item strong { color: var(--white); }

/* ---- HERO MINI (inner pages) ---- */
.hero-mini {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  height: clamp(300px, 40vh, 450px);
}
.hero-mini img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .45;
}
.hero-mini-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem var(--pad);
}
.hero-mini-content h1 { color: var(--white) !important; margin-bottom: .75rem; }
.hero-mini-content .breadcrumb-trail { justify-content: center; }

/* ---- TICKER STRIP ---- */
.ticker-strip {
  background: var(--ocean);
  color: var(--white);
  padding: .75rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-inner { display: flex; gap: 4rem; animation: ticker 40s linear infinite; }
.ticker-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .08em;
  flex-shrink: 0;
}
.ticker-item::before { content: '◆'; font-size: .5rem; color: var(--coral); }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---- BREADCRUMBS ---- */
.breadcrumb-trail {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.breadcrumb-trail a { color: rgba(255,255,255,.7); transition: color var(--transition); }
.breadcrumb-trail a:hover { color: var(--white); }
.breadcrumb-sep { opacity: .4; }

.breadcrumb-dark {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  color: var(--gray-500);
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.breadcrumb-dark a { color: var(--ocean); transition: color var(--transition); }
.breadcrumb-dark a:hover { color: var(--navy); }
.breadcrumb-dark .breadcrumb-sep { color: var(--gray-300); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--ff-sans);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .04em;
  border-radius: var(--r-sm);
  padding: .75rem 1.75rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-align: center;
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary { background: var(--coral); color: var(--white); border-color: var(--coral); }
.btn-primary:hover { background: #b34a2d; border-color: #b34a2d; }
.btn-secondary { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-secondary:hover { background: var(--navy); color: var(--white); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,.6); }
.btn-outline-white:hover { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn-ghost { background: transparent; color: var(--ocean); border-color: transparent; padding-left: 0; padding-right: 0; }
.btn-ghost:hover { color: var(--navy); }
.btn-ghost::after { content: ' →'; }
.btn-sm { font-size: .78rem; padding: .55rem 1.25rem; }
.btn-lg { font-size: .95rem; padding: 1rem 2.25rem; }

/* ---- TAGS ---- */
.tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .3rem .75rem;
  border-radius: 50px;
  background: var(--sand);
  color: var(--ocean);
}
.tag-coral { background: rgba(201,89,60,.1); color: var(--coral); }
.tag-navy { background: var(--navy); color: var(--white); }
.tag-teal { background: rgba(74,155,173,.12); color: var(--ocean); }

/* ---- CARDS ---- */
.card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card-image { overflow: hidden; }
.card-image img { width: 100%; height: 220px; object-fit: cover; transition: transform .5s ease; }
.card:hover .card-image img { transform: scale(1.04); }
.card-body { padding: 1.5rem; }
.card-category { margin-bottom: .5rem; }
.card-title {
  font-family: var(--ff-serif);
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: .75rem;
  line-height: 1.3;
}
.card-title a:hover { color: var(--ocean); }
.card-excerpt { font-size: .9rem; color: var(--gray-500); margin-bottom: 1rem; line-height: 1.65; }
.card-meta { display: flex; align-items: center; justify-content: space-between; padding-top: 1rem; border-top: 1px solid var(--gray-100); }
.card-date { font-size: .75rem; color: var(--gray-500); }
.card-read-time { font-size: .75rem; color: var(--gray-500); }

/* ---- ROUTE CARDS ---- */
.route-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  height: 380px;
}
.route-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.route-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.route-card:hover img { transform: scale(1.06); }
.route-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,45,72,.88) 40%, transparent 80%);
}
.route-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.75rem 1.5rem;
}
.route-card-tag {
  display: inline-block;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: .5rem;
}
.route-card-title {
  font-family: var(--ff-serif);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: .5rem;
}
.route-card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: .78rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 1rem;
}
.route-card .btn-outline-white { padding: .5rem 1.25rem; font-size: .78rem; }

/* ---- SHIP CARDS ---- */
.ship-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid var(--gray-100);
}
.ship-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.ship-card-image { overflow: hidden; }
.ship-card-image img { width: 100%; height: 240px; object-fit: cover; transition: transform .5s ease; }
.ship-card:hover .ship-card-image img { transform: scale(1.03); }
.ship-card-body { padding: 1.5rem; }
.ship-card-name { font-family: var(--ff-serif); font-size: 1.3rem; color: var(--navy); margin-bottom: .4rem; }
.ship-card-line { font-size: .8rem; color: var(--ocean); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; margin-bottom: .75rem; }
.ship-card-specs { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1rem; }
.ship-spec { font-size: .8rem; color: var(--gray-500); }
.ship-spec strong { color: var(--dark); display: block; font-size: .95rem; }
.ship-card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 1rem; border-top: 1px solid var(--gray-100); }

/* ---- ARTICLE LAYOUT ---- */
.article-header { padding: 3rem 0 2rem; }
.article-category-bar {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.25rem;
}
.article-title { font-size: clamp(1.8rem, 4vw, 2.8rem); max-width: 800px; margin-bottom: 1.25rem; }
.article-subtitle { font-size: 1.15rem; color: var(--gray-500); max-width: 720px; line-height: 1.7; margin-bottom: 1.5rem; font-family: var(--ff-sans); font-weight: 400; }
.article-byline { display: flex; align-items: center; gap: 1rem; padding: 1rem 0; border-top: 1px solid var(--gray-100); border-bottom: 1px solid var(--gray-100); }
.byline-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--navy); display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 600; font-size: .9rem; flex-shrink: 0; }
.byline-info { flex: 1; }
.byline-name { font-weight: 600; font-size: .9rem; color: var(--dark); }
.byline-meta { font-size: .78rem; color: var(--gray-500); display: flex; gap: .75rem; flex-wrap: wrap; }
.article-hero-image { margin: 2rem 0; border-radius: var(--r-md); overflow: hidden; }
.article-hero-image img { width: 100%; height: clamp(300px, 45vh, 520px); object-fit: cover; }
.article-hero-image figcaption { font-size: .78rem; color: var(--gray-500); padding: .6rem .5rem; font-style: italic; }

.article-body { font-size: 1.05rem; line-height: 1.85; }
.article-body p { margin-bottom: 1.5rem; color: var(--gray-700); }
.article-body h2 { font-size: 1.6rem; color: var(--navy); margin: 2.5rem 0 1rem; }
.article-body h3 { font-size: 1.25rem; color: var(--navy); margin: 2rem 0 .75rem; }
.article-body ul, .article-body ol { margin-bottom: 1.5rem; padding-left: 1.5rem; }
.article-body li { margin-bottom: .5rem; color: var(--gray-700); line-height: 1.75; }
.article-body ul li { list-style: disc; }
.article-body ol li { list-style: decimal; }
.article-body img { border-radius: var(--r-md); margin: 2rem 0; }

/* Drop cap */
.article-body .drop-cap::first-letter {
  font-family: var(--ff-serif);
  font-size: 4.5rem;
  font-weight: 700;
  line-height: .8;
  float: left;
  margin: .05em .12em -.05em 0;
  color: var(--navy);
}

/* ---- PULL QUOTE ---- */
.pullquote {
  border-left: 4px solid var(--coral);
  padding: 1.5rem 2rem;
  margin: 2.5rem 0;
  background: var(--sand);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  position: relative;
}
.pullquote::before {
  content: '\201C';
  font-family: var(--ff-serif);
  font-size: 5rem;
  line-height: .7;
  color: var(--coral);
  opacity: .3;
  position: absolute;
  top: .5rem;
  left: 1rem;
}
.pullquote p {
  font-family: var(--ff-serif);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.6;
  margin-bottom: .5rem;
}
.pullquote cite { font-size: .8rem; color: var(--gray-500); font-style: normal; }

/* ---- INFO BOX ---- */
.info-box {
  background: rgba(26,107,138,.06);
  border: 1px solid rgba(26,107,138,.2);
  border-radius: var(--r-md);
  padding: 1.5rem;
  margin: 2rem 0;
}
.info-box-title { font-family: var(--ff-serif); font-size: 1.05rem; color: var(--ocean); margin-bottom: .75rem; display: flex; align-items: center; gap: .5rem; }
.info-box p { margin-bottom: .5rem; font-size: .92rem; }

/* ---- STATISTICS ---- */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.stat-item { text-align: center; padding: 2rem 1rem; }
.stat-number {
  font-family: var(--ff-serif);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: .5rem;
}
.stat-label {
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
}
.stat-divider { width: 1px; background: rgba(255,255,255,.15); }

.stats-light .stat-number { color: var(--navy); }
.stats-light .stat-label { color: var(--gray-500); }

/* ---- FEATURE BLOCK ---- */
.feature-block { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.feature-media { overflow: hidden; }
.feature-media img { width: 100%; height: 100%; min-height: 400px; object-fit: cover; }
.feature-content { background: var(--navy); padding: 3.5rem; display: flex; flex-direction: column; justify-content: center; gap: 1.25rem; }
.feature-content .section-tag { color: var(--coral); }
.feature-content h2, .feature-content h3 { color: var(--white); }
.feature-content p { color: rgba(255,255,255,.75); }

/* ---- TABLE ---- */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
  margin: 2rem 0;
}
.data-table th {
  background: var(--navy);
  color: var(--white);
  padding: .85rem 1.1rem;
  text-align: left;
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.data-table th:first-child { border-radius: var(--r-sm) 0 0 0; }
.data-table th:last-child { border-radius: 0 var(--r-sm) 0 0; }
.data-table td { padding: .85rem 1.1rem; border-bottom: 1px solid var(--gray-100); color: var(--gray-700); }
.data-table tr:nth-child(even) td { background: var(--sand); }
.data-table tr:hover td { background: rgba(74,155,173,.06); }
.table-wrap { overflow-x: auto; border-radius: var(--r-md); box-shadow: var(--shadow-sm); }
.table-check { color: var(--teal); font-weight: 700; }
.table-cross { color: var(--coral); }

/* ---- DESTINATION CARD ---- */
.dest-card {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  height: 280px;
  cursor: pointer;
}
.dest-card:hover img { transform: scale(1.07); }
.dest-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.dest-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(11,45,72,.8) 35%, transparent 70%); }
.dest-card-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.25rem; }
.dest-card-name { font-family: var(--ff-serif); font-size: 1.3rem; color: var(--white); margin-bottom: .25rem; }
.dest-card-country { font-size: .75rem; color: rgba(255,255,255,.7); font-weight: 500; letter-spacing: .08em; text-transform: uppercase; }

/* ---- HIGHLIGHTED LISTS ---- */
.checklist { padding: 0; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: .65rem 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: .92rem;
  color: var(--gray-700);
}
.checklist li::before { content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0; margin-top: .05rem; }

/* ---- TIPS STRIP ---- */
.tips-strip {
  background: var(--sand);
  border-radius: var(--r-lg);
  padding: 2.5rem;
  border-left: 5px solid var(--ocean);
}
.tips-strip h3 { color: var(--navy); margin-bottom: 1rem; }
.tip-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: .85rem; }
.tip-num { width: 28px; height: 28px; border-radius: 50%; background: var(--ocean); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: .78rem; font-weight: 700; flex-shrink: 0; margin-top: .1rem; }
.tip-text { font-size: .9rem; color: var(--gray-700); line-height: 1.6; }
.tip-text strong { color: var(--dark); }

/* ---- RATINGS ---- */
.rating-stars { display: flex; gap: 2px; color: var(--gold); font-size: 1rem; }
.rating-score { font-size: 1.6rem; font-weight: 700; color: var(--navy); line-height: 1; }
.rating-label { font-size: .75rem; color: var(--gray-500); }

/* ---- ACCORDION ---- */
.accordion { border: 1px solid var(--gray-100); border-radius: var(--r-md); overflow: hidden; }
.accordion-item { border-bottom: 1px solid var(--gray-100); }
.accordion-item:last-child { border-bottom: none; }
.accordion-btn {
  width: 100%;
  padding: 1.1rem 1.5rem;
  background: var(--white);
  border: none;
  text-align: left;
  font-family: var(--ff-serif);
  font-size: 1.05rem;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: background var(--transition);
}
.accordion-btn:hover { background: var(--sand); }
.accordion-btn.open { background: var(--sand); color: var(--ocean); }
.accordion-icon { transition: transform var(--transition); font-size: 1.2rem; color: var(--gray-500); }
.accordion-btn.open .accordion-icon { transform: rotate(45deg); color: var(--coral); }
.accordion-body { display: none; padding: 0 1.5rem 1.25rem; }
.accordion-body.open { display: block; }
.accordion-body p { font-size: .92rem; color: var(--gray-700); margin-bottom: .5rem; }

/* ---- NEWSLETTER ---- */
.newsletter-section { background: var(--navy); padding: 4rem 0; }
.newsletter-inner { max-width: 680px; margin: 0 auto; text-align: center; }
.newsletter-inner h2 { color: var(--white); margin-bottom: .75rem; }
.newsletter-inner p { color: rgba(255,255,255,.7); margin-bottom: 2rem; }
.newsletter-form { display: flex; gap: .75rem; justify-content: center; flex-wrap: wrap; }
.newsletter-form input[type="email"] {
  flex: 1;
  min-width: 260px;
  padding: .85rem 1.25rem;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--r-sm);
  background: rgba(255,255,255,.08);
  color: var(--white);
  font-size: .9rem;
  outline: none;
  transition: border-color var(--transition);
}
.newsletter-form input[type="email"]::placeholder { color: rgba(255,255,255,.4); }
.newsletter-form input[type="email"]:focus { border-color: rgba(255,255,255,.5); }
.newsletter-note { font-size: .75rem; color: rgba(255,255,255,.4); margin-top: 1rem; }

/* ---- CONTACT FORM ---- */
.contact-form { background: var(--white); border-radius: var(--r-lg); padding: 2.5rem; box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-bottom: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.25rem; }
.form-group label { font-size: .82rem; font-weight: 600; color: var(--dark); letter-spacing: .03em; }
.form-group input, .form-group textarea, .form-group select {
  padding: .8rem 1rem;
  border: 1px solid var(--gray-300);
  border-radius: var(--r-sm);
  color: var(--dark);
  background: var(--cream);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--ocean);
  box-shadow: 0 0 0 3px rgba(26,107,138,.1);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-success {
  display: none;
  background: #e8f5e9;
  border: 1px solid #4caf50;
  border-radius: var(--r-md);
  padding: 1.25rem 1.5rem;
  color: #2e7d32;
  font-weight: 500;
  align-items: center;
  gap: .75rem;
  margin-top: 1rem;
}
.form-success.show { display: flex; }
.form-success-icon { font-size: 1.5rem; flex-shrink: 0; }

/* ---- SIDEBAR ---- */
.sidebar { display: flex; flex-direction: column; gap: 2rem; }
.sidebar-widget { background: var(--white); border-radius: var(--r-lg); padding: 1.75rem; box-shadow: var(--shadow-sm); }
.sidebar-widget-title { font-family: var(--ff-serif); font-size: 1.1rem; color: var(--navy); margin-bottom: 1.25rem; padding-bottom: .75rem; border-bottom: 2px solid var(--sand); }
.sidebar-list { display: flex; flex-direction: column; gap: .75rem; }
.sidebar-list-item { display: flex; align-items: flex-start; gap: .75rem; padding-bottom: .75rem; border-bottom: 1px solid var(--gray-100); }
.sidebar-list-item:last-child { border-bottom: none; padding-bottom: 0; }
.sidebar-item-title { font-size: .88rem; font-weight: 500; color: var(--dark); line-height: 1.4; }
.sidebar-item-title a:hover { color: var(--ocean); }
.sidebar-item-meta { font-size: .75rem; color: var(--gray-500); }
.sidebar-mini-img { width: 64px; height: 54px; object-fit: cover; border-radius: var(--r-sm); flex-shrink: 0; }

/* ---- FACTS BAR ---- */
.facts-bar { background: var(--ocean); padding: 3rem 0; }
.facts-bar-inner { display: flex; align-items: center; gap: 3rem; justify-content: center; flex-wrap: wrap; }
.fact-item { display: flex; flex-direction: column; align-items: center; text-align: center; }
.fact-value { font-family: var(--ff-serif); font-size: 2.4rem; font-weight: 700; color: var(--white); line-height: 1; }
.fact-label { font-size: .75rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.6); margin-top: .35rem; }
.fact-sep { width: 1px; height: 50px; background: rgba(255,255,255,.2); }

/* ---- READING PROGRESS ---- */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--coral);
  z-index: 9999;
  transition: width .1s ease;
  width: 0;
}

/* ---- BACK TO TOP ---- */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 998;
  text-decoration: none;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--coral); transform: translateY(-3px); }

/* ---- COOKIE BANNER ---- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: var(--white);
  padding: 1.25rem var(--pad);
  z-index: 9997;
  box-shadow: 0 -4px 20px rgba(0,0,0,.25);
  transform: translateY(100%);
  transition: transform .4s ease;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner-inner { max-width: var(--container); margin: 0 auto; display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; justify-content: space-between; }
.cookie-banner p { font-size: .85rem; color: rgba(255,255,255,.8); margin-bottom: 0; flex: 1; min-width: 260px; }
.cookie-banner p a { color: var(--teal); text-decoration: underline; }
.cookie-actions { display: flex; gap: .75rem; flex-wrap: wrap; }

/* ---- FOOTER ---- */
.site-footer { background: var(--navy); color: rgba(255,255,255,.7); padding: 5rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3.5rem; }
.footer-brand .logo-name { color: var(--white); }
.footer-brand .logo-tagline { color: var(--coral); }
.footer-desc { font-size: .88rem; line-height: 1.75; margin-top: 1rem; color: rgba(255,255,255,.55); max-width: 280px; }
.footer-contact { margin-top: 1.5rem; display: flex; flex-direction: column; gap: .5rem; }
.footer-contact-item { font-size: .85rem; color: rgba(255,255,255,.6); display: flex; gap: .5rem; }
.footer-contact-item strong { color: rgba(255,255,255,.85); }
.footer-heading { font-family: var(--ff-sans); font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--coral); margin-bottom: 1.25rem; }
.footer-nav { display: flex; flex-direction: column; gap: .6rem; }
.footer-nav a { font-size: .88rem; color: rgba(255,255,255,.6); transition: color var(--transition); }
.footer-nav a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom-text { font-size: .8rem; color: rgba(255,255,255,.4); }
.footer-policy-links { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.footer-policy-links a { font-size: .8rem; color: rgba(255,255,255,.4); transition: color var(--transition); }
.footer-policy-links a:hover { color: rgba(255,255,255,.8); }

/* ---- POLICY PAGES ---- */
.policy-wrap { max-width: 800px; margin: 0 auto; padding: 4rem var(--pad); }
.policy-header { margin-bottom: 3rem; }
.policy-header h1 { font-size: clamp(1.8rem, 4vw, 2.5rem); color: var(--navy); margin-bottom: .75rem; }
.policy-meta { display: flex; align-items: center; gap: 1.5rem; font-size: .85rem; color: var(--gray-500); flex-wrap: wrap; }
.policy-body { font-size: .97rem; line-height: 1.85; }
.policy-body h2 { font-size: 1.4rem; color: var(--navy); margin: 2.5rem 0 .85rem; }
.policy-body h3 { font-size: 1.1rem; color: var(--dark); margin: 1.75rem 0 .6rem; }
.policy-body p { color: var(--gray-700); margin-bottom: 1.25rem; }
.policy-body ul, .policy-body ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.policy-body li { color: var(--gray-700); margin-bottom: .45rem; line-height: 1.7; }
.policy-body ul li { list-style: disc; }
.policy-body ol li { list-style: decimal; }
.policy-divider { width: 100%; height: 1px; background: var(--gray-100); margin: 2rem 0; }
.policy-contact-box { background: var(--sand); border-radius: var(--r-md); padding: 1.5rem; margin-top: 2rem; }
.policy-contact-box h3 { font-size: 1.05rem; color: var(--navy); margin-bottom: .75rem; }
.policy-contact-box p { font-size: .9rem; margin-bottom: .4rem; }

/* ---- MISC UTILITIES ---- */
.text-center { text-align: center; }
.text-right { text-align: right; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.text-coral { color: var(--coral); }
.text-ocean { color: var(--ocean); }
.text-navy { color: var(--navy); }
.text-muted { color: var(--gray-500); }
.d-none { display: none; }
.w-100 { width: 100%; }

/* ---- ANIMATED LINES (decorative) ---- */
.wave-divider { height: 3px; background: linear-gradient(90deg, transparent, var(--teal), var(--coral), var(--teal), transparent); border: none; margin: 3rem 0; opacity: .35; }

/* ---- PAGE NOT FOUND ---- */
.not-found { min-height: 60vh; display: flex; align-items: center; justify-content: center; text-align: center; }
.not-found-code { font-family: var(--ff-serif); font-size: 8rem; color: var(--gray-100); line-height: 1; }

/* ---- HORIZONTAL SCROLLER (routes/destinations) ---- */
.h-scroll-track { display: flex; gap: 1.5rem; overflow-x: auto; padding-bottom: 1rem; scrollbar-width: thin; scrollbar-color: var(--gray-300) transparent; }
.h-scroll-track::-webkit-scrollbar { height: 4px; }
.h-scroll-track::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: 4px; }
.h-scroll-card { flex: 0 0 300px; }

/* ---- HIGHLIGHT BANNER ---- */
.highlight-banner {
  background: var(--sand);
  border-radius: var(--r-lg);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.highlight-banner-icon { font-size: 2.5rem; flex-shrink: 0; }
.highlight-banner h3 { color: var(--navy); margin-bottom: .35rem; }
.highlight-banner p { color: var(--gray-700); margin: 0; font-size: .92rem; }
