@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;600;700&family=Manrope:wght@300;400;500;600&display=swap');

:root {
  --color-bg: #F9F8F6;
  --color-text: #2E2E2E;
  --color-accent: #BFAF9E;
  --color-amber: #D9B48F;
  --color-sage: #A8B7A2;
  --color-blue: #9FB7C8;
  --color-light: #FFFFFF;
  --color-shadow: rgba(46, 46, 46, 0.08);
  
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Manrope', sans-serif;
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-full: 50%;
  
  --shadow-sm: 0 0.125rem 0.5rem var(--color-shadow);
  --shadow-md: 0 0.25rem 1rem var(--color-shadow);
  --shadow-lg: 0 0.5rem 2rem var(--color-shadow);
  
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.6s ease;
}

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

::selection {
  background: rgba(191, 175, 158, 0.3);
  color: var(--color-text);
}

::-moz-selection {
  background: rgba(191, 175, 158, 0.3);
  color: var(--color-text);
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

::-webkit-scrollbar {
  width: 0.75rem;
}

::-webkit-scrollbar-track {
  background: var(--color-bg);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--color-accent) 0%, var(--color-amber) 100%);
  border-radius: var(--radius-full);
  border: 0.125rem solid var(--color-bg);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--color-amber) 0%, var(--color-accent) 100%);
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text);
  background: linear-gradient(135deg, #F9F8F6 0%, #F5F3F0 50%, #F9F8F6 100%);
  overflow-x: hidden;
  position: relative;
  animation: fadeInBody 0.5s ease;
}

