@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&display=swap');

:root {
  --navy: #0B1D35;
  --navy-mid: #132640;
  --navy-light: #1A3354;
  --teal: #1A7A9A;
  --teal-light: #2595BD;
  --teal-pale: #E6F4F9;
  --gold: #C5A05A;
  --gold-light: #D4B97A;
  --gold-pale: #FAF5EC;
  --white: #FFFFFF;
  --off-white: #F6F4EF;
  --light-gray: #ECEAE5;
  --mid-gray: #8B9BAA;
  --dark-gray: #4A5B6A;
  --text-dark: #0B1D35;
  --text-body: #3D4E5C;
  --text-light: #8B9BAA;
  --border: #DDD9D0;
  --shadow-sm: 0 2px 12px rgba(11,29,53,0.08);
  --shadow-md: 0 6px 30px rgba(11,29,53,0.12);
  --shadow-lg: 0 16px 60px rgba(11,29,53,0.18);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-body);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: var(--text-dark);
  line-height: 1.25;
  font-weight: 600;
}
h1 { font-size: clamp(2rem, 4vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.8rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.05rem; }

p { margin-bottom: 1rem; line-height: 1.7; }
a { color: var(--teal); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }
ul, ol { padding-left: 1.5rem; }
li { margin-bottom: 0.4rem; line-height: 1.7; }

/* ===== CONTAINER ===== */
.container { max-width: 1240px; margin: 0 auto; padding: 0 1.5rem; }
.container-narrow { max-width: 840px; margin: 0 auto; padding: 0 1.5rem; }
.container-wide { max-width: 1480px; margin: 0 auto; padding: 0 1.5rem; }

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(11, 29, 53, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(197,160,90,0.2);
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: rgba(11, 29, 53, 0.99);
  box-shadow: var(--shadow-md);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 2rem;
}
.header-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-mark {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.logo-mark::after {
  content: '';
  position: absolute;
  bottom: 8px; left: 50%;
  transform: translateX(-50%);
  width: 22px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
}
.logo-mark::before {
  content: '';
  position: absolute;
  bottom: 10px; left: 50%;
  transform: translateX(-50%);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 14px solid rgba(255,255,255,0.85);
}
.logo-text {
  display: flex; flex-direction: column;
  gap: 0;
}
.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 2px;
  line-height: 1;
}
.logo-tagline {
  font-size: 0.58rem;
  color: var(--gold-light);
  letter-spacing: 3px;
  text-transform: uppercase;
  line-height: 1;
}

/* NAV */
.main-nav { display: flex; align-items: center; gap: 0; }
.nav-list {
  display: flex; align-items: center;
  list-style: none; padding: 0; margin: 0;
  gap: 0.2rem;
}
.nav-item { position: relative; }
.nav-link {
  display: block;
  padding: 0.5rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  letter-spacing: 0.5px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--gold-light);
  background: rgba(197,160,90,0.1);
}
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--navy-mid);
  border: 1px solid rgba(197,160,90,0.15);
  border-radius: var(--radius-md);
  min-width: 200px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: all var(--transition);
  z-index: 100;
}
.nav-item:hover .nav-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.dropdown-link {
  display: block;
  padding: 0.65rem 1.1rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  transition: all var(--transition);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.dropdown-link:first-child { border-radius: var(--radius-md) var(--radius-md) 0 0; }
.dropdown-link:last-child { border-bottom: none; border-radius: 0 0 var(--radius-md) var(--radius-md); }
.dropdown-link:hover { background: rgba(197,160,90,0.12); color: var(--gold-light); }
.has-dropdown > .nav-link::after {
  content: '▾';
  margin-left: 4px;
  font-size: 0.7rem;
  opacity: 0.7;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px; height: 38px;
  cursor: pointer;
  background: none; border: none;
  padding: 0.3rem;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* MOBILE MENU */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--navy);
  border-top: 1px solid rgba(197,160,90,0.15);
  padding: 1rem 0 1.5rem;
  z-index: 999;
  max-height: calc(100vh - 72px);
  overflow-y: auto;
}
.mobile-menu.open { display: block; }
.mobile-nav-list { list-style: none; padding: 0; margin: 0; }
.mobile-nav-link {
  display: block;
  padding: 0.75rem 1.5rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  text-decoration: none;
}
.mobile-nav-link:hover { color: var(--gold-light); background: rgba(197,160,90,0.07); }
.mobile-sub { padding-left: 1rem; border-left: 2px solid var(--teal); margin: 0.3rem 0 0.3rem 1.5rem; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 4.5rem 0 0;
  border-top: 1px solid rgba(197,160,90,0.15);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo-name { font-size: 1.6rem; }
.footer-brand p {
  margin-top: 1rem;
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
}
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 0.6rem;
  margin-top: 0.8rem;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.7);
}
.footer-contact-icon {
  width: 18px; height: 18px;
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 1px;
}
.footer-col h5 {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 0;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p, .footer-bottom a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
}
.footer-bottom a:hover { color: var(--gold-light); }
.footer-policy-links { display: flex; gap: 1.2rem; flex-wrap: wrap; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.75rem 1.8rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn-primary:hover {
  background: var(--teal-light);
  border-color: var(--teal-light);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(26,122,154,0.35);
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  font-weight: 600;
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--navy);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(197,160,90,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.btn-outline:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.8);
  color: var(--white);
}
.btn-sm { padding: 0.5rem 1.2rem; font-size: 0.82rem; }
.btn-lg { padding: 0.95rem 2.4rem; font-size: 0.95rem; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: var(--navy);
  padding: 8rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('../images/hero-ship.jpg') center/cover no-repeat;
  opacity: 0.12;
}
.page-hero-content {
  position: relative;
  z-index: 1;
}
.page-hero-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,0.72); font-size: 1.05rem; max-width: 600px; }
.breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  margin-top: 1.5rem;
  font-size: 0.8rem;
}
.breadcrumb a { color: rgba(255,255,255,0.55); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { color: rgba(255,255,255,0.35); }
.breadcrumb .current { color: var(--gold-light); }

/* ===== SECTIONS ===== */
.section { padding: 5.5rem 0; }
.section-sm { padding: 3.5rem 0; }
.section-lg { padding: 7rem 0; }
.section-dark { background: var(--navy); }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-dark p, .section-dark li { color: rgba(255,255,255,0.72); }
.section-off { background: var(--off-white); }
.section-teal-pale { background: var(--teal-pale); }

.section-label {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.8rem;
}
.section-dark .section-label { color: var(--gold); }
.section-title { margin-bottom: 1rem; }
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 580px;
  line-height: 1.7;
}
.section-header { margin-bottom: 3.5rem; }
.section-header-center { text-align: center; }
.section-header-center .section-subtitle { margin: 0 auto; }

