/* ===================================================
   HUTCONCIERGE DESIGN SYSTEM (ARVIE INSPIRED)
   Colors: Deep Pine, Soft Sage, Earthy Ochre & Slate Blue
   =================================================== */

:root {
  /* Core Palette */
  --pine-900: #0f1c14;
  --pine-800: #17281e;
  --pine-700: #203528;
  --pine-600: #2b4535;
  
  --sage-bg: #edf2ee;
  --sage-50: #f5f8f5;
  --sage-100: #e2ebe4;
  --sage-200: #d1dfd4;
  --sage-300: #b5c7ba;
  
  --cta-green: #2d6a4f;
  --cta-green-hover: #22563f;
  --cta-green-light: #e8f5ee;
  
  --accent-gold: #c68a2e;
  --accent-gold-light: #fef7ec;
  --accent-gold-dark: #a16c1a;
  
  --accent-blue: #386684;
  --accent-blue-light: #edf5f9;
  --accent-blue-dark: #274b62;

  --status-available: #2e7d32;
  --status-available-bg: #e8f5e9;
  --status-nearly: #d97706;
  --status-nearly-bg: #fef3c7;
  --status-full: #dc2626;
  --status-full-bg: #fee2e2;
  --status-closed: #6b7280;
  --status-closed-bg: #f3f4f6;

  --text-main: #142219;
  --text-muted: #566a5e;
  --text-light: #8e9f94;
  --card-white: #ffffff;
  
  /* Typography */
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(15, 28, 20, 0.04);
  --shadow-md: 0 8px 24px rgba(15, 28, 20, 0.08);
  --shadow-lg: 0 16px 40px rgba(15, 28, 20, 0.12);
  --shadow-xl: 0 24px 60px rgba(15, 28, 20, 0.16);
  --shadow-capsule: 0 20px 48px -10px rgba(15, 28, 20, 0.25);

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 9999px;
}

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

html {
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
  font-family: var(--font-main);
  background-color: var(--sage-bg);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
}

body {
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===================================================
   FULL-PAGE SNAP SLIDES (REELS / TIKTOK STYLE)
   =================================================== */

.snap-slide {
  scroll-snap-align: start;
  scroll-snap-stop: always;
  min-height: 100vh;
  min-height: 100dvh;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  width: 100%;
}

.page-slide {
  background-color: #ffffff;
}

.page-slide > section {
  flex: 1;
  display: flex;
  align-items: center;
  width: 100%;
  padding: clamp(40px, 5vh, 80px) 0;
  box-sizing: border-box;
}

.footer-slide {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: var(--pine-900);
}

.footer-slide > section {
  flex: none;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button, select, input {
  font-family: inherit;
  border: none;
  outline: none;
  background: none;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===================================================
   BUTTONS & BADGES
   =================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 14px;
}

.btn-primary {
  background-color: var(--cta-green);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(45, 106, 79, 0.3);
}

.btn-primary:hover {
  background-color: var(--cta-green-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45, 106, 79, 0.4);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.9);
  color: var(--text-main);
  border: 1px solid var(--sage-300);
}

.btn-outline:hover {
  background: #ffffff;
  border-color: var(--cta-green);
  color: var(--cta-green);
}

.btn-search {
  background-color: var(--cta-green);
  color: #ffffff;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 700;
  border-radius: var(--radius-pill);
  width: 100%;
}

.btn-search:hover {
  background-color: var(--cta-green-hover);
  box-shadow: 0 4px 18px rgba(45, 106, 79, 0.45);
}

.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-pill {
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  margin-bottom: 20px;
}

.pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #4ade80;
  box-shadow: 0 0 10px #4ade80;
}