@keyframes fadeInBody {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

body::before {
  content: '';
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(168, 183, 162, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: -1;
  animation: subtleMove 60s linear infinite;
}

@keyframes subtleMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: var(--space-sm);
  letter-spacing: -0.01em;
}

h1 {
  font-size: 2.75rem;
  font-weight: 700;
  background: linear-gradient(135deg, #2E2E2E 0%, #5a5a5a 50%, #2E2E2E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
  line-height: 1.1;
}

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

h2 {
  font-size: 2rem;
  position: relative;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  opacity: 0;
  animation: imageLoad 0.6s ease forwards;
}

@keyframes imageLoad {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  background: none;
}

.header-unique {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  transform: translateY(-100%);
  opacity: 0;
  animation: slideDown 0.8s ease forwards 0.3s;
  transition: z-index var(--transition-base);
}

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

.header-unique.hidden {
  transform: translateY(-100%);
  transition: transform var(--transition-base);
}

.header-content {
  background: rgba(249, 248, 246, 0.95);
  backdrop-filter: blur(25px) saturate(180%);
  padding: var(--space-sm) var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 0.25rem 1.5rem rgba(46, 46, 46, 0.1);
  border-bottom: 0.0625rem solid rgba(191, 175, 158, 0.35);
  position: relative;
  min-height: calc(1.625rem + var(--space-sm) * 2);
  z-index: 1;
}

.header-content::after {
  content: '';
  position: absolute;
  bottom: -0.0625rem;
  left: 0;
  width: 100%;
  height: 0.0625rem;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  opacity: 0.3;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: 0.01em;
  position: relative;
  background: linear-gradient(135deg, #2E2E2E 0%, #5a5a5a 50%, #2E2E2E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all var(--transition-base);
  background-size: 200% 200%;
}

.logo-text:hover {
  transform: translateY(-0.125rem);
  filter: drop-shadow(0 0.25rem 0.5rem rgba(191, 175, 158, 0.4));
  background-position: 100% 50%;
}

.burger-menu {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  width: 1.75rem;
  cursor: pointer;
  z-index: 1200;
  position: relative;
  right: 0;
  top: 0;
  transform: none;
  transition: all var(--transition-base);
  background: rgba(249, 248, 246, 0.95);
  border-radius: var(--radius-md);
  backdrop-filter: blur(15px);
  box-shadow: 0 0.25rem 0.75rem rgba(46, 46, 46, 0.12);
  border: 0.0625rem solid rgba(191, 175, 158, 0.2);
  animation: fadeInBurger 0.6s ease forwards;
  opacity: 0;
  padding: 0.375rem;
  box-sizing: border-box;
}

@keyframes fadeInBurger {
  to {
    opacity: 1;
  }
}

.burger-menu:hover {
  transform: scale(1.08);
  box-shadow: 0 0.25rem 0.75rem rgba(46, 46, 46, 0.15);
}

.burger-menu:active {
  transform: scale(0.98);
}

.burger-menu.active:hover {
  background: rgba(191, 175, 158, 1);
}

.burger-line {
  height: 0.1875rem;
  width: 100%;
  background: linear-gradient(90deg, var(--color-text), var(--color-accent));
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  box-shadow: 0 0.125rem 0.25rem rgba(46, 46, 46, 0.15);
  display: block;
}

.burger-menu.active {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 0.5rem 1.5rem rgba(46, 46, 46, 0.25);
  border-color: rgba(191, 175, 158, 0.5);
}

.burger-menu.active .burger-line {
  background: var(--color-text);
  box-shadow: 0 0.125rem 0.25rem rgba(46, 46, 46, 0.2);
}

.burger-menu.active .burger-line:nth-child(1) {
  transform: translateY(0.49rem) rotate(45deg);
  height: 0.1875rem;
}

.burger-menu.active .burger-line:nth-child(2) {
  opacity: 0;
  transform: translateX(1rem);
}

.burger-menu.active .burger-line:nth-child(3) {
  transform: translateY(-0.49rem) rotate(-45deg);
  height: 0.1875rem;
}

.nav-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 20rem;
  height: 100vh;
  background: linear-gradient(135deg, rgba(249, 248, 246, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
  backdrop-filter: blur(30px) saturate(150%);
  box-shadow: -0.5rem 0 3rem rgba(46, 46, 46, 0.2);
  padding: calc(var(--space-xl) + 2rem) var(--space-lg) var(--space-xl) var(--space-lg);
  transition: right var(--transition-base);
  z-index: 1050;
  overflow-y: auto;
  border-left: 0.125rem solid rgba(191, 175, 158, 0.3);
}

.nav-menu.active {
  right: 0;
  animation: slideInRight 0.4s ease-out;
}

@keyframes slideInRight {
  from {
    right: -100%;
    opacity: 0.5;
  }
  to {
    right: 0;
    opacity: 1;
  }
}

.nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.nav-menu.active .nav-list li {
  animation: fadeInLeft 0.5s ease-out backwards;
}

.nav-menu.active .nav-list li:nth-child(1) {
  animation-delay: 0.1s;
}

.nav-menu.active .nav-list li:nth-child(2) {
  animation-delay: 0.15s;
}

.nav-menu.active .nav-list li:nth-child(3) {
  animation-delay: 0.2s;
}

.nav-menu.active .nav-list li:nth-child(4) {
  animation-delay: 0.25s;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(2rem);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.nav-link {
  font-size: 1.125rem;
  padding: var(--space-sm) var(--space-md);
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(191, 175, 158, 0.1), rgba(217, 180, 143, 0.15));
  transition: left 0.4s ease;
  z-index: -1;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0.5rem;
  left: 1rem;
  width: 0;
  height: 0.125rem;
  background: linear-gradient(90deg, var(--color-accent), var(--color-amber));
  transition: width var(--transition-base);
  border-radius: var(--radius-full);
}

.nav-link:hover::before {
  left: 0;
}

.nav-link:hover::after {
  width: 3rem;
}

.nav-link:hover {
  transform: translateX(0.5rem);
  color: var(--color-accent);
}

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl) var(--space-md);
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at center, rgba(217, 180, 143, 0.08) 0%, transparent 70%);
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 10%;
  left: 20%;
  width: 30rem;
  height: 30rem;
  background: radial-gradient(circle, rgba(168, 183, 162, 0.377) 0%, transparent 70%);
  border-radius: var(--radius-full);
  animation: float 20s ease-in-out infinite;
  z-index: 0;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: 10%;
  right: 15%;
  width: 25rem;
  height: 25rem;
  background: radial-gradient(circle, rgba(159, 183, 200, 0.425) 0%, transparent 70%);
  border-radius: var(--radius-full);
  animation: float 25s ease-in-out infinite reverse;
  z-index: 0;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(1.5rem, -2rem) scale(1.05); }
  50% { transform: translate(-1rem, 1.5rem) scale(0.95); }
  75% { transform: translate(2rem, 1rem) scale(1.02); }
}

.hero-content {
  max-width: 50rem;
  text-align: center;
  z-index: 2;
  opacity: 0;
  transform: translateY(2rem);
  animation: fadeInUp 1s ease forwards 0.5s;
}

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

