/* =============================================
   Hawaii Travel Website - Main Stylesheet
   ============================================= */

/* CSS Variables */
:root {
  --primary: #1a6b8a;
  --primary-dark: #145571;
  --primary-light: #2a8fb3;
  --accent: #e8a045;
  --accent-dark: #c8832a;
  --text-dark: #1e2a35;
  --text-mid: #4a5568;
  --text-light: #718096;
  --bg-white: #ffffff;
  --bg-light: #f8f7f5;
  --bg-cream: #f4f1ec;
  --bg-sand: #ece8e0;
  --border-light: #e2ddd6;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --font-heading: 'Georgia', 'Times New Roman', serif;
  --font-body: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  --transition: all 0.3s ease;
  --max-width: 1280px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.3;
  color: var(--text-dark);
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 4vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1.2rem; color: var(--text-mid); font-size: 1.025rem; }
p:last-child { margin-bottom: 0; }

ul, ol { padding-left: 1.5rem; margin-bottom: 1.2rem; }
li { margin-bottom: 0.5rem; color: var(--text-mid); }

/* =============================================
   HEADER & NAVIGATION
   ============================================= */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
}

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

.logo-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.1;
}

.logo-subtitle {
  font-size: 0.72rem;
  color: var(--text-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

.site-nav { display: flex; align-items: center; gap: 0.25rem; }

.nav-link {
  padding: 0.5rem 0.9rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary);
  background: rgba(26, 107, 138, 0.08);
}

.nav-cta {
  margin-left: 0.5rem;
  padding: 0.55rem 1.2rem;
  background: var(--primary);
  color: white !important;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.88rem;
}

.nav-cta:hover {
  background: var(--primary-dark) !important;
  color: white !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* =============================================
   HERO SECTION
   ============================================= */

.hero {
  position: relative;
  height: 92vh;
  min-height: 600px;
  max-height: 900px;
  overflow: hidden;
  display: flex;
  align-items: center;
  margin-top: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.03);
  transition: transform 8s ease;
}

.hero:hover .hero-bg { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,40,60,0.72) 0%, rgba(15,40,60,0.3) 60%, rgba(15,40,60,0.1) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.2rem;
}

.hero h1 {
  color: white;
  max-width: 720px;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-subtitle {
  color: rgba(255,255,255,0.88);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  max-width: 560px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,160,69,0.4);
}

.btn-outline {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.6);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: white;
  color: white;
  transform: translateY(-2px);
}

.btn-primary-dark {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.btn-primary-dark:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26,107,138,0.35);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  animation: bounce 2s infinite;
}

.scroll-arrow {
  width: 28px;
  height: 28px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */

.page-hero {
  margin-top: 72px;
  position: relative;
  height: 420px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding-bottom: 3rem;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,30,50,0.85) 0%, rgba(10,30,50,0.3) 60%, rgba(10,30,50,0.1) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  margin-bottom: 0.8rem;
}

.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: white; }
.breadcrumb span { color: rgba(255,255,255,0.5); }

.page-hero h1 { color: white; text-shadow: 0 2px 20px rgba(0,0,0,0.4); margin-bottom: 0.5rem; }

.page-hero-sub {
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
  max-width: 600px;
}

/* =============================================
   LAYOUT & CONTAINERS
   ============================================= */

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section { padding: 5rem 0; }

.section-sm { padding: 3rem 0; }

.section-lg { padding: 7rem 0; }

.section-light { background: var(--bg-light); }

.section-cream { background: var(--bg-cream); }

.section-sand { background: var(--bg-sand); }

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}

.section-tag {
  display: inline-block;
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-header h2 { margin-bottom: 1rem; }

.section-header p { font-size: 1.05rem; color: var(--text-light); }

.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
  margin: 1rem auto 0;
}

/* =============================================
   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-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 2rem; }

/* =============================================
   CARDS
   ============================================= */

.card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card:hover .card-img { transform: scale(1.05); }

.card-img-wrap { overflow: hidden; }

.card-body { padding: 1.5rem; }

.card-tag {
  display: inline-block;
  background: rgba(26,107,138,0.1);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}

.card h3 { margin-bottom: 0.6rem; font-size: 1.25rem; }
.card p { font-size: 0.95rem; margin-bottom: 1rem; }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
}

.card-link:hover { gap: 0.5rem; }

/* =============================================
   FEATURE SECTIONS (text + image)
   ============================================= */

.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}

.feature-block:last-child { margin-bottom: 0; }

.feature-block.reverse { direction: rtl; }
.feature-block.reverse > * { direction: ltr; }

.feature-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.feature-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

.feature-img-badge {
  position: absolute;
  bottom: 1.2rem;
  left: 1.2rem;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  box-shadow: var(--shadow-sm);
}

