:root {
  --color-bg: #FDFBF7;
  --color-text: #0F172A;
  --color-accent: #C2410C;
  --color-highlight: #FEF3C7;
  --color-success: #3F6212;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'DM Sans', sans-serif;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 4px 16px rgba(15, 23, 42, 0.12);
  --shadow-lg: 0 8px 32px rgba(15, 23, 42, 0.16);
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-premium: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

p {
  margin-bottom: var(--space-md);
  font-size: clamp(0.875rem, 2vw, 1rem);
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-text);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

@media (min-width: 768px) {
  .container {
    padding: 0 var(--space-lg);
  }
}

.header {
  position: relative;
  padding: var(--space-md) 0;
  background: var(--color-bg);
  z-index: 1000;
  transition: transform var(--transition-smooth), opacity var(--transition-smooth);
}

.header.hidden {
  transform: translateY(-100%);
  opacity: 0;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: 0.05em;
  position: relative;
  z-index: 1001;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-xs);
  z-index: 1001;
  position: relative;
}

.nav-toggle span {
  width: 2rem;
  height: 2px;
  background: var(--color-text);
  transition: all var(--transition-fast);
  transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(0.5rem, 0.5rem);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(0.5rem, -0.5rem);
}

.nav-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: var(--color-bg);
  padding: var(--space-xl) var(--space-lg);
  transition: right var(--transition-premium);
  z-index: 1000;
  box-shadow: var(--shadow-lg);
  overflow-y: auto;
}

.nav-menu.active {
  right: 0;
}

.nav-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.nav-menu a {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-text);
  padding: var(--space-sm) 0;
  display: block;
  position: relative;
  transition: color var(--transition-fast);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width var(--transition-smooth);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-bg) 0%, #F9F7F2 100%);
}

.hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--space-xl) var(--space-md);
  max-width: 900px;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(3rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1 {
  margin-bottom: var(--space-md);
  background: linear-gradient(135deg, var(--color-text) 0%, var(--color-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  margin-bottom: var(--space-lg);
  color: rgba(15, 23, 42, 0.8);
}

.btn {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  background: var(--color-accent);
  color: var(--color-bg);
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-smooth);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background: var(--color-text);
}

.btn-secondary {
  background: transparent;
  color: var(--color-text);
  border: 2px solid var(--color-text);
}

.btn-secondary:hover {
  background: var(--color-text);
  color: var(--color-bg);
}

.section {
  padding: var(--space-xl) 0;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-xl);
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 4rem;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
}

.fade-in {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity var(--transition-premium), transform var(--transition-premium);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.product-card {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.product-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform var(--transition-premium);
}

.product-card:hover img {
  transform: scale(1.05);
}

.product-info {
  padding: var(--space-md);
}

.product-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

.product-price {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-accent);
  margin-top: var(--space-sm);
}

.asymmetric-layout {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.asymmetric-item {
  position: relative;
  padding: var(--space-lg);
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
}

.asymmetric-item:nth-child(odd) {
  transform: rotate(-1deg);
  margin-left: var(--space-md);
}

.asymmetric-item:nth-child(even) {
  transform: rotate(1deg);
  margin-right: var(--space-md);
}

.asymmetric-item:hover {
  transform: rotate(0deg) scale(1.02);
  box-shadow: var(--shadow-lg);
}

.contact-section {
  padding: var(--space-xl) 0;
  background: linear-gradient(135deg, var(--color-bg) 0%, #F9F7F2 100%);
}

.contact-container {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info {
  padding: var(--space-lg);
}

.contact-info h3 {
  margin-bottom: var(--space-md);
  color: var(--color-accent);
}

.contact-info p {
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.contact-form {
  background: var(--color-bg);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 500;
  color: var(--color-text);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--space-sm);
  border: 2px solid rgba(15, 23, 42, 0.1);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color var(--transition-fast);
  background: var(--color-bg);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.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: 0.875rem;
  line-height: 1.5;
}

.footer {
  padding: var(--space-lg) 0;
  text-align: center;
  border-top: 1px solid rgba(15, 23, 42, 0.1);
  margin-top: var(--space-xl);
}

.footer p {
  font-size: 0.875rem;
  color: rgba(15, 23, 42, 0.6);
  margin-bottom: var(--space-xs);
}

.cookie-popup {
  position: fixed;
  bottom: var(--space-md);
  left: var(--space-md);
  right: var(--space-md);
  max-width: 500px;
  background: var(--color-bg);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  z-index: 10000;
  transform: translateY(150%);
  transition: transform var(--transition-premium);
  border: 2px solid var(--color-accent);
}

.cookie-popup.show {
  transform: translateY(0);
}

.cookie-popup p {
  margin-bottom: var(--space-sm);
  font-size: 0.875rem;
}

.cookie-buttons {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.cookie-buttons button {
  flex: 1;
  padding: var(--space-xs) var(--space-md);
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.cookie-accept {
  background: var(--color-accent);
  color: var(--color-bg);
}

.cookie-decline {
  background: transparent;
  color: var(--color-text);
  border: 2px solid var(--color-text);
}

.error-page {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl);
}

.error-page h1 {
  font-size: 8rem;
  color: var(--color-accent);
  margin-bottom: var(--space-md);
}

.thank-you-page {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl);
}

.thank-you-page h1 {
  color: var(--color-success);
  margin-bottom: var(--space-md);
}

.map-container {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: var(--space-lg);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 768px) {
  .asymmetric-item:nth-child(odd),
  .asymmetric-item:nth-child(even) {
    transform: none;
    margin-left: 0;
    margin-right: 0;
  }
  
  .hero {
    min-height: 70vh;
  }
  
  .section {
    padding: var(--space-lg) 0;
  }
}

.policy-hero {
  background: linear-gradient(135deg, var(--color-bg) 0%, #F9F7F2 50%, var(--color-bg) 100%);
  padding: var(--space-xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.policy-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(194, 65, 12, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.policy-hero h1 {
  position: relative;
  z-index: 2;
  margin-bottom: var(--space-sm);
}

.policy-hero .meta-info {
  position: relative;
  z-index: 2;
  color: rgba(15, 23, 42, 0.6);
  font-size: 0.9rem;
}

.policy-content {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--space-xl) 0;
}

.policy-section {
  margin-bottom: var(--space-xl);
  padding: var(--space-lg);
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
  border-left: 4px solid transparent;
}

.policy-section:hover {
  box-shadow: var(--shadow-md);
  border-left-color: var(--color-accent);
  transform: translateX(4px);
}

.policy-section h2 {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  color: var(--color-text);
  font-size: 1.75rem;
}

.policy-section h2 i {
  color: var(--color-accent);
  font-size: 1.5rem;
}

.policy-section p {
  line-height: 1.8;
  color: rgba(15, 23, 42, 0.8);
}

.modern-card {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.modern-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.modern-card-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-text) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  color: var(--color-bg);
  font-size: 1.5rem;
}

.modern-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.error-modern {
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl);
  background: linear-gradient(135deg, var(--color-bg) 0%, #F9F7F2 100%);
  position: relative;
  overflow: hidden;
}

.error-modern::before {
  content: '404';
  position: absolute;
  font-size: 25rem;
  font-weight: 700;
  color: rgba(194, 65, 12, 0.03);
  font-family: var(--font-display);
  z-index: 0;
  line-height: 1;
}

.error-modern-content {
  position: relative;
  z-index: 2;
}

.error-modern h1 {
  font-size: clamp(4rem, 15vw, 10rem);
  color: var(--color-accent);
  margin-bottom: var(--space-md);
  font-weight: 700;
  line-height: 1;
  text-shadow: 0 4px 20px rgba(194, 65, 12, 0.2);
}

.error-modern h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: var(--space-md);
}

.thank-modern {
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl);
  background: linear-gradient(135deg, var(--color-bg) 0%, #F9F7F2 100%);
  position: relative;
  overflow: hidden;
}

.thank-modern::before {
  content: '✓';
  position: absolute;
  font-size: 20rem;
  color: rgba(63, 98, 18, 0.05);
  font-family: var(--font-display);
  z-index: 0;
  line-height: 1;
}

.thank-modern-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.thank-icon-wrapper {
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-success) 0%, #2d4a0a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  box-shadow: 0 8px 32px rgba(63, 98, 18, 0.3);
  animation: scaleIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.thank-icon-wrapper i {
  font-size: 3.5rem;
  color: var(--color-bg);
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.thank-modern h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--color-success);
  margin-bottom: var(--space-md);
  font-weight: 700;
}

.thank-modern p {
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.8;
  color: rgba(15, 23, 42, 0.7);
  margin-bottom: var(--space-md);
}

.thank-actions {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--space-xl);
}

@media (max-width: 768px) {
  .thank-actions {
    flex-direction: column;
  }
  
  .thank-actions .btn {
    width: 100%;
  }
}

.hero-modern {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-bg) 0%, #F9F7F2 50%, var(--color-bg) 100%);
}

.hero-modern::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(194, 65, 12, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 20s ease-in-out infinite;
}

.hero-modern::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(63, 98, 18, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -30px) scale(1.1); }
}

