/* ============================================
   OWL LODGES — Design System & Styles
   ============================================ */

/* --- Custom Properties --- */
:root {
  --color-primary: #101f38;
  --color-primary-dark: #101f38;
  --color-primary-light: #1b3258;
  --color-accent: #C9954C;
  --color-accent-dark: #A87A3A;
  --color-accent-light: #DABB82;
  --color-bg: #FAF7F2;
  --color-bg-alt: #edeef2;
  --color-surface: #FFFFFF;
  --color-text: #2B2B2B;
  --color-text-light: #6B6B6B;
  --color-text-inv: #FFFFFF;
  --color-sage: #e6e7ed;
  --color-sage-dark: #c8cad6;
  --color-border: #d5d7de;
  --color-error: #C0392B;
  --color-success: #27AE60;

  --font-heading: 'DM Serif Display', Georgia, serif;
  --font-body: 'Source Sans 3', 'Segoe UI', sans-serif;

  --fs-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.8125rem);
  --fs-sm: clamp(0.8125rem, 0.77rem + 0.25vw, 0.9375rem);
  --fs-base: clamp(0.9375rem, 0.88rem + 0.3vw, 1.0625rem);
  --fs-md: clamp(1.125rem, 1rem + 0.5vw, 1.3125rem);
  --fs-lg: clamp(1.5rem, 1.2rem + 1vw, 2rem);
  --fs-xl: clamp(2rem, 1.5rem + 2vw, 3rem);
  --fs-xxl: clamp(2.5rem, 1.8rem + 3vw, 4rem);

  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2.5rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --space-4xl: 8rem;

  --radius-sm: 0.375rem;
  --radius-md: 0.625rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 100vw;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-xl: 0 16px 50px rgba(0,0,0,0.15);

  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;

  --header-h: 72px;
  --max-w: 1280px;
  --max-w-narrow: 900px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-primary-dark);
}

h1 { font-size: var(--fs-xxl); }
h2 { font-size: var(--fs-xl); }
h3 { font-size: var(--fs-lg); }
h4 { font-size: var(--fs-md); }

p + p { margin-top: var(--space-md); }

ul, ol { list-style: none; }

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

button { cursor: pointer; }

::selection {
  background: var(--color-accent-light);
  color: var(--color-primary-dark);
}

/* --- Utility --- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container--narrow {
  max-width: var(--max-w-narrow);
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

.section {
  padding: var(--space-3xl) 0;
}

.section--alt {
  background: var(--color-sage);
}

.section--dark {
  background: var(--color-primary-dark);
  color: var(--color-text-inv);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--color-text-inv);
}

.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-2xl);
}

.section__subtitle {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}

.section__title {
  margin-bottom: var(--space-md);
}

.section__desc {
  color: var(--color-text-light);
  font-size: var(--fs-md);
}

.text-center { text-align: center; }
.text-accent { color: var(--color-accent); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: 0.85em 2em;
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  white-space: nowrap;
  text-decoration: none;
}

.btn--primary {
  background: var(--color-accent);
  color: var(--color-surface);
}
.btn--primary:hover {
  background: var(--color-accent-dark);
  color: var(--color-surface);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--secondary {
  background: var(--color-primary);
  color: var(--color-text-inv);
}
.btn--secondary:hover {
  background: var(--color-primary-dark);
  color: var(--color-text-inv);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  background: transparent;
}
.btn--outline:hover {
  background: var(--color-primary);
  color: var(--color-text-inv);
}

.btn--lg {
  padding: 1.1em 2.6em;
  font-size: var(--fs-base);
}

.btn--sm {
  padding: 0.6em 1.4em;
  font-size: var(--fs-xs);
}

.btn--icon svg {
  width: 1.1em;
  height: 1.1em;
  fill: currentColor;
}

/* --- Header / Navigation --- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: var(--color-primary-dark);
  transition: box-shadow var(--transition-base);
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
}

.site-header.is-scrolled .nav__link {
  color: var(--color-text-inv);
}

.site-header.is-scrolled .header__logo {
  color: var(--color-text-inv);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.header__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.header__logo img {
  height: 52px;
  width: auto;
}

.nav { display: flex; align-items: center; gap: var(--space-xl); }

.nav__list {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav__link {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--color-text-inv);
  letter-spacing: 0.02em;
  position: relative;
  transition: color var(--transition-fast);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--color-accent);
  transition: width var(--transition-base);
}

.nav__link:hover::after,
.nav__link.is-active::after {
  width: 100%;
}

.nav__cta { margin-left: var(--space-sm); }

.nav__icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  opacity: 0.6;
  transition: opacity var(--transition-fast);
}

.nav__link:hover .nav__icon { opacity: 1; }

.nav__mobile-logo { display: none; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-text-inv);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.site-header.is-scrolled .hamburger span {
  background: var(--color-text-inv);
}

.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--color-primary-dark);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16,31,56,0.4) 0%, rgba(16,31,56,0.7) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: calc(var(--header-h) + var(--space-2xl)) var(--space-lg) var(--space-2xl);
  max-width: 820px;
}

.hero__title {
  color: var(--color-text-inv);
  margin-bottom: var(--space-md);
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero__subtitle {
  color: rgba(255,255,255,0.9);
  font-size: var(--fs-md);
  margin-bottom: var(--space-xl);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Availability Checker --- */
