:root {
  /* Color Palette - "Nomad Luxury" */
  --color-bg: #fdfcfb;
  --color-surface: #ffffff;
  --color-primary: #1a2a24; /* Deep Forest */
  --color-accent: #c5a059; /* Muted Gold */
  --color-secondary: #4a5d54; /* Sage Gray */
  --color-text: #1a1a1a;
  --color-text-muted: #666666;
  --color-border: #e0ddd7;
  --color-error: #b91c1c;
  
  /* Typography */
  --font-display: "Playfair Display", serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  
  13 │   /* Spacing */
  14 │   --space-xs: 0.5rem;
  15 │   --space-sm: 1rem;
  16 │   --space-md: 2rem;
  17 │   --space-lg: 4rem;
  18 │   --space-xl: 8rem;
  19 │ 
  20 │   /* Transitions & Effects */
  21 │   --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  
  /* Shared Styles */
  --radius: 0; /* Brutalist/Luxury Sharp Edges */
  --shadow: 0 10px 30px rgba(0,0,0,0.05);
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.1;
  color: var(--color-primary);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

/* --- Components --- */

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
  background: none;
}

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

.btn-primary:hover {
  background-color: var(--color-accent);
  transform: translateY(-2px);
}

.btn-outline {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

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

.btn-ghost {
  color: var(--color-text-muted);
  font-weight: 500;
  padding: 0.5rem 0;
  border-bottom: 1px solid transparent;
}

.btn-ghost:hover {
  color: var(--color-primary);
  border-bottom-color: var(--color-accent);
}

/* Navbar */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: rgba(253, 252, 251, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.nav-links {
  display: flex;
  gap: var(--space-md);
}

.nav-link {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  color: var(--color-text-muted);
}

.nav-link:hover, .nav-link.active {
  color: var(--color-primary);
}

 167 │ /* Hero Section */
 168 │ .hero {
 169 │   position: relative;
 170 │   height: 100vh;
 171 │   display: flex;
 172 │   align-items: center;
 173 │   overflow: hidden;
 174 │   background-color: #1a2a24;
 175 │ }
 176 │ 
 177 │ .hero-overlay {
 178 │   position: absolute;
 179 │   top: 0;
 180 │   left: 0;
 181 │   width: 100%;
 182 │   height: 100%;
 183 │   background: linear-gradient(to right, rgba(26, 42, 36, 0.8) 0%, rgba(26, 42, 36, 0.4) 50%, rgba(26, 42, 36, 0) 100%);
 184 │   z-index: 2;
 185 │ }

 177 │ .hero-bg {
 178 │   position: absolute;
 179 │   top: 0;
 180 │   left: 0;
 181 │   width: 100%;
 182 │   height: 100%;
 183 │   object-fit: cover;
 184 │   opacity: 0.8;
 185 │   animation: heroZoom 20s infinite alternate var(--ease-out-expo);
 186 │ }
 187 │ 
 188 │ @keyframes heroZoom {
 189 │   from { transform: scale(1); }
 190 │   to { transform: scale(1.1); }
 191 │ }

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  color: white;
}

.hero h1 {
  color: white;
  font-size: clamp(3rem, 8vw, 6rem);
  margin-bottom: var(--space-sm);
  animation: fadeInUp 1s ease forwards;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: var(--space-md);
  opacity: 0.9;
  max-width: 500px;
  animation: fadeInUp 1s ease 0.2s forwards;
  animation-fill-mode: both;
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-md);
}

 218 │ .card {
 219 │   position: relative;
 220 │   overflow: hidden;
 221 │   background: var(--color-surface);
 222 │   border: 1px solid var(--color-border);
 223 │   transition: var(--transition);
 224 │   display: flex;
 225 │   flex-direction: column;
 226 │ }
 227 │ 
 228 │ .card:hover {
 229 │   transform: translateY(-12px);
 230 │   border-color: var(--color-accent);
 231 │   box-shadow: 0 30px 60px rgba(0,0,0,0.1);
 232 │ }

.card-img-wrapper {
  aspect-ratio: 4/5;
  overflow: hidden;
}

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

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

.card-content {
  padding: var(--space-md);
}

.card-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  margin-bottom: var(--space-xs);
  display: block;
}

.card-title {
  font-size: 1.5rem;
  margin-bottom: var(--space-xs);
}

.card-desc {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
}

/* Sections */
.section {
  padding: var(--space-xl) 0;
}

.section-header {
  margin-bottom: var(--space-lg);
  max-width: 700px;
}