.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  min-height: 100vh;
  position: relative;
  z-index: 2;
}

.hero-text {
  padding: var(--space-xl) 0;
}

.hero-text h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.1;
  margin-bottom: var(--space-lg);
  background: linear-gradient(135deg, var(--color-text) 0%, var(--color-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-visual {
  position: relative;
  height: 600px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-premium);
}

.hero-visual:hover img {
  transform: scale(1.05);
}

.glass-card {
  background: rgba(253, 251, 247, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-smooth);
}

.glass-card:hover {
  background: rgba(253, 251, 247, 0.9);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.feature-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.feature-modern {
  position: relative;
  padding: var(--space-xl);
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-smooth);
}

.feature-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-success));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-smooth);
}

.feature-modern:hover::before {
  transform: scaleX(1);
}

.feature-modern:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.feature-icon {
  width: 4rem;
  height: 4rem;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-text) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  color: var(--color-bg);
  font-size: 1.5rem;
}

.product-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.product-modern {
  position: relative;
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-premium);
}

.product-modern::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(194, 65, 12, 0) 0%, rgba(194, 65, 12, 0.1) 100%);
  opacity: 0;
  transition: opacity var(--transition-smooth);
  pointer-events: none;
}

.product-modern:hover::after {
  opacity: 1;
}

.product-modern:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

.product-image-wrapper {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.product-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-premium);
}

.product-modern:hover .product-image-wrapper img {
  transform: scale(1.1);
}

.product-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-lg);
  background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, transparent 100%);
  color: var(--color-bg);
  transform: translateY(100%);
  transition: transform var(--transition-smooth);
}

.product-modern:hover .product-overlay {
  transform: translateY(0);
}

.collection-masonry {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-lg);
  grid-auto-rows: 400px;
  margin-top: var(--space-xl);
}

.collection-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-smooth);
  background: var(--color-bg);
}

.collection-item:nth-child(1) {
  grid-row: span 2;
}

.collection-item:nth-child(3) {
  grid-row: span 2;
}

.collection-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-premium);
}

.collection-item:hover img {
  transform: scale(1.1);
}

.collection-item:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}

.collection-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-lg);
  background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, transparent 100%);
  color: var(--color-bg);
  transform: translateY(20px);
  opacity: 0;
  transition: all var(--transition-smooth);
}

.collection-item:hover .collection-content {
  transform: translateY(0);
  opacity: 1;
}

.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.contact-info-modern {
  position: sticky;
  top: var(--space-xl);
}

.contact-card {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-md);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--color-accent);
  transition: all var(--transition-smooth);
}

.contact-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(8px);
}

.contact-card i {
  color: var(--color-accent);
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
}

.form-modern {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
}

.form-group-modern {
  margin-bottom: var(--space-lg);
  position: relative;
}

.form-group-modern label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 600;
  color: var(--color-text);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group-modern input,
.form-group-modern textarea {
  width: 100%;
  padding: var(--space-md);
  border: 2px solid rgba(15, 23, 42, 0.1);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all var(--transition-fast);
  background: var(--color-bg);
}

.form-group-modern input:focus,
.form-group-modern textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(194, 65, 12, 0.1);
}

.section-modern {
  padding: var(--space-xl) 0;
  position: relative;
}

.section-modern-alt {
  background: linear-gradient(135deg, #F9F7F2 0%, var(--color-bg) 100%);
}

.text-reveal {
  overflow: hidden;
}

.text-reveal h2 {
  transform: translateY(100%);
  transition: transform var(--transition-premium);
}

.text-reveal.visible h2 {
  transform: translateY(0);
}

.parallax-section {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.parallax-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.4);
}

.parallax-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--color-bg);
  max-width: 800px;
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .hero-split {
    grid-template-columns: 1fr;
  }
  
  .hero-visual {
    height: 400px;
  }
  
  .contact-split {
    grid-template-columns: 1fr;
  }
  
  .collection-masonry {
    grid-template-columns: 1fr;
    grid-auto-rows: 300px;
  }
  
  .collection-item:nth-child(1),
  .collection-item:nth-child(3) {
    grid-row: span 1;
  }
}