/* ===================================================
   NAVIGATION
   =================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 14px 0;
  transition: all 0.3s ease;
  background: rgba(15, 28, 20, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
}

.brand-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, #2d6a4f, #1b4332);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.brand-name {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-name span {
  color: #74c69d;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-link:hover {
  color: #ffffff;
}

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

.hero-section {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  padding-top: 100px;
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  color: #ffffff;
  overflow: hidden;
}

.hero-bg-container {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.hero-bg-picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.03);
  filter: brightness(0.85);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(to bottom, 
      rgba(15, 28, 20, 0.75) 0%, 
      rgba(15, 28, 20, 0.55) 25%, 
      rgba(15, 28, 20, 0.65) 55%, 
      rgba(15, 28, 20, 0.9) 80%, 
      #0f1c14 100%
    ),
    radial-gradient(ellipse at 50% 35%, rgba(15, 28, 20, 0.2) 0%, rgba(15, 28, 20, 0.88) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: auto auto;
  text-align: center;
  padding: 40px 24px 20px;
  width: 100%;
}

.hero-title {
  font-size: clamp(24px, 2.9vw, 44px);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.025em;
  color: #ffffff;
  margin: 0 auto 16px;
  max-width: 1140px;
}

@media (min-width: 1024px) {
  .hero-title {
    white-space: nowrap;
  }
}

.hero-title-accent {
  color: #4ade80;
  text-shadow: 0 0 28px rgba(74, 222, 128, 0.28), 0 4px 20px rgba(0, 0, 0, 0.7);
  display: inline;
}

.hero-title-main {
  color: #ffffff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
  display: inline;
}

.hero-subtitle {
  font-family: 'Outfit', 'Urbanist', var(--font-main);
  font-size: clamp(15px, 1.3vw, 18px);
  font-weight: 400;
  color: #e2e8f0;
  background: linear-gradient(180deg, #ffffff 15%, #e2e8f0 65%, #cbd5e1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  max-width: 1140px;
  margin: 0 auto 32px;
  line-height: 1.65;
  filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.8));
  letter-spacing: 0.015em;
}

@media (min-width: 992px) {
  .hero-subtitle {
    white-space: nowrap;
  }
}

.subtitle-accent {
  font-style: italic;
  font-weight: 700;
  color: #ffffff;
}

/* ===================================================
   FLOATING SEARCH CAPSULE (ARVIE STYLE)
   =================================================== */

.search-capsule {
  background: var(--card-white);
  border-radius: var(--radius-xl);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  box-shadow: var(--shadow-capsule);
  text-align: left;
  color: var(--text-main);
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
}

.search-segment {
  padding: 8px 16px;
  flex: 1;
  position: relative;
}

.segment-hut {
  flex: 2.2;
}

.segment-country {
  flex: 1.5;
}

.segment-date {
  flex: 1.2;
}

.search-divider {
  width: 1px;
  height: 42px;
  background-color: var(--sage-200);
}

.search-label {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.search-input-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
}

.search-icon {
  color: var(--text-light);
  flex-shrink: 0;
}

.search-input {
  width: 100%;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-main);
}

.search-input::placeholder {
  color: var(--text-light);
  font-weight: 400;
}

/* Animated Typewriter Dipping Cursor */
.typewriter-cursor {
  position: absolute;
  top: 50%;
  left: 26px;
  transform: translateY(-50%);
  width: 2.5px;
  height: 18px;
  background-color: var(--cta-green);
  border-radius: 1px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.15s ease;
}

.typewriter-cursor.active {
  opacity: 1;
  animation: cursorBlink 0.75s infinite ease-in-out;
}

@keyframes cursorBlink {
  0%, 100% { opacity: 1; transform: translateY(-50%) scaleY(1); }
  50% { opacity: 0.15; transform: translateY(calc(-50% + 2px)) scaleY(0.85); }
}

.search-select {
  width: 100%;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
}

