:root {
  /* Deep violet darks – solid, no wash */
  --navy: #1a0a2e;
  --navy-mid: #2e1b4b;
  /* Body text – high contrast on light */
  --ink: #1a0a2e;
  /* Muted but readable secondary text */
  --slate: #4a3d5c;
  /* Vivid violet accent – pops on dark and light */
  --accent: #8b5cf6;
  --accent-dark: #6d28d9;
  /* Light violet for links on dark (hero, footer) */
  --accent-light: #c4b5fd;
  /* Clean light background */
  --cream: #faf8fc;
  --white: #ffffff;
  --border: #ddd6e8;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-script: 'Great Vibes', cursive;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background-color: var(--cream);
  /* Northern lights / aurora theme everywhere */
  background-image:
    linear-gradient(
      to bottom,
      rgba(250, 248, 252, 0.96) 0%,
      rgba(250, 248, 252, 0.91) 40%,
      rgba(248, 245, 255, 0.93) 100%
    ),
    url('https://images.unsplash.com/photo-1483347756197-71ef80e95f73?w=1920&q=70');
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
  background-repeat: no-repeat;
  min-height: 100vh;
}

/* Page loader – no white screen; matches theme until content is ready */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background: var(--navy);
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.page-loader-spinner {
  width: 48px;
  height: 48px;
  border: 3px solid rgba(255,255,255,0.2);
  border-top-color: var(--accent-light);
  border-radius: 50%;
  animation: page-loader-spin 0.8s linear infinite;
}
.page-loader-logo {
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.5rem;
}
html.page-loaded .page-loader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
@keyframes page-loader-spin {
  to { transform: rotate(360deg); }
}

/* Accessibility: skip link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 1000;
  padding: 12px 20px;
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 16px;
  outline: 3px solid var(--navy);
  outline-offset: 2px;
}

/* Focus visible for keyboard users */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Top bar */
.top-bar {
  background: var(--navy);
  color: var(--white);
  padding: 10px 0;
  font-size: 0.9rem;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.cta-phone {
  color: var(--accent-light);
  text-decoration: none;
  font-weight: 600;
}

.cta-phone:hover {
  text-decoration: underline;
}

/* Header */
.main-header {
  background: var(--white);
  box-shadow: 0 1px 0 var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--navy);
  text-decoration: none;
}

.logo:hover {
  text-decoration: none;
  color: var(--accent);
}

.main-nav {
  display: flex;
  gap: 28px;
}

.main-nav a {
  color: var(--slate);
  font-weight: 500;
  font-size: 0.95rem;
}

.main-nav a:hover {
  color: var(--accent);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--navy);
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  .menu-toggle {
    display: block;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  /* Northern lights (aurora) – purple, violet and green behind the hero */
  background-image: url('https://images.unsplash.com/photo-1483347756197-71ef80e95f73?w=1600&q=80');
}

.hero-overlay {
  position: absolute;
  inset: 0;
  /* Violet overlay so aurora glows through and text stays crisp */
  background: linear-gradient(
    135deg,
    rgba(26,10,46,0.78) 0%,
    rgba(46,27,75,0.72) 50%,
    rgba(26,10,46,0.8) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
}

.hero-title {
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-offer {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 600;
  color: var(--accent-light);
  letter-spacing: 0.05em;
}

.hero-main {
  font-family: var(--font-sans);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.hero-sub {
  margin: 0;
  font-size: 1.1rem;
  color: var(--white);
  margin-top: 4px;
}

.hero-sub-script {
  font-family: var(--font-script);
  font-size: 1.35rem;
  font-weight: 400;
  display: block;
  margin-top: 6px;
  color: var(--accent-light);
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* Booking */
.booking-section {
  margin-top: 32px;
  margin-bottom: 56px;
  padding: 0 20px;
}

.booking-card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(26,10,46,0.12), 0 0 0 1px var(--border);
  padding: 28px 32px;
  max-width: 640px;
  margin: 0 auto;
}

.form-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.form-tab {
  padding: 10px 18px;
  border: none;
  background: none;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--slate);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -1px;
}

.form-tab:hover {
  color: var(--navy);
}

.form-tab.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.field-group.full {
  grid-column: 1 / -1;
}

.field-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--slate);
  margin-bottom: 6px;
}