.availability {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-xl);
  max-width: 740px;
  margin: 0 auto;
}

.availability__form {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: var(--space-md);
  align-items: end;
}

.availability__group {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.availability__label {
  font-size: var(--fs-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-light);
}

.availability__input {
  padding: 0.75em 1em;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: var(--fs-sm);
  background: var(--color-bg);
  color: var(--color-text);
  transition: border-color var(--transition-fast);
  width: 100%;
}

.availability__input:focus {
  outline: none;
  border-color: var(--color-accent);
}

.availability__btn {
  padding: 0.78em 1.8em;
  align-self: flex-end;
}

.availability--hero {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.availability--hero.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Trust Bar --- */
.trust-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-xl);
  padding: var(--space-lg) 0;
  flex-wrap: wrap;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--color-text-light);
}

.trust-bar__icon {
  width: 24px; height: 24px;
  flex-shrink: 0;
}

.trust-bar__stars {
  display: flex;
  gap: 2px;
  color: var(--color-accent);
}

/* --- Lodge Cards --- */
.lodges-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

.lodge-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-surface);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

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

.lodge-card__image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.lodge-card__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.lodge-card:hover .lodge-card__image img {
  transform: scale(1.04);
}

.lodge-card__badge {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  background: var(--color-accent);
  color: var(--color-surface);
  font-size: var(--fs-xs);
  font-weight: 700;
  padding: 0.3em 0.9em;
  border-radius: var(--radius-full);
}

.lodge-card__price {
  position: absolute;
  bottom: var(--space-md);
  right: var(--space-md);
  background: rgba(0,0,0,0.7);
  color: var(--color-text-inv);
  padding: 0.4em 1em;
  border-radius: var(--radius-sm);
  font-size: var(--fs-sm);
  font-weight: 600;
  backdrop-filter: blur(4px);
}

.lodge-card__price strong {
  font-size: var(--fs-md);
  color: var(--color-accent-light);
}

.lodge-card__body {
  padding: var(--space-lg);
}

.lodge-card__name {
  margin-bottom: var(--space-xs);
}

.lodge-card__tagline {
  color: var(--color-text-light);
  font-size: var(--fs-sm);
  margin-bottom: var(--space-md);
}

.lodge-card__features {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}

.lodge-card__feature {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--fs-sm);
  color: var(--color-text-light);
}

.lodge-card__feature svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
  color: var(--color-primary);
}

/* --- Experience Strip --- */
.experiences {
  display: flex;
  gap: var(--space-lg);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: var(--space-md) 0;
  scrollbar-width: none;
}

.experiences::-webkit-scrollbar { display: none; }

.experience-card {
  flex: 0 0 260px;
  scroll-snap-align: start;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
  cursor: pointer;
}

.experience-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.experience-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.65) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-lg);
}

.experience-card__title {
  color: var(--color-text-inv);
  font-size: var(--fs-md);
  font-family: var(--font-heading);
}

