/* ========================================
   SMOKED BURGER - Styles
   ======================================== */

:root {
  --bg-dark: #0A0A0A;
  --bg-surface: #1A1A1A;
  --bg-card: #141414;
  --gold: #C9A962;
  --gold-dark: #A8893F;
  --gold-light: #E0C878;
  --smoke-red: #D4451A;
  --ember: #FF6B35;
  --white: #FFFFFF;
  --text-secondary: #999999;
  --text-muted: #666666;
  --border: #333333;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Space Grotesk', sans-serif;
  background: var(--bg-dark);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Animated ember background */
.bg-embers {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.bg-embers__img {
  width: 120%;
  height: 120%;
  object-fit: cover;
  opacity: 0.08;
  animation: embersMove 20s ease-in-out infinite alternate;
  filter: brightness(1.2) saturate(1.3);
}

@keyframes embersMove {
  0% {
    transform: scale(1.1) translate(0%, 0%);
  }
  25% {
    transform: scale(1.15) translate(-2%, -1%);
  }
  50% {
    transform: scale(1.1) translate(-1%, -2%);
  }
  75% {
    transform: scale(1.12) translate(1%, -1%);
  }
  100% {
    transform: scale(1.1) translate(-1%, 1%);
  }
}

.bg-embers__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, transparent 0%, var(--bg-dark) 75%);
}

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

ul {
  list-style: none;
}

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

/* ---- Utilities ---- */
.section-label {
  display: inline-block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 16px 32px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.btn--gold {
  background: var(--gold);
  color: var(--bg-dark);
  box-shadow: 0 4px 24px rgba(201, 169, 98, 0.3);
}

/* Gold shimmer sweep */
.btn--gold::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: none;
  animation: shimmerBtn 3s ease-in-out infinite;
}

@keyframes shimmerBtn {
  0%, 100% { left: -100%; }
  50% { left: 100%; }
}

.btn--gold:hover {
  background: var(--gold-dark);
  box-shadow: 0 8px 40px rgba(201, 169, 98, 0.5);
  transform: translateY(-3px);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border);
}

.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 20px rgba(201, 169, 98, 0.15);
}

.btn--lg {
  padding: 20px 40px;
  font-size: 14px;
}

/* ========================================
   HEADER
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.78);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(51, 51, 51, 0.5);
  transition: all 0.4s ease;
}

.header.scrolled {
  background: rgba(10, 10, 10, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.header__inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 80px;
}

.header__logo {
  display: flex;
  align-items: center;
}

.header__logo-img {
  height: 50px;
  width: auto;
  filter: invert(1);
  transition: transform 0.3s ease;
}

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

.header__nav {
  display: flex;
  gap: 40px;
}

.header__link {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--text-secondary);
  transition: color 0.3s ease;
  position: relative;
}

/* Underline animation on nav links */
.header__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.header__link:hover {
  color: var(--gold);
}

.header__link:hover::after {
  width: 100%;
}

.header__cta {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 12px 24px;
  background: var(--gold);
  color: var(--bg-dark);
  box-shadow: 0 2px 16px rgba(201, 169, 98, 0.25);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.header__cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  animation: shimmerBtn 3s ease-in-out infinite;
}

.header__cta:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 24px rgba(201, 169, 98, 0.4);
}

.header__menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.header__menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
}

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

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

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  will-change: transform;
  transition: transform 0.1s linear;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.7);
}

/* Fire particles container */
.hero__particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform, opacity;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 24px 80px;
  max-width: 800px;
}

/* Gold shimmer on badge */
.hero__badge {
  display: inline-block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--gold);
  border: 1px solid rgba(201, 169, 98, 0.3);
  padding: 10px 24px;
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
  animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { border-color: rgba(201, 169, 98, 0.3); }
  50% { border-color: rgba(201, 169, 98, 0.7); box-shadow: 0 0 20px rgba(201, 169, 98, 0.1); }
}

.hero__badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 98, 0.15), transparent);
  animation: shimmerBadge 4s ease-in-out infinite;
}

@keyframes shimmerBadge {
  0% { left: -100%; }
  100% { left: 200%; }
}

/* Text reveal animation */
.hero__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(48px, 8vw, 80px);
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1.05;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(40px);
  animation: heroReveal 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

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

