:root {
  --bg-primary: #0d0d0d;
  --bg-secondary: #141414;
  --bg-tertiary: #1a1a1a;
  
  --text-primary: #f5f0e8;
  --text-muted: #a89880;
  --text-gold: #c9a227;
  
  --gold: #c9a227;
  --gold-light: #e0b84a;
  --gold-dark: #a68520;
  
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ===== LAYOUT ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: var(--space-md);
  padding-right: var(--space-md);
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-color: var(--bg-primary);
}

/* Hero background image layer */
.hero-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url('images/hero-bg.jpg') center/cover no-repeat;
  opacity: 0.25;
  filter: brightness(0.8) blur(1px);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(13, 13, 13, 0.3) 0%,
    rgba(13, 13, 13, 0.1) 50%,
    rgba(13, 13, 13, 0.7) 100%
  );
  z-index: 1;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
}

.hero-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-gold);
  margin-bottom: var(--space-sm);
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 0.2s;
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 0.4s;
}

.hero-subheadline {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 300;
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 0.6s;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  align-items: center;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 0.8s;
}

@media (min-width: 768px) {
  .hero-cta-group {
    flex-direction: row;
    justify-content: center;
  }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
  background-size: 200% 200%;
  color: #0d0d0d;
  border: none;
  box-shadow: 0 4px 20px rgba(201, 162, 39, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 6px 28px rgba(201, 162, 39, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid rgba(245, 240, 232, 0.3);
}

.btn-secondary:hover {
  border-color: var(--text-primary);
  background: rgba(245, 240, 232, 0.05);
}

/* ===== SHIMMER ANIMATION ===== */
.shimmer {
  position: relative;
  overflow: hidden;
}

.shimmer::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.25) 50%,
    transparent 100%
  );
  animation: shimmerSlide 3s infinite;
}

@keyframes shimmerSlide {
  0% { left: -100%; }
  50%, 100% { left: 200%; }
}

/* ===== TRUST BADGES ===== */
.trust-badges {
  background: var(--bg-secondary);
  border-top: 1px solid rgba(201, 162, 39, 0.08);
  border-bottom: 1px solid rgba(201, 162, 39, 0.08);
  padding-top: var(--space-lg);
  padding-bottom: var(--space-lg);
}

.badges-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}

.badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  width: 140px;
  padding: 1.25rem 0.75rem 1rem;
  background: var(--bg-tertiary);
  border: 1px solid rgba(201, 162, 39, 0.12);
  border-radius: var(--radius-lg);
  cursor: default;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.badge:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 162, 39, 0.35);
  box-shadow: 0 4px 20px rgba(201, 162, 39, 0.08);
}

/* Icon circle */
.badge-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(201, 162, 39, 0.08);
  border: 1px solid rgba(201, 162, 39, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  line-height: 1;
  flex-shrink: 0;
}

.badge-text {
  font-weight: 500;
  font-size: 0.8125rem;
  letter-spacing: 0.03em;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.3;
}

/* ===== PRELOADER ===== */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-content {
  position: relative;
  width: 96px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader-logo {
  width: 64px;
  height: 64px;
  z-index: 2;
  border-radius: var(--radius-md);
  animation: preloaderPulse 1.5s ease-in-out infinite;
}

@keyframes preloaderPulse {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.08); opacity: 1; }
}

.preloader-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(201, 162, 39, 0.15);
  border-top-color: var(--text-gold);
  animation: preloaderSpin 1s linear infinite;
  z-index: 1;
}

@keyframes preloaderSpin {
  to { transform: rotate(360deg); }
}

/* ===== STICKY NAVIGATION BAR ===== */
.nav-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 0.5rem 0;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
  background: transparent;
}

.nav-bar.scrolled {
  background: rgba(13, 13, 13, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(201, 162, 39, 0.08);
  padding: 0.375rem 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: color 0.2s ease;
  flex-shrink: 0;
}

.nav-logo:hover {
  color: var(--text-gold);
}

/* ===== HAMBURGER MENU TOGGLE ===== */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 6px;
  background: transparent;
  border: 1.5px solid rgba(245, 240, 232, 0.2);
  border-radius: var(--radius-sm);
  cursor: pointer;
  z-index: 910;
  transition: border-color var(--transition-fast);
}

.nav-toggle:hover {
  border-color: var(--text-gold);
}

.hamburger-line {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--text-primary);
  border-radius: 1px;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

