/* ==========================================================================
   Paharika Lake Retreat (পাহাড়িকা লেক রিট্রিট) — Handcrafted Custom CSS
   Cinematic Rangamati Eco-Luxury Editorial Architecture
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Custom Properties / Design Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Color Palette - Tactile Earth & Water Tones */
  --bg-main: #F7F5F0;
  --bg-surface: #FFFFFF;
  --bg-alt: #EFECE6;
  --bg-dark: #16241D;
  --bg-dark-surface: #1E3027;
  
  --text-main: #2A2725;
  --text-muted: #625E5A;
  --text-light: #F2EFE9;
  --text-dark-muted: #A3B2A9;

  --brand-green: #233A2E;
  --brand-green-hover: #192B21;
  --brand-amber: #C86D48;
  --brand-amber-hover: #B25A36;
  --brand-gold: #D4AF37;
  
  --border-light: #E5DFD5;
  --border-dark: #2B3E34;
  --border-focus: #C86D48;

  /* Fonts & Typography - Pure Local System Fallbacks (Zero Remote CDN) */
  --font-serif: "Noto Serif Bengali", "Kalpurush", "SolaimanLipi", "Siyam Rupali", "Vrinda", "Georgia", serif;
  --font-sans: "Hind Siliguri", "Siyam Rupali", "SolaimanLipi", "Kalpurush", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  
  /* Spatial Tokens */
  --container-max: 1280px;
  --radius-sm: 4px;
  --radius-md: 12px;
  --radius-lg: 24px;

  /* Transitions */
  --transition-smooth: cubic-bezier(0.25, 1, 0.5, 1);
}

/* --------------------------------------------------------------------------
   2. Core Reset & Global Styles
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-main);
  background-color: var(--bg-main);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease;
}

button, input, select, textarea {
  font: inherit;
  color: inherit;
}

/* Focus styles for Accessibility */
:focus-visible {
  outline: 3px solid var(--border-focus);
  outline-offset: 3px;
}

/* --------------------------------------------------------------------------
   3. Header & Navigation Component
   -------------------------------------------------------------------------- */
.top-notice-bar {
  background-color: var(--brand-green);
  color: var(--text-light);
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
  text-align: center;
  border-bottom: 1px solid var(--border-dark);
}

.top-notice-bar .notice-tag {
  display: inline-block;
  background-color: var(--brand-amber);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.15rem 0.5rem;
  border-radius: 3px;
  margin-right: 0.5rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(247, 245, 240, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-light);
  transition: background-color 0.3s ease;
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo-mark {
  width: 44px;
  height: 44px;
  background: var(--brand-green);
  color: var(--bg-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(35, 58, 46, 0.15);
}

.brand-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--brand-green);
  line-height: 1.2;
}

.brand-subtitle {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-main);
  padding: 0.4rem 0.2rem;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--brand-amber);
  transition: width 0.25s ease;
}

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

.nav-cta {
  background-color: var(--brand-green);
  color: var(--text-light);
  padding: 0.6rem 1.3rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  transition: background-color 0.25s ease, transform 0.2s ease;
}

.nav-cta:hover {
  background-color: var(--brand-green-hover);
  transform: translateY(-1px);
}

/* Mobile Nav Toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border-light);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  color: var(--brand-green);
}

/* Mobile Drawer Overlay */
.mobile-drawer {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(22, 36, 29, 0.95);
  z-index: 1000;
  padding: 2rem;
  flex-direction: column;
  justify-content: space-between;
  transform: translateX(100%);
  transition: transform 0.3s var(--transition-smooth);
}

.mobile-drawer.active {
  transform: translateX(0);
}

.mobile-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
}

.mobile-drawer-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.mobile-nav-link {
  color: var(--text-light);
  font-size: 1.35rem;
  font-family: var(--font-serif);
}

/* --------------------------------------------------------------------------
   4. Hero Section with Vertical Itinerary Rail
   -------------------------------------------------------------------------- */
.hero-editorial {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 3rem 1.5rem;
  background-color: var(--bg-main);
  overflow: hidden;
}