.flame-animation {
  display: inline-block;
  animation: flicker 3s ease-in-out infinite;
  filter: drop-shadow(0 0 0.5rem rgba(217, 180, 143, 0.6));
}

@keyframes flicker {
  0%, 100% { 
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: drop-shadow(0 0 0.5rem rgba(217, 180, 143, 0.6));
  }
  25% { 
    opacity: 0.9;
    transform: translateY(-0.125rem) scale(1.05);
    filter: drop-shadow(0 0 0.75rem rgba(217, 180, 143, 0.8));
  }
  50% { 
    opacity: 0.8;
    transform: translateY(0.0625rem) scale(0.98);
    filter: drop-shadow(0 0 0.4rem rgba(217, 180, 143, 0.5));
  }
  75% { 
    opacity: 0.95;
    transform: translateY(-0.0625rem) scale(1.02);
    filter: drop-shadow(0 0 0.6rem rgba(217, 180, 143, 0.7));
  }
}

.section-wrapper {
  padding: calc(var(--space-xl) * 1.5) var(--space-md);
  max-width: 75rem;
  margin: 0 auto;
}

.section-compact {
  padding: var(--space-lg) var(--space-md);
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-lg);
  opacity: 0;
  transform: translateY(1.5rem);
  transition: all var(--transition-slow);
  position: relative;
  display: inline-block;
  width: 100%;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0.1875rem;
  background: linear-gradient(90deg, transparent, var(--color-accent), var(--color-amber), transparent);
  border-radius: var(--radius-full);
  transition: width 0.8s ease 0.3s;
}

.section-title.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-title.visible::after {
  width: 8rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(249, 248, 246, 0.95) 100%);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: 0 0.25rem 1rem rgba(46, 46, 46, 0.08), 0 0.0625rem 0.25rem rgba(46, 46, 46, 0.05);
  transition: all var(--transition-base);
  opacity: 0;
  transform: translateY(1.5rem);
  position: relative;
  overflow: hidden;
  border: 0.0625rem solid rgba(191, 175, 158, 0.15);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(191, 175, 158, 0.1), transparent);
  transition: left 0.6s ease;
}

.card:hover::before {
  left: 100%;
}

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

.card:hover {
  box-shadow: 0 1rem 3rem rgba(46, 46, 46, 0.15), 0 0.5rem 1.5rem rgba(191, 175, 158, 0.2);
  transform: translateY(-0.625rem);
  border-color: rgba(191, 175, 158, 0.35);
}

.card-image {
  width: 100%;
  height: 14rem;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-sm);
  transition: all var(--transition-slow);
  box-shadow: 0 0.25rem 1rem rgba(46, 46, 46, 0.1);
}

.card:hover .card-image {
  transform: scale(1.05);
  box-shadow: 0 0.5rem 2rem rgba(46, 46, 46, 0.15);
}

.card-title {
  margin-bottom: var(--space-xs);
}

.card-description {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--color-text);
  opacity: 0.8;
}

.btn-primary {
  display: inline-block;
  padding: 0.875rem 2rem;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-amber) 100%);
  color: var(--color-text);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all var(--transition-base);
  box-shadow: 0 0.25rem 1rem rgba(191, 175, 158, 0.35);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.02em;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn-primary:hover::before {
  width: 20rem;
  height: 20rem;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--color-amber) 0%, var(--color-accent) 100%);
  box-shadow: 0 0.5rem 2rem rgba(191, 175, 158, 0.4), 0 0.25rem 0.75rem rgba(217, 180, 143, 0.3);
  transform: translateY(-0.25rem);
}

.btn-secondary {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  background: transparent;
  color: var(--color-text);
  border: 0.125rem solid var(--color-accent);
  border-radius: var(--radius-md);
  font-weight: 500;
  font-size: 0.9375rem;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-amber) 100%);
  transition: left 0.4s ease;
  z-index: -1;
}

.btn-secondary:hover::before {
  left: 0;
}

.btn-secondary:hover {
  border-color: var(--color-amber);
  transform: translateY(-0.25rem);
  box-shadow: 0 0.5rem 1.5rem rgba(191, 175, 158, 0.3);
}

.product-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.product-price {
  font-size: 1.5rem;
  font-family: var(--font-heading);
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-amber) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
  margin: var(--space-sm) 0;
  text-shadow: 0 0.125rem 0.25rem rgba(191, 175, 158, 0.2);
  position: relative;
  display: inline-block;
}

