:root {
  --bg-primary: #1A1614;
  --bg-secondary: #2B2522;
  --bg-light: #F5EDE4;
  --text-primary: #E8DCC8;
  --text-dark: #1A1614;
  --accent-wine: #8B4A6B;
  --accent-terracotta: #C97D60;
  --accent-sage: #9BA982;
  --accent-gold: #D4AF37;
  --accent-flame: #FF6B35;
  --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.5rem;
  --font-size-xl: 2rem;
  --font-size-xxl: 2.5rem;
  --font-size-hero: 3rem;
  --border-radius-sm: 0.25rem;
  --border-radius-md: 0.5rem;
  --border-radius-lg: 1rem;
  --shadow-sm: 0 2px 4px rgba(42, 42, 42, 0.1);
  --shadow-md: 0 4px 8px rgba(42, 42, 42, 0.15);
  --shadow-lg: 0 8px 16px rgba(42, 42, 42, 0.2);
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--bg-secondary);
  color: var(--text-primary);
  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.3;
  margin-bottom: var(--space-md);
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

h1 {
  font-size: var(--font-size-hero);
}

h2 {
  font-size: var(--font-size-xxl);
  position: relative;
}

h3 {
  font-size: var(--font-size-xl);
  margin-top: var(--space-lg);
  position: relative;
}

h3::before {
  content: '—';
  color: var(--accent-terracotta);
  margin-right: var(--space-xs);
  opacity: 0.5;
}

h4 {
  font-size: var(--font-size-lg);
}

p {
  margin-bottom: var(--space-md);
  max-width: 68ch;
  line-height: 1.8;
  color: var(--text-primary);
  opacity: 0.95;
  font-size: var(--font-size-base);
  letter-spacing: 0.01em;
}

.grid > div > p:first-of-type,
.text-block p:first-of-type {
  font-size: 1.125rem;
  line-height: 1.9;
  opacity: 1;
  position: relative;
}

.grid-2 > div > p:first-of-type {
  padding-left: var(--space-md);
  border-left: 3px solid var(--accent-terracotta);
  margin-left: calc(var(--space-sm) * -1);
}

.grid-2 > div > p:first-of-type::first-letter {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  line-height: 1;
  float: left;
  padding-right: var(--space-xs);
  padding-top: var(--space-xs);
  color: var(--accent-gold);
  font-weight: 700;
  margin-right: var(--space-xs);
}

a {
  color: var(--accent-terracotta);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--accent-gold);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section {
  padding: var(--space-xxl) 0;
  position: relative;
}

.section:nth-child(even) {
  background: linear-gradient(180deg, transparent 0%, rgba(212, 175, 55, 0.03) 50%, transparent 100%);
}

.header {
  position: relative;
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  padding: var(--space-sm) 0;
  z-index: 100;
  border-bottom: 1px solid rgba(232, 220, 200, 0.1);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--accent-gold);
  text-decoration: none;
  transition: all var(--transition-base);
  letter-spacing: 0.02em;
  position: relative;
}

.logo:hover {
  color: var(--accent-terracotta);
  transform: translateX(2px);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: var(--space-md);
  align-items: center;
}

.nav-menu li {
  position: relative;
}

.nav-menu li::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-terracotta), var(--accent-gold));
  transition: width var(--transition-base);
}

.nav-menu li:hover::after {
  width: 100%;
}

.nav-menu li a {
  color: var(--text-primary);
  font-size: var(--font-size-sm);
  text-transform: lowercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  transition: color var(--transition-fast);
  position: relative;
  padding: var(--space-xs) 0;
}

.nav-menu li a:hover {
  color: var(--accent-gold);
}

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(232, 220, 200, 0.3);
  border-radius: var(--border-radius-sm);
  font-size: var(--font-size-lg);
  color: var(--text-primary);
  cursor: pointer;
  z-index: 1001;
  padding: var(--space-xs) var(--space-sm);
  transition: all var(--transition-fast);
}

.menu-toggle:hover {
  border-color: var(--accent-terracotta);
  color: var(--accent-terracotta);
}

.menu-toggle.active {
  display: none;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 320px;
  height: 100vh;
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  transform: translateY(-100%);
  transition: transform var(--transition-base);
  z-index: 1000;
  padding: var(--space-xxl) var(--space-md);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
  overflow-y: auto;
  border-left: 1px solid rgba(232, 220, 200, 0.1);
}

.mobile-menu.active {
  transform: translateY(0);
}

.mobile-menu-close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background: none;
  border: 1px solid rgba(232, 220, 200, 0.3);
  border-radius: var(--border-radius-sm);
  font-size: var(--font-size-lg);
  color: var(--text-primary);
  cursor: pointer;
  padding: var(--space-xs) var(--space-sm);
  transition: all var(--transition-fast);
}