/* Hamburger → X animation */
.nav-toggle.active .hamburger-line:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active .hamburger-line:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile nav */
@media (max-width: 767px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 260px;
    height: 100vh;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 5rem var(--space-md) var(--space-md);
    background: rgba(13, 13, 13, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-left: 1px solid rgba(201, 162, 39, 0.1);
    transition: right 0.35s ease;
    z-index: 905;
    overflow-y: auto;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 0.75rem 0;
    font-size: 1rem;
    border-bottom: 1px solid rgba(245, 240, 232, 0.06);
  }

  .nav-links a:last-child {
    border-bottom: none;
  }
}

.nav-links {
  display: flex;
  gap: 0.375rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--text-muted);
  padding: 0.375rem 0.625rem;
  border-radius: var(--radius-sm);
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-links a:hover {
  color: var(--text-primary);
  background: rgba(201, 162, 39, 0.08);
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
  position: fixed;
  bottom: calc(var(--space-md) + 72px);
  right: var(--space-md);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(201, 162, 39, 0.12);
  border: 1px solid rgba(201, 162, 39, 0.2);
  color: var(--text-gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  background: rgba(201, 162, 39, 0.2);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ===== FLOATING WHATSAPP BUTTON ===== */
.wa-float {
  position: fixed;
  bottom: var(--space-md);
  right: var(--space-md);
  width: 56px;
  height: 56px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  z-index: 1000;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  animation: pulse 2s ease-in-out infinite;
}

.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

.wa-float svg {
  width: 28px;
  height: 28px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  }
  50% {
    box-shadow: 0 4px 24px rgba(37, 211, 102, 0.55);
  }
}

/* ===== RESPONSIVE BREAKPOINTS ===== */
@media (min-width: 768px) {
  .container {
    padding-left: var(--space-lg);
    padding-right: var(--space-lg);
  }
  
  .badges-row {
    gap: var(--space-lg) var(--space-xl);
  }
  
  .badge {
    font-size: 0.9375rem;
  }
}

@media (min-width: 1280px) {
  .container {
    padding-left: var(--space-xl);
    padding-right: var(--space-xl);
  }
  
  .hero-content {
    padding-top: var(--space-2xl);
    padding-bottom: var(--space-2xl);
  }
}

/* ===== SHARED SECTION STYLES ===== */
.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-gold);
  margin-bottom: var(--space-xs);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
  line-height: 1.2;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.9375rem, 2vw, 1.0625rem);
  font-weight: 300;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== OCCASION SELECTOR ===== */
.occasions {
  padding: var(--space-2xl) 0;
  background: var(--bg-primary);
}

.occasion-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-xs);
  margin-bottom: var(--space-xl);
}

.occasion-tab {
  padding: 0.625rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  background: transparent;
  border: 1.5px solid rgba(201, 162, 39, 0.2);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.occasion-tab:hover {
  border-color: var(--gold);
  color: var(--text-primary);
}

.occasion-tab.active {
  background: var(--gold);
  color: #0d0d0d;
  border-color: var(--gold);
}

.occasion-panels {
  position: relative;
}

.occasion-panel {
  display: none;
  gap: var(--space-xl);
  align-items: center;
}

.occasion-panel.active {
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .occasion-panel.active {
    flex-direction: row;
  }
}

.occasion-gallery {
  flex: 1;
  position: relative;
}

.carousel {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-secondary);
}

@media (min-width: 768px) {
  .carousel {
    aspect-ratio: 4 / 3;
  }
}

/* Full-width gallery on mobile */
@media (max-width: 767px) {
  .occasion-gallery {
    flex: none;
    width: 100%;
  }
  .occasion-text {
    flex: none;
    width: 100%;
  }
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--transition-slow);
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: var(--space-xs);
  margin-top: var(--space-sm);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(201, 162, 39, 0.3);
  border: none;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.dot.active {
  background: var(--gold);
}

.occasion-text {
  flex: 1;
}

.occasion-text h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.occasion-text p {
  color: var(--text-muted);
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

.occasion-features {
  list-style: none;
  margin-bottom: var(--space-lg);
}

.occasion-features li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: var(--space-xs);
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.occasion-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 600;
}

/* ===== INQUIRY FORM ===== */
.inquiry {
  padding: var(--space-2xl) 0;
  background: var(--bg-secondary);
}