/* Input wrap for icons */
.field-group .input-wrap {
  display: block;
  position: relative;
}

.field-group input,
.field-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 1rem;
}

.field-group .input-wrap input,
.field-group .input-wrap select {
  padding-right: 40px;
  appearance: none;
  background-color: var(--white);
}

.field-group input:focus,
.field-group select:focus,
.field-group .input-wrap input:focus,
.field-group .input-wrap select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(139,92,246,0.35);
}

/* Calendar icon for date inputs */
.field-date .input-wrap {
  position: relative;
}

.field-date .date-wrap {
  position: relative;
}

.field-date .calendar-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23475569'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M8 7V3m8 4V3m-9 8h10M5 21h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v12a2 2 0 002 2z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.field-date .date-input {
  cursor: pointer;
}

/* Custom date picker panel */
.date-picker-panel {
  display: none;
  position: fixed;
  z-index: 200;
  width: 280px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.18);
  border: 1px solid var(--border);
  padding: 16px;
  font-family: var(--font-sans);
}

.date-picker-panel.is-open {
  display: block;
}

.date-picker-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.date-picker-nav {
  width: 36px;
  height: 36px;
  border: none;
  background: var(--cream);
  border-radius: 8px;
  font-size: 1.25rem;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background 0.15s;
}

.date-picker-nav:hover {
  background: var(--border);
  color: var(--navy-mid);
}

.date-picker-month-year {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
}

.date-picker-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 8px;
  text-align: center;
}

.date-picker-weekdays span {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.date-picker-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  min-height: 200px;
}

.date-picker-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--navy-mid);
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  border: none;
  background: transparent;
  font-family: inherit;
}

.date-picker-day:hover:not(.is-other):not(.is-selected) {
  background: var(--cream);
  color: var(--navy);
}

.date-picker-day.is-other {
  color: var(--border);
  cursor: default;
}

.date-picker-day.is-selected {
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
}

.date-picker-day.is-today {
  font-weight: 600;
  color: var(--accent);
}

.date-picker-day.is-today.is-selected {
  color: var(--white);
}

.date-picker-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.date-picker-btn {
  border: none;
  background: none;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  cursor: pointer;
  padding: 4px 8px;
}

.date-picker-btn:hover {
  text-decoration: underline;
}

/* Dropdown arrow for selects */
.field-select .select-wrap {
  position: relative;
}

.field-select .select-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23475569'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E") center/contain no-repeat;
}

.multi-note {
  margin-bottom: 20px;
  padding: 14px;
  background: var(--cream);
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--slate);
}

.btn-submit {
  width: 100%;
  padding: 16px;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 8px;
}

.btn-submit:hover {
  background: var(--accent-dark);
}

.btn-submit.is-loading .btn-text { display: none; }
.btn-submit.is-loading .btn-loading { display: inline !important; }
.btn-submit.is-loading { pointer-events: none; opacity: 0.85; }

/* Any button with .is-loading: spinner (or .btn-loading text) */
button.is-loading {
  position: relative;
}
button.is-loading:not(.btn-submit) {
  color: transparent !important;
}
button.is-loading::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 18px;
  margin: -9px 0 0 -9px;
  border: 2px solid rgba(255,255,255,0.35);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: page-loader-spin 0.6s linear infinite;
}
.btn-submit.is-loading::after {
  display: none; /* .btn-submit uses .btn-loading text instead */
}
.footer-newsletter button.is-loading::after {
  width: 14px;
  height: 14px;
  margin: -7px 0 0 -7px;
  border-width: 2px;
}
button.is-loading .btn-loading {
  display: inline !important;
}
button.is-loading .btn-text {
  display: none;
}