.experience-card__desc {
  color: rgba(255,255,255,0.85);
  font-size: var(--fs-sm);
  margin-top: var(--space-xs);
}

.experiences-wrap { position: relative; }

.experiences-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-primary-dark);
  transition: all var(--transition-fast);
  opacity: 0;
  visibility: hidden;
}

.experiences-wrap:hover .experiences-nav,
.experiences-nav:focus-visible {
  opacity: 1;
  visibility: visible;
}

.experiences-nav:hover {
  background: var(--color-primary-dark);
  color: white;
  border-color: var(--color-primary-dark);
}

.experiences-nav svg { width: 18px; height: 18px; }
.experiences-nav--prev { left: -16px; }
.experiences-nav--next { right: -16px; }

@media (max-width: 768px) {
  .experiences-nav { display: none; }
}

/* --- Why Book Direct --- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.benefit {
  text-align: center;
  padding: var(--space-xl) var(--space-lg);
}

.benefit__icon {
  width: 56px; height: 56px;
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-sage);
  border-radius: var(--radius-lg);
  color: var(--color-primary);
}

.benefit__icon svg {
  width: 28px; height: 28px;
}

.benefit__title {
  margin-bottom: var(--space-xs);
}

.benefit__desc {
  color: var(--color-text-light);
  font-size: var(--fs-sm);
}

/* --- Testimonials --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.testimonial {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.testimonial__stars {
  display: flex;
  gap: 2px;
  color: var(--color-accent);
  margin-bottom: var(--space-md);
}

.testimonial__text {
  font-size: var(--fs-base);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  font-style: italic;
  color: var(--color-text);
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.testimonial__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--color-sage);
}

.testimonial__name {
  font-weight: 600;
  font-size: var(--fs-sm);
}

.testimonial__date {
  font-size: var(--fs-xs);
  color: var(--color-text-light);
}

/* --- Gallery Mosaic --- */
.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 240px);
  gap: var(--space-sm);
}

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

.gallery-mosaic__item:nth-child(1) {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}

.gallery-mosaic__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.gallery-mosaic__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background var(--transition-base);
}

.gallery-mosaic__item:hover::after {
  background: rgba(0,0,0,0.1);
}

/* --- Map Section --- */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 420px;
  box-shadow: var(--shadow-md);
}

.map-container iframe {
  width: 100%; height: 100%;
  border: 0;
}

.map-distances {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.map-distance {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--color-text);
  background: var(--color-surface);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
}

.map-distance svg {
  width: 18px; height: 18px;
  color: var(--color-accent);
}

/* --- FAQ --- */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.faq-item {
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-item.is-open {
  border-color: var(--color-accent);
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-md) var(--space-lg);
  font-size: var(--fs-base);
  font-weight: 600;
  text-align: left;
  background: var(--color-surface);
  cursor: pointer;
  gap: var(--space-md);
}

.faq-item__icon {
  width: 24px; height: 24px;
  flex-shrink: 0;
  transition: transform var(--transition-base);
  color: var(--color-accent);
}

.faq-item.is-open .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.faq-item__answer-inner {
  padding: 0 var(--space-lg) var(--space-lg);
  color: var(--color-text-light);
  line-height: 1.7;
}

/* --- CTA Banner --- */
.cta-banner {
  text-align: center;
  background: var(--color-primary-dark);
  color: var(--color-text-inv);
  padding: var(--space-3xl) var(--space-lg);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-banner__content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.cta-banner__title {
  color: var(--color-text-inv);
  margin-bottom: var(--space-md);
}

.cta-banner__desc {
  color: rgba(255,255,255,0.8);
  font-size: var(--fs-md);
  margin-bottom: var(--space-xl);
}

/* --- Footer --- */
.site-footer {
  background: var(--color-primary-dark);
  color: rgba(255,255,255,0.7);
  padding: var(--space-3xl) 0 var(--space-xl);
}

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

.footer__brand {
  margin-bottom: var(--space-md);
}

.footer__brand img {
  height: 48px;
  width: auto;
}

.footer__desc {
  font-size: var(--fs-sm);
  line-height: 1.7;
  max-width: 320px;
}

.footer__heading {
  color: var(--color-text-inv);
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-md);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer__link {
  color: rgba(255,255,255,0.7);
  font-size: var(--fs-sm);
  transition: color var(--transition-fast);
}

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

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--space-xl);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--fs-xs);
  flex-wrap: wrap;
  gap: var(--space-md);
}