.mobile-menu-close:hover {
  border-color: var(--accent-terracotta);
  color: var(--accent-terracotta);
}

.mobile-nav {
  list-style: none;
  margin-top: var(--space-xxl);
}

.mobile-nav li {
  margin-bottom: var(--space-md);
}

.mobile-nav li a {
  color: var(--text-primary);
  font-size: var(--font-size-lg);
  text-transform: lowercase;
  letter-spacing: 0.1em;
  display: block;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid rgba(232, 220, 200, 0.1);
  transition: color var(--transition-fast);
}

.mobile-nav li a:hover {
  color: var(--accent-gold);
  padding-left: var(--space-sm);
}

.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse at center, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  background-image: url('../img/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-blend-mode: overlay;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(26, 22, 20, 0.85) 0%, rgba(43, 37, 34, 0.75) 100%);
}

.hero-flame {
  position: absolute;
  width: 80px;
  height: 120px;
  left: 50%;
  top: 20%;
  transform: translateX(-50%);
  z-index: 1;
  opacity: 0.6;
}

.hero-flame::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 60px;
  background: linear-gradient(to top, var(--accent-terracotta), var(--accent-flame));
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  animation: flameFlicker 2s ease-in-out infinite;
  box-shadow: 0 0 20px var(--accent-flame), 0 0 40px rgba(255, 107, 53, 0.5);
}

.hero-flame::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 80px;
  background: linear-gradient(to top, var(--accent-gold), transparent);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  animation: flameFlicker 1.5s ease-in-out infinite reverse;
  opacity: 0.7;
}

@keyframes flameFlicker {
  0%, 100% {
    transform: translateX(-50%) scaleY(1) scaleX(1);
    opacity: 1;
  }
  25% {
    transform: translateX(-50%) scaleY(1.1) scaleX(0.95);
    opacity: 0.9;
  }
  50% {
    transform: translateX(-50%) scaleY(0.95) scaleX(1.05);
    opacity: 0.95;
  }
  75% {
    transform: translateX(-50%) scaleY(1.05) scaleX(0.98);
    opacity: 0.9;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--text-primary);
  padding: var(--space-xl);
  animation: fadeInUp 1s ease-out;
}

.hero-content h1 {
  color: var(--text-primary);
  margin-bottom: var(--space-md);
  text-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content p {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-xl);
  color: var(--text-primary);
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--space-lg);
}

.btn {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  background: linear-gradient(135deg, var(--accent-terracotta) 0%, var(--accent-wine) 100%);
  color: var(--text-primary);
  border: 2px solid transparent;
  border-radius: var(--border-radius-sm);
  font-size: var(--font-size-base);
  text-transform: lowercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-base);
  text-align: center;
  margin-top: var(--space-md);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
  transition: left var(--transition-slow);
}

.btn:hover::before {
  left: 100%;
}

.btn:hover {
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-terracotta) 100%);
  color: var(--text-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(201, 125, 96, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--accent-sage);
}

.btn-secondary:hover {
  background: var(--accent-sage);
  color: var(--text-dark);
  box-shadow: 0 8px 20px rgba(155, 169, 130, 0.4);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes flame {
  0%, 100% {
    transform: scale(1) translateY(0);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.05) translateY(-5px);
    opacity: 1;
  }
}

.flame-animation {
  animation: flame 3s ease-in-out infinite;
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-xl);
  font-size: var(--font-size-xxl);
  position: relative;
  display: block;
  width: 100%;
  padding-bottom: var(--space-md);
}

.section-title::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 220, 200, 0.2), transparent);
  z-index: 0;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-terracotta), var(--accent-gold), var(--accent-terracotta));
  z-index: 1;
}

h2.section-title {
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  padding: 0 var(--space-md);
}

.text-center {
  text-align: center;
}

.text-center p {
  margin-left: auto;
  margin-right: auto;
}

.text-block {
  position: relative;
  padding: var(--space-lg);
  margin: var(--space-lg) 0;
  background: rgba(43, 37, 34, 0.2);
  border-left: 4px solid var(--accent-terracotta);
  border-radius: var(--border-radius-sm);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.text-block::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: var(--space-md);
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: var(--accent-gold);
  opacity: 0.3;
  line-height: 1;
}

.grid {
  display: grid;
  gap: var(--space-lg);
}

.grid > div {
  position: relative;
  padding: var(--space-md);
  border-radius: var(--border-radius-sm);
}

