/* ============================================
   DATE SHAKE — Desert Roadside Legend
   Custom Design · dateshake.remotebb.com
   ============================================ */

/* --- Custom Properties --- */
:root {
  --terracotta: #C2703E;
  --terracotta-light: #d4884f;
  --cream: #F5EBD7;
  --cream-dark: #e8dcc5;
  --sage: #8B9E6B;
  --sage-light: #a3b484;
  --gold: #D4A843;
  --gold-light: #e0bc5f;
  --desert-night: #2D1810;
  --desert-night-light: #4a2e22;
  --white: #fffcf6;
  --shadow-warm: rgba(45, 24, 16, 0.15);
  --shadow-deep: rgba(45, 24, 16, 0.3);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html, body {
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Source Sans 3', 'Libre Franklin', Georgia, serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--desert-night);
  background-color: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

a:hover {
  color: var(--gold);
}

/* --- Grain Texture Overlay --- */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

/* --- Typography --- */
h1, h2, h3 {
  font-family: 'Lobster Two', 'Pacifico', cursive;
  font-weight: 700;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  letter-spacing: -0.01em;
}

h2 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
}

h3 {
  font-size: clamp(1.4rem, 3vw, 2rem);
}

p {
  max-width: 65ch;
}

.section-label {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.75rem;
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  position: relative;
}

/* ============================================
   HEADER — Sticky Vintage Sign
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--desert-night);
  border-bottom: 3px solid var(--gold);
  transition: transform var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 4px 20px var(--shadow-deep);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 64px;
  max-width: 1200px;
  margin: 0 auto;
}

.header-brand {
  font-family: 'Lobster Two', cursive;
  font-size: 1.5rem;
  color: var(--cream);
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-brand .brand-icon {
  width: 32px;
  height: 32px;
  background: var(--terracotta);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--cream);
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 800;
}

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

.header-nav a {
  color: var(--cream-dark);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color var(--transition);
  position: relative;
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.header-nav a:hover {
  color: var(--gold);
}

.header-nav a:hover::after {
  width: 100%;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--terracotta);
  color: var(--cream) !important;
  padding: 10px 22px;
  border-radius: var(--radius-xl);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}

.header-cta:hover {
  background: var(--terracotta-light);
  color: var(--cream) !important;
  transform: scale(1.03);
}

.header-cta svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  margin: 5px 0;
  transition: var(--transition);
  border-radius: 2px;
}

/* ============================================
   HERO — The Proclamation
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 24px 80px;
  background: url('../images/photo_1.jpg') center/cover no-repeat;
  color: var(--cream);
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    170deg,
    rgba(194, 112, 62, 0.82) 0%,
    rgba(45, 24, 16, 0.88) 60%,
    rgba(45, 24, 16, 0.95) 100%
  );
  z-index: 1;
}

/* Sun rays */
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 70%;
  height: 70%;
  background: radial-gradient(
    circle at center,
    rgba(212, 168, 67, 0.2) 0%,
    rgba(212, 168, 67, 0.05) 40%,
    transparent 70%
  );
  pointer-events: none;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 235, 215, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(245, 235, 215, 0.2);
  border-radius: var(--radius-xl);
  padding: 8px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--gold-light);
  margin-bottom: 2rem;
  will-change: transform, opacity;
}

.hero-badge .stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
}

.hero h1 {
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 30px rgba(45, 24, 16, 0.5), 0 2px 8px rgba(0,0,0,0.3);
  will-change: transform, opacity;
  color: #fff;
}

.hero h1 .accent {
  display: block;
  color: var(--gold-light);
  font-size: 0.45em;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 0.3em;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  opacity: 0.9;
  max-width: 540px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
  will-change: transform, opacity;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  will-change: transform, opacity;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--desert-night);
  padding: 16px 36px;
  border-radius: var(--radius-xl);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 15px rgba(212, 168, 67, 0.3);
}

.btn-primary:hover {
  background: var(--gold-light);
  color: var(--desert-night);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 168, 67, 0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--cream);
  padding: 16px 36px;
  border-radius: var(--radius-xl);
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid rgba(245, 235, 215, 0.4);
  transition: all var(--transition);
}

.btn-secondary:hover {
  background: rgba(245, 235, 215, 0.1);
  color: var(--cream);
  border-color: rgba(245, 235, 215, 0.7);
}

/* Hero load animation */
.hero-badge,
.hero h1,
.hero-subtitle,
.hero-actions {
  opacity: 0;
  transform: translateY(30px);
}