.product-price::after {
  content: '';
  position: absolute;
  bottom: -0.25rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0.125rem;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  transition: width var(--transition-base);
}

.product-card:hover .product-price::after {
  width: 100%;
}

.contact-unique {
  background: linear-gradient(135deg, var(--color-sage) 0%, var(--color-blue) 100%);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  color: var(--color-light);
  box-shadow: 0 1rem 3rem rgba(46, 46, 46, 0.18), 0 0.5rem 1.5rem rgba(168, 183, 162, 0.25);
  position: relative;
  overflow: hidden;
}

.contact-unique::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 30rem;
  height: 30rem;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: var(--radius-full);
  animation: floatSlow 30s ease-in-out infinite;
}

.contact-unique::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 25rem;
  height: 25rem;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  border-radius: var(--radius-full);
  animation: floatSlow 35s ease-in-out infinite reverse;
}

@keyframes floatSlow {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(2rem, 2rem); }
}

.contact-unique h2 {
  color: var(--color-light);
}

.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(255, 255, 255, 0.15);
  padding: var(--space-sm);
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
  border: 0.0625rem solid rgba(255, 255, 255, 0.2);
  transition: all var(--transition-base);
  position: relative;
  z-index: 1;
}

.contact-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  opacity: 0;
  transition: opacity var(--transition-base);
  z-index: -1;
}

.contact-item:hover::before {
  opacity: 1;
}

.contact-item:hover {
  transform: translateY(-0.25rem);
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
}

.contact-item i {
  font-size: 1.25rem;
  transition: transform var(--transition-base);
}

.contact-item:hover i {
  transform: scale(1.2) rotate(5deg);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 500;
  font-size: 0.875rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem;
  border: 0.125rem solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.95);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  transition: all var(--transition-base);
  box-shadow: 0 0.125rem 0.5rem rgba(46, 46, 46, 0.05);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  background: var(--color-light);
  transform: translateY(-0.125rem);
  box-shadow: 0 0.5rem 1.5rem rgba(191, 175, 158, 0.2), 0 0.25rem 0.5rem rgba(46, 46, 46, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 7rem;
}

.checkbox-group {
  display: flex;
  gap: var(--space-xs);
  align-items: flex-start;
}

.checkbox-group input[type="checkbox"] {
  margin-top: 0.3rem;
  width: 1.125rem;
  height: 1.125rem;
  cursor: pointer;
}

.map-container {
  width: 100%;
  height: 20rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 0.5rem 2rem rgba(46, 46, 46, 0.12);
  margin-top: var(--space-lg);
  border: 0.25rem solid rgba(191, 175, 158, 0.15);
  transition: all var(--transition-base);
}

.map-container:hover {
  box-shadow: 0 1rem 3rem rgba(46, 46, 46, 0.18);
  transform: translateY(-0.25rem);
  border-color: rgba(191, 175, 158, 0.3);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.footer-compact {
  background: linear-gradient(135deg, #2E2E2E 0%, #3a3a3a 100%);
  color: var(--color-light);
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.6;
  position: relative;
  overflow: hidden;
  margin-top: var(--space-xl);
}

.footer-compact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0.1875rem;
  background: linear-gradient(90deg, transparent, var(--color-accent), var(--color-amber), var(--color-sage), transparent);
  opacity: 0.9;
}

.footer-compact::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 0%, rgba(191, 175, 158, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.footer-compact p {
  opacity: 0.85;
  transition: opacity var(--transition-base);
  margin: 0;
  position: relative;
  z-index: 1;
}

.footer-compact p:first-child {
  margin-bottom: var(--space-sm);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.footer-compact p:last-child {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.8125rem;
}

.footer-compact p:last-child a:not(:last-child)::after {
  content: '|';
  margin-left: var(--space-xs);
  opacity: 0.4;
  color: var(--color-light);
  font-weight: 300;
}

.footer-compact a {
  color: var(--color-light);
  text-decoration: none;
  opacity: 0.8;
  transition: all var(--transition-base);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  position: relative;
  display: inline-block;
}

.footer-compact a::after {
  content: '';
  position: absolute;
  bottom: 0.125rem;
  left: 0.5rem;
  right: 0.5rem;
  height: 0.0625rem;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition-base);
}

.footer-compact a:hover {
  color: var(--color-accent);
  opacity: 1;
  transform: translateY(-0.0625rem);
}

.footer-compact a:hover::after {
  transform: scaleX(1);
}

.footer-compact a:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .footer-compact {
    padding: var(--space-md) var(--space-sm);
    font-size: 0.8125rem;
  }
  
  .footer-compact p:last-child {
    flex-direction: column;
    gap: var(--space-xs);
  }
  
  .footer-compact p:last-child a:not(:last-child)::after {
    content: '';
    margin-left: 0;
  }
}

.privacy-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(249, 248, 246, 0.95) 100%);
  backdrop-filter: blur(20px);
  padding: var(--space-md);
  box-shadow: 0 -0.5rem 2rem rgba(46, 46, 46, 0.15);
  z-index: 950;
  transform: translateY(100%);
  transition: transform var(--transition-base);
  border-top: 0.125rem solid rgba(191, 175, 158, 0.3);
}

