/* === VARIABLES === */
:root {
  --color-gold: #c8a050;
  --color-gold-hover: #b8903a;
  --color-dark: #1a1714;
  --color-cream: #faf6f0;
  --color-white: #ffffff;
  --color-text: #2d2a26;
  --color-text-light: #6b6560;
  --font-body: 'Inter', sans-serif;
  --font-heading: 'Playfair Display', serif;
  --radius: 1rem;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --transition: 0.3s ease;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* === UTILITY === */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 800px; margin: 0 auto; padding: 0 24px; }
.gold { color: var(--color-gold); }
.hidden { display: none !important; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  letter-spacing: 0.02em;
}
.btn-gold {
  background: var(--color-gold);
  color: #fff;
}
.btn-gold:hover { background: var(--color-gold-hover); transform: translateY(-1px); }
.btn-outline {
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
}
.btn-outline:hover { background: rgba(255,255,255,0.15); }
.btn-sm { padding: 10px 22px; font-size: 0.85rem; }
.btn-full { width: 100%; }

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-brand {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-dark);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--color-gold); }
.nav-cta-wrap { margin-left: 8px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 8px;
  z-index: 1001;
  cursor: pointer;
  background: none;
  border: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--color-dark);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--color-white);
    flex-direction: column;
    padding: 100px 32px 32px;
    gap: 20px;
    transition: right var(--transition);
    box-shadow: -4px 0 30px rgba(0,0,0,0.1);
  }
  .nav-links.open { right: 0; }
  .nav-cta-wrap { margin-left: 0; margin-top: 12px; }
}

/* === HERO === */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.8s ease;
  filter: saturate(1.15) contrast(1.05) brightness(1.08);
  animation: kenBurns 12s ease-in-out infinite alternate;
  transform-origin: center center;
}
.hero-slide.active { opacity: 1; }
.hero-slide:nth-child(odd) { animation-name: kenBurns; }
.hero-slide:nth-child(even) { animation-name: kenBurnsAlt; }

@keyframes kenBurns {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.08) translate(-0.5%, -0.5%); }
}
@keyframes kenBurnsAlt {
  0% { transform: scale(1.08) translate(0.5%, 0.5%); }
  100% { transform: scale(1) translate(0, 0); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.25) 0%,
    rgba(0,0,0,0.15) 50%,
    rgba(0,0,0,0.4) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 700px;
  padding: 0 24px;
}
.hero-eyebrow {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
  opacity: 0.9;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-subtitle {
  font-size: 1.1rem;
  line-height: 1.7;
  opacity: 0.92;
  margin-bottom: 36px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Hero dots */
.hero-dots {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
}
.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}
.hero-dot.active {
  background: var(--color-gold);
  transform: scale(1.2);
}

/* Scroll arrow */
.scroll-arrow {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(255,255,255,0.7);
  animation: bounce 2s ease infinite;
  cursor: pointer;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* === SECTIONS === */
.section { padding: 100px 0; }
.section-white { background: var(--color-white); }
.section-cream { background: var(--color-cream); }
.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  text-align: center;
  margin-bottom: 12px;
  color: var(--color-dark);
}
.section-sub {
  text-align: center;
  color: var(--color-text-light);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 48px;
}
.section-cta { text-align: center; margin-top: 40px; }

/* === STATS STRIP === */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-bottom: 60px;
  padding: 32px;
  background: var(--color-cream);
  border-radius: var(--radius);
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}
.stat-icon { font-size: 1.6rem; }
.stat-label { font-size: 0.85rem; font-weight: 600; color: var(--color-text); }

@media (max-width: 768px) {
  .stats-strip { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
}

/* === OVERVIEW TEXT === */
.overview-text {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.overview-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  margin-bottom: 16px;
  color: var(--color-dark);
}
.overview-text p {
  font-size: 1.05rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

/* === GALLERY === */
.gallery-main-wrap {
  position: relative;
  max-width: 900px;
  margin: 0 auto 20px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.gallery-main-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
  transition: opacity 0.4s ease;
}
.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--color-dark);
  z-index: 2;
  transition: all var(--transition);
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.gallery-arrow:hover { background: #fff; transform: translateY(-50%) scale(1.05); }
.gallery-prev { left: 16px; }
.gallery-next { right: 16px; }
.gallery-counter {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(0,0,0,0.55);
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}
.gallery-thumbs {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}
.gallery-thumb {
  width: 100px;
  height: 68px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  opacity: 0.5;
  transition: all var(--transition);
  border: 2px solid transparent;
}
.gallery-thumb:hover { opacity: 0.8; }
.gallery-thumb.active {
  opacity: 1;
  border-color: var(--color-gold);
}

@media (max-width: 600px) {
  .gallery-thumb { width: 60px; height: 42px; }
}

/* === CARDS (Why Book Directly) === */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.card {
  background: var(--color-white);
  padding: 32px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-icon { font-size: 2rem; display: block; margin-bottom: 16px; }
.card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--color-dark);
}
.card p { font-size: 0.9rem; color: var(--color-text-light); line-height: 1.6; }

@media (max-width: 900px) { .cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .cards-grid { grid-template-columns: 1fr; } }

/* === VIDEO === */
.video-wrap {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16/9;
}
.video-thumb {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform var(--transition);
}
.video-thumb:hover .play-btn { transform: translate(-50%, -50%) scale(1.1); }
.video-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.video-caption {
  text-align: center;
  margin-top: 16px;
  color: var(--color-text-light);
  font-size: 0.95rem;
}

/* === AMENITIES === */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.amenity {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 16px;
  background: var(--color-cream);
  border-radius: var(--radius);
  transition: transform var(--transition);
}
.amenity:hover { transform: translateY(-2px); }
.amenity-icon { font-size: 1.8rem; margin-bottom: 10px; }
.amenity strong {
  font-size: 0.95rem;
  color: var(--color-dark);
  margin-bottom: 4px;
}
.amenity span:last-child {
  font-size: 0.82rem;
  color: var(--color-text-light);
  line-height: 1.5;
}

@media (max-width: 768px) { .amenities-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .amenities-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }

/* === EXPLORE === */
.explore-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.explore-card {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.explore-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.15);
}
.explore-img-wrap {
  height: 180px;
  overflow: hidden;
}
.explore-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.explore-card:hover .explore-img-wrap img {
  transform: scale(1.06);
}
.explore-info {
  padding: 1.1rem 1.25rem 1.35rem;
}
.explore-info h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 0.3rem;
}
.explore-distance {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}
.explore-info p {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.5;
  margin: 0;
}
@media (max-width: 900px) { .explore-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .explore-grid { grid-template-columns: 1fr; } .explore-img-wrap { height: 160px; } }