.date-trigger-wrap {
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.date-display-text {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-main);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Calendar & Flexible Date Picker Popover */
.calendar-popover {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  width: 380px;
  max-width: calc(100vw - 32px);
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(15, 28, 20, 0.22), 0 4px 16px rgba(15, 28, 20, 0.06);
  border: 1px solid var(--sage-200);
  padding: 20px;
  z-index: 120;
  animation: calPopIn 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: left;
}

@keyframes calPopIn {
  from { opacity: 0; transform: translateY(-8px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.cal-tabs {
  display: flex;
  background: var(--sage-100);
  padding: 4px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
  gap: 4px;
}

.cal-tab-btn {
  flex: 1;
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  background: transparent;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.cal-tab-btn.active {
  background: #ffffff;
  color: var(--pine-900);
  box-shadow: 0 2px 8px rgba(15, 28, 20, 0.08);
}

.cal-section-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Flexible Presets Grid */
.flexible-presets-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.preset-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--sage-200);
  background: var(--sage-50);
  text-align: left;
  cursor: pointer;
  transition: all 0.18s ease;
}

.preset-card:hover {
  background: #ffffff;
  border-color: var(--cta-green);
  transform: translateY(-1px);
}

.preset-card.active {
  background: var(--cta-green-light);
  border-color: var(--cta-green);
  box-shadow: 0 0 0 1px var(--cta-green);
}

.preset-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.preset-info {
  display: flex;
  flex-direction: column;
}

.preset-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.2;
}

.preset-card.active .preset-title {
  color: var(--cta-green);
}

.preset-sub {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Month Calendar */
.cal-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.cal-month-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--pine-900);
}

.cal-nav-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--sage-200);
  background: var(--sage-50);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.15s;
}

.cal-nav-btn:hover {
  background: #ffffff;
  border-color: var(--cta-green);
  color: var(--cta-green);
}

.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 8px;
}

.cal-days-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 16px;
}

.cal-day-cell {
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  transition: all 0.15s ease;
  position: relative;
  background: transparent;
  border: none;
}

.cal-day-cell:hover:not(.disabled) {
  background: var(--sage-100);
}

.cal-day-cell.today {
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cal-day-cell.disabled {
  color: var(--sage-300);
  cursor: not-allowed;
  opacity: 0.5;
}

.cal-day-cell.selected-start,
.cal-day-cell.selected-end {
  background: var(--cta-green) !important;
  color: #ffffff !important;
  font-weight: 800;
}

.cal-day-cell.selected-start {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.cal-day-cell.selected-end {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.cal-day-cell.selected-single {
  border-radius: var(--radius-sm) !important;
}

.cal-day-cell.in-range {
  background: var(--cta-green-light);
  color: var(--cta-green);
  border-radius: 0;
}

.cal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--sage-100);
  padding-top: 14px;
  margin-top: 6px;
}

.cal-hint {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
}

.cal-actions {
  display: flex;
  gap: 8px;
}

.btn-ghost {
  background: transparent;
  border: 1px solid transparent;
  color: var(--text-muted);
  padding: 6px 12px;
  font-weight: 600;
  border-radius: var(--radius-pill);
}

.btn-ghost:hover {
  background: var(--sage-100);
  color: var(--text-main);
}

.search-button-wrap {
  padding-left: 8px;
}

/* Autocomplete Dropdown */
.autocomplete-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  right: 0;
  background: #ffffff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--sage-200);
  max-height: 320px;
  overflow-y: auto;
  z-index: 100;
}

.autocomplete-item {
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--sage-100);
  cursor: pointer;
  transition: background 0.15s;
}

.autocomplete-item:hover, .autocomplete-item.active {
  background-color: var(--sage-50);
}

.ac-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--text-main);
}

.ac-meta {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  gap: 8px;
}

.ac-tag {
  background: var(--sage-100);
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  font-weight: 700;
}

/* Quick Pills */
.quick-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.quick-pill-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  margin-right: 4px;
}

.quick-pill {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: all 0.2s;
}

.quick-pill:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: #ffffff;
  transform: translateY(-1px);
}

/* Hero Assisted Scroll Down Button */
.hero-scroll-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: clamp(48px, 6vh, 90px);
  padding: 9px 20px 9px 16px;
  background: rgba(15, 28, 20, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-pill);
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
}

