/* ======================================================
   DEER CREEK SIPS — Style Sheet
   Warm, woodsy, dark theme with amber accents
   ====================================================== */

:root {
  --bark: #2C1810;
  --bark-light: #3D2419;
  --amber: #D4882B;
  --amber-light: #E8A94A;
  --amber-glow: #F5C16C;
  --cream: #F5EDD6;
  --cream-dark: #E8DFC5;
  --forest: #2D5A27;
  --forest-light: #3E7A35;
  --water: #4A8BA8;
  --water-light: #6BB0CC;
  --sunset: #D4652B;
  --sunset-light: #E8834A;
  --charcoal: #1A1209;
  --warm-white: #FDF8ED;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--charcoal);
  color: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ====== TEXTURE OVERLAY ====== */
.grain-overlay {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
  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");
}

/* ====== NAVIGATION ====== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.5s ease;
  background: transparent;
}

nav.scrolled {
  background: rgba(28, 18, 9, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
  padding: 0.6rem 2rem;
}

.nav-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--amber);
  letter-spacing: 0.05em;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--cream);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--amber);
  transition: width 0.3s ease;
}

.nav-links a:hover { color: var(--amber); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--amber) !important;
  color: var(--bark) !important;
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  font-weight: 600 !important;
  transition: all 0.3s !important;
}
.nav-cta:hover {
  background: var(--amber-light) !important;
  transform: scale(1.05);
}
.nav-cta::after { display: none !important; }

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 5px;
}
.mobile-toggle span {
  width: 26px; height: 2px;
  background: var(--cream);
  transition: all 0.3s;
  display: block;
}

/* ====== HERO ====== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  padding: 2rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(212, 136, 43, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 80%, rgba(45, 90, 39, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(74, 139, 168, 0.08) 0%, transparent 70%),
    linear-gradient(180deg, var(--charcoal) 0%, #1A1510 50%, var(--bark) 100%);
}

.hero-trees {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 200px;
  opacity: 0.06;
  background: repeating-linear-gradient(
    90deg,
    transparent, transparent 40px,
    var(--forest) 40px, var(--forest) 42px,
    transparent 42px, transparent 80px
  );
  mask-image: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 100%);
  -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  animation: heroFadeIn 1.2s ease-out;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-logo {
  width: min(380px, 70vw);
  margin: 0 auto 2rem;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.5));
  animation: logoFloat 4s ease-in-out infinite;
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-tagline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  font-weight: 400;
  font-style: italic;
  color: var(--amber-light);
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeUp 1s ease-out 0.5s forwards;
}

.hero-subtitle {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: var(--cream-dark);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 300;
  opacity: 0;
  animation: fadeUp 1s ease-out 0.8s forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-cta-row {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  opacity: 0;
  animation: fadeUp 1s ease-out 1s forwards;
}

.hero-btn {
  padding: 0.85rem 2rem;
  font-size: 0.95rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  padding: 0.6rem 1.5rem;
  border: 1px solid rgba(212, 136, 43, 0.3);
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--amber-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 1s ease-out 1.3s forwards;
}

.badge-dot {
  width: 8px; height: 8px;
  background: var(--forest-light);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeUp 1s ease-out 1.5s forwards;
}

.scroll-indicator span {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 237, 214, 0.4);
}

.scroll-arrow {
  width: 20px; height: 20px;
  border-right: 1.5px solid rgba(245, 237, 214, 0.3);
  border-bottom: 1.5px solid rgba(245, 237, 214, 0.3);
  transform: rotate(45deg);
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(6px); }
}

/* ====== SECTIONS COMMON ====== */
section { position: relative; }

.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section-label::before {
  content: '';
  width: 30px; height: 1px;
  background: var(--amber);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

/* ====== DIVIDER ====== */
.section-divider {
  height: 1px;
  max-width: 200px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
  opacity: 0.3;
}

/* ====== ABOUT ====== */
.about {
  padding: 8rem 2rem;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(212, 136, 43, 0.06) 0%, transparent 50%),
    linear-gradient(180deg, var(--bark) 0%, var(--bark-light) 50%, var(--bark) 100%);
}

.about-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-image-frame {
  border-radius: 20px;
  position: relative;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(212, 136, 43, 0.12) 0%, transparent 60%),
    linear-gradient(160deg, rgba(44, 24, 16, 0.95) 0%, rgba(26, 18, 9, 0.98) 100%);
  border: 1px solid rgba(212, 136, 43, 0.1);
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}