/* === FAQ === */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.faq-item:hover { box-shadow: 0 2px 12px rgba(0,0,0,0.05); }
.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--color-white);
  transition: background var(--transition);
}
.faq-question:hover { background: var(--color-cream); }
.faq-chevron {
  font-size: 1.4rem;
  transition: transform var(--transition);
  color: var(--color-gold);
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.open .faq-chevron { transform: rotate(90deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer {
  max-height: 200px;
}
.faq-answer p {
  padding: 0 24px 20px;
  color: var(--color-text-light);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* === CONTACT === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contact-left h2, .contact-right h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 16px;
  color: var(--color-dark);
}
.contact-address {
  color: var(--color-text-light);
  margin-bottom: 20px;
}
.map-wrap {
  margin-bottom: 28px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.nearby-heading {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--color-dark);
}
.nearby-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.nearby-item {
  font-size: 0.88rem;
  color: var(--color-text-light);
  padding: 6px 0;
}

/* Contact form */
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-success {
  text-align: center;
  padding: 48px 24px;
  animation: fadeInUp 0.5s ease;
}
.form-success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #27ae60, #2ecc71);
  color: white;
  font-size: 40px;
  line-height: 80px;
  margin: 0 auto 24px;
  box-shadow: 0 8px 30px rgba(39, 174, 96, 0.3);
}
.form-success h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--color-dark);
  margin-bottom: 12px;
}
.form-success p {
  font-size: 1.05rem;
  color: var(--color-dark);
  line-height: 1.6;
  max-width: 400px;
  margin: 0 auto;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-dark);
}
.form-group input, .form-group textarea {
  padding: 14px 16px;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--color-white);
}
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(200,160,80,0.15);
}

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* === FOOTER === */
.footer {
  background: var(--color-dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 8px;
}
.footer-brand p { font-size: 0.9rem; }
.footer h4 {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 12px;
}
.footer ul { display: flex; flex-direction: column; gap: 8px; }
.footer a {
  font-size: 0.88rem;
  transition: color var(--transition);
}
.footer a:hover { color: var(--color-gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  text-align: center;
  font-size: 0.8rem;
}
.footer-seo {
  font-size: 0.7rem;
  opacity: 0.5;
  margin-top: 8px;
  line-height: 1.4;
}

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

/* === SCROLL REVEAL ANIMATIONS === */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Staggered children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.stagger-children.visible > *:nth-child(1) { transition-delay: 0s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.2s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.3s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.4s; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.5s; }
.stagger-children.visible > *:nth-child(7) { transition-delay: 0.6s; }
.stagger-children.visible > *:nth-child(8) { transition-delay: 0.7s; }
.stagger-children.visible > *:nth-child(9) { transition-delay: 0.8s; }
.stagger-children.visible > *:nth-child(10) { transition-delay: 0.9s; }
.stagger-children.visible > *:nth-child(11) { transition-delay: 1.0s; }
.stagger-children.visible > *:nth-child(12) { transition-delay: 1.1s; }
.stagger-children.visible > *:nth-child(13) { transition-delay: 1.2s; }
.stagger-children.visible > *:nth-child(14) { transition-delay: 1.3s; }
.stagger-children.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* Only animate when parent is visible */
.stagger-children:not(.visible) > * {
  opacity: 0;
  transform: translateY(30px);
}

/* === IMAGE HOVER EFFECTS === */
.gallery-main-wrap:hover .gallery-main-img {
  transform: scale(1.02);
}
.gallery-main-img {
  transition: opacity 0.4s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Enhanced explore card hover */
.explore-img-wrap img {
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.explore-card:hover .explore-img-wrap img {
  transform: scale(1.12);
}

/* Video hover zoom */
.video-thumb img {
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.video-thumb:hover img {
  transform: scale(1.05);
}

/* === PARALLAX OVERLAY SECTIONS === */
.parallax-section {
  position: relative;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  padding: 120px 0;
  color: #fff;
}
.parallax-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26, 23, 20, 0.55);
}
.parallax-section > * {
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .parallax-section { background-attachment: scroll; }
}

/* === HERO CONTENT ENTRANCE === */
.hero-content {
  animation: heroFadeIn 1.5s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Smooth image loading */
img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.6s ease;
}
img[loading="lazy"].loaded,
img[loading="lazy"][complete] {
  opacity: 1;
}

/* === MOBILE STICKY BAR === */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 12px 16px;
  background: var(--color-white);
  border-top: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
}

@media (max-width: 768px) {
  .mobile-sticky-bar { display: block; }
  body { padding-bottom: 72px; }
}