.hero-layout-grid {
  max-width: var(--container-max);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 3rem;
  align-items: center;
}

/* Slim Vertical Itinerary Rail */
.itinerary-rail {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.5rem 1rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.itinerary-rail-title {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--brand-green);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--brand-amber);
}

.rail-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
}

.rail-list::before {
  content: '';
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 7px;
  width: 2px;
  background-color: var(--border-light);
}

.rail-item {
  position: relative;
  padding-left: 1.75rem;
  font-size: 0.85rem;
}

.rail-dot {
  position: absolute;
  left: 2px;
  top: 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 2px solid var(--brand-green);
}

.rail-item.active .rail-dot {
  background: var(--brand-amber);
  border-color: var(--brand-amber);
}

.rail-time {
  font-weight: 700;
  color: var(--brand-amber);
  display: block;
  font-size: 0.8rem;
}

.rail-label {
  color: var(--text-main);
  font-weight: 500;
  line-height: 1.3;
}

/* Hero Content & Staggered Image */
.hero-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand-amber);
  background: rgba(200, 109, 72, 0.1);
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  margin-bottom: 1.25rem;
}

.hero-heading {
  font-family: var(--font-serif);
  font-size: 2.85rem;
  font-weight: 700;
  color: var(--brand-green);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 2rem;
}

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

.btn-primary {
  background-color: var(--brand-green);
  color: #fff;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.25s ease;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: var(--brand-green-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(35, 58, 46, 0.2);
}

.btn-secondary {
  background-color: transparent;
  color: var(--brand-green);
  border: 1px solid var(--brand-green);
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.25s ease;
}

.btn-secondary:hover {
  background-color: rgba(35, 58, 46, 0.05);
}

.hero-image-frame {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.hero-image-frame img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  transition: transform 0.6s var(--transition-smooth);
}

.hero-image-frame:hover img {
  transform: scale(1.03);
}

.hero-image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1.25rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  color: #fff;
  font-size: 0.85rem;
}

/* --------------------------------------------------------------------------
   5. Edge-to-Edge Editorial Chapters & Staggered Sections
   -------------------------------------------------------------------------- */
.section-padding {
  padding: 5rem 1.5rem;
}

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

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

.chapter-badge {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand-amber);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.5rem;
  display: block;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--brand-green);
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 680px;
  line-height: 1.7;
}

/* Staggered Composition Grid */
.staggered-chapter-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}

.staggered-chapter-grid.reverse {
  direction: rtl;
}

.staggered-chapter-grid.reverse > * {
  direction: ltr;
}

.chapter-photo-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.chapter-photo-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.chapter-text-card {
  background: var(--bg-surface);
  padding: 2.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.chapter-text-card h3 {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  color: var(--brand-green);
  margin-bottom: 1rem;
}

.chapter-text-card p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-main);
}

.feature-item-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(200, 109, 72, 0.15);
  color: var(--brand-amber);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: bold;
}

/* --------------------------------------------------------------------------
   6. Custom Circular Map & Route Motif Component
   -------------------------------------------------------------------------- */
.motif-section {
  background: var(--bg-alt);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.motif-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.route-motif-canvas {
  position: relative;
  width: 100%;
  max-width: 440px;
  height: 440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.route-svg-ring {
  width: 100%;
  height: 100%;
  animation: rotateSlow 40s linear infinite;
}

@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.route-center-card {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--brand-green);
  color: var(--text-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
  box-shadow: 0 12px 30px rgba(35, 58, 46, 0.3);
}

.route-center-card .badge {
  font-size: 0.75rem;
  color: var(--brand-amber);
  letter-spacing: 1px;
}

.route-center-card .title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0.25rem 0;
}

.route-center-card .subtitle {
  font-size: 0.75rem;
  opacity: 0.85;
}

/* --------------------------------------------------------------------------
   7. Stays & Rooms Layout (Asymmetrical Cards)
   -------------------------------------------------------------------------- */
.stays-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.stay-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.stay-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.06);
}

.stay-card-image {
  height: 250px;
  overflow: hidden;
  position: relative;
}

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

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

.stay-card-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(22, 36, 29, 0.85);
  color: var(--text-light);
  font-size: 0.8rem;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}

