:root {
  --primary: #8B6F47;
  --secondary: #5D4E37;
  --accent: #C9A961;
  --accent-light: #E8D5B7;
  --bg-light: #F5F1E8;
  --bg-dark: #2C2416;
  --bg-gradient: linear-gradient(135deg, #3D2F1F 0%, #5D4E37 50%, #2C2416 100%);
  --text-dark: #2C2416;
  --text-light: #F5F1E8;
  --text-warm: #8B6F47;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-xxl: 4rem;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-md: 1.125rem;
  --font-size-lg: 1.25rem;
  --font-size-xl: 1.5rem;
  --font-size-xxl: 2rem;
  --font-size-hero: 2.5rem;
  --border-radius-sm: 0.25rem;
  --border-radius-md: 0.5rem;
  --border-radius-lg: 1rem;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.2);
  --shadow-glow: 0 0 30px rgba(201, 169, 97, 0.3);
  --transition: 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Cormorant Garamond', serif;
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

h1 {
  font-size: var(--font-size-hero);
}

h2 {
  font-size: var(--font-size-xxl);
}

h3 {
  font-size: var(--font-size-xl);
}

p {
  margin-bottom: var(--space-md);
}

a {
  color: var(--secondary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--accent);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(245, 241, 232, 0.95);
  backdrop-filter: blur(10px);
  padding: var(--space-sm) 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(139, 111, 71, 0.1);
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--secondary);
  letter-spacing: 0.08em;
  position: relative;
  padding-left: var(--space-sm);
}

.logo::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 24px;
  background: linear-gradient(180deg, var(--accent) 0%, var(--primary) 100%);
  border-radius: 2px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: var(--space-md);
  align-items: center;
  position: relative;
}

.nav-menu::before {
  content: '';
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 18px;
  background: var(--primary);
  opacity: 0.3;
}

.nav-menu a {
  font-size: var(--font-size-sm);
  color: var(--text-dark);
  position: relative;
  padding: var(--space-xs) var(--space-sm);
  font-weight: 500;
  transition: color var(--transition);
}

.nav-menu a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--accent-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
  z-index: -1;
  border-radius: var(--border-radius-sm);
}

.nav-menu a:hover {
  color: var(--secondary);
}

.nav-menu a:hover::before {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  background: var(--accent-light);
  border: 2px solid var(--primary);
  border-radius: var(--border-radius-sm);
  font-size: var(--font-size-lg);
  color: var(--secondary);
  cursor: pointer;
  z-index: 1001;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.menu-toggle:hover {
  background: var(--accent);
  color: var(--text-light);
  transform: scale(1.05);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--secondary) 100%);
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: 1000;
  padding: var(--space-xxl) var(--space-lg);
  overflow-y: auto;
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
}

.mobile-menu.active {
  transform: translateY(0);
}

.mobile-menu .nav-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-lg);
  list-style: none;
  margin-top: var(--space-xl);
  padding: 0;
  width: 100%;
}

.mobile-menu .nav-menu li {
  width: 100%;
}

.mobile-menu .nav-menu a {
  color: var(--text-light);
  font-size: var(--font-size-lg);
  display: block;
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--border-radius-sm);
  transition: all var(--transition);
}

.mobile-menu .nav-menu a:hover {
  background: rgba(201, 169, 97, 0.2);
  color: var(--accent);
  padding-left: var(--space-lg);
}

.menu-close {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  background: rgba(201, 169, 97, 0.2);
  border: 2px solid var(--accent);
  border-radius: 50%;
  color: var(--text-light);
  font-size: var(--font-size-xl);
  cursor: pointer;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.menu-close:hover {
  background: var(--accent);
  transform: rotate(90deg) scale(1.1);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--bg-gradient);
  background-image: url('../img/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  padding-top: 70px;
}

.hero-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--space-lg);
}

.hero-header-line {
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
  opacity: 0.6;
}

.hero-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: var(--space-lg);
}

.hero-footer-line {
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
  opacity: 0.6;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(44, 36, 22, 0.85) 0%, rgba(93, 78, 55, 0.75) 50%, rgba(44, 36, 22, 0.85) 100%);
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: rotate 20s linear infinite;
  z-index: 1;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--text-light);
  padding: var(--space-xl);
  max-width: 900px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.candle-figure {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 200px;
  z-index: 2;
  animation: float 4s ease-in-out infinite;
}