/* Fallback: show content if JS hasn't added hero-loaded within 1.5s */
@keyframes heroFallback {
  to { opacity: 1; transform: translateY(0); }
}
.hero-badge { animation: heroFallback 0.5s 1.5s forwards; }
.hero h1 { animation: heroFallback 0.5s 1.6s forwards; }
.hero-subtitle { animation: heroFallback 0.5s 1.7s forwards; }
.hero-actions { animation: heroFallback 0.5s 1.8s forwards; }

.hero-loaded .hero-badge {
  animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}

.hero-loaded .hero h1 {
  animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.25s forwards;
}

.hero-loaded .hero-subtitle {
  animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

.hero-loaded .hero-actions {
  animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.55s forwards;
}

@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Cactus silhouettes in hero */
.hero-cactus {
  position: absolute;
  bottom: 0;
  opacity: 0.06;
  z-index: 1;
  pointer-events: none;
}

.hero-cactus-left {
  left: 3%;
}

.hero-cactus-right {
  right: 5%;
}

/* ============================================
   SVG DUNE DIVIDERS
   ============================================ */
.dune-divider {
  position: relative;
  width: 100%;
  line-height: 0;
  margin-top: -1px;
}

.dune-divider svg {
  display: block;
  width: 100%;
  height: auto;
}

.dune-divider-flip {
  transform: scaleY(-1);
  margin-bottom: -1px;
  margin-top: 0;
}

/* ============================================
   STATS COUNTER BAR
   ============================================ */
.stats-bar {
  background: var(--desert-night);
  padding: 48px 24px;
  text-align: center;
  color: var(--cream);
}

.stats-grid {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.stat-number {
  font-family: 'Lobster Two', cursive;
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.7;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(245, 235, 215, 0.15);
  align-self: center;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
  padding: 100px 0;
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image-wrap img {
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px var(--shadow-warm);
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}

.about-image-accent {
  position: absolute;
  top: -16px;
  left: -16px;
  right: 16px;
  bottom: 16px;
  border: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.about-text h2 {
  color: var(--desert-night);
  margin-bottom: 1.5rem;
}

.about-text p {
  color: var(--desert-night-light);
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 2rem;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 8px var(--shadow-warm);
  font-size: 0.9rem;
  font-weight: 600;
}

.about-feature .feat-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--terracotta), var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ============================================
   PHOTO GALLERY
   ============================================ */
.gallery-section {
  padding: 80px 0;
  background: var(--white);
}

.gallery-section .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.gallery-section h2 {
  color: var(--desert-night);
}

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

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 8px 30px var(--shadow-warm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 50px var(--shadow-deep);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform var(--transition);
}

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

.gallery-item-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 20px 16px;
  background: linear-gradient(transparent, rgba(45, 24, 16, 0.75));
  color: var(--cream);
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--transition), transform var(--transition);
}

.gallery-item:hover .gallery-item-caption {
  opacity: 1;
  transform: translateY(0);
}

/* Span first item across 2 cols on desktop */
.gallery-item:first-child {
  grid-column: span 2;
}

.gallery-item:first-child img {
  aspect-ratio: 2/1;
}

/* ============================================
   REVIEWS / TESTIMONIALS
   ============================================ */
.reviews-section {
  padding: 100px 0;
  background: var(--desert-night);
  color: var(--cream);
}

.reviews-section .section-label {
  color: var(--gold);
  text-align: center;
}

.reviews-section .section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.reviews-section h2 {
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.reviews-carousel {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.review-card {
  text-align: center;
  padding: 0 24px;
  display: none;
}

.review-card.active {
  display: block;
}

.review-stars {
  color: var(--gold);
  font-size: 1.5rem;
  letter-spacing: 6px;
  margin-bottom: 2rem;
}

.review-text {
  font-family: 'Lobster Two', cursive;
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 2rem;
  color: var(--cream);
  position: relative;
}

.review-text::before {
  content: '\201C';
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 5rem;
  color: var(--terracotta);
  opacity: 0.3;
  font-family: Georgia, serif;
  line-height: 1;
}

.review-author {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review-rating {
  font-weight: 400;
  opacity: 0.6;
  margin-left: 8px;
  text-transform: none;
}

.review-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 3rem;
}

.review-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(245, 235, 215, 0.2);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  padding: 0;
}

.review-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* ============================================
   GEMS & GIFTS SECTION
   ============================================ */
.gems-section {
  padding: 100px 0;
  background: var(--cream);
}

.gems-section .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.gems-section h2 {
  color: var(--desert-night);
}

.gems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.gem-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 4px 20px var(--shadow-warm);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(194, 112, 62, 0.08);
}

.gem-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px var(--shadow-deep);
}