.feature-text .section-tag { display: block; margin-bottom: 0.6rem; }
.feature-text h2, .feature-text h3 { margin-bottom: 1.2rem; }
.feature-text p { margin-bottom: 1rem; }

.feature-list { list-style: none; padding: 0; margin: 1.2rem 0; }

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--text-mid);
  font-size: 0.98rem;
}

.feature-list li::before {
  content: '✦';
  color: var(--accent);
  font-size: 0.7rem;
  margin-top: 0.35rem;
  flex-shrink: 0;
}

/* =============================================
   STATS / HIGHLIGHTS BAR
   ============================================= */

.stats-bar {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 3rem 0;
  color: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item { padding: 1rem; }

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.78);
  font-weight: 500;
}

/* =============================================
   INFO BOXES
   ============================================= */

.info-box {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.8rem;
  box-shadow: var(--shadow-sm);
}

.info-box-icon {
  width: 48px;
  height: 48px;
  background: rgba(26,107,138,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.info-box h4 { margin-bottom: 0.5rem; font-size: 1.1rem; }
.info-box p { font-size: 0.92rem; margin-bottom: 0; }

/* =============================================
   TIP BOXES
   ============================================= */

.tip-box {
  background: linear-gradient(135deg, rgba(26,107,138,0.06) 0%, rgba(26,107,138,0.02) 100%);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.4rem 1.6rem;
  margin: 1.5rem 0;
}

.tip-box-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.tip-box-header span:first-child { font-size: 1.1rem; }
.tip-box-header strong { color: var(--primary); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.06em; }

.tip-box p { font-size: 0.95rem; margin-bottom: 0; }

.warning-box {
  background: linear-gradient(135deg, rgba(232,160,69,0.1) 0%, rgba(232,160,69,0.04) 100%);
  border-left: 4px solid var(--accent);
}

.warning-box .tip-box-header strong { color: var(--accent-dark); }

/* =============================================
   TESTIMONIALS / QUOTE BLOCKS
   ============================================= */

.quote-block {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  position: relative;
}

.quote-block::before {
  content: '"';
  position: absolute;
  top: -0.5rem;
  left: 1.5rem;
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--primary);
  opacity: 0.15;
  line-height: 1;
}

.quote-text {
  font-style: italic;
  color: var(--text-mid);
  font-size: 1.02rem;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.quote-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.quote-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
}

.quote-name { font-weight: 600; font-size: 0.9rem; color: var(--text-dark); }
.quote-title { font-size: 0.8rem; color: var(--text-light); }

/* =============================================
   DESTINATION CARDS
   ============================================= */

.destination-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 320px;
  cursor: pointer;
  transition: var(--transition);
}

.destination-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.destination-card:hover img { transform: scale(1.08); }

.destination-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,30,50,0.8) 0%, transparent 55%);
}

.destination-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  color: white;
}

.destination-island {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 0.3rem;
}

.destination-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
}

/* =============================================
   TABLES
   ============================================= */

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}

.data-table thead { background: var(--primary); color: white; }
.data-table th { padding: 1rem 1.2rem; text-align: left; font-weight: 600; font-size: 0.88rem; }
.data-table td { padding: 0.9rem 1.2rem; border-bottom: 1px solid var(--border-light); color: var(--text-mid); }
.data-table tbody tr:last-child td { border-bottom: none; }
.data-table tbody tr:hover { background: var(--bg-light); }

/* =============================================
   FOOTER
   ============================================= */

.site-footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.8);
  padding-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo-title { color: white; }
.footer-brand .logo-subtitle { color: rgba(255,255,255,0.5); }

.footer-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin: 1rem 0 1.5rem;
}

.footer-social { display: flex; gap: 0.75rem; }

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
}

.social-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

.footer-col h5 {
  color: white;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.footer-links { list-style: none; padding: 0; margin: 0; }

.footer-links li { margin-bottom: 0.6rem; }

.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover { color: white; padding-left: 4px; }

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.7rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
}

.footer-contact-item span:first-child { font-size: 1rem; }

.footer-bottom {
  padding: 1.4rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

.footer-copyright a { color: rgba(255,255,255,0.75); }
.footer-copyright a:hover { color: white; }

.footer-legal { display: flex; gap: 1.5rem; }

.footer-legal a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  transition: var(--transition);
}

.footer-legal a:hover { color: rgba(255,255,255,0.8); }