/* Gradient text on hero title */
.hero__title-gradient {
  background: linear-gradient(135deg, var(--white) 0%, var(--gold-light) 50%, var(--gold) 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 5s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero__subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 550px;
  margin: 0 auto 40px;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(30px);
  animation: heroReveal 1s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 60px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  animation: heroReveal 1s cubic-bezier(0.16, 1, 0.3, 1) 0.9s forwards;
}

.hero__trust {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: heroReveal 1s cubic-bezier(0.16, 1, 0.3, 1) 1.2s forwards;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--text-secondary);
}

.hero__trust-item svg {
  color: var(--gold);
}

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

.reveal--left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal--right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal--scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible,
.reveal--left.visible,
.reveal--right.visible,
.reveal--scale.visible {
  opacity: 1;
  transform: none;
}

/* Stagger delays for grid items */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.25s; }
.stagger-3 { transition-delay: 0.4s; }

/* ========================================
   MENU / CARTA
   ======================================== */
.menu {
  padding: 120px 48px;
  max-width: 1440px;
  margin: 0 auto;
}

.menu__header {
  text-align: center;
  margin-bottom: 64px;
}

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

.card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.5s ease,
              border-color 0.5s ease;
}

.card:hover {
  transform: translateY(-12px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6),
              0 0 40px rgba(201, 169, 98, 0.08);
  border-color: rgba(201, 169, 98, 0.3);
}

/* Gold glow line on top of card */
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 3;
}

.card:hover::before {
  opacity: 1;
}

.card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 6px 14px;
  text-transform: uppercase;
}

.card__badge--gold {
  background: var(--gold);
  color: var(--bg-dark);
}

.card__badge--red {
  background: var(--smoke-red);
  color: var(--white);
}

.card__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.card:hover .card__image img {
  transform: scale(1.08);
}

.card__body {
  padding: 28px;
}

.card__name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.card__desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}

.card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card__price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  transition: text-shadow 0.3s ease;
}

.card:hover .card__price {
  text-shadow: 0 0 20px rgba(201, 169, 98, 0.4);
}

/* ========================================
   ABOUT
   ======================================== */
.about {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.about__bg {
  position: absolute;
  inset: 0;
}

.about__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}

.about__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10, 10, 10, 0.95) 40%, rgba(10, 10, 10, 0.4) 100%);
}

.about__content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 100px 48px;
}

.about__text {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 48px;
}

.about__stats {
  display: flex;
  gap: 48px;
}

.about__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.about__stat-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  text-shadow: 0 0 30px rgba(201, 169, 98, 0.3);
}

.about__stat-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--text-secondary);
  text-transform: uppercase;
}

/* ========================================
   STEPS
   ======================================== */
.steps {
  padding: 120px 48px;
  max-width: 1440px;
  margin: 0 auto;
}

.steps__header {
  text-align: center;
  margin-bottom: 64px;
}

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

.step {
  text-align: center;
  padding: 48px 32px;
  border: 1px solid var(--border);
  background: var(--bg-surface);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

/* Hover glow effect */
.step::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(201, 169, 98, 0.08), transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.step:hover {
  border-color: var(--gold);
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3),
              0 0 30px rgba(201, 169, 98, 0.05);
}

.step:hover::after {
  opacity: 1;
}

.step__number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: rgba(201, 169, 98, 0.15);
  margin-bottom: 16px;
  transition: color 0.5s ease;
}

.step:hover .step__number {
  color: rgba(201, 169, 98, 0.3);
}

.step__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 24px;
  color: var(--gold);
  position: relative;
  z-index: 1;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.step:hover .step__icon {
  transform: scale(1.15);
}

.step__icon svg {
  width: 100%;
  height: 100%;
}

.step__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.step__desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials {
  padding: 120px 48px;
  max-width: 1440px;
  margin: 0 auto;
}

.testimonials__header {
  text-align: center;
  margin-bottom: 64px;
}

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

.testimonial {
  padding: 40px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.testimonial:hover {
  border-color: rgba(201, 169, 98, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

/* Quote decoration */
.testimonial::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 28px;
  font-family: 'Playfair Display', serif;
  font-size: 80px;
  color: rgba(201, 169, 98, 0.08);
  line-height: 1;
  pointer-events: none;
  transition: color 0.5s ease;
}

.testimonial:hover::before {
  color: rgba(201, 169, 98, 0.15);
}

.testimonial__stars {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 4px;
  margin-bottom: 20px;
}

.testimonial__quote {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
  font-style: italic;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  transition: all 0.3s ease;
}

.testimonial:hover .testimonial__avatar {
  border-color: var(--gold);
  box-shadow: 0 0 15px rgba(201, 169, 98, 0.2);
}

.testimonial__name {
  display: block;
  font-size: 14px;
  font-weight: 600;
}

.testimonial__role {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
}

/* ========================================
   PROCESS / TIMELINE
   ======================================== */
.process {
  padding: 120px 48px;
  max-width: 1440px;
  margin: 0 auto;
}

.process__header {
  text-align: center;
  margin-bottom: 80px;
}

.process__timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.process__line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold), var(--gold), transparent);
  transform: translateX(-50%);
}