.about-image-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background:
    repeating-linear-gradient(
      0deg,
      transparent, transparent 30px,
      rgba(212, 136, 43, 0.03) 30px, rgba(212, 136, 43, 0.03) 31px
    ),
    repeating-linear-gradient(
      90deg,
      transparent, transparent 30px,
      rgba(212, 136, 43, 0.03) 30px, rgba(212, 136, 43, 0.03) 31px
    );
  pointer-events: none;
}

.about-photo {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  position: relative;
  z-index: 1;
}

.about-accent-line {
  position: absolute;
  top: -20px; right: -20px;
  width: 100px; height: 100px;
  border-top: 2px solid var(--amber);
  border-right: 2px solid var(--amber);
  border-radius: 0 16px 0 0;
  opacity: 0.4;
}

.about-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--cream-dark);
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.about-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(212, 136, 43, 0.15);
}

.stat-item { text-align: left; }

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--amber);
  line-height: 1;
}

.stat-text {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 237, 214, 0.5);
  margin-top: 0.4rem;
}

/* ====== IMAGE BREAK ====== */
.image-break {
  position: relative;
  height: 50vh;
  min-height: 340px;
  max-height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-break-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.image-break-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    var(--charcoal) 0%,
    rgba(26, 18, 9, 0.45) 30%,
    rgba(26, 18, 9, 0.45) 70%,
    var(--bark) 100%
  );
  z-index: 1;
}

.image-break-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
}

.image-break-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  font-weight: 400;
  font-style: italic;
  color: var(--cream);
  letter-spacing: 0.02em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
}

/* ====== MENU ====== */
.menu {
  padding: 8rem 2rem;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(74, 139, 168, 0.06) 0%, transparent 50%),
    linear-gradient(180deg, var(--bark) 0%, var(--charcoal) 100%);
}

.menu-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}

.menu-header .section-label { justify-content: center; }
.menu-header .section-label::before { display: none; }

.menu-subtitle {
  color: var(--cream-dark);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
}

.menu-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.menu-card {
  background: rgba(245, 237, 214, 0.04);
  border: 1px solid rgba(245, 237, 214, 0.06);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.menu-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--amber), var(--sunset));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.menu-card:hover::before { transform: scaleX(1); }

.menu-card:hover {
  background: rgba(245, 237, 214, 0.07);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.menu-card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.menu-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: var(--cream);
}

.menu-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(245, 237, 214, 0.6);
  font-weight: 300;
}

.menu-card-items {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.menu-tag {
  padding: 0.3rem 0.8rem;
  background: rgba(212, 136, 43, 0.1);
  border: 1px solid rgba(212, 136, 43, 0.15);
  border-radius: 50px;
  font-size: 0.75rem;
  color: var(--amber-light);
  letter-spacing: 0.05em;
}

/* ====== FIND US / EVENTS ====== */
.find-us {
  padding: 8rem 2rem;
  background:
    radial-gradient(ellipse at 60% 40%, rgba(212, 136, 43, 0.08) 0%, transparent 50%),
    var(--bark);
}

.find-us-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.find-us-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
  align-items: start;
}

.event-list { display: flex; flex-direction: column; gap: 1rem; }

.event-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(245, 237, 214, 0.03);
  border: 1px solid rgba(245, 237, 214, 0.06);
  border-radius: 14px;
  transition: all 0.3s ease;
}

.event-card:hover {
  background: rgba(245, 237, 214, 0.06);
  border-color: rgba(212, 136, 43, 0.2);
  transform: translateX(8px);
}

.event-date {
  text-align: center;
  padding: 0.8rem 1rem;
  background: rgba(212, 136, 43, 0.12);
  border-radius: 10px;
  min-width: 65px;
  flex-shrink: 0;
}

.event-date .month {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 600;
}

.event-date .day {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--cream);
  line-height: 1.2;
}

.event-info h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.3rem;
}

.event-info p {
  font-size: 0.85rem;
  color: rgba(245, 237, 214, 0.5);
  font-weight: 300;
}