.stay-card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.stay-card-title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  color: var(--brand-green);
  margin-bottom: 0.5rem;
}

.stay-card-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.stay-specs {
  display: flex;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-main);
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
  margin-top: auto;
}

.stay-spec-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* --------------------------------------------------------------------------
   8. Gallery Grid & Lightbox
   -------------------------------------------------------------------------- */
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 320px;
  cursor: pointer;
}

.gallery-item.wide {
  grid-column: span 2;
}

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

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, rgba(22, 36, 29, 0.85));
  color: #fff;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
}

.gallery-item-tag {
  font-size: 0.8rem;
  color: var(--brand-amber);
}

/* Simple Lightbox Modal */
.lightbox-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.9);
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox-modal.active {
  display: flex;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: #fff;
  font-size: 2.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

/* --------------------------------------------------------------------------
   9. Dark Reservation Panel & Footer
   -------------------------------------------------------------------------- */
.dark-reservation-panel {
  background-color: var(--bg-dark);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.dark-reservation-panel::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200, 109, 72, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.dark-reservation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.dark-reservation-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.dark-reservation-text {
  color: var(--text-dark-muted);
  line-height: 1.7;
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.contact-card-box {
  background: var(--bg-dark-surface);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 2rem;
}

.contact-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-info-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(200, 109, 72, 0.2);
  color: var(--brand-amber);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-info-text strong {
  display: block;
  color: #fff;
  font-size: 0.95rem;
}

.contact-info-text span {
  font-size: 0.85rem;
  color: var(--text-dark-muted);
}

/* Site Footer */
.site-footer {
  background-color: #0F1A15;
  color: var(--text-dark-muted);
  font-size: 0.9rem;
  padding: 3rem 1.5rem 1.5rem 1.5rem;
  border-top: 1px solid var(--border-dark);
}

.footer-grid {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .brand-title {
  color: #fff;
}

.footer-heading {
  font-family: var(--font-serif);
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a:hover {
  color: var(--brand-amber);
}

.footer-bottom {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  background-color: #25D366;
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  transition: transform 0.25s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

/* --------------------------------------------------------------------------
   10. Form Controls (Contact & Booking)
   -------------------------------------------------------------------------- */
.form-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  box-shadow: 0 10px 35px rgba(0,0,0,0.03);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--brand-green);
  margin-bottom: 0.4rem;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  background-color: var(--bg-main);
  font-size: 0.95rem;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.form-control:focus {
  border-color: var(--brand-amber);
  background-color: #fff;
  outline: none;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

/* Flash Messages */
.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.alert-success {
  background-color: #E6F4EA;
  color: #137333;
  border: 1px solid #CEEAD6;
}

.alert-error {
  background-color: #FCE8E6;
  color: #C5221F;
  border: 1px solid #FAD2CF;
}

/* Honeypot hidden input */
.website-hp-field {
  display: none !important;
  visibility: hidden !important;
}

/* --------------------------------------------------------------------------
   11. Journal / Article Styling
   -------------------------------------------------------------------------- */
.journal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.journal-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.journal-card-img {
  height: 220px;
  overflow: hidden;
}

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

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

.journal-card-body {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.journal-date {
  font-size: 0.8rem;
  color: var(--brand-amber);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.journal-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--brand-green);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.journal-excerpt {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.journal-read-more {
  margin-top: auto;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brand-green);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

/* --------------------------------------------------------------------------
   12. Responsive Media Queries
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-layout-grid {
    grid-template-columns: 1fr;
  }
  .itinerary-rail {
    display: none; /* Hide or convert to horizontal bar on small screens */
  }
  .hero-content-wrapper {
    grid-template-columns: 1fr;
  }
  .staggered-chapter-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .staggered-chapter-grid.reverse {
    direction: ltr;
  }
  .motif-layout, .dark-reservation-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-masonry {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item.wide {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .nav-menu, .nav-cta {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .hero-heading {
    font-size: 2.15rem;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .form-grid-2 {
    grid-template-columns: 1fr;
  }
  .gallery-masonry {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

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