.hero-scroll-btn:hover {
  background: rgba(15, 28, 20, 0.75);
  border-color: rgba(74, 222, 128, 0.45);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25), 0 0 16px rgba(74, 222, 128, 0.2);
}

.scroll-mouse-icon {
  width: 14px;
  height: 20px;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  border-radius: 10px;
  position: relative;
  display: flex;
  justify-content: center;
}

.scroll-mouse-wheel {
  position: absolute;
  top: 3px;
  width: 2px;
  height: 4px;
  background-color: #4ade80;
  border-radius: 1px;
  animation: mouseWheel 1.8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes mouseWheel {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  60% {
    opacity: 0;
    transform: translateY(6px);
  }
  100% {
    opacity: 0;
    transform: translateY(0);
  }
}

.scroll-btn-chevron {
  animation: gentleBob 1.8s ease-in-out infinite;
  color: #4ade80;
}

@keyframes gentleBob {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(3px);
  }
}

/* Floating Assisted Back to Top Button */
.floating-scroll-top-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(15, 28, 20, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) scale(0.9);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.floating-scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.floating-scroll-top-btn:hover {
  background: var(--pine-800);
  border-color: #4ade80;
  color: #4ade80;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35), 0 0 20px rgba(74, 222, 128, 0.25);
}

/* ===================================================
   LIVE ACTIVITY TICKER (ARVIE STYLE)
   =================================================== */

.live-activity-bar {
  position: relative;
  z-index: 2;
  width: 100%;
  background-color: rgba(15, 28, 20, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #ffffff;
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  height: 52px;
  flex-shrink: 0;
}

.activity-label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 24px;
  background-color: var(--pine-800);
  height: 100%;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  white-space: nowrap;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 2;
}

.pulse-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #4ade80;
  box-shadow: 0 0 8px #4ade80;
  animation: pulseGlow 1.8s infinite;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.ticker-viewport {
  overflow: hidden;
  flex: 1;
  display: flex;
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 16px;
  white-space: nowrap;
  animation: tickerSlide 40s linear infinite;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.06);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 13px;
}

.ticker-hut {
  font-weight: 600;
}

.ticker-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
}