/* --- Lodge Detail Page --- */
.lodge-hero {
  position: relative;
  height: 70vh;
  min-height: 500px;
  overflow: hidden;
}

.lodge-hero__bg {
  position: absolute;
  inset: 0;
}

.lodge-hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.lodge-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(16,31,56,0.7) 0%, rgba(16,31,56,0.2) 50%, transparent 100%);
}

.lodge-hero__content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: var(--space-2xl) var(--space-lg);
  max-width: var(--max-w);
  margin: 0 auto;
}

.lodge-hero__title {
  color: var(--color-text-inv);
  margin-bottom: var(--space-xs);
}

.lodge-hero__tagline {
  color: rgba(255,255,255,0.9);
  font-size: var(--fs-md);
}

.lodge-detail {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--space-2xl);
  align-items: start;
}

.lodge-detail__main { min-width: 0; }

/* Stats bar */
.lodge-stats {
  display: flex;
  gap: var(--space-xl);
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
}

.lodge-stat {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--fs-sm);
  font-weight: 600;
}

.lodge-stat svg {
  width: 22px; height: 22px;
  color: var(--color-primary);
}

/* Amenities */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--space-md);
}

.amenity {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm);
  font-size: var(--fs-sm);
}

.amenity svg {
  width: 22px; height: 22px;
  flex-shrink: 0;
  color: var(--color-primary);
}

/* Booking sidebar */
.booking-sidebar {
  position: sticky;
  top: calc(var(--header-h) + var(--space-lg));
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
}

.booking-sidebar__price {
  font-size: var(--fs-lg);
  font-family: var(--font-heading);
  color: var(--color-primary-dark);
  margin-bottom: var(--space-xs);
}

.booking-sidebar__price span {
  font-size: var(--fs-sm);
  font-family: var(--font-body);
  color: var(--color-text-light);
  font-weight: 400;
}

.booking-sidebar__scarcity {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--fs-xs);
  color: var(--color-error);
  font-weight: 600;
  margin-bottom: var(--space-lg);
  background: #fef2f0;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-sm);
}

.booking-sidebar__form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.booking-sidebar__form .availability__group {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.booking-sidebar__form .availability__input {
  width: 100%;
}

.booking-sidebar__divider {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: var(--space-sm) 0;
}

.booking-sidebar__trust {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-top: var(--space-md);
  font-size: var(--fs-xs);
  color: var(--color-text-light);
}

.booking-sidebar__trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.booking-sidebar__trust-item svg {
  width: 16px; height: 16px;
  color: var(--color-success);
  flex-shrink: 0;
}

/* Gallery thumbnails */
.lodge-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.lodge-gallery__item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}

.lodge-gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow), opacity var(--transition-base);
}

.lodge-gallery__item:hover img {
  transform: scale(1.05);
  opacity: 0.9;
}

/* Story section */
.lodge-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.lodge-story__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}

.lodge-story__image img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* --- Booking Page --- */
.booking-page {
  padding-top: calc(var(--header-h) + var(--space-2xl));
  min-height: 100vh;
}

.booking-progress {
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
  padding: 0 var(--space-lg);
}

.booking-progress__step {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--color-text-light);
}

.booking-progress__step.is-active {
  color: var(--color-primary);
}

.booking-progress__step.is-done {
  color: var(--color-success);
}

.booking-progress__number {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-sm);
  font-weight: 700;
  border: 2px solid var(--color-border);
  background: var(--color-surface);
  transition: all var(--transition-base);
}

.booking-progress__step.is-active .booking-progress__number {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: var(--color-text-inv);
}

.booking-progress__step.is-done .booking-progress__number {
  border-color: var(--color-success);
  background: var(--color-success);
  color: var(--color-text-inv);
}

.booking-progress__line {
  width: 60px;
  height: 2px;
  background: var(--color-border);
  align-self: center;
}