.process__step {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
  position: relative;
}

.process__step:nth-child(odd) {
  flex-direction: row;
  padding-right: calc(50% + 40px);
}

.process__step:nth-child(even) {
  flex-direction: row-reverse;
  padding-left: calc(50% + 40px);
}

.process__step-number {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 52px;
  height: 52px;
  background: var(--bg-dark);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--gold);
  z-index: 2;
  transition: all 0.4s ease;
}

.process__step:hover .process__step-number {
  background: var(--gold);
  color: var(--bg-dark);
  box-shadow: 0 0 30px rgba(201, 169, 98, 0.4);
}

.process__step-content {
  flex: 1;
}

.process__step:nth-child(odd) .process__step-content {
  text-align: right;
}

.process__step-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.process__step-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.process__step-icon {
  display: none;
}

/* ========================================
   GALLERY
   ======================================== */
.gallery {
  padding: 120px 48px;
  max-width: 1440px;
  margin: 0 auto;
}

.gallery__header {
  text-align: center;
  margin-bottom: 64px;
}

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

.gallery__item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4 / 3;
}

.gallery__item--wide {
  grid-column: span 2;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery__item:hover img {
  transform: scale(1.1);
}

.gallery__item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  color: var(--gold);
}

.gallery__item:hover .gallery__item-overlay {
  opacity: 1;
}

/* ---- Lightbox ---- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox.active .lightbox__img {
  transform: scale(1);
}

.lightbox__close {
  position: absolute;
  top: 24px;
  right: 32px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 48px;
  cursor: pointer;
  transition: color 0.3s ease;
  line-height: 1;
  z-index: 2;
}

.lightbox__close:hover {
  color: var(--gold);
}

.lightbox__prev,
.lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  font-size: 36px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
}

.lightbox__prev { left: 24px; }
.lightbox__next { right: 24px; }

.lightbox__prev:hover,
.lightbox__next:hover {
  background: rgba(201, 169, 98, 0.2);
  border-color: var(--gold);
  color: var(--gold);
}

/* ========================================
   GOOGLE REVIEWS
   ======================================== */
.reviews {
  padding: 120px 48px;
  max-width: 1440px;
  margin: 0 auto;
}

.reviews__header {
  text-align: center;
  margin-bottom: 64px;
}

.reviews__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.reviews__stars {
  color: #FBBC05;
  font-size: 24px;
  letter-spacing: 2px;
}

.reviews__score {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
}

.reviews__count {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  color: var(--text-muted);
}

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

.review {
  padding: 32px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.review:hover {
  border-color: rgba(201, 169, 98, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.review__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.review__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}

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

.review__name {
  display: block;
  font-size: 14px;
  font-weight: 600;
}

.review__meta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.review__stars-sm {
  color: #FBBC05;
  font-size: 12px;
  letter-spacing: 1px;
}

.review__date {
  font-size: 12px;
  color: var(--text-muted);
}

.review__google {
  flex-shrink: 0;
}

.review__text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  font-style: italic;
}

/* ========================================
   LOCATION / MAP
   ======================================== */
.location {
  padding: 120px 48px 0;
  max-width: 1440px;
  margin: 0 auto;
}

.location__header {
  text-align: center;
  margin-bottom: 64px;
}

.location__content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  overflow: hidden;
  min-height: 500px;
}

.location__map {
  position: relative;
  min-height: 500px;
}

.location__map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: grayscale(1) invert(0.92) contrast(1.1);
}

.location__info {
  background: var(--bg-surface);
  padding: 48px;
  display: flex;
  align-items: center;
}

.location__card {
  width: 100%;
}

.location__detail {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
}

.location__icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}

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

.location__detail-title {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.location__detail-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.location__hours {
  list-style: none;
}

.location__hours li {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-size: 13px;
  color: var(--text-secondary);
  padding: 4px 0;
}

/* ========================================
   CTA
   ======================================== */
.cta {
  position: relative;
  padding: 140px 48px;
  text-align: center;
  overflow: hidden;
}

.cta__bg {
  position: absolute;
  inset: 0;
}

.cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}