.location-card {
  background: rgba(245, 237, 214, 0.04);
  border: 1px solid rgba(245, 237, 214, 0.08);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.location-card::after {
  content: '';
  position: absolute;
  bottom: -40px; right: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(212, 136, 43, 0.08) 0%, transparent 70%);
}

.location-pin {
  font-size: 2.5rem;
  margin-bottom: 1.2rem;
  display: block;
}

.location-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.location-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--cream-dark);
  font-weight: 300;
  margin-bottom: 1rem;
}

.location-area {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--amber-light);
  font-size: 0.85rem;
  font-weight: 500;
}

/* ====== REVIEWS ====== */
.reviews {
  padding: 6rem 2rem;
  background: var(--charcoal);
}

.reviews-header {
  text-align: center;
  max-width: 500px;
  margin: 0 auto 3rem;
}

.reviews-header .section-label { justify-content: center; }
.reviews-header .section-label::before { display: none; }

.reviews-track {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review-card {
  background: rgba(245, 237, 214, 0.03);
  border: 1px solid rgba(245, 237, 214, 0.06);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.review-card:hover {
  background: rgba(245, 237, 214, 0.06);
  transform: translateY(-4px);
}

.review-stars {
  color: var(--amber);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.review-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--cream-dark);
  font-weight: 300;
  font-style: italic;
  margin-bottom: 1.2rem;
}

.review-author {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--amber-light);
}

/* ====== CTA BANNER ====== */
.cta-banner {
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at center, rgba(212, 136, 43, 0.12) 0%, transparent 60%),
    linear-gradient(180deg, var(--charcoal) 0%, var(--bark) 100%);
}

.cta-banner-inner {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}

.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  margin-bottom: 1rem;
}

.cta-title span { color: var(--amber); }

.cta-text {
  color: var(--cream-dark);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  letter-spacing: 0.05em;
  cursor: pointer;
  border: none;
  font-family: 'Outfit', sans-serif;
}

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

.btn-primary:hover {
  background: var(--amber-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212, 136, 43, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(245, 237, 214, 0.2);
}

.btn-outline:hover {
  border-color: var(--amber);
  color: var(--amber);
  transform: translateY(-2px);
}

/* ====== FOOTER ====== */
footer {
  padding: 4rem 2rem 2rem;
  background: var(--charcoal);
  border-top: 1px solid rgba(245, 237, 214, 0.06);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--amber);
  margin-bottom: 0.8rem;
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(245, 237, 214, 0.5);
  font-weight: 300;
  line-height: 1.7;
}

.footer-col h4 {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1.2rem;
  font-weight: 600;
}

.footer-col a {
  display: block;
  color: rgba(245, 237, 214, 0.5);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 300;
  margin-bottom: 0.7rem;
  transition: color 0.3s;
}

.footer-col a:hover { color: var(--amber-light); }

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-link {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(245, 237, 214, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream-dark);
  transition: all 0.3s;
  cursor: pointer;
  text-decoration: none;
}

.social-link svg {
  display: block;
}

.social-link:hover {
  background: var(--amber);
  border-color: var(--amber);
  transform: translateY(-3px);
}

.footer-bottom {
  max-width: 1100px;
  margin: 3rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(245, 237, 214, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(245, 237, 214, 0.3);
}

.footer-bottom a {
  color: rgba(245, 237, 214, 0.3);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-bottom a:hover { color: var(--amber-light); }

/* ====== SCROLL REVEAL ====== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* ====== CURSOR GLOW ====== */
.cursor-glow {
  position: fixed;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 136, 43, 0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  transition: transform 0.2s ease;
  transform: translate(-50%, -50%);
}

/* ====== RESPONSIVE ====== */
@media (max-width: 900px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-visual { order: -1; }
  .find-us-grid {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(28, 18, 9, 0.98);
    padding: 2rem;
    gap: 1.5rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }
  .mobile-toggle { display: flex; }
  .menu-grid { grid-template-columns: 1fr; }
  .hero-logo { width: min(280px, 65vw); }
  .about-stats { flex-direction: column; gap: 1.5rem; }
  .reviews-track { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .cursor-glow { display: none; }
  .hero-cta-row { flex-direction: column; align-items: center; }
  .hero-btn { width: 100%; max-width: 280px; justify-content: center; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-buttons .btn { width: 100%; max-width: 280px; justify-content: center; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}