.booking-progress__line.is-done {
  background: var(--color-success);
}

.booking-step {
  display: none;
}

.booking-step.is-active {
  display: block;
}

.booking-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--space-2xl);
  align-items: start;
  padding-bottom: var(--space-3xl);
}

/* Calendar */
.calendar {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}

.calendar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-md);
}

.calendar__month {
  font-family: var(--font-heading);
  font-size: var(--fs-md);
}

.calendar__nav {
  display: flex;
  gap: var(--space-xs);
}

.calendar__nav-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--color-border);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.calendar__nav-btn:hover {
  border-color: var(--color-primary);
  background: var(--color-sage);
}

.calendar__nav-btn svg {
  width: 16px; height: 16px;
}

.calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  text-align: center;
}

.calendar__day-label {
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--color-text-light);
  padding: var(--space-sm) 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.calendar__day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-sm);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
  position: relative;
}

.calendar__day:hover:not(.is-disabled):not(.is-booked) {
  background: var(--color-sage);
}

.calendar__day.is-today {
  font-weight: 700;
  border: 1.5px solid var(--color-primary);
}

.calendar__day.is-selected {
  background: var(--color-primary);
  color: var(--color-text-inv);
  font-weight: 600;
}

.calendar__day.is-in-range {
  background: var(--color-sage-dark);
}

.calendar__day.is-booked {
  color: var(--color-border);
  text-decoration: line-through;
  cursor: not-allowed;
}

.calendar__day.is-disabled {
  color: var(--color-border);
  cursor: default;
}

/* Price summary sidebar */
.price-summary {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
  position: sticky;
  top: calc(var(--header-h) + var(--space-lg));
}

.price-summary__lodge {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--color-border);
}

.price-summary__lodge-img {
  width: 80px; height: 60px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
}

.price-summary__lodge-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.price-summary__lodge-name {
  font-family: var(--font-heading);
  font-size: var(--fs-base);
}

.price-summary__lodge-rating {
  font-size: var(--fs-xs);
  color: var(--color-accent);
}

.price-summary__row {
  display: flex;
  justify-content: space-between;
  font-size: var(--fs-sm);
  padding: var(--space-xs) 0;
}

.price-summary__total {
  display: flex;
  justify-content: space-between;
  font-size: var(--fs-md);
  font-weight: 700;
  padding: var(--space-md) 0 0;
  margin-top: var(--space-sm);
  border-top: 2px solid var(--color-primary-dark);
}

/* Guest form */
.guest-form {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  font-size: var(--fs-sm);
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.form-input {
  width: 100%;
  padding: 0.75em 1em;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: var(--fs-base);
  background: var(--color-bg);
  transition: border-color var(--transition-fast);
}

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

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

/* Success modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
  backdrop-filter: blur(4px);
}

.modal-overlay.is-open {
  display: flex;
}

.modal {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  max-width: 500px;
  width: 100%;
  text-align: center;
  animation: modalIn 0.3s ease;
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.95) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal__icon {
  width: 72px; height: 72px;
  margin: 0 auto var(--space-lg);
  background: #e8f8ef;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-success);
}

.modal__icon svg {
  width: 36px; height: 36px;
}

.modal__title {
  margin-bottom: var(--space-sm);
}

.modal__text {
  color: var(--color-text-light);
  margin-bottom: var(--space-xl);
}

/* --- Lightbox --- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
}

.lightbox.is-open {
  display: flex;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  animation: modalIn 0.3s ease;
}

.lightbox__close {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
}

.lightbox__close:hover {
  background: rgba(255,255,255,0.2);
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
}

.lightbox__nav:hover { background: rgba(255,255,255,0.2); }
.lightbox__nav--prev { left: var(--space-lg); }
.lightbox__nav--next { right: var(--space-lg); }

/* --- Scroll Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children */
.reveal-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal-children.is-visible > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: translateY(0); }
.reveal-children.is-visible > *:nth-child(2) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.reveal-children.is-visible > *:nth-child(3) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.reveal-children.is-visible > *:nth-child(4) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.reveal-children.is-visible > *:nth-child(5) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
.reveal-children.is-visible > *:nth-child(6) { transition-delay: 0.5s; opacity: 1; transform: translateY(0); }