/* ===== DIVIDER ===== */
.divider {
  width: 48px; height: 3px;
  background: var(--gold);
  margin: 1rem 0 1.5rem;
  border-radius: 2px;
}
.divider-center { margin: 1rem auto 1.5rem; }

/* ===== CARDS ===== */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid var(--border);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(26,122,154,0.2);
}
.card-img { width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block; }
.card-body { padding: 1.5rem; }
.card-meta {
  display: flex; align-items: center; gap: 0.8rem;
  margin-bottom: 0.6rem;
}
.card-tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-pale);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
}
.card-date { font-size: 0.78rem; color: var(--text-light); }
.card h4 { margin-bottom: 0.6rem; }
.card h4 a { color: var(--text-dark); text-decoration: none; }
.card h4 a:hover { color: var(--teal); }
.card p { font-size: 0.88rem; color: var(--text-body); margin-bottom: 1rem; }
.card-footer {
  padding: 0 1.5rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
}
.read-more {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--teal);
  text-decoration: none;
  display: flex; align-items: center; gap: 0.3rem;
  transition: gap var(--transition), color var(--transition);
}
.read-more::after { content: '→'; }
.read-more:hover { color: var(--gold); gap: 0.6rem; }

/* ===== ARTICLE ===== */
.article-content {
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--text-body);
}
.article-content h2 {
  font-size: 1.7rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--navy);
}
.article-content h3 {
  font-size: 1.3rem;
  margin-top: 2rem;
  margin-bottom: 0.8rem;
  color: var(--navy);
}
.article-content ul, .article-content ol {
  margin-bottom: 1.2rem;
}
.article-content blockquote {
  border-left: 4px solid var(--gold);
  background: var(--gold-pale);
  padding: 1.2rem 1.5rem;
  margin: 1.8rem 0;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--navy);
}
.article-content .highlight-box {
  background: var(--teal-pale);
  border: 1px solid rgba(26,122,154,0.2);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.6rem;
  margin: 1.8rem 0;
}
.article-content .highlight-box h4 { color: var(--teal); margin-bottom: 0.5rem; }
.article-lead {
  font-size: 1.18rem;
  font-weight: 400;
  color: var(--dark-gray);
  line-height: 1.7;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

/* ===== ARTICLE META ===== */
.article-meta-bar {
  display: flex; align-items: center; gap: 1.5rem;
  flex-wrap: wrap;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 1.5rem 0 2rem;
}
.meta-item {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--text-light);
}
.meta-item strong { color: var(--text-body); }