.badge-scanning { background: rgba(217, 119, 6, 0.3); color: #fbbf24; border: 1px solid rgba(251, 191, 36, 0.4); }
.badge-available { background: rgba(46, 125, 50, 0.3); color: #86efac; border: 1px solid rgba(134, 239, 172, 0.4); }
.badge-booked { background: rgba(56, 102, 132, 0.35); color: #93c5fd; border: 1px solid rgba(147, 197, 253, 0.4); }

@keyframes tickerSlide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===================================================
   LIVE RESULTS SECTION (INTERACTIVE DRAWER)
   =================================================== */

.results-section {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  background: rgba(10, 22, 16, 0.18);
  backdrop-filter: blur(8px) saturate(160%);
  -webkit-backdrop-filter: blur(8px) saturate(160%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}

.results-section.active {
  opacity: 1;
  visibility: visible;
}

.results-section .container {
  max-width: 980px;
  width: 100%;
  max-height: 90vh;
  margin: auto;
  display: flex;
  flex-direction: column;
}

.results-loading {
  background: #ffffff;
  padding: 48px 32px;
  border-radius: var(--radius-xl);
  text-align: center;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto;
  width: 100%;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid var(--sage-200);
  border-top-color: var(--cta-green);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 16px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.results-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.15);
  border: 1px solid var(--sage-200);
  overflow-y: auto;
  max-height: 85vh;
  position: relative;
  transform: scale(0.94) translateY(20px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.results-section.active .results-card {
  transform: scale(1) translateY(0);
}

/* Modal Close Button */
.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  transition: all 0.2s ease;
}

.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: rotate(90deg) scale(1.08);
}

.hut-meta-banner {
  padding: 32px 72px 32px 32px;
  background: linear-gradient(135deg, #17281e, #233b2c);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.hut-meta-left {
  flex: 1;
  min-width: 0;
}

.hut-badge-wrap {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}

.badge {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-country { background: #386684; color: #ffffff; }
.badge-tenant { background: rgba(255, 255, 255, 0.2); color: #ffffff; }
.badge-altitude { background: #c68a2e; color: #ffffff; }

.hut-detail-name {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.hut-info-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}

.hut-meta-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.results-subbar {
  padding: 16px 32px;
  background: var(--sage-50);
  border-bottom: 1px solid var(--sage-200);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.results-stats {
  display: flex;
  align-items: center;
  gap: 12px;
}

.results-stats strong {
  color: var(--cta-green);
  font-size: 16px;
}

.stat-dot {
  color: var(--text-light);
}

.availability-legend {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.status-available { background-color: var(--status-available); }
.status-nearly { background-color: var(--status-nearly); }
.status-full { background-color: var(--status-full); }
.status-closed { background-color: var(--status-closed); }

/* Availability Grid */
.availability-grid {
  padding: 32px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 16px;
}

.date-card {
  background: #ffffff;
  border: 1.5px solid var(--sage-200);
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.date-card:hover, .date-card.selected {
  border-color: var(--cta-green);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.date-card.selected {
  background-color: var(--cta-green-light);
}

.date-day-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
}

.date-num {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-main);
  margin: 4px 0 10px;
}

.date-status-pill {
  font-size: 11px;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: var(--radius-pill);
  display: block;
}

.date-card.is-available .date-status-pill {
  background-color: var(--status-available-bg);
  color: var(--status-available);
}

.date-card.is-nearly .date-status-pill {
  background-color: var(--status-nearly-bg);
  color: var(--status-nearly);
}

.date-card.is-full .date-status-pill {
  background-color: var(--status-full-bg);
  color: var(--status-full);
}

.date-card.is-closed .date-status-pill {
  background-color: var(--status-closed-bg);
  color: var(--status-closed);
}

.date-free-count {
  font-size: 12px;
  font-weight: 600;
  margin-top: 8px;
  color: var(--text-muted);
}

/* Category Breakdown Drawer */
.category-breakdown-card {
  margin: 0 32px 32px;
  padding: 24px;
  background: var(--sage-50);
  border: 1px solid var(--sage-200);
  border-radius: var(--radius-lg);
}

.category-header {
  margin-bottom: 16px;
}

.category-header h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-main);
}

.category-header p {
  font-size: 13px;
  color: var(--text-muted);
}

.category-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.category-item {
  background: #ffffff;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--sage-200);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cat-title {
  font-size: 14px;
  font-weight: 600;
}

.cat-beds {
  font-size: 15px;
  font-weight: 800;
}

/* ===================================================
   STORYTELLING & SIMULATION SECTION (ARVIE STYLE)
   =================================================== */

.section-storytelling {
  background-color: #ffffff;
  border-bottom: 1px solid var(--sage-100);
  display: flex;
  align-items: center;
  width: 100%;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.section-eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cta-green);
  display: block;
  margin-bottom: 12px;
}

.section-heading {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--text-main);
  margin-bottom: 20px;
}

.section-desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.story-feature-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.story-feature-item {
  display: flex;
  gap: 16px;
}

.feature-check-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--cta-green-light);
  color: var(--cta-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}

.story-feature-item strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 2px;
}

.story-feature-item span {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Simulation Card */
.simulation-card-wrap {
  perspective: 1000px;
}

.simulation-card {
  background: #ffffff;
  border: 1px solid var(--sage-200);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: 0 16px 40px rgba(15, 28, 20, 0.06);
}

.simulation-header {
  margin-bottom: 24px;
}

.simulation-badge {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--pine-700);
  background: var(--sage-100);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--sage-200);
}

.timeline-step {
  display: flex;
  gap: 16px;
  position: relative;
  padding-bottom: 24px;
}

.timeline-step::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 16px;
  bottom: 0;
  width: 2px;
  background: var(--sage-200);
}

.timeline-step:last-of-type::before {
  display: none;
}

.timeline-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--text-light);
  margin-top: 2px;
  flex-shrink: 0;
  z-index: 2;
}