/* --- Sticky Bottom CTA Bar --- */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  background: var(--color-surface);
  padding: 12px var(--space-lg) calc(12px + env(safe-area-inset-bottom, 0px));
  box-shadow: 0 -2px 12px rgba(0,0,0,0.08);
  justify-content: space-between;
  align-items: center;
}

.mobile-cta__price {
  font-family: var(--font-heading);
  font-size: var(--fs-base);
  color: var(--color-primary-dark);
  line-height: 1.2;
}

.mobile-cta__price span {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--color-text-light);
  display: block;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .lodges-grid { gap: var(--space-lg); }
  .lodge-detail { grid-template-columns: 1fr; }
  .booking-sidebar { position: static; }
  .booking-layout { grid-template-columns: 1fr; }
  .lodge-story { grid-template-columns: 1fr; gap: var(--space-xl); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .gallery-mosaic { grid-template-rows: repeat(2, 200px); }
}

@media (max-width: 768px) {
  :root {
    --header-h: 64px;
    --space-3xl: 4rem;
    --space-4xl: 5rem;
  }

  .nav__list {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #101f38;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--space-2xl) var(--space-lg);
    gap: var(--space-xs);
    transform: translateX(100%);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
    z-index: 1000;
    overflow-y: auto;
  }

  .nav__list::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
  }

  .nav__list > li {
    position: relative;
    z-index: 1;
    width: 100%;
    text-align: center;
  }

  .nav__list.is-open {
    transform: translateX(0);
    opacity: 1;
  }

  .nav__mobile-logo {
    display: block;
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid rgba(255,255,255,0.15);
    text-align: center;
  }

  .nav__mobile-logo img {
    height: 44px;
    width: auto;
    display: inline-block;
  }

  .nav__list .nav__link {
    color: rgba(255,255,255,0.85);
    font-size: var(--fs-md);
    font-family: var(--font-heading);
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) 0;
    transition: color 0.2s ease;
  }

  .nav__list .nav__link:hover,
  .nav__list .nav__link.is-active {
    color: var(--color-accent);
  }

  .nav__list .nav__link .nav__icon {
    width: 22px;
    height: 22px;
    opacity: 1;
  }

  .nav__list .nav__link::after { display: none; }

  .nav__cta { margin-left: 0; margin-top: var(--space-md); }

  .hamburger { display: flex; z-index: 1001; }

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

  .lodges-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .gallery-mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 180px);
  }

  .gallery-mosaic__item:nth-child(1) {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
  }

  .lodge-gallery { grid-template-columns: repeat(2, 1fr); }

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

  .mobile-cta { display: flex; padding: 14px var(--space-md) calc(14px + env(safe-area-inset-bottom, 0px)); }
  .booking-sidebar { display: none; }

  .lodge-hero { height: 50vh; min-height: 380px; }

  .booking-progress { gap: var(--space-sm); }
  .booking-progress__line { width: 30px; }

  .form-row { grid-template-columns: 1fr; }

  .experience-card { flex: 0 0 200px; }

  .map-container { height: 300px; }

  .calendar-dual {
    grid-template-columns: 1fr !important;
  }

  .site-footer {
    padding-bottom: calc(var(--space-xl) + 70px);
  }

  .booking-step {
    animation: stepFadeIn 0.4s ease;
  }

  .availability--hero { display: none; }

  .hero { min-height: 80vh; min-height: 80dvh; }

  .hero__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: var(--space-3xl);
  }

  .share-btn { display: none; }
}

@media (max-width: 480px) {
  .hero__content { padding-left: var(--space-md); padding-right: var(--space-md); }
  .trust-bar { gap: var(--space-md); }
  .trust-bar__item { font-size: var(--fs-xs); }
}

/* --- Focus Styles --- */
:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.btn:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(201,149,76,0.25);
}

.form-input:focus-visible,
.availability__input:focus-visible {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(201,149,76,0.15);
}