/* ===== SIDEBAR ===== */
.sidebar-widget {
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border);
}
.sidebar-widget h5 {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.2rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border);
}
.sidebar-post {
  display: flex; gap: 0.8rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.sidebar-post:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.sidebar-post-title {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.4;
  text-decoration: none;
  display: block;
  margin-bottom: 0.2rem;
}
.sidebar-post-title:hover { color: var(--teal); }
.sidebar-post-date { font-size: 0.75rem; color: var(--text-light); }

/* ===== STATS ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  padding: 2.5rem 2rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
  display: block;
}
.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.5px;
}

/* ===== FAQ ===== */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 0.8rem;
  overflow: hidden;
  background: var(--white);
}
.faq-question {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.2rem 1.5rem;
  background: none; border: none; cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
  text-align: left;
  transition: all var(--transition);
}
.faq-question:hover { background: var(--off-white); color: var(--teal); }
.faq-question.active { background: var(--teal-pale); color: var(--teal); }
.faq-icon {
  width: 22px; height: 22px; flex-shrink: 0;
  border: 1.5px solid var(--mid-gray);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  color: var(--mid-gray);
  transition: all var(--transition);
}
.faq-question.active .faq-icon {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-answer {
  display: none;
  padding: 0 1.5rem 1.3rem;
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.75;
}
.faq-answer.open { display: block; }

/* ===== CONTACT FORM ===== */
.form-group { margin-bottom: 1.3rem; }
.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.45rem;
}
.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  outline: none;
}
.form-control:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(26,122,154,0.12);
}
textarea.form-control { resize: vertical; min-height: 130px; }
.form-success {
  display: none;
  background: #E8F5E9;
  border: 1.5px solid #4CAF50;
  border-radius: var(--radius-md);
  padding: 1.2rem 1.5rem;
  color: #2E7D32;
  font-size: 0.92rem;
  font-weight: 500;
  text-align: center;
  margin-top: 1rem;
}
.form-success.show { display: block; }
.checkbox-group { display: flex; align-items: flex-start; gap: 0.6rem; margin-bottom: 1rem; }
.checkbox-group input[type="checkbox"] { margin-top: 2px; flex-shrink: 0; }
.checkbox-group label { font-size: 0.82rem; color: var(--text-body); line-height: 1.5; }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 2000;
  background: var(--navy-mid);
  border-top: 1px solid rgba(197,160,90,0.25);
  padding: 1rem 1.5rem;
  display: none;
}
.cookie-banner.show { display: block; }
.cookie-inner {
  max-width: 1240px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
}
.cookie-text {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
  flex: 1; min-width: 200px;
}
.cookie-text a { color: var(--gold-light); }
.cookie-actions { display: flex; gap: 0.7rem; flex-shrink: 0; flex-wrap: wrap; }
.btn-cookie-accept {
  padding: 0.5rem 1.3rem;
  font-size: 0.82rem;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 600;
  transition: all var(--transition);
}
.btn-cookie-accept:hover { background: var(--gold-light); }
.btn-cookie-decline {
  padding: 0.5rem 1.3rem;
  font-size: 0.82rem;
  background: transparent;
  color: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
}
.btn-cookie-decline:hover { color: var(--white); border-color: rgba(255,255,255,0.5); }