/* Trust badges */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 28px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--slate);
}
.trust-icon {
  font-size: 1rem;
}

/* Price alerts section */
.price-alerts-section {
  padding: 48px 0 56px;
  background: var(--white);
}
.price-alerts-section .section-intro {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 28px;
  color: var(--slate);
}
.price-alerts-form {
  max-width: 560px;
  margin: 0 auto;
}
.price-alerts-form .form-row {
  margin-bottom: 20px;
}
.price-alerts-form .field-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--slate);
  margin-bottom: 6px;
}
.price-alerts-form input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 1rem;
}

/* Footer newsletter */
.footer-newsletter {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.footer-newsletter h3 {
  margin: 0 0 6px;
  font-size: 1.1rem;
  color: var(--white);
}
.footer-newsletter p {
  margin: 0 0 14px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.95);
}
.footer-newsletter .newsletter-form {
  display: flex;
  gap: 8px;
  max-width: 360px;
}
.footer-newsletter .newsletter-form input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 6px;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 1rem;
}
.footer-newsletter .newsletter-form input::placeholder {
  color: rgba(255,255,255,0.6);
}
.footer-newsletter .newsletter-form input:focus {
  outline: none;
  border-color: var(--accent);
}
.footer-newsletter .newsletter-form button {
  padding: 10px 20px;
  background: var(--white);
  color: var(--navy);
  border: none;
  border-radius: 6px;
  font-family: var(--font-sans);
  font-weight: 600;
  cursor: pointer;
}
.footer-newsletter .newsletter-form button:hover {
  background: var(--accent-light);
  color: var(--navy);
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy);
  color: var(--white);
  padding: 12px 20px;
  z-index: 99;
  transform: translateY(100%);
  transition: transform 0.25s ease;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}
.sticky-cta.is-visible {
  transform: translateY(0);
}
.sticky-cta-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.sticky-cta-text {
  font-size: 0.95rem;
}
.sticky-cta-phone {
  font-weight: 700;
  color: var(--accent-light);
  text-decoration: none;
}
.sticky-cta-phone:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* Section title */
.section-title {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--navy);
  text-align: center;
  margin: 0 0 32px;
}

/* Testimonials */
.testimonials {
  padding: 56px 0;
  background: var(--white);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.testimonial {
  margin: 0;
  padding: 28px 24px;
  background: var(--cream);
  border-radius: 12px;
  border-left: 4px solid var(--accent);
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.testimonial img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 14px;
}

.testimonial p {
  margin: 0 0 14px;
  font-size: 1rem;
  color: var(--navy-mid);
  line-height: 1.5;
  flex: 1;
}

.testimonial cite {
  font-size: 0.9rem;
  color: var(--slate);
  font-style: normal;
}

/* Airlines */
.airlines-section {
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid var(--border);
}

.airlines-intro {
  margin: 0 0 20px;
  font-weight: 600;
  color: var(--slate);
}

.airlines-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 24px;
}

.airlines-list span {
  padding: 8px 18px;
  background: var(--cream);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy-mid);
}

/* Tips */
.tips-section {
  padding: 56px 0;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.tip-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.tip-card img {
  display: block;
  width: 100%;
  height: 180px;
  min-height: 180px;
  object-fit: cover;
  background: var(--border);
}

.tip-body {
  padding: 20px;
}

.tip-body h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
  color: var(--navy);
}

.tip-body p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--slate);
}