/* --- Disabled Button --- */
.btn:disabled,
.btn[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

/* --- Booking Step Animation --- */
@keyframes stepFadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.booking-step.is-active {
  display: block;
  animation: stepFadeIn 0.4s ease;
}

/* --- Toast Notification --- */
.toast {
  position: fixed;
  bottom: var(--space-xl);
  left: var(--space-lg);
  z-index: 1500;
  background: var(--color-surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
  padding: var(--space-md) var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  max-width: 380px;
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
  pointer-events: none;
}

.toast.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.toast__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fef9f0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-accent);
}

.toast__icon svg {
  width: 20px;
  height: 20px;
}

.toast__body {
  flex: 1;
  min-width: 0;
}

.toast__title {
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 2px;
}

.toast__text {
  font-size: var(--fs-xs);
  color: var(--color-text-light);
}

.toast__close {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--color-text-light);
  cursor: pointer;
  transition: background var(--transition-fast);
  flex-shrink: 0;
}

.toast__close:hover {
  background: var(--color-sage);
}


/* --- Chatbot --- */
.chatbot { position: fixed; bottom: var(--space-lg); right: var(--space-lg); z-index: 1400; }

.chatbot__trigger {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-primary-dark);
  color: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.chatbot__trigger:hover { transform: scale(1.08); box-shadow: var(--shadow-xl); }
.chatbot__trigger svg { width: 26px; height: 26px; }

.chatbot__panel {
  position: absolute;
  bottom: 68px;
  right: 0;
  width: 370px;
  max-height: 520px;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 48px rgba(0,0,0,0.18);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: scale(0.9) translateY(12px);
  opacity: 0;
  visibility: hidden;
  transform-origin: bottom right;
  transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s ease;
}

.chatbot__panel.is-open {
  transform: scale(1) translateY(0);
  opacity: 1;
  visibility: visible;
}

.chatbot__header {
  background: var(--color-primary-dark);
  color: white;
  padding: var(--space-md) var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

.chatbot__header-info { display: flex; align-items: center; gap: var(--space-sm); }

.chatbot__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.chatbot__name { font-weight: 700; font-size: var(--fs-sm); }
.chatbot__status { font-size: 0.7rem; opacity: 0.7; }

.chatbot__close {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0 var(--space-xs);
  opacity: 0.7;
  transition: opacity 0.2s;
}

.chatbot__close:hover { opacity: 1; }

.chatbot__messages {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-md) var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  min-height: 240px;
  max-height: 320px;
  background: var(--color-bg);
}

.chatbot__msg { display: flex; max-width: 85%; }

.chatbot__msg--bot { align-self: flex-start; }
.chatbot__msg--user { align-self: flex-end; }

.chatbot__msg-text {
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  font-size: var(--fs-sm);
  line-height: 1.5;
}

.chatbot__msg--bot .chatbot__msg-text {
  background: var(--color-surface);
  color: var(--color-text);
  border-bottom-left-radius: 4px;
  box-shadow: var(--shadow-xs);
}

.chatbot__msg--user .chatbot__msg-text {
  background: var(--color-primary-dark);
  color: white;
  border-bottom-right-radius: 4px;
}

.chatbot__msg--typing .chatbot__msg-text::after {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-text-light);
  animation: chatDots 1.2s infinite;
  margin-left: 2px;
  box-shadow: 8px 0 0 var(--color-text-light), 16px 0 0 var(--color-text-light);
}

@keyframes chatDots {
  0%, 60%, 100% { opacity: 0.3; }
  30% { opacity: 1; }
}

.chatbot__quick-replies {
  padding: var(--space-xs) var(--space-lg) var(--space-sm);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
}

.chatbot__quick-btn {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 0.75rem;
  color: var(--color-primary-dark);
  cursor: pointer;
  transition: all var(--transition-fast);
  font-weight: 600;
  white-space: nowrap;
}

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

.chatbot__input {
  display: flex;
  padding: var(--space-sm) var(--space-md);
  gap: var(--space-xs);
  border-top: 1px solid var(--color-border);
  background: var(--color-surface);
  flex-shrink: 0;
}

.chatbot__input input {
  flex: 1;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: var(--space-xs) var(--space-md);
  font-size: var(--fs-sm);
  outline: none;
  font-family: inherit;
  background: var(--color-bg);
}