/* ===== TAG / BADGE ===== */
.tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 4px;
}
.tag-teal { background: var(--teal-pale); color: var(--teal); }
.tag-gold { background: var(--gold-pale); color: #9a7430; }
.tag-navy { background: rgba(11,29,53,0.08); color: var(--navy); }

/* ===== GRID LAYOUTS ===== */
.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: 2.5rem; }
.grid-1-2 { display: grid; grid-template-columns: 1fr 2fr; gap: 2.5rem; }

/* ===== DESTINATION CARD ===== */
.dest-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  background: var(--navy-light);
}
.dest-card img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.6s ease;
}
.dest-card:hover img { transform: scale(1.06); }
.dest-card-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(11,29,53,0.9) 0%, transparent 100%);
  padding: 1.8rem 1.5rem 1.4rem;
}
.dest-card-region {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.3rem;
}
.dest-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.dest-card-sub { font-size: 0.8rem; color: rgba(255,255,255,0.72); }
.dest-card-link {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 2;
}

/* ===== INFO BOX ===== */
.info-box {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--teal);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.2rem 1.5rem;
  margin: 1.5rem 0;
}
.info-box h5 { color: var(--teal); margin-bottom: 0.4rem; font-size: 0.9rem; }
.info-box p { margin: 0; font-size: 0.88rem; }

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 2rem; right: 1.5rem;
  z-index: 500;
  width: 42px; height: 42px;
  background: var(--navy);
  color: var(--white);
  border: 1px solid rgba(197,160,90,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  opacity: 0; pointer-events: none;
  transition: all var(--transition);
  font-size: 1.1rem;
}
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { background: var(--teal); border-color: var(--teal); transform: translateY(-2px); }

/* ===== UTILITY ===== */
.text-center { text-align: center; }
.text-teal { color: var(--teal); }
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-white { color: var(--white); }
.text-muted { color: var(--text-light); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.flex-wrap { flex-wrap: wrap; }

/* ===== POLICY PAGES ===== */
.policy-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 3rem 0 5rem;
}
.policy-content h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 0.8rem;
  color: var(--navy);
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.policy-content h2:first-of-type { border-top: none; padding-top: 0; }
.policy-content h3 { font-size: 1.1rem; margin-top: 1.4rem; margin-bottom: 0.5rem; }
.policy-content p, .policy-content li { font-size: 0.93rem; line-height: 1.8; color: var(--text-body); }
.policy-content ul, .policy-content ol { margin-bottom: 1rem; }
.policy-meta {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.5rem;
  margin-bottom: 2rem;
  font-size: 0.85rem;
  color: var(--dark-gray);
}
.policy-meta strong { color: var(--navy); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-grid .footer-col:last-child { grid-column: span 3; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.1); }
  .stat-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.1); border-right: none; }
}

@media (max-width: 900px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-2-1, .grid-1-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-grid .footer-col:last-child { grid-column: span 1; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section { padding: 3.5rem 0; }
  .page-hero { padding: 6rem 0 3rem; }
}