.privacy-popup.active {
  transform: translateY(0);
  animation: slideUpBounce 0.6s ease-out;
}

@keyframes slideUpBounce {
  0% { transform: translateY(100%); }
  60% { transform: translateY(-0.5rem); }
  80% { transform: translateY(0.25rem); }
  100% { transform: translateY(0); }
}

.privacy-content {
  max-width: 60rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  align-items: center;
}

.privacy-text {
  font-size: 0.875rem;
  text-align: center;
}

.privacy-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  justify-content: center;
}

.btn-small {
  padding: 0.5rem 1.25rem;
  font-size: 0.8125rem;
  border-radius: var(--radius-md);
  background: var(--color-accent);
  color: var(--color-text);
  transition: all var(--transition-fast);
}

.btn-small:hover {
  background: var(--color-amber);
}

.btn-outline-small {
  padding: 0.5rem 1.25rem;
  font-size: 0.8125rem;
  border-radius: var(--radius-md);
  background: transparent;
  color: var(--color-text);
  border: 0.0625rem solid var(--color-accent);
  transition: all var(--transition-fast);
}

.btn-outline-small:hover {
  background: var(--color-accent);
}

.page-404 {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-lg);
}

.error-code {
  font-size: 6rem;
  font-family: var(--font-heading);
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.thank-you-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-lg);
}

.thank-icon {
  font-size: 4rem;
  color: var(--color-accent);
  margin-bottom: var(--space-md);
}

.policy-content {
  max-width: 50rem;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md);
  padding-top: 6rem;
}

.policy-content h2 {
  margin-top: var(--space-lg);
}

.policy-content p {
  margin-bottom: var(--space-md);
}

.policy-content ul {
  margin-left: var(--space-md);
  margin-bottom: var(--space-md);
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
  z-index: 1000;
  backdrop-filter: blur(2px);
}

.overlay.active {
  opacity: 1;
  pointer-events: all;
  backdrop-filter: blur(4px);
}

@media (min-width: 48rem) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .privacy-content {
    flex-direction: row;
    justify-content: space-between;
  }
  
  .privacy-text {
    text-align: left;
    flex: 1;
  }
  
  .privacy-actions {
    flex-shrink: 0;
  }
  
}

@media (min-width: 62rem) {
  h1 {
    font-size: 4rem;
  }
  
  h2 {
    font-size: 2.75rem;
  }
  
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .contact-info-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .card-image {
    height: 16rem;
  }
  
  .header-content {
    padding: var(--space-md) var(--space-lg);
    min-height: calc(1.625rem + var(--space-md) * 2);
  }
  
}

.fa, .fas {
  transition: all var(--transition-base);
}

.card:hover .fa,
.card:hover .fas {
  animation: iconPulse 1s ease-in-out;
}

@keyframes iconPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

.thank-icon i {
  animation: iconBounce 1s ease-out;
}

@keyframes iconBounce {
  0% { transform: scale(0) rotate(0deg); }
  50% { transform: scale(1.2) rotate(10deg); }
  70% { transform: scale(0.9) rotate(-5deg); }
  100% { transform: scale(1) rotate(0deg); }
}

.error-code {
  animation: errorFloat 3s ease-in-out infinite;
}

@keyframes errorFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-1rem); }
}

@media (max-width: 20rem) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .hero-section {
    padding: var(--space-lg) var(--space-sm);
  }
  
  .section-wrapper {
    padding: var(--space-lg) var(--space-sm);
  }
  
  .burger-menu {
    right: var(--space-sm);
  }
}

@media (max-width: 30rem) {
  .logo-text{
    font-size: 1.2rem;
  }
.contact-unique{
  padding: var(--space-xs);
}
}