/* Blog preview */
.blog-preview {
  padding: 56px 0;
  background: var(--white);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.blog-card {
  background: var(--cream);
  border-radius: 12px;
  overflow: hidden;
  display: block;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
}

.blog-card:hover {
  text-decoration: none;
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

.blog-card img {
  display: block;
  width: 100%;
  height: 200px;
  min-height: 200px;
  object-fit: cover;
  background: var(--border);
}

.blog-card-body {
  padding: 20px;
}

.blog-card-body h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
  color: var(--navy);
}

.blog-card-body p {
  margin: 0 0 12px;
  font-size: 0.95rem;
  color: var(--slate);
}

.read-more {
  font-weight: 600;
  color: var(--accent);
  font-size: 0.9rem;
}

.blog-cta {
  text-align: center;
  margin: 32px 0 0;
}

.btn-outline {
  display: inline-block;
  padding: 12px 24px;
  border: 2px solid var(--accent);
  color: var(--accent);
  border-radius: 8px;
  font-weight: 600;
}

.btn-outline:hover {
  background: var(--accent);
  color: var(--white);
  text-decoration: none;
}

/* Footer CTA */
.footer-cta {
  background: var(--navy);
  color: var(--white);
  padding: 56px 20px;
  text-align: center;
}

.footer-cta h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin: 0 0 8px;
}

.cta-sub {
  margin: 0 0 12px;
  font-size: 1rem;
  color: rgba(255,255,255,0.95);
}

.cta-phone-large {
  margin: 0;
  font-size: 1.75rem;
  font-weight: 700;
}

.cta-phone-large a {
  color: var(--accent-light);
  text-decoration: none;
}

.cta-phone-large a:hover {
  text-decoration: underline;
}

.footer-cta .btn-light {
  display: inline-block;
  margin-top: 16px;
  padding: 12px 24px;
  background: var(--white);
  color: var(--navy);
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
}
.footer-cta .btn-light:hover {
  background: var(--accent-light);
  color: var(--navy);
  text-decoration: none;
}

/* Contact page */
.contact-section {
  padding: 48px 20px 64px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  max-width: 900px;
  margin: 0 auto;
  align-items: start;
}
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
.contact-info h2,
.contact-form-wrap h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin: 0 0 12px;
  color: var(--navy);
}
.contact-info p,
.contact-form-wrap p {
  margin: 0 0 8px;
  color: var(--slate);
}
.contact-phone {
  font-size: 1.25rem;
  font-weight: 700;
}
.contact-phone a {
  color: var(--accent);
}
.contact-hours {
  font-size: 0.95rem;
  color: var(--slate);
}
.contact-form .form-row {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}
.contact-form .field-group {
  flex: 1;
}
.contact-form .field-group.full {
  flex: 1 1 100%;
}
.contact-form label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--navy-mid);
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 1rem;
}
.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}
.contact-form .btn-submit {
  margin-top: 8px;
  padding: 12px 28px;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}
.contact-form .btn-submit:hover {
  background: var(--accent-dark);
}

/* Footer */
.main-footer {
  background: var(--navy-mid);
  color: var(--white);
  padding: 40px 20px 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  margin-bottom: 28px;
}

.footer-brand strong {
  display: block;
  margin-bottom: 4px;
}

.footer-brand p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.95);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
}

.footer-links a {
  color: var(--accent-light);
  font-size: 0.9rem;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-disclaimer {
  margin: 24px 0 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.15);
  max-width: 72ch;
}

.footer-disclaimer h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0 0 10px;
  color: var(--white);
}

.footer-disclaimer p {
  margin: 0 0 10px;
  font-size: 0.75rem;
  line-height: 1.5;
  opacity: 0.9;
}

.footer-disclaimer p:last-child {
  margin-bottom: 0;
}

.copyright {
  margin: 0;
  font-size: 0.85rem;
  opacity: 0.75;
}

/* Page hero (internal pages) – same northern lights + violet theme as homepage hero */
.page-hero {
  position: relative;
  color: var(--white);
  padding: 48px 20px 40px;
  text-align: center;
  background-image: linear-gradient(
    135deg,
    rgba(26,10,46,0.88) 0%,
    rgba(46,27,75,0.82) 50%,
    rgba(26,10,46,0.86) 100%
  ), url('https://images.unsplash.com/photo-1483347756197-71ef80e95f73?w=1600&q=80');
  background-size: cover;
  background-position: center;
}