.dot-active { background: var(--accent-blue); box-shadow: 0 0 8px rgba(56, 102, 132, 0.4); }
.dot-warning { background: var(--accent-gold); box-shadow: 0 0 8px rgba(198, 138, 46, 0.4); }
.dot-success { background: #22c55e; box-shadow: 0 0 12px #22c55e; }

.timeline-time {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.badge-fast {
  background: var(--cta-green-light);
  color: var(--cta-green);
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  font-size: 10px;
  font-weight: 800;
}

.timeline-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.4;
}

.text-success {
  color: var(--status-available);
}

.timeline-text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-top: 2px;
}

.simulation-footer {
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--sage-100);
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ===================================================
   3-PILLAR COLOR CARDS (ARVIE SIGNATURE)
   =================================================== */

.section-pillars {
  background-color: #f8faf9;
  border-bottom: 1px solid var(--sage-100);
  display: flex;
  align-items: center;
  width: 100%;
}

.section-header-center {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 36px;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.pillar-card {
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 12px 32px rgba(15, 28, 20, 0.08);
  min-height: 320px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(15, 28, 20, 0.14);
}

.pillar-green {
  background: linear-gradient(145deg, #2d6a4f, #1b4332);
}

.pillar-blue {
  background: linear-gradient(145deg, #386684, #24465d);
}

.pillar-gold {
  background: linear-gradient(145deg, #c68a2e, #966518);
}

.pillar-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.pillar-title {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 10px;
}

.pillar-desc {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.5;
  margin-bottom: 24px;
  flex-grow: 1;
}

.pillar-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
}

/* ===================================================
   PRICING & CONCIERGE MODES (FROM VIDEO WIREFRAMES)
   =================================================== */

.section-pricing {
  background-color: #ffffff;
  border-bottom: 1px solid var(--sage-100);
  display: flex;
  align-items: center;
  width: 100%;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
}

.pricing-card {
  background: #ffffff;
  border: 1.5px solid var(--sage-200);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 16px 40px rgba(15, 28, 20, 0.06);
  position: relative;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(15, 28, 20, 0.12);
}

.featured-pricing {
  border: 2px solid var(--cta-green);
  background: linear-gradient(180deg, #ffffff 0%, var(--sage-50) 100%);
  box-shadow: 0 20px 48px rgba(45, 106, 79, 0.14);
}

.featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cta-green);
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 12px rgba(45, 106, 79, 0.35);
  white-space: nowrap;
}

.pricing-header {
  margin-bottom: 20px;
  border-bottom: 1px solid var(--sage-200);
  padding-bottom: 18px;
}

.tier-name {
  font-size: 19px;
  font-weight: 800;
  color: var(--text-main);
  display: block;
  margin-bottom: 8px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.price-val {
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  color: var(--text-main);
}

.price-currency {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-muted);
}

.pricing-subtext {
  font-size: 12.5px;
  color: var(--text-muted);
  margin-top: 6px;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
  flex-grow: 1;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13.5px;
  line-height: 1.4;
}

.p-item-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
}

.p-item-content strong {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text-main);
}

.p-desc {
  font-size: 12.5px;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.35;
}

.p-check {
  font-weight: 800;
  font-size: 12px;
  color: var(--text-muted);
  flex-shrink: 0;
  margin-top: 1px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--sage-100);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.text-green.p-check {
  color: var(--cta-green) !important;
  background: var(--cta-green-light) !important;
}

.btn-full {
  width: 100%;
}

/* ===================================================
   COMPARISON TABLE (ARVIE STYLE)
   =================================================== */

.section-comparison {
  background-color: #f8faf9;
  display: flex;
  align-items: center;
  width: 100%;
}

.table-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  border: 1px solid var(--sage-200);
  box-shadow: 0 16px 40px rgba(15, 28, 20, 0.06);
  overflow: hidden;
  max-width: 960px;
  margin: 0 auto;
}

.table-responsive {
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
}