.gem-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--terracotta), var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 2rem;
}

.gem-card h3 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--desert-night);
  margin-bottom: 0.75rem;
}

.gem-card p {
  font-size: 0.95rem;
  color: var(--desert-night-light);
  margin: 0 auto;
  max-width: 280px;
}

/* ============================================
   VISIT / HOURS SECTION
   ============================================ */
.visit-section {
  padding: 100px 0;
  background: var(--white);
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.visit-info h2 {
  color: var(--desert-night);
  margin-bottom: 1.5rem;
}

.visit-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 1.75rem;
  align-items: flex-start;
}

.visit-detail-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--terracotta);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  font-size: 1.2rem;
}

.visit-detail-text h4 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 4px;
}

.visit-detail-text p,
.visit-detail-text a {
  font-size: 1.05rem;
  color: var(--desert-night);
  line-height: 1.5;
}

.visit-detail-text a:hover {
  color: var(--terracotta);
}

.visit-hours {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 2rem;
}

.visit-hours-title {
  font-family: 'Lobster Two', cursive;
  font-size: 1.8rem;
  color: var(--desert-night);
  margin-bottom: 1.5rem;
  text-align: center;
}

.hours-table {
  width: 100%;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(194, 112, 62, 0.1);
  font-size: 1rem;
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-day {
  font-weight: 600;
  color: var(--desert-night);
}

.hours-time {
  color: var(--terracotta);
  font-weight: 500;
}

.hours-row.today {
  background: rgba(194, 112, 62, 0.08);
  margin: 0 -16px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border-bottom: none;
}

.hours-row.today .hours-day::after {
  content: ' — Today';
  color: var(--sage);
  font-weight: 400;
  font-size: 0.85em;
}

/* Map embed placeholder */
.visit-map {
  margin-top: 2rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 8px 30px var(--shadow-warm);
}

.visit-map iframe {
  width: 100%;
  height: 300px;
  border: 0;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--desert-night);
  color: var(--cream);
  padding: 60px 0 30px;
  border-top: 3px solid var(--terracotta);
}

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

.footer-brand {
  font-family: 'Lobster Two', cursive;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--cream);
}

.footer-desc {
  font-size: 0.95rem;
  opacity: 0.7;
  max-width: 360px;
  line-height: 1.7;
}

.footer-col h4 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-col a,
.footer-col p {
  display: block;
  font-size: 0.9rem;
  opacity: 0.7;
  margin-bottom: 0.6rem;
  color: var(--cream);
  transition: opacity var(--transition);
}

.footer-col a:hover {
  opacity: 1;
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(245, 235, 215, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  opacity: 0.5;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ============================================
   FLOATING CTA
   ============================================ */
.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--terracotta);
  color: var(--cream);
  padding: 16px 28px;
  border-radius: var(--radius-xl);
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: 0 8px 30px rgba(194, 112, 62, 0.4);
  transition: transform var(--transition), opacity var(--transition), box-shadow var(--transition);
  will-change: transform, opacity;
}

.floating-cta:hover {
  transform: scale(1.05);
  color: var(--cream);
  box-shadow: 0 12px 40px rgba(194, 112, 62, 0.5);
}

.floating-cta.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
}

.floating-cta svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  .hero-badge,
  .hero h1,
  .hero-subtitle,
  .hero-actions {
    opacity: 1;
    transform: none;
    animation: none !important;
  }

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .about-grid {
    gap: 40px;
  }

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

@media (max-width: 768px) {
  body {
    font-size: 16px;
  }

  .header-nav {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--desert-night);
    flex-direction: column;
    padding: 20px 24px;
    gap: 16px;
    border-bottom: 3px solid var(--gold);
    box-shadow: 0 8px 30px var(--shadow-deep);
  }

  .header-nav.open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .about-grid,
  .visit-grid {
    grid-template-columns: 1fr;
  }

  .about-image-accent {
    display: none;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

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

  .gallery-item:first-child img {
    aspect-ratio: 16/9;
  }

  .stats-grid {
    gap: 24px;
  }

  .stat-divider {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .floating-cta {
    bottom: 16px;
    right: 16px;
    left: 16px;
    justify-content: center;
    border-radius: var(--radius-md);
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 90px 20px 60px;
    min-height: 100svh;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary,
  .btn-secondary {
    justify-content: center;
    padding: 14px 24px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

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

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

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

  .container {
    padding: 0 16px;
  }
}