.inquiry-form {
  max-width: 720px;
  margin: 0 auto;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

@media (min-width: 768px) {
  .form-row {
    flex-direction: row;
  }
  
  .form-row .form-group {
    flex: 1;
  }
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}

.form-group .required {
  color: #e74c3c;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--text-primary);
  background: var(--bg-tertiary);
  border: 1.5px solid rgba(245, 240, 232, 0.1);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(168, 152, 128, 0.5);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23a89880' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group select option {
  background: var(--bg-tertiary);
  color: var(--text-primary);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.error-msg {
  display: none;
  font-size: 0.8125rem;
  color: #e74c3c;
  margin-top: var(--space-xs);
}

.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
  border-color: #e74c3c;
}

.form-group.has-error .error-msg {
  display: block;
}

.form-hint {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: var(--space-xs);
  opacity: 0.7;
}

.form-submit {
  text-align: center;
  margin-top: var(--space-lg);
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

.form-note {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: var(--space-sm);
  opacity: 0.7;
}

/* ===== URGENCY SECTION ===== */
.urgency {
  padding: var(--space-2xl) 0;
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.08) 0%, rgba(201, 162, 39, 0.02) 100%);
  border-top: 1px solid rgba(201, 162, 39, 0.1);
  border-bottom: 1px solid rgba(201, 162, 39, 0.1);
}

.urgency-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.urgency-icon {
  font-size: 3rem;
  margin-bottom: var(--space-sm);
}

.urgency-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.urgency-text {
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

.urgency-box {
  background: rgba(201, 162, 39, 0.08);
  border: 1px solid rgba(201, 162, 39, 0.15);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-lg);
  margin-bottom: var(--space-lg);
}

.urgency-highlight {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  color: var(--text-gold);
  margin-bottom: var(--space-xs);
}

.urgency-highlight strong {
  color: var(--text-primary);
}

.urgency-sub {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Date input calendar icon – dark theme */
input[type="date"] {
  color-scheme: dark;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.7) sepia(1) saturate(5) hue-rotate(10deg);
  cursor: pointer;
  opacity: 0.9;
}

input[type="date"]::-webkit-calendar-picker-indicator:hover {
  opacity: 1;
}

/* Instagram handle inside heading */
.insta-handle {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65em;
  font-weight: 400;
  color: var(--text-gold);
  letter-spacing: 0.04em;
  margin-top: 0.25rem;
}

@media (min-width: 768px) {
  .insta-handle {
    display: inline;
    margin-left: 0.5rem;
  }
}

/* Hero brand logo */
.hero-logo-wrap {
  position: relative;
  display: inline-block;
  margin: 0 auto var(--space-md);
  width: 160px;
  height: 160px;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 0.1s;
}

.hero-logo {
  display: block;
  width: 120px;
  height: 120px;
  border-radius: var(--radius-lg);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  filter: drop-shadow(0 2px 12px rgba(201, 162, 39, 0.2));
}

/* Glow ring around logo */
.logo-glow-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(201, 162, 39, 0.25);
  box-shadow: 
    0 0 20px rgba(201, 162, 39, 0.06),
    inset 0 0 20px rgba(201, 162, 39, 0.04);
  animation: logoGlowPulse 3s ease-in-out infinite;
  z-index: 1;
}

@keyframes logoGlowPulse {
  0%, 100% { 
    border-color: rgba(201, 162, 39, 0.2);
    box-shadow: 0 0 20px rgba(201, 162, 39, 0.04), inset 0 0 20px rgba(201, 162, 39, 0.02);
    transform: scale(1);
  }
  50% { 
    border-color: rgba(201, 162, 39, 0.4);
    box-shadow: 0 0 35px rgba(201, 162, 39, 0.1), inset 0 0 35px rgba(201, 162, 39, 0.06);
    transform: scale(1.05);
  }
}

/* Particle ring container */
.logo-particles-ring {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

/* Individual edge particle */
.logo-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--text-gold);
  border-radius: 50%;
  animation: logoParticleOrbit 6s linear infinite;
  opacity: 0;
}

@keyframes logoParticleOrbit {
  0%   { opacity: 0; transform: rotate(0deg) translateX(90px) rotate(0deg); }
  10%  { opacity: 0.8; }
  50%  { opacity: 0.3; }
  90%  { opacity: 0.8; }
  100% { opacity: 0; transform: rotate(360deg) translateX(90px) rotate(-360deg); }
}

/* Location plus code */
.location-plus-code {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-gold);
  margin-top: var(--space-xs);
}