.candle-body {
  width: 80px;
  height: 160px;
  background: linear-gradient(180deg, #E8D5B7 0%, #C9A961 50%, #8B6F47 100%);
  margin: 0 auto;
  border-radius: 40px 40px 8px 8px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), inset 0 -20px 40px rgba(139, 111, 71, 0.3);
}

.candle-body::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  height: 20px;
  background: rgba(232, 213, 183, 0.5);
  border-radius: 10px;
}

.candle-wick {
  width: 4px;
  height: 30px;
  background: #2C2416;
  margin: 0 auto;
  border-radius: 2px;
  position: relative;
  top: -5px;
}

.candle-flame {
  width: 20px;
  height: 40px;
  background: linear-gradient(180deg, #FFD700 0%, #FF8C00 50%, #FF4500 100%);
  margin: 0 auto;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  position: relative;
  top: -35px;
  animation: flicker-flame 2s ease-in-out infinite;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.6), 0 0 40px rgba(255, 140, 0, 0.4);
}

.candle-flame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 25px;
  background: linear-gradient(180deg, #FFF8DC 0%, #FFD700 100%);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
}

.candle-smoke {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 30px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: smoke-rise 3s ease-in-out infinite;
}

.candle-smoke::before,
.candle-smoke::after {
  content: '';
  position: absolute;
  width: 4px;
  height: 20px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  animation: smoke-rise 3s ease-in-out infinite;
}

.candle-smoke::before {
  left: -15px;
  animation-delay: 0.5s;
}

.candle-smoke::after {
  right: -15px;
  animation-delay: 1s;
}

@keyframes float {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-15px);
  }
}

@keyframes flicker-flame {
  0%, 100% {
    transform: scale(1) rotate(-1deg);
    opacity: 1;
  }
  25% {
    transform: scale(1.1) rotate(1deg);
    opacity: 0.9;
  }
  50% {
    transform: scale(0.95) rotate(-0.5deg);
    opacity: 1;
  }
  75% {
    transform: scale(1.05) rotate(0.5deg);
    opacity: 0.95;
  }
}

@keyframes smoke-rise {
  0% {
    opacity: 0;
    transform: translateY(0) scale(1);
  }
  50% {
    opacity: 0.3;
    transform: translateY(-20px) scale(1.2);
  }
  100% {
    opacity: 0;
    transform: translateY(-40px) scale(1.5);
  }
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: var(--space-lg);
  color: var(--text-light);
  animation: fadeInUp 1s ease;
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.5rem);
  margin-bottom: var(--space-xl);
  color: var(--primary);
  animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.4s both;
}

.btn {
  padding: var(--space-md) var(--space-xl);
  border: none;
  border-radius: var(--border-radius-md);
  font-size: var(--font-size-base);
  font-family: 'Cormorant Garamond', serif;
  cursor: pointer;
  transition: all var(--transition);
  margin-top: var(--space-md);
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
  color: var(--text-light);
  box-shadow: var(--shadow-lg), 0 0 20px rgba(201, 169, 97, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn-primary:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(201, 169, 97, 0.5), var(--shadow-glow);
  color: var(--text-light);
}

.btn-secondary {
  background: transparent;
  color: var(--text-light);
  border: 2px solid var(--accent-light);
  position: relative;
  overflow: hidden;
}

.btn-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--accent-light);
  transition: left 0.3s ease;
  z-index: -1;
}

.btn-secondary:hover::before {
  left: 0;
}

.btn-secondary:hover {
  background: var(--accent-light);
  color: var(--secondary);
  border-color: var(--accent-light);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.section {
  padding: var(--space-xxl) 0;
  position: relative;
}

.section:nth-child(even) {
  background: var(--bg-light);
}

.section:nth-child(odd):not(.hero) {
  background: linear-gradient(135deg, rgba(232, 213, 183, 0.2) 0%, rgba(245, 241, 232, 0.5) 100%);
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-xl);
  color: var(--secondary);
  position: relative;
  display: inline-block;
  width: 100%;
  padding-bottom: var(--space-md);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
}

.section-content {
  max-width: 900px;
  margin: 0 auto;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.card {
  background: var(--bg-light);
  border-radius: var(--border-radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(139, 111, 71, 0.1);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 97, 0.1), transparent);
  transition: left 0.5s ease;
}

.card:hover::before {
  left: 100%;
}

.card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  border-color: var(--accent);
}

.card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: var(--border-radius-md);
  margin-bottom: var(--space-md);
}

.card h3 {
  color: var(--secondary);
  margin-bottom: var(--space-sm);
}

.card-price {
  font-size: var(--font-size-xl);
  color: var(--accent);
  font-weight: 600;
  margin-top: var(--space-sm);
  position: relative;
  display: inline-block;
  padding-left: var(--space-md);
}