.comparison-table th, .comparison-table td {
  padding: 20px 24px;
  border-bottom: 1px solid var(--sage-100);
  font-size: 15px;
}

.comparison-table th {
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--sage-50);
  color: var(--text-muted);
}

.comparison-table tr:hover td {
  background-color: var(--sage-50);
}

.feature-col {
  text-align: left;
  width: 40%;
}

.feature-title {
  text-align: left;
  font-weight: 600;
  color: var(--text-main);
}

.highlight-col {
  background: var(--cta-green-light) !important;
  color: var(--cta-green) !important;
  font-weight: 800 !important;
  font-size: 15px !important;
}

.highlight-cell {
  background: rgba(45, 106, 79, 0.04);
}

.check-icon {
  color: var(--status-available);
  font-weight: 900;
  font-size: 18px;
}

.cross-icon {
  color: var(--status-full);
  font-weight: 900;
  font-size: 16px;
}

.partial-icon {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light);
}

/* ===================================================
   TESTIMONIALS SECTION WITH PANORAMA BG
   =================================================== */

.section-testimonials {
  position: relative;
  min-height: 52vh;
  padding: clamp(90px, 8vh, 130px) 0;
  color: #ffffff;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.testimonials-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.testimonials-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.testimonials-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 28, 20, 0.8) 0%, rgba(15, 28, 20, 0.92) 100%);
}

.relative-z {
  position: relative;
  z-index: 2;
}

.testimonials-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.light-eyebrow {
  color: #a7f3d0 !important;
}

.light-heading {
  color: #ffffff !important;
}

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  margin-top: 12px;
  font-size: 14px;
}

.stars {
  color: #fbbf24;
  font-size: 16px;
}

.rating-number {
  font-weight: 800;
}

.rating-sub {
  color: rgba(255, 255, 255, 0.7);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.review-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-xl);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-stars {
  color: #fbbf24;
  font-size: 18px;
  margin-bottom: 16px;
}

.review-quote {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
  font-style: italic;
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2d6a4f, #386684);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

.reviewer-name {
  font-weight: 700;
  font-size: 14px;
}

.reviewer-meta {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
}

/* ===================================================
   CTA BANNER
   =================================================== */


.section-cta {
  min-height: 40vh;
  padding: clamp(60px, 6vh, 100px) 0;
  background-color: var(--sage-bg);
  display: flex;
  align-items: center;
}

.cta-box {
  background: linear-gradient(135deg, #17281e, #233b2c);
  border-radius: var(--radius-xl);
  padding: 64px 32px;
  text-align: center;
  color: #ffffff;
  box-shadow: var(--shadow-xl);
}

.cta-heading {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
}

.cta-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
}

.btn-cta {
  background-color: #ffffff;
  color: var(--pine-900);
  font-size: 16px;
  font-weight: 800;
  padding: 16px 36px;
}

.btn-cta:hover {
  background-color: var(--sage-50);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

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

.site-footer {
  background-color: var(--pine-900);
  color: #ffffff;
  padding: 80px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  line-height: 1.6;
  margin-top: 16px;
  max-width: 320px;
}

.footer-col h4 {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

.footer-logo {
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  max-width: 320px;
  line-height: 1.6;
}

.footer-heading {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #ffffff;
  margin-bottom: 20px;
}

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

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/* ===================================================
   RESPONSIVE MEDIA QUERIES
   =================================================== */

@media (max-width: 1024px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .pillars-grid, .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  .search-capsule {
    flex-direction: column;
    padding: 16px;
    border-radius: var(--radius-lg);
  }
  .search-segment {
    width: 100%;
    padding: 8px 0;
  }
  .search-divider {
    width: 100%;
    height: 1px;
    margin: 6px 0;
  }
  .search-button-wrap {
    width: 100%;
    padding-left: 0;
    margin-top: 12px;
  }
  .hut-meta-banner {
    flex-direction: column;
    align-items: flex-start;
  }
  .hut-meta-right {
    width: 100%;
    flex-direction: column;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