.grid > div::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 220, 200, 0.2), transparent);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-2 > div {
  padding: var(--space-lg) var(--space-md);
}

.grid-2 > div > h3 {
  margin-top: 0;
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid rgba(232, 220, 200, 0.1);
  margin-bottom: var(--space-md);
}

.grid-2 > div > h3::before {
  display: none;
}

.grid-2 > div {
  padding: var(--space-lg) var(--space-md);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-3 > div {
  padding: var(--space-md);
  background: rgba(43, 37, 34, 0.3);
  border-radius: var(--border-radius-sm);
  border: 1px solid rgba(232, 220, 200, 0.05);
  transition: all var(--transition-base);
}

.grid-3 > div:hover {
  background: rgba(43, 37, 34, 0.5);
  border-color: rgba(212, 175, 55, 0.2);
  transform: translateY(-3px);
}

.product-card {
  background: linear-gradient(135deg, rgba(43, 37, 34, 0.8) 0%, rgba(26, 22, 20, 0.9) 100%);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all var(--transition-base);
  border: 1px solid rgba(232, 220, 200, 0.1);
  position: relative;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-terracotta), var(--accent-wine), var(--accent-terracotta));
  opacity: 0;
  transition: opacity var(--transition-base);
}

.product-card:hover::before {
  opacity: 1;
}

.product-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 30px rgba(201, 125, 96, 0.3);
  border-color: rgba(212, 175, 55, 0.3);
}

.product-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.product-info {
  padding: var(--space-md);
}

.product-title {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
}

.product-price {
  font-size: var(--font-size-xl);
  color: var(--accent-gold);
  font-weight: 600;
  margin-top: var(--space-sm);
  font-family: 'Playfair Display', serif;
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  margin-bottom: var(--space-xs);
  font-size: var(--font-size-sm);
  text-transform: lowercase;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--space-sm);
  border: 1px solid rgba(232, 220, 200, 0.2);
  border-radius: var(--border-radius-sm);
  font-size: var(--font-size-base);
  font-family: inherit;
  background-color: rgba(43, 37, 34, 0.5);
  color: var(--text-primary);
  transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-terracotta);
  background-color: rgba(43, 37, 34, 0.8);
  box-shadow: 0 0 0 3px rgba(201, 125, 96, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--space-xs);
  margin-top: var(--space-md);
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 0.25rem;
}

.checkbox-group label {
  font-size: var(--font-size-sm);
  text-transform: none;
  letter-spacing: 0;
}

.map-container {
  width: 100%;
  height: 400px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  margin-top: var(--space-lg);
  box-shadow: var(--shadow-md);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.footer {
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  color: var(--text-primary);
  padding: var(--space-xxl) 0 var(--space-xl);
  margin-top: var(--space-xxl);
  border-top: 1px solid rgba(232, 220, 200, 0.1);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-terracotta), var(--accent-gold), var(--accent-terracotta), transparent);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-xl);
  align-items: center;
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(232, 220, 200, 0.1);
  margin-bottom: var(--space-md);
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--accent-gold);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-brand:hover {
  color: var(--accent-terracotta);
}

.footer-menu {
  display: flex;
  gap: var(--space-lg);
  list-style: none;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-menu li {
  position: relative;
}

.footer-menu li::after {
  content: '•';
  position: absolute;
  right: calc(var(--space-lg) * -1);
  color: rgba(232, 220, 200, 0.3);
}

.footer-menu li:last-child::after {
  display: none;
}

.footer-menu li a {
  color: var(--text-primary);
  font-size: var(--font-size-sm);
  text-transform: lowercase;
  letter-spacing: 0.1em;
  opacity: 0.8;
  transition: all var(--transition-fast);
  padding: var(--space-xs) 0;
  position: relative;
}

.footer-menu li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-gold);
  transition: width var(--transition-base);
}

.footer-menu li a:hover {
  color: var(--accent-gold);
  opacity: 1;
}

.footer-menu li a:hover::after {
  width: 100%;
}

.footer-copyright {
  text-align: center;
  font-size: var(--font-size-sm);
  opacity: 0.7;
  color: var(--text-primary);
}

.legal-page {
  padding: var(--space-xxl) 0;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h1 {
  margin-bottom: var(--space-lg);
}

.legal-content h2 {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
  font-size: var(--font-size-xl);
}

.legal-content p {
  margin-bottom: var(--space-md);
}

.legal-content ul,
.legal-content ol {
  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-sm) var(--space-lg);
  background: linear-gradient(135deg, var(--accent-terracotta) 0%, var(--accent-wine) 100%);
  color: var(--text-primary);
  border-radius: var(--border-radius-sm);
  text-transform: lowercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  transition: all var(--transition-base);
}