/* ===== FAQ SECTION ===== */
.faq {
  padding: var(--space-2xl) 0;
  background: var(--bg-secondary);
  border-top: 1px solid rgba(201, 162, 39, 0.08);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(201, 162, 39, 0.08);
}

.faq-question {
  padding: 1.25rem 0;
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--text-primary);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  user-select: none;
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: var(--text-gold);
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: '+';
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--text-gold);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

details[open] .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 0 1.25rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-cta {
  text-align: center;
  margin-top: var(--space-xl);
}

.faq-cta p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
}

/* ===== REVIEWS SECTION ===== */
.reviews {
  padding: var(--space-2xl) 0;
  background: var(--bg-primary);
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

@media (min-width: 768px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.review-card {
  background: var(--bg-secondary);
  border: 1px solid rgba(201, 162, 39, 0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.review-stars {
  color: var(--gold);
  font-size: 1.125rem;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-sm);
}

.review-text {
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.review-author strong {
  display: block;
  color: var(--text-primary);
  font-weight: 500;
  font-size: 0.9375rem;
}

.review-author span {
  font-size: 0.8125rem;
  color: var(--text-muted);
  opacity: 0.7;
}

.reviews-cta {
  text-align: center;
}

/* ===== Google Review Invite Card ===== */
.review-invite-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  text-align: center;
  padding: var(--space-xl) var(--space-lg);
  margin-bottom: var(--space-lg);
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.12) 0%, rgba(201, 162, 39, 0.04) 100%);
  border: 1.5px solid rgba(201, 162, 39, 0.2);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.review-invite-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: radial-gradient(ellipse at center, rgba(201, 162, 39, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.review-invite-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}

.review-invite-icon {
  font-size: 2rem;
  line-height: 1;
}

.review-invite-card h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 600;
  color: var(--text-primary);
}

.review-invite-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  max-width: 500px;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .review-invite-card {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .review-invite-content {
    align-items: flex-start;
  }
}

/* ===== INSTAGRAM SECTION ===== */
.instagram {
  padding: var(--space-2xl) 0;
  background: var(--bg-secondary);
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xs);
  margin-bottom: var(--space-xl);
}

@media (min-width: 768px) {
  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-sm);
  }
}

.insta-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg-tertiary);
}

.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 13, 13, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.insta-item:hover img {
  transform: scale(1.05);
}

.insta-item:hover .insta-overlay {
  opacity: 1;
}

.insta-icon {
  font-size: 1.5rem;
  color: #fff;
}

.instagram-cta {
  text-align: center;
}

/* ===== LOCATION SECTION ===== */
.location {
  padding: var(--space-2xl) 0;
  background: var(--bg-primary);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 768px) {
  .location-grid {
    grid-template-columns: 1fr 1.2fr;
  }
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.location-block h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-gold);
  margin-bottom: var(--space-xs);
}

.location-block p {
  color: var(--text-muted);
  line-height: 1.7;
}

.location-block a {
  color: var(--text-primary);
  transition: color var(--transition-fast);
}

.location-block a:hover {
  color: var(--text-gold);
}

.location-note {
  font-size: 0.875rem;
  color: var(--text-muted);
  opacity: 0.7;
  margin-top: var(--space-xs);
}

.location-pickup {
  background: rgba(201, 162, 39, 0.06);
  border: 1px solid rgba(201, 162, 39, 0.12);
  border-radius: var(--radius-md);
  padding: var(--space-md);
}

.pickup-icon {
  font-size: 1.5rem;
  display: block;
  margin-bottom: var(--space-xs);
}

.location-map {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-secondary);
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.4) contrast(1.1);
}

/* ===== LOCATION NAVIGATION BUTTON ===== */
.location-navigate {
  text-align: center;
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(201, 162, 39, 0.06);
}

.location-navigate-sub {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: var(--space-xs);
  opacity: 0.7;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid rgba(201, 162, 39, 0.08);
  padding: var(--space-xl) 0 var(--space-md);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
  text-align: center;
  margin-bottom: var(--space-lg);
}

@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-brand h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--text-gold);
}

.footer-social {
  display: flex;
  gap: var(--space-sm);
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: var(--gold);
  color: #0d0d0d;
}

.footer-social svg {
  width: 20px;
  height: 20px;
}

.footer-bottom {
  text-align: center;
  padding-top: var(--space-md);
  border-top: 1px solid rgba(245, 240, 232, 0.06);
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  opacity: 0.6;
}