.cta__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.8);
}

/* Animated ember glow */
.cta__glow {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(ellipse at 50% 100%, rgba(212, 69, 26, 0.12), transparent 60%);
  animation: ctaGlow 4s ease-in-out infinite;
}

@keyframes ctaGlow {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

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

.cta__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 700;
  letter-spacing: -2px;
  margin-bottom: 16px;
}

.cta__subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 48px;
}

.cta__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.cta__trust {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 1px;
}

/* ========================================
   SECTION DIVIDER (decorative line)
   ======================================== */
.divider {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
}

.divider__line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), rgba(201, 169, 98, 0.3), var(--border), transparent);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: rgba(5, 5, 5, 0.78);
  border-top: 1px solid var(--border);
}

.footer__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 48px 40px;
}

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

.footer__logo {
  display: inline-block;
  margin-bottom: 16px;
}

.footer__logo-img {
  height: 44px;
  width: auto;
  filter: invert(1);
  transition: transform 0.3s ease;
}

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

.footer__desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer__social {
  display: flex;
  gap: 16px;
}

.footer__social a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.footer__social a svg {
  width: 18px;
  height: 18px;
}

.footer__social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(201, 169, 98, 0.2);
}

.footer__heading {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.footer__links li {
  margin-bottom: 12px;
}

.footer__links a,
.footer__links li {
  font-size: 14px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.footer__links a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer__hours li {
  display: flex;
  justify-content: space-between;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 16px;
}

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

.footer__legal {
  display: flex;
  gap: 24px;
}

.footer__legal a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

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

/* ========================================
   CUSTOM CURSOR GLOW (desktop only)
   ======================================== */
.cursor-glow {
  position: fixed;
  top: -150px;
  left: -150px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  background: radial-gradient(circle, rgba(201, 169, 98, 0.06), transparent 70%);
  will-change: transform;
  transition: opacity 0.3s ease;
  opacity: 0;
  mix-blend-mode: screen;
}

.cursor-glow.active {
  opacity: 1;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .menu__grid,
  .steps__grid,
  .reviews__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .gallery__item--wide {
    grid-column: span 1;
  }

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

  .location__map {
    min-height: 350px;
  }

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

  .cursor-glow {
    display: none;
  }

  .process__line { display: none; }
  .process__step-number { display: none; }
  .process__step,
  .process__step:nth-child(odd),
  .process__step:nth-child(even) {
    flex-direction: column;
    padding: 32px;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    text-align: center;
  }
  .process__step:nth-child(odd) .process__step-content {
    text-align: center;
  }
  .process__step-icon {
    display: block;
    width: 40px;
    height: 40px;
    color: var(--gold);
    margin-bottom: 16px;
  }
  .process__step-icon svg {
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 768px) {
  .header__nav {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
  }

  .header__nav.active {
    display: flex;
  }

  .header__nav .header__link {
    padding: 16px 0;
  }

  .header__cta {
    display: none;
  }

  .header__menu-btn {
    display: flex;
  }

  .header__menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .header__menu-btn.active span:nth-child(2) {
    opacity: 0;
  }

  .header__menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .header__inner {
    padding: 0 24px;
  }

  .hero__title {
    font-size: clamp(40px, 10vw, 64px);
  }

  .menu,
  .steps,
  .reviews,
  .gallery,
  .process {
    padding: 80px 24px;
  }

  .menu__grid,
  .steps__grid,
  .reviews__grid,
  .gallery__grid {
    grid-template-columns: 1fr;
  }

  .location {
    padding: 80px 24px 0;
  }

  .location__info {
    padding: 32px 24px;
  }

  .about__content {
    padding: 80px 24px;
  }

  .cta {
    padding: 100px 24px;
  }

  .footer__inner {
    padding: 60px 24px 32px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .footer__legal {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .cta__actions {
    flex-direction: column;
    align-items: center;
  }

  .about__stats {
    gap: 32px;
  }

  .divider {
    padding: 0 24px;
  }

  .hero__particles {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero__trust {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
}

/* ========================================
   REDUCED MOTION
   ======================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal, .reveal--left, .reveal--right, .reveal--scale {
    opacity: 1;
    transform: none;
  }

  .hero__title, .hero__subtitle, .hero__actions, .hero__trust {
    opacity: 1;
    transform: none;
  }
}