.chatbot__input input:focus { border-color: var(--color-primary); }

.chatbot__send {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-primary-dark);
  color: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition-fast);
  flex-shrink: 0;
}

.chatbot__send:hover { background: var(--color-primary); }
.chatbot__send svg { width: 16px; height: 16px; }


/* --- Share Button --- */
.share-btn {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  z-index: 3;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  color: var(--color-primary);
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.share-btn:hover {
  background: var(--color-surface);
  transform: scale(1.1);
}

.share-btn svg {
  width: 18px;
  height: 18px;
}

/* --- Animated Counter --- */
.count-up {
  display: inline-block;
}

/* --- Hamper Upsell --- */
.hamper-upsell {
  background: linear-gradient(135deg, #fef9f0, #fdf3e3);
  border: 1.5px solid var(--color-accent-light);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  margin-top: var(--space-lg);
}

.hamper-upsell__header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
  font-weight: 700;
  color: var(--color-primary-dark);
}

.hamper-upsell__header svg {
  width: 24px;
  height: 24px;
  color: var(--color-accent);
}

.hamper-upsell__desc {
  font-size: var(--fs-sm);
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.hamper-upsell__check {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  cursor: pointer;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--color-primary-dark);
}

.hamper-upsell__check input {
  accent-color: var(--color-accent);
  width: 20px;
  height: 20px;
}

/* --- Leaflet Map --- */
.leaflet-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 420px;
  box-shadow: var(--shadow-md);
  z-index: 0;
}

@media (max-width: 768px) {
  .leaflet-map { height: 300px; }
  .toast { left: var(--space-md); right: var(--space-md); max-width: none; bottom: 80px; }
  .chatbot { bottom: 72px; right: var(--space-md); }
  .chatbot__panel { width: calc(100vw - var(--space-lg) * 2); right: 0; bottom: 64px; max-height: 65vh; }
}

/* --- Legal Content (Terms, Privacy) --- */
.legal-content h2 {
  font-size: var(--fs-md);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-border);
}

.legal-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.legal-content p {
  margin-bottom: var(--space-md);
  line-height: 1.8;
}

.legal-content ul {
  margin: 0 0 var(--space-md) var(--space-lg);
  list-style: disc;
}

.legal-content li {
  margin-bottom: var(--space-xs);
  line-height: 1.7;
}

.legal-content a {
  color: var(--color-accent-dark);
  text-decoration: underline;
}

.legal-content a:hover {
  color: var(--color-accent);
}

/* --- Blog --- */
.blog-featured {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
  text-decoration: none;
  color: inherit;
}

.blog-featured:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
  color: inherit;
}

.blog-featured__image {
  aspect-ratio: 3/2;
  overflow: hidden;
}

.blog-featured__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.blog-featured:hover .blog-featured__image img {
  transform: scale(1.03);
}

.blog-featured__content {
  padding: var(--space-xl);
}

.blog-featured__title {
  font-size: var(--fs-lg);
  margin: var(--space-sm) 0 var(--space-md);
  line-height: 1.25;
}

.blog-featured__excerpt {
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--space-xl);
}

.blog-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  color: inherit;
}

.blog-card__image {
  aspect-ratio: 3/2;
  overflow: hidden;
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.blog-card:hover .blog-card__image img {
  transform: scale(1.04);
}

.blog-card__body {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card__category {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent-dark);
  margin-bottom: var(--space-xs);
}

.blog-card__title {
  font-size: var(--fs-md);
  margin-bottom: var(--space-sm);
  line-height: 1.3;
}

.blog-card__excerpt {
  font-size: var(--fs-sm);
  color: var(--color-text-light);
  line-height: 1.6;
  margin-bottom: var(--space-md);
  flex: 1;
}

.blog-card__meta {
  display: flex;
  gap: var(--space-xs);
  font-size: var(--fs-xs);
  color: var(--color-text-light);
}

@media (max-width: 768px) {
  .blog-featured {
    grid-template-columns: 1fr;
  }

  .blog-featured__content {
    padding: var(--space-lg);
  }

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