.home-button:hover {
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-terracotta) 100%);
  color: var(--text-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(201, 125, 96, 0.4);
}

.table-wrapper {
  overflow-x: auto;
  margin: var(--space-md) 0;
}

.table-wrapper table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.table-wrapper th,
.table-wrapper td {
  padding: var(--space-sm);
  text-align: left;
  border-bottom: 1px solid rgba(232, 220, 200, 0.2);
}

.table-wrapper th {
  background: linear-gradient(135deg, rgba(201, 125, 96, 0.2) 0%, rgba(139, 74, 107, 0.2) 100%);
  color: var(--text-primary);
  font-weight: 600;
  text-transform: lowercase;
  font-size: var(--font-size-sm);
  letter-spacing: 0.1em;
}

.center-page {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xxl) var(--space-md);
}

.center-page h1 {
  margin-bottom: var(--space-lg);
}

.center-page p {
  max-width: none;
  margin-bottom: var(--space-md);
}

.privacy-popup {
  position: fixed;
  bottom: var(--space-md);
  left: var(--space-md);
  right: var(--space-md);
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  color: var(--text-primary);
  padding: var(--space-md);
  border-radius: var(--border-radius-md);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(232, 220, 200, 0.2);
  z-index: 9999;
  max-width: 500px;
  margin: 0 auto;
  display: none;
}

.privacy-popup.active {
  display: block;
}

.privacy-popup-content {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.privacy-popup-text {
  flex: 1;
  font-size: var(--font-size-sm);
}

.privacy-popup-buttons {
  display: flex;
  gap: var(--space-sm);
}

.privacy-popup-btn {
  padding: var(--space-xs) var(--space-md);
  border: none;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  font-size: var(--font-size-sm);
  transition: opacity var(--transition-fast);
}

.privacy-popup-btn:hover {
  opacity: 0.8;
}

.privacy-popup-btn-accept {
  background: linear-gradient(135deg, var(--accent-terracotta) 0%, var(--accent-wine) 100%);
  color: var(--text-primary);
}

.privacy-popup-btn-decline {
  background-color: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(232, 220, 200, 0.3);
}

@media (max-width: 768px) {
  :root {
    --font-size-hero: 2rem;
    --font-size-xxl: 2rem;
    --font-size-xl: 1.75rem;
    --space-xxl: 3rem;
    --space-xl: 2rem;
  }

  .logo {
    font-size: var(--font-size-base);
  }

  .nav-menu {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    min-height: 60vh;
  }

  .hero-flame {
    width: 60px;
    height: 90px;
    top: 15%;
  }

  .hero-content h1 {
    font-size: var(--font-size-xl);
  }

  .hero-content p {
    font-size: var(--font-size-base);
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .grid > div::after {
    display: none;
  }

  .grid-2 > div > p:first-of-type::first-letter {
    font-size: 2.5rem;
  }

  .section {
    padding: var(--space-xl) 0;
  }

  .section-title::before {
    display: none;
  }

  h3::before {
    display: none;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-md);
  }

  .footer-menu {
    justify-content: center;
    flex-direction: row;
    gap: var(--space-md);
  }

  .footer-menu li::after {
    display: none;
  }

  .privacy-popup {
    left: var(--space-sm);
    right: var(--space-sm);
    bottom: var(--space-sm);
  }

  .privacy-popup-content {
    flex-direction: column;
    align-items: stretch;
  }

  .privacy-popup-buttons {
    flex-direction: column;
  }

  .privacy-popup-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  :root {
    --font-size-hero: 1.75rem;
    --font-size-xxl: 1.75rem;
    --font-size-xl: 1.5rem;
    --space-xxl: 2rem;
    --space-xl: 1.5rem;
  }

  .container {
    padding: 0 var(--space-sm);
  }

  .hero-content {
    padding: var(--space-md);
  }

  .section {
    padding: var(--space-lg) 0;
  }

  .logo {
    font-size: var(--font-size-sm);
  }

  .grid-2 > div > p:first-of-type {
    padding-left: var(--space-sm);
    margin-left: 0;
  }

  .grid-2 > div > p:first-of-type::first-letter {
    font-size: 2rem;
  }

  .text-block {
    padding: var(--space-md);
  }

  .text-block::before {
    font-size: 3rem;
  }
}

@media (max-width: 320px) {
  :root {
    --font-size-hero: 1.5rem;
    --font-size-xxl: 1.5rem;
    --space-xxl: 1.5rem;
  }

  .logo {
    font-size: var(--font-size-base);
  }

  .hero-flame {
    width: 50px;
    height: 75px;
    top: 12%;
  }
}