/* Cookie Notice */
.cookie-notice {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  max-width: 520px;
  background: var(--text-dark);
  color: rgba(255,255,255,0.85);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.6rem;
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  border: 1px solid rgba(255,255,255,0.1);
  display: none;
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.cookie-notice.show { display: block; }

.cookie-notice p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.cookie-notice p a { color: var(--primary-light); }

.cookie-actions { display: flex; gap: 0.75rem; }

.cookie-accept {
  flex: 1;
  padding: 0.6rem 1rem;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.cookie-accept:hover { background: var(--primary-dark); }

.cookie-decline {
  padding: 0.6rem 1rem;
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  cursor: pointer;
  transition: var(--transition);
}

.cookie-decline:hover { color: white; border-color: rgba(255,255,255,0.5); }

/* =============================================
   ARTICLE / LONG-FORM TEXT
   ============================================= */

.article-content h2 {
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--bg-sand);
}

.article-content h3 { margin: 2rem 0 0.8rem; color: var(--primary); }
.article-content h4 { margin: 1.5rem 0 0.6rem; }
.article-content p { font-size: 1.03rem; line-height: 1.85; color: var(--text-mid); }
.article-content ul, .article-content ol { margin-bottom: 1.5rem; }
.article-content li { margin-bottom: 0.7rem; color: var(--text-mid); line-height: 1.7; }

/* =============================================
   PAGE LAYOUT
   ============================================= */

.content-with-sidebar {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: start;
}

.sidebar { position: sticky; top: 100px; }

.sidebar-widget {
  background: var(--bg-light);
  border-radius: var(--radius-md);
  padding: 1.6rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border-light);
}

.sidebar-widget h4 {
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--border-light);
  font-size: 1rem;
}

.sidebar-list { list-style: none; padding: 0; margin: 0; }
.sidebar-list li { padding: 0.5rem 0; border-bottom: 1px solid var(--border-light); font-size: 0.92rem; }
.sidebar-list li:last-child { border-bottom: none; }
.sidebar-list a { color: var(--text-mid); }
.sidebar-list a:hover { color: var(--primary); }

/* =============================================
   SEASON / WEATHER CARDS
   ============================================= */

.season-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.season-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.season-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.season-icon { font-size: 2.2rem; margin-bottom: 0.7rem; }
.season-name { font-weight: 700; margin-bottom: 0.4rem; color: var(--text-dark); }
.season-temp { color: var(--primary); font-size: 1.1rem; font-weight: 600; margin-bottom: 0.5rem; }
.season-desc { font-size: 0.85rem; color: var(--text-light); }

/* =============================================
   HIGHLIGHTS STRIP
   ============================================= */

.highlights-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  background: var(--bg-cream);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.highlight-item {
  padding: 1.8rem 1rem;
  text-align: center;
  border-right: 1px solid var(--border-light);
  transition: var(--transition);
}

.highlight-item:last-child { border-right: none; }
.highlight-item:hover { background: rgba(26,107,138,0.05); }

.highlight-icon { font-size: 1.8rem; margin-bottom: 0.4rem; }
.highlight-label { font-size: 0.78rem; font-weight: 600; color: var(--text-mid); text-transform: uppercase; letter-spacing: 0.06em; }

/* =============================================
   GALLERY GRID
   ============================================= */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 240px);
  gap: 1rem;
}

.gallery-item {
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-item.tall { grid-row: span 2; }

/* =============================================
   BACK TO TOP
   ============================================= */

.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
  z-index: 500;
}

.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { background: var(--primary-dark); transform: translateY(-3px); }

/* =============================================
   UTILITY CLASSES
   ============================================= */

.text-center { text-align: center; }
.text-right { text-align: right; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.gap-sm { gap: 1rem; }
.color-primary { color: var(--primary); }
.color-accent { color: var(--accent); }
.fw-bold { font-weight: 700; }
.tag-pill {
  display: inline-block;
  background: rgba(26,107,138,0.1);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.25rem 0.7rem;
  border-radius: 50px;
  margin: 0.2rem;
}

/* =============================================
   RESPONSIVE DESIGN
   ============================================= */

@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .season-grid { grid-template-columns: repeat(2, 1fr); }
  .highlights-strip { grid-template-columns: repeat(3, 1fr); }
  .highlight-item:nth-child(3) { border-right: none; }
  .highlight-item:nth-child(n+4) { border-top: 1px solid var(--border-light); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .feature-block { grid-template-columns: 1fr; gap: 2rem; }
  .feature-block.reverse { direction: ltr; }
  .content-with-sidebar { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gallery-item.tall { grid-row: span 1; }
}

@media (max-width: 768px) {
  .header-inner { padding: 0 1.25rem; }
  .site-nav { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: white; padding: 1rem; border-bottom: 1px solid var(--border-light); box-shadow: var(--shadow-md); }
  .site-nav.open { display: flex; }
  .nav-cta { margin: 0.5rem 0 0; align-self: flex-start; }
  .hamburger { display: flex; }
  .hero { height: 80vh; }
  .section { padding: 3.5rem 0; }
  .container { padding: 0 1.25rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .page-hero { height: 320px; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .season-grid { grid-template-columns: repeat(2, 1fr); }
  .highlights-strip { grid-template-columns: repeat(2, 1fr); }
  .highlight-item:nth-child(even) { border-right: none; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .cookie-notice { left: 1rem; right: 1rem; bottom: 1rem; }
}