@media (max-width: 480px) {
  .hero-modern::before,
  .hero-modern::after {
    display: none;
  }
  
  .hero-split {
    min-height: auto;
    padding: var(--space-lg) 0;
  }
  
  .hero-visual {
    height: 300px;
    margin-top: var(--space-md);
  }
  
  .feature-grid-modern {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .product-showcase {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .product-image-wrapper {
    height: 280px;
  }
  
  .collection-masonry {
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
    gap: var(--space-md);
  }
  
  .contact-info-modern {
    position: static;
  }
  
  .contact-card {
    padding: var(--space-md);
  }
  
  .form-modern {
    padding: var(--space-md);
  }
  
  .form-group-modern {
    margin-bottom: var(--space-md);
  }
  
  .form-group-modern input,
  .form-group-modern textarea {
    padding: var(--space-sm);
    font-size: 16px;
  }
  
  .parallax-section {
    background-attachment: scroll;
    min-height: 50vh;
  }
  
  .parallax-content {
    padding: var(--space-md);
  }
  
  .section-modern {
    padding: var(--space-lg) 0;
  }
  
  .glass-card,
  .feature-modern {
    padding: var(--space-md);
  }
  
  .feature-icon {
    width: 3rem;
    height: 3rem;
    font-size: 1.25rem;
  }
  
  .policy-section {
    padding: var(--space-md);
  }
  
  .policy-hero {
    padding: var(--space-lg) 0;
  }
}

@media (max-width: 320px) {
  html {
    font-size: 14px;
  }
  
  .container {
    padding: 0 var(--space-sm);
  }
  
  .header {
    padding: var(--space-sm) 0;
  }
  
  .logo {
    font-size: 1.25rem;
  }
  
  .nav-toggle span {
    width: 1.5rem;
  }
  
  .hero-modern {
    min-height: auto;
    padding: var(--space-md) 0;
  }
  
  .hero-text {
    padding: var(--space-md) 0;
  }
  
  .hero-text h1 {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
    margin-bottom: var(--space-md);
  }
  
  .hero-text p {
    font-size: 1rem;
    margin-bottom: var(--space-md);
  }
  
  .hero-visual {
    height: 250px;
    border-radius: var(--radius-md);
  }
  
  .btn {
    padding: var(--space-xs) var(--space-md);
    font-size: 0.875rem;
    width: 100%;
    margin-bottom: var(--space-xs);
  }
  
  .btn-secondary {
    margin-left: 0;
  }
  
  .section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
    margin-bottom: var(--space-md);
  }
  
  .section-title::after {
    width: 3rem;
    height: 2px;
    bottom: -0.5rem;
  }
  
  .product-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .product-card {
    border-radius: var(--radius-md);
  }
  
  .product-card img {
    height: 200px;
  }
  
  .product-info {
    padding: var(--space-md);
  }
  
  .product-title {
    font-size: 1.25rem;
    margin-bottom: var(--space-xs);
  }
  
  .product-price {
    font-size: 1.125rem;
  }
  
  .feature-grid-modern {
    grid-template-columns: 1fr;
    gap: var(--space-md);
    margin-top: var(--space-md);
  }
  
  .feature-modern {
    padding: var(--space-md);
    border-radius: var(--radius-md);
  }
  
  .feature-icon {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.125rem;
    margin-bottom: var(--space-sm);
  }
  
  .product-showcase {
    grid-template-columns: 1fr;
    gap: var(--space-md);
    margin-top: var(--space-md);
  }
  
  .product-modern {
    border-radius: var(--radius-md);
  }
  
  .product-image-wrapper {
    height: 220px;
  }
  
  .product-overlay {
    padding: var(--space-md);
  }
  
  .product-overlay .btn {
    font-size: 0.875rem;
    padding: var(--space-xs) var(--space-sm);
  }
  
  .glass-card {
    padding: var(--space-md);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
  
  .collection-masonry {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
    gap: var(--space-md);
    margin-top: var(--space-md);
  }
  
  .collection-item {
    border-radius: var(--radius-md);
  }
  
  .collection-content {
    padding: var(--space-md);
  }
  
  .collection-content .btn {
    font-size: 0.875rem;
    padding: var(--space-xs) var(--space-sm);
  }
  
  .contact-split {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .contact-info-modern {
    position: static;
  }
  
  .contact-card {
    padding: var(--space-md);
    margin-bottom: var(--space-sm);
    border-left-width: 3px;
  }
  
  .contact-card i {
    font-size: 1.25rem;
    margin-bottom: var(--space-xs);
  }
  
  .contact-card h3 {
    font-size: 1.125rem;
  }
  
  .form-modern {
    padding: var(--space-md);
    border-radius: var(--radius-md);
  }
  
  .form-group-modern {
    margin-bottom: var(--space-md);
  }
  
  .form-group-modern label {
    font-size: 0.8rem;
    margin-bottom: 0.25rem;
  }
  
  .form-group-modern input,
  .form-group-modern textarea {
    padding: var(--space-sm);
    font-size: 16px;
    border-width: 1.5px;
    border-radius: var(--radius-sm);
  }
  
  .form-group-modern input:focus,
  .form-group-modern textarea:focus {
    box-shadow: 0 0 0 2px rgba(194, 65, 12, 0.1);
  }
  
  .checkbox-group {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-xs);
  }
  
  .checkbox-group label {
    font-size: 0.75rem;
    line-height: 1.4;
  }
  
  .map-container {
    height: 250px;
    border-radius: var(--radius-md);
    margin-top: var(--space-md);
  }
  
  .section-modern {
    padding: var(--space-md) 0;
  }
  
  .section-modern-alt {
    padding: var(--space-md) 0;
  }
  
  .parallax-section {
    min-height: 40vh;
    background-attachment: scroll;
  }
  
  .parallax-content {
    padding: var(--space-md);
  }
  
  .parallax-content h2 {
    font-size: clamp(1.5rem, 6vw, 2rem);
    margin-bottom: var(--space-sm);
  }
  
  .parallax-content p {
    font-size: 0.875rem;
    margin-bottom: var(--space-md);
  }
  
  .policy-hero {
    padding: var(--space-md) 0;
  }
  
  .policy-hero h1 {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
  }
  
  .policy-hero .meta-info {
    font-size: 0.75rem;
  }
  
  .policy-content {
    padding: var(--space-md) 0;
  }
  
  .policy-section {
    padding: var(--space-md);
    margin-bottom: var(--space-md);
    border-radius: var(--radius-md);
  }
  
  .policy-section h2 {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
  }
  
  .policy-section h2 i {
    font-size: 1.125rem;
  }
  
  .policy-section p {
    font-size: 0.875rem;
    line-height: 1.6;
  }
  
  .error-modern {
    min-height: 70vh;
    padding: var(--space-md);
  }
  
  .error-modern::before {
    font-size: 12rem;
  }
  
  .error-modern h1 {
    font-size: clamp(3rem, 20vw, 6rem);
    margin-bottom: var(--space-sm);
  }
  
  .error-modern h2 {
    font-size: clamp(1.25rem, 6vw, 1.75rem);
    margin-bottom: var(--space-sm);
  }
  
  .error-modern p {
    font-size: 0.875rem;
    margin-bottom: var(--space-md);
  }
  
  .thank-modern {
    min-height: 70vh;
    padding: var(--space-md);
  }
  
  .thank-modern::before {
    font-size: 10rem;
  }
  
  .thank-icon-wrapper {
    width: 5rem;
    height: 5rem;
    margin-bottom: var(--space-md);
  }
  
  .thank-icon-wrapper i {
    font-size: 2rem;
  }
  
  .thank-modern h1 {
    font-size: clamp(1.5rem, 6vw, 2rem);
    margin-bottom: var(--space-sm);
  }
  
  .thank-modern p {
    font-size: 0.875rem;
    margin-bottom: var(--space-sm);
  }
  
  .thank-actions {
    flex-direction: column;
    gap: var(--space-sm);
    margin-top: var(--space-md);
  }
  
  .thank-actions .btn {
    width: 100%;
  }
  
  .footer {
    padding: var(--space-md) 0;
  }
  
  .footer p {
    font-size: 0.75rem;
    margin-bottom: var(--space-xs);
  }
  
  .footer a {
    font-size: 0.75rem;
  }
  
  .cookie-popup {
    bottom: var(--space-sm);
    left: var(--space-sm);
    right: var(--space-sm);
    max-width: none;
    padding: var(--space-md);
    border-radius: var(--radius-md);
  }
  
  .cookie-popup p {
    font-size: 0.75rem;
    margin-bottom: var(--space-sm);
  }
  
  .cookie-buttons {
    flex-direction: column;
    gap: var(--space-xs);
  }
  
  .cookie-buttons button {
    width: 100%;
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .asymmetric-item {
    padding: var(--space-md);
    border-radius: var(--radius-md);
    margin-left: 0;
    margin-right: 0;
    transform: none;
  }
  
  .asymmetric-item:hover {
    transform: none;
  }
  
  h1 {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
  }
  
  h2 {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }
  
  h3 {
    font-size: clamp(1.25rem, 5vw, 1.75rem);
  }
  
  h4 {
    font-size: clamp(1.125rem, 4vw, 1.5rem);
  }
  
  p {
    font-size: 0.875rem;
    margin-bottom: var(--space-sm);
  }
}