.card-price::before {
  content: '$';
  position: absolute;
  left: 0;
  top: 0;
  font-size: var(--font-size-lg);
  opacity: 0.7;
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-group label {
  display: block;
  margin-bottom: var(--space-xs);
  color: var(--secondary);
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--space-md);
  border: 2px solid rgba(139, 111, 71, 0.3);
  border-radius: var(--border-radius-md);
  font-family: 'Cormorant Garamond', serif;
  font-size: var(--font-size-base);
  background: var(--bg-light);
  color: var(--text-dark);
  transition: all var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
}


.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 4px;
}

.contact-grid {
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
}

.contact-title {
  text-align: left;
}

.contact-info {
  background: linear-gradient(135deg, var(--accent-light) 0%, rgba(232, 213, 183, 0.8) 100%);
  padding: var(--space-xl);
  border-radius: var(--border-radius-lg);
  margin-top: 0;
  border: 2px solid rgba(139, 111, 71, 0.2);
  position: relative;
  overflow: hidden;
}

.contact-info::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.1) 0%, transparent 70%);
  animation: rotate 15s linear infinite;
}

.contact-info h3 {
  margin-bottom: var(--space-md);
  color: var(--secondary);
}

.contact-info p {
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.map-container {
  margin-top: var(--space-xl);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 2px solid rgba(139, 111, 71, 0.2);
  position: relative;
}

.map-container::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
  border-radius: var(--border-radius-lg);
  z-index: -1;
  opacity: 0.3;
}

.map-container iframe {
  width: 100%;
  height: 450px;
  border: none;
}

.footer {
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--secondary) 100%);
  color: var(--text-light);
  padding: var(--space-xl) 0 var(--space-md);
  margin-top: var(--space-xxl);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-lg);
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: var(--space-sm);
  letter-spacing: 0.05em;
}

.footer-tagline {
  font-size: var(--font-size-sm);
  color: var(--accent-light);
  line-height: 1.6;
  margin-bottom: 0;
}

.footer-links h4,
.footer-contact h4 {
  font-family: 'Playfair Display', serif;
  font-size: var(--font-size-md);
  color: var(--accent);
  margin-bottom: var(--space-md);
  font-weight: 600;
}

.footer-menu {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu a {
  color: var(--text-light);
  font-size: var(--font-size-sm);
  transition: color var(--transition), padding-left var(--transition);
  display: inline-block;
}

.footer-menu a:hover {
  color: var(--accent);
  padding-left: var(--space-xs);
}

.footer-contact p {
  font-size: var(--font-size-sm);
  color: var(--text-light);
  margin-bottom: var(--space-xs);
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid rgba(201, 169, 97, 0.2);
  padding-top: var(--space-md);
  text-align: center;
}

.footer-bottom p {
  font-size: var(--font-size-xs);
  color: var(--accent-light);
  margin: 0;
}

.centered-page {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xxl) var(--space-md);
  margin-top: 80px;
}

.centered-page h1 {
  margin-bottom: var(--space-lg);
}

.centered-page p {
  max-width: none;
  font-size: var(--font-size-lg);
}

.legal-page {
  padding: var(--space-xxl) 0;
  background: var(--bg-light);
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  background: var(--bg-light);
  padding: var(--space-xl);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(139, 111, 71, 0.15);
  position: relative;
}

.legal-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent) 0%, var(--primary) 100%);
  border-radius: var(--border-radius-sm) 0 0 var(--border-radius-sm);
}

.legal-content h1 {
  color: var(--secondary);
  margin-bottom: var(--space-lg);
  text-align: center;
}

.legal-content h2 {
  color: var(--secondary);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
}

.legal-content p {
  margin-bottom: var(--space-md);
  line-height: 1.8;
}

.legal-content ul {
  margin-left: var(--space-lg);
  margin-bottom: var(--space-md);
}

.legal-content li {
  margin-bottom: var(--space-xs);
}

.home-button {
  display: inline-block;
  margin-top: var(--space-xl);
  padding: var(--space-md) var(--space-xl);
  background: var(--secondary);
  color: var(--text-light);
  border-radius: var(--border-radius-md);
  transition: background var(--transition);
}

.home-button:hover {
  background: var(--accent);
  color: var(--text-light);
}

.table-wrapper {
  overflow-x: auto;
  margin: var(--space-lg) 0;
}

.table-wrapper table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.table-wrapper th,
.table-wrapper td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--primary);
}