.section-subtitle {
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  display: block;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

.bg-muted { background-color: #f5f3ef; }
.hero-cta-group { display: flex; gap: var(--space-sm); margin-top: var(--space-md); }
.hero-btn-alt { color: white; border-color: white; }
.hero-btn-alt:hover { background: white; color: var(--color-primary); }
 298 │ .card-img-wide { aspect-ratio: 16/9; }
 299 │ 
 300 │ /* Grid Variations */
 301 │ .stagger-grid {
 302 │   display: grid;
 303 │   grid-template-columns: repeat(3, 1fr);
 304 │   gap: var(--space-md);
 305 │   align-items: start;
 306 │ }
 307 │ 
 308 │ .stagger-grid .card:nth-child(2) {
 309 │   margin-top: var(--space-xl);
 310 │ }
.split-layout { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-lg); align-items: center; }
.split-content p { margin: var(--space-sm) 0 var(--space-md); font-size: 1.125rem; color: var(--color-text-muted); }
.split-image { aspect-ratio: 16/10; box-shadow: var(--shadow); }
.footer-info { color: rgba(255,255,255,0.6); max-width: 300px; }
.footer-heading { color: white; margin-bottom: 1.5rem; font-family: var(--font-body); font-weight: 700; font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.1em; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: var(--space-md); display: flex; justify-content: space-between; font-size: 0.75rem; color: rgba(255,255,255,0.4); }
.footer-legal-links { display: flex; gap: var(--space-sm); }
.nav-signin-btn { padding: 0.5rem 1.5rem; font-size: 0.75rem; }

/* Filter Bar */
.filter-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: var(--space-md);
}

.filter-group {
  display: flex;
  gap: var(--space-sm);
}

.filter-btn {
  padding: 0.5rem 1rem;
  border: 1px solid var(--color-border);
  background: white;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
}

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

/* Trip Planner Layout */
.planner-grid {
  display: grid;
  grid-template-columns: 350px 1fr 300px;
  gap: var(--space-md);
  height: calc(100vh - 80px);
  overflow: hidden;
}

.planner-sidebar {
  border-right: 1px solid var(--color-border);
  padding: var(--space-md);
  overflow-y: auto;
}

.planner-main {
  padding: var(--space-md);
  overflow-y: auto;
  background: #fcfbf9;
}

.planner-inventory {
  border-left: 1px solid var(--color-border);
  padding: var(--space-md);
  overflow-y: auto;
}

.day-card {
  background: white;
  border: 1px solid var(--color-border);
  padding: var(--space-md);
  margin-bottom: var(--space-md);
}

.itinerary-item {
  display: flex;
  gap: var(--space-sm);
  padding: var(--space-sm);
  border: 1px dashed var(--color-border);
  margin-top: var(--space-sm);
  background: #fff;
  align-items: center;
}

.itinerary-item:hover {
  border-color: var(--color-accent);
}

.planner-search {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--color-border);
  margin-bottom: var(--space-md);
}

/* Detail Pages */
.detail-hero {
  height: 60vh;
  position: relative;
}

.detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

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

.sidebar-card {
  border: 1px solid var(--color-border);
  padding: var(--space-md);
}
 416 │ 
 417 │ /* Reveal Animation Class */
 418 │ .reveal {
 419 │   opacity: 0;
 420 │   transform: translateY(30px);
 421 │   animation: fadeInUp 1s var(--ease-out-expo) forwards;
 422 │ }
 423 │ 
 424 │ .reveal-delay-1 { animation-delay: 0.1s; }
 425 │ .reveal-delay-2 { animation-delay: 0.2s; }
 426 │ .reveal-delay-3 { animation-delay: 0.3s; }
 427 │ 
 428 │ /* Forms */
.form-group {
  margin-bottom: var(--space-sm);
}

.form-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.form-input {
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--color-border);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.form-input:focus {
  outline: none;
  border-color: var(--color-primary);
}

/* Footer */
.footer {
  background: var(--color-primary);
  color: white;
  padding: var(--space-xl) 0 var(--space-md);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: var(--space-sm);
}

.footer-link {
  display: block;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.footer-link:hover {
  color: var(--color-accent);
}

/* Placeholders */
.placeholder-image {
  background-color: #f0f0f0;
  background-image: linear-gradient(45deg, #e5e5e5 25%, transparent 25%, transparent 75%, #e5e5e5 75%, #e5e5e5), 
                    linear-gradient(45deg, #e5e5e5 25%, transparent 25%, transparent 75%, #e5e5e5 75%, #e5e5e5);
  background-size: 20px 20px;
  background-position: 0 0, 10px 10px;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --space-md: 1.25rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
  }

  .nav-links {
    display: none;
  }

  .nav-container {
    padding: 0 var(--space-md);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .section-title {
    font-size: 2.5rem;
  }

  .split-layout {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .filter-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
  }

  .filter-group {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .filter-group::-webkit-scrollbar {
    display: none;
  }

  .filter-btn {
    white-space: nowrap;
    flex-shrink: 0;
  }

  .detail-grid {
    grid-template-columns: 1fr;
  }

  .sticky-sidebar {
    position: static;
  }

  .planner-grid {
    grid-template-columns: 1fr;
    height: auto;
    overflow: visible;
  }

  .planner-sidebar, .planner-main, .planner-inventory {
    border: none;
    height: auto;
    overflow: visible;
    padding: var(--space-md);
  }

  .hero h1 {
    font-size: 3.5rem;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta-group .btn {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }

  .footer-legal-links {
    justify-content: center;
  }
}

@media (max-width: 375px) {
  .section-title {
    font-size: 2.25rem;
  }

  .logo {
    font-size: 1.25rem;
  }

  .nav-signin-btn {
    padding: 0.5rem 1rem;
    font-size: 0.7rem;
  }

  .container {
    padding: 0 1rem;
  }

  .card-title {
    font-size: 1.25rem;
  }
}