.page-hero-short {
  padding: 40px 20px 36px;
}

.page-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin: 0 0 12px;
}

.page-hero-sub {
  margin: 0;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.95);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* Destinations page */
.destinations-section {
  padding: 48px 0 56px;
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

.dest-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.dest-card img {
  display: block;
  width: 100%;
  height: 200px;
  min-height: 200px;
  object-fit: cover;
  background: var(--border);
}

.dest-card-body {
  padding: 20px;
}

.dest-card-body h2 {
  margin: 0 0 10px;
  font-size: 1.35rem;
  color: var(--navy);
}

.dest-card-body p {
  margin: 0 0 16px;
  font-size: 0.95rem;
  color: var(--slate);
  line-height: 1.5;
}

.dest-cta {
  font-weight: 600;
  color: var(--accent);
  font-size: 0.95rem;
}

.dest-cta:hover {
  text-decoration: underline;
}

.dest-blogs-section {
  padding: 48px 0 64px;
  background: var(--cream);
}

.dest-blogs-section .section-intro {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 32px;
  color: var(--slate);
}

.dest-blog-grid {
  margin-bottom: 24px;
}

/* About page */
.about-section {
  padding: 48px 0 64px;
}

.about-content {
  max-width: 680px;
  margin: 0 auto;
}

.about-content h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--navy);
  margin: 32px 0 12px;
}

.about-content h2:first-child {
  margin-top: 0;
}

.about-content p {
  margin: 0 0 16px;
  line-height: 1.65;
  color: var(--navy-mid);
}

.about-content ul {
  margin: 0 0 16px;
  padding-left: 1.4em;
}

.about-content li {
  margin-bottom: 8px;
  line-height: 1.6;
  color: var(--navy-mid);
}

.about-content a {
  color: var(--accent);
  font-weight: 500;
}

.about-content a:hover {
  text-decoration: underline;
}

/* Blog layout */
.blog-page .blog-list {
  padding: 48px 0 64px;
}

.blog-category-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 28px;
}
.blog-cat-btn {
  padding: 8px 16px;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--slate);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.blog-cat-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.blog-cat-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.blog-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

.blog-list-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  display: block;
  color: inherit;
  transition: opacity 0.2s, transform 0.2s;
}
.blog-list-card.hidden {
  display: none;
}

.blog-list-card:hover {
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.blog-list-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-list-card .card-body {
  padding: 20px;
}

.blog-list-card h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
  color: var(--navy);
}

.blog-list-card .meta {
  font-size: 0.85rem;
  color: var(--slate);
  margin-bottom: 8px;
}

.blog-list-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--slate);
}

/* Post layout */
.post-header {
  padding: 48px 0 32px;
  max-width: 720px;
  margin: 0 auto;
}

.post-header h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  color: var(--navy);
  margin: 0 0 12px;
  line-height: 1.3;
}

.post-meta {
  font-size: 0.9rem;
  color: var(--slate);
  margin: 0 0 24px;
}

.post-featured-img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 32px;
}

.post-content {
  max-width: 720px;
  margin: 0 auto 64px;
  padding: 0 20px;
}

.post-content h2 {
  font-size: 1.4rem;
  color: var(--navy);
  margin: 32px 0 16px;
}

.post-content p {
  margin: 0 0 16px;
}

.post-content ul {
  margin: 0 0 16px;
  padding-left: 1.4em;
}

.post-content li {
  margin-bottom: 6px;
}

.back-link {
  display: inline-block;
  margin-bottom: 24px;
  font-weight: 500;
  color: var(--accent);
}

.back-link:hover {
  text-decoration: none;
}