.table-wrapper th {
  background: var(--primary);
  color: var(--secondary);
  font-weight: 600;
}

.privacy-popup {
  position: fixed;
  bottom: var(--space-lg);
  left: var(--space-lg);
  max-width: 500px;
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--secondary) 100%);
  color: var(--text-light);
  padding: var(--space-lg);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg), 0 0 30px rgba(201, 169, 97, 0.2);
  z-index: 9999;
  display: none;
  border: 1px solid rgba(201, 169, 97, 0.3);
}

.privacy-popup::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--primary) 50%, var(--accent) 100%);
  border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}

.privacy-popup.active {
  display: block;
}

.privacy-popup p {
  margin-bottom: var(--space-md);
  font-size: var(--font-size-sm);
}

.privacy-popup-buttons {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.privacy-popup-buttons button {
  flex: 1;
  min-width: 120px;
}

@media (max-width: 768px) {
  .header .nav-menu {
    display: none;
  }

  .mobile-menu .nav-menu {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  .header {
    padding: var(--space-xs) 0;
  }

  .logo {
    font-size: var(--font-size-md);
    padding-left: var(--space-xs);
  }

  .logo::before {
    width: 2px;
    height: 20px;
  }

  .menu-toggle {
    width: 34px;
    height: 34px;
    font-size: var(--font-size-md);
  }

  .menu-toggle.hidden {
    display: none;
  }

  h1 {
    font-size: var(--font-size-xl);
  }

  h2 {
    font-size: var(--font-size-lg);
  }

  .centered-page {
    margin-top: 60px;
  }

  .hero {
    min-height: 70vh;
    padding-top: 60px;
  }

  .hero-header {
    height: 60px;
    padding-top: var(--space-md);
  }

  .hero-footer {
    height: 60px;
    padding-bottom: var(--space-md);
  }

  .hero-header-line,
  .hero-footer-line {
    width: 150px;
  }

  .hero-content {
    padding: var(--space-md);
  }

  .candle-figure {
    width: 90px;
    height: 150px;
    bottom: 5%;
  }

  .candle-body {
    width: 60px;
    height: 120px;
  }

  .candle-flame {
    width: 15px;
    height: 30px;
    top: -25px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .section {
    padding: var(--space-lg) 0;
  }

  .grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-title {
    text-align: center;
  }

  .contact-info {
    margin-top: var(--space-lg);
  }

  .logo {
    font-size: var(--font-size-lg);
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    text-align: center;
  }

  .footer-brand {
    max-width: 100%;
  }

  .footer-links,
  .footer-contact {
    text-align: center;
  }

  .footer-menu {
    align-items: center;
  }

  .privacy-popup {
    left: var(--space-sm);
    right: var(--space-sm);
    bottom: var(--space-sm);
  }
}

@media (max-width: 480px) {
  :root {
    --space-xs: 0.375rem;
    --space-sm: 0.75rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
    --font-size-hero: 1.75rem;
  }

  .container {
    padding: 0 var(--space-sm);
  }

  .header {
    padding: var(--space-xs) 0;
  }

  .logo {
    font-size: var(--font-size-sm);
  }

  .logo::before {
    height: 18px;
  }

  .menu-toggle {
    width: 32px;
    height: 32px;
    font-size: var(--font-size-sm);
  }

  .centered-page {
    margin-top: 50px;
  }

  .hero {
    padding-top: 55px;
  }

  .hero-header {
    height: 50px;
    padding-top: var(--space-sm);
  }

  .hero-footer {
    height: 50px;
    padding-bottom: var(--space-sm);
  }

  .hero-header-line,
  .hero-footer-line {
    width: 120px;
  }

  .legal-content {
    padding: var(--space-md);
  }
}

@media (max-width: 320px) {
  .header {
    padding: 0.25rem 0;
  }

  .logo {
    font-size: var(--font-size-xs);
    padding-left: 0.25rem;
  }

  .logo::before {
    width: 1.5px;
    height: 16px;
  }

  .menu-toggle {
    width: 30px;
    height: 30px;
    font-size: var(--font-size-xs);
  }

  .centered-page {
    margin-top: 45px;
  }

  .hero {
    padding-top: 50px;
  }

  .hero-content {
    padding: var(--space-sm);
  }

  .card {
    padding: var(--space-md);
  }

  .candle-figure {
    width: 70px;
    height: 120px;
  }

  .candle-body {
    width: 50px;
    height: 100px;
  }

  .candle-flame {
    width: 12px;
    height: 25px;
    top: -20px;
  }
}

