:root {
  --primary: #222831;
  --secondary: #393E46;
  --accent: #948979;
  --light: #DFD0B8;
  
  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  
  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 2rem;
  
  --shadow-sm: 0 2px 8px rgba(34, 40, 49, 0.1);
  --shadow-md: 0 4px 16px rgba(34, 40, 49, 0.15);
  --shadow-lg: 0 8px 32px rgba(34, 40, 49, 0.2);
  
  --transition-fast: 0.2s ease;
  --transition-base: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  font-size: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

@media (max-width: 768px) {
  html {
    scroll-padding-top: 60px;
  }
}

body {
  font-family: var(--font-body);
  background: var(--light);
  color: var(--primary);
  line-height: 1.6;
  overflow-x: hidden;
  font-size: 0.95rem;
  min-width: 320px;
}

body * {
  max-width: 100%;
}

p, li, a, span {
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

table {
  width: 100%;
  overflow-x: auto;
  display: block;
}

input, textarea, select {
  max-width: 100%;
  box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-sm);
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
}

h3 {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

iframe {
  max-width: 100%;
}

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

@media (hover: none) and (pointer: coarse) {

  
  nav a {
    min-height: 48px;
    display: flex;
    align-items: center;
  }
  
  .burger {
    min-height: 44px;
    min-width: 44px;
    justify-content: center;
    align-items: center;
  }
}

button, .btn {
  background: var(--primary);
  color: var(--light);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition-base);
  display: inline-block;
}

button:hover, .btn:hover {
  background: var(--secondary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

header {
  z-index: 1000;
  background: #3e565b;
  transition: var(--transition-base);
}

header.scrolled {
  background: rgba(34, 40, 49, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--light);
  z-index: 1001;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

nav ul {
  display: none;
  list-style: none;
  gap: var(--space-md);
}

@media (min-width: 769px) {
  nav ul {
    display: flex;
  }
}

nav a {
  color: var(--light);
  font-weight: 500;
  font-size: 0.9rem;
  position: relative;
  padding: 0.5rem 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition-base);
}

nav a:hover::after {
  width: 100%;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 0.4rem;
  cursor: pointer;
  z-index: 1000;
  position: relative;
}

.burger span {
  width: 25px;
  height: 2px;
  background: var(--light);
  transition: var(--transition-base);
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
  background: var(--light);
}

.burger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(20px);
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
  background: var(--light);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--light);
  padding: var(--space-md);
  animation: fadeInUp 1s var(--transition-base);
}

.hero-content h1 {
  margin-bottom: var(--space-md);
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: var(--space-lg);
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

section {
  padding: var(--space-xl) 0;
  position: relative;
}

section:nth-child(even) {
  background: white;
}

.section-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-lg);
}

.section-intro h2 {
  margin-bottom: var(--space-sm);
  color: var(--primary);
}

.section-intro p {
  color: var(--secondary);
  font-size: 1rem;
}

.grid {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
}

.card {
  background: white;
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  transform: scaleX(0);
  transition: var(--transition-base);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.card:hover::before {
  transform: scaleX(1);
}

.card img {
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-sm);
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card h3 {
  color: var(--primary);
  margin-bottom: var(--space-xs);
  font-size: 1.3rem;
}

.card p {
  color: var(--secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

.asymmetric-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.asymmetric-content {
  animation: slideInLeft 0.8s var(--transition-base);
}

.asymmetric-visual {
  position: relative;
  animation: slideInRight 0.8s var(--transition-base);
}

.asymmetric-visual img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transform: rotate(-2deg);
  transition: var(--transition-base);
}

.asymmetric-visual img:hover {
  transform: rotate(0deg) scale(1.02);
}

.floating-element {
  position: absolute;
  width: 80px;
  height: 80px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.2;
  animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(2) {
  width: 60px;
  height: 60px;
  top: 20%;
  right: 10%;
  animation-delay: 1s;
  background: var(--secondary);
}

.floating-element:nth-child(3) {
  width: 100px;
  height: 100px;
  bottom: 10%;
  left: 15%;
  animation-delay: 2s;
}

.product-card {
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
}

.product-card:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

.product-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.product-info {
  padding: var(--space-md);
}

.product-info h3 {
  color: var(--primary);
  margin-bottom: var(--space-xs);
}

.product-info p {
  color: var(--secondary);
  margin-bottom: var(--space-sm);
  font-size: 0.9rem;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: var(--space-sm);
  font-family: var(--font-display);
}

.contact-section {
  background: linear-gradient(135deg, rgba(34, 40, 49, 0.05), rgba(148, 137, 121, 0.1));
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}

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

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.contact-item i {
  color: var(--accent);
  font-size: 1.3rem;
  margin-top: 0.2rem;
}

.contact-item div h4 {
  color: var(--primary);
  margin-bottom: 0.3rem;
  font-size: 1rem;
}

.contact-item div p {
  color: var(--secondary);
  font-size: 0.9rem;
}

form {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.form-group {
  display: flex;
  flex-direction: column;
}

label {
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--primary);
  font-size: 0.9rem;
}

input, textarea, select {
  padding: 0.75rem;
  border: 2px solid var(--light);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: var(--transition-fast);
  background: white;
  width: 100%;

}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(148, 137, 121, 0.1);
}

input[type="checkbox"], input[type="radio"] {
  width: auto;
  min-width: 18px;
  min-height: 18px;
  cursor: pointer;
}

@media (max-width: 768px) {
  input, textarea, select {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  input[type="checkbox"], input[type="radio"] {
    min-width: 20px;
    min-height: 20px;
  }
}

textarea {
  min-height: 120px;
  resize: vertical;
}

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

.checkbox-group input[type="checkbox"] {
  margin-top: 0.3rem;
  width: auto;
  flex-shrink: 0;
}

.checkbox-group label {
  font-weight: 400;
  margin-bottom: 0;
  font-size: 0.85rem;
  cursor: pointer;
}

.map-container {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: var(--space-md);
}

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

footer {
  background: var(--primary);
  color: var(--light);
  padding: var(--space-md) 0;
  text-align: center;
  font-size: 0.85rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  align-items: center;
}

.footer-links {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: var(--light);
  opacity: 0.8;
  font-size: 0.85rem;
}

.footer-links a:hover {
  opacity: 1;
  text-decoration: underline;
}

.privacy-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary);
  color: var(--light);
  padding: var(--space-md);
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  transform: translateY(100%);
  transition: var(--transition-base);
}

.privacy-popup.show {
  transform: translateY(0);
}

.privacy-popup-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.privacy-popup-content p {
  flex: 1;
  font-size: 0.85rem;
  line-height: 1.5;
}

.privacy-popup-actions {
  display: flex;
  gap: var(--space-sm);
}

.privacy-popup button {
  background: var(--accent);
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
}

.privacy-popup button:hover {
  background: var(--light);
  color: var(--primary);
}

.thank-you-container {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.thank-you-content {
  animation: fadeInScale 0.8s var(--transition-base);
}

.thank-you-content i {
  font-size: 4rem;
  color: var(--accent);
  margin-bottom: var(--space-md);
  animation: bounce 1s ease;
}

.error-container {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.error-content {
  animation: fadeIn 0.8s var(--transition-base);
}

.error-content h1 {
  font-size: 6rem;
  color: var(--accent);
  margin-bottom: var(--space-sm);
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md);
}

.legal-content h1 {
  margin-bottom: var(--space-md);
  color: var(--primary);
}

.legal-content h2 {
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
  color: var(--primary);
}

.legal-content p {
  margin-bottom: var(--space-sm);
  color: var(--secondary);
  line-height: 1.7;
}

.legal-content ul {
  margin: var(--space-sm) 0 var(--space-md) var(--space-md);
  color: var(--secondary);
}

.legal-content li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

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

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

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--transition-base), transform 0.6s var(--transition-base);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

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

.button-group .btn {
  margin: 0;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1400px;
  }
  
  .grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  }
}

@media (min-width: 1024px) {
  .asymmetric-section {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }
  
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 768px) {
  body {
    font-size: 1rem;
  }
  
  .asymmetric-section {
    grid-template-columns: 1fr 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (max-width: 1024px) {
  h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
  }
  
  h2 {
    font-size: clamp(1.4rem, 3.5vw, 2rem);
  }
  
  section {
    padding: var(--space-lg) 0;
  }
}

@media (max-width: 768px) {
  nav ul {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--primary);
    flex-direction: column;
    padding: var(--space-xl) var(--space-md);
    transition: var(--transition-base);
    box-shadow: var(--shadow-lg);
    gap: var(--space-md);
    z-index: 999;
    justify-content: center;
    align-items: center;
  }
  
  nav ul.active {
    right: 0;
    display: flex;
  }
  
  nav a {
    font-size: 1.5rem;
    padding: 1rem 2rem;
    text-align: center;
    width: 100%;
  }
  
  .burger {
    display: flex;
  }
  
  .hero {
    min-height: 90vh;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-content p {
    font-size: 1rem;
    padding: 0 var(--space-sm);
  }
  
  section {
    padding: var(--space-lg) 0;
  }
  
  .grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .asymmetric-section {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .card img {
    height: 200px;
  }
  
  .product-card img {
    height: 220px;
  }
  
  .privacy-popup-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .privacy-popup button {
    width: 100%;
  }
  
  .map-container {
    height: 300px;
  }
  
  .footer-links {
    font-size: 0.8rem;
  }
  
  .asymmetric-visual img {
    transform: rotate(0deg);
  }
  
  .floating-element {
    display: none;
  }
}

@media (max-width: 640px) {
  header {
    padding: var(--space-sm) 0;
  }
  
  .hero-content {
    padding: var(--space-sm);
  }
  
  .section-intro {
    padding: 0 var(--space-sm);
  }
  
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.4rem;
  }
  
  h3 {
    font-size: 1.15rem;
  }
  
  .card, .product-info, .contact-section {
    padding: var(--space-sm);
  }
  
  .price {
    font-size: 1.2rem;
  }
  
  input, textarea, button, .btn {
    font-size: 0.9rem;
  }
  
  .contact-item {
    flex-direction: row;
    align-items: flex-start;
  }
  
  .contact-item i {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  :root {
    --space-sm: 0.75rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 3.5rem;
  }
  
  body {
    font-size: 0.9rem;
  }
  
  .container {
    width: 92%;
  }
  
  header {
    padding: var(--space-sm) 0;
  }
  
  .logo {
    font-size: 1.4rem;
  }
  
  .burger span {
    width: 22px;
  }
  
  nav ul {
    width: 100%;
    padding: var(--space-lg) var(--space-sm);
  }
  
  nav a {
    font-size: 1.3rem;
  }
  
  .hero {
    min-height: 85vh;
  }
  
  .hero-content {
    padding: var(--space-sm);
  }
  
  .hero-content h1 {
    font-size: 1.6rem;
    margin-bottom: var(--space-sm);
  }
  
  .hero-content p {
    font-size: 0.95rem;
    margin-bottom: var(--space-md);
  }
  
  h1 {
    font-size: 1.6rem;
  }
  
  h2 {
    font-size: 1.3rem;
  }
  
  h3 {
    font-size: 1.1rem;
  }
  
  section {
    padding: var(--space-lg) 0;
  }
  
  .section-intro {
    margin-bottom: var(--space-md);
  }
  
  .card img {
    height: 180px;
  }
  
  .product-card img {
    height: 200px;
  }
  
  .card, .product-info {
    padding: var(--space-sm);
  }
  
  .card h3, .product-info h3 {
    font-size: 1.1rem;
  }
  
  .card p, .product-info p {
    font-size: 0.85rem;
  }
  
  button, .btn {
    padding: 0.65rem 1.2rem;
    font-size: 0.85rem;
    width: 100%;
  }
  
  .price {
    font-size: 1.15rem;
  }
  
  .contact-section {
    padding: var(--space-md);
  }
  
  .contact-item {
    gap: var(--space-sm);
  }
  
  .contact-item h4 {
    font-size: 0.95rem;
  }
  
  .contact-item p {
    font-size: 0.85rem;
  }
  
  input, textarea {
    padding: 0.65rem;
    font-size: 0.85rem;
  }
  
  textarea {
    min-height: 100px;
  }
  
  .checkbox-group label {
    font-size: 0.8rem;
  }
  
  .map-container {
    height: 250px;
  }
  
  .privacy-popup {
    padding: var(--space-sm);
  }
  
  .privacy-popup-content p {
    font-size: 0.8rem;
  }
  
  .privacy-popup button {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }
  
  .footer-content {
    gap: var(--space-sm);
  }
  
  .footer-links {
    gap: var(--space-sm);
    font-size: 0.75rem;
  }
  
  footer {
    padding: var(--space-sm) 0;
    font-size: 0.8rem;
  }
  
  .legal-content {
    padding: var(--space-lg) var(--space-sm);
  }
  
  .legal-content h1 {
    font-size: 1.5rem;
  }
  
  .legal-content h2 {
    font-size: 1.2rem;
    margin-top: var(--space-md);
  }
  
  .legal-content p, .legal-content li {
    font-size: 0.85rem;
  }
  
  .thank-you-content i, .error-content h1 {
    font-size: 3rem;
  }
  
  .error-content h1 {
    font-size: 4rem;
  }
}

@media (max-width: 375px) {
  :root {
    --space-xs: 0.4rem;
    --space-sm: 0.65rem;
    --space-md: 1.25rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
  }
  
  body {
    font-size: 0.875rem;
  }
  
  .container {
    width: 94%;
  }
  
  .logo {
    font-size: 1.3rem;
  }
  
  .burger span {
    width: 20px;
  }
  
  nav ul {
    width: 85%;
  }
  
  nav a {
    font-size: 0.9rem;
    padding: 0.6rem 0;
  }
  
  .hero-content h1 {
    font-size: 1.5rem;
  }
  
  .hero-content p {
    font-size: 0.9rem;
  }
  
  h1 {
    font-size: 1.5rem;
  }
  
  h2 {
    font-size: 1.2rem;
  }
  
  h3 {
    font-size: 1rem;
  }
  
  .card img {
    height: 160px;
  }
  
  .product-card img {
    height: 180px;
  }
  
  button, .btn {
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
  }
  
  .contact-item i {
    font-size: 1rem;
  }
  
  .map-container {
    height: 220px;
  }
  
  .footer-links a {
    font-size: 0.7rem;
  }
}

@media (max-width: 320px) {
  :root {
    --space-xs: 0.35rem;
    --space-sm: 0.6rem;
    --space-md: 1rem;
    --space-lg: 1.75rem;
    --space-xl: 2.5rem;
  }
  
  body {
    font-size: 0.85rem;
    line-height: 1.5;
  }
  
  .container {
    width: 95%;
  }
  
  header {
    padding: 0.5rem 0;
  }
  
  .logo {
    font-size: 1.2rem;
  }
  
  .burger {
    gap: 0.3rem;
  }
  
  .burger span {
    width: 20px;
    height: 2px;
  }
  
  nav ul {
    width: 90%;
    max-width: 260px;
    padding: var(--space-md) var(--space-sm);
  }
  
  nav a {
    font-size: 0.85rem;
    padding: 0.5rem 0;
  }
  
  .hero {
    min-height: 80vh;
  }
  
  .hero-content {
    padding: var(--space-sm);
  }
  
  .hero-content h1 {
    font-size: 1.4rem;
    margin-bottom: var(--space-sm);
    line-height: 1.3;
  }
  
  .hero-content p {
    font-size: 0.85rem;
    margin-bottom: var(--space-md);
    line-height: 1.5;
  }
  
  h1 {
    font-size: 1.4rem;
    line-height: 1.3;
  }
  
  h2 {
    font-size: 1.15rem;
    line-height: 1.3;
  }
  
  h3 {
    font-size: 0.95rem;
    line-height: 1.3;
  }
  
  section {
    padding: var(--space-lg) 0;
  }
  
  .section-intro {
    margin-bottom: var(--space-md);
    padding: 0 var(--space-xs);
  }
  
  .section-intro p {
    font-size: 0.85rem;
  }
  
  .grid {
    gap: var(--space-md);
  }
  
  .card {
    padding: var(--space-sm);
  }
  
  .card img {
    height: 150px;
    margin-bottom: var(--space-xs);
  }
  
  .card h3 {
    font-size: 0.95rem;
    margin-bottom: var(--space-xs);
  }
  
  .card p {
    font-size: 0.8rem;
    line-height: 1.5;
  }
  
  .product-card img {
    height: 170px;
  }
  
  .product-info {
    padding: var(--space-sm);
  }
  
  .product-info h3 {
    font-size: 0.95rem;
  }
  
  .product-info p {
    font-size: 0.8rem;
  }
  
  .price {
    font-size: 1.1rem;
    margin-bottom: var(--space-sm);
  }
  
  button, .btn {
    padding: 0.55rem 0.9rem;
    font-size: 0.75rem;
    border-radius: 0.35rem;
  }
  
  .contact-section {
    padding: var(--space-md);
    border-radius: var(--radius-md);
  }
  
  .contact-grid {
    gap: var(--space-md);
  }
  
  .contact-item {
    gap: var(--space-xs);
  }
  
  .contact-item i {
    font-size: 0.95rem;
  }
  
  .contact-item h4 {
    font-size: 0.85rem;
  }
  
  .contact-item p {
    font-size: 0.8rem;
  }
  
  form {
    gap: var(--space-sm);
  }
  
  label {
    font-size: 0.8rem;
    margin-bottom: 0.3rem;
  }
  
  input, textarea {
    padding: 0.6rem;
    font-size: 0.8rem;
    border-radius: 0.35rem;
  }
  
  textarea {
    min-height: 90px;
  }
  
  .checkbox-group {
    gap: var(--space-xs);
  }
  
  .checkbox-group label {
    font-size: 0.75rem;
    line-height: 1.4;
  }
  
  .map-container {
    height: 200px;
    margin-top: var(--space-sm);
  }
  
  footer {
    padding: var(--space-sm) 0;
    font-size: 0.75rem;
  }
  
  .footer-content {
    gap: var(--space-xs);
  }
  
  .footer-links {
    gap: var(--space-xs);
  }
  
  .footer-links a {
    font-size: 0.7rem;
  }
  
  .privacy-popup {
    padding: var(--space-sm);
  }
  
  .privacy-popup-content {
    gap: var(--space-sm);
  }
  
  .privacy-popup-content p {
    font-size: 0.75rem;
    line-height: 1.4;
  }
  
  .privacy-popup button {
    padding: 0.45rem 0.85rem;
    font-size: 0.75rem;
  }
  
  .privacy-popup-actions {
    gap: var(--space-xs);
    width: 100%;
  }
  
  .legal-content {
    padding: var(--space-md) var(--space-xs);
  }
  
  .legal-content h1 {
    font-size: 1.3rem;
    margin-bottom: var(--space-sm);
  }
  
  .legal-content h2 {
    font-size: 1.05rem;
    margin-top: var(--space-md);
    margin-bottom: var(--space-xs);
  }
  
  .legal-content h3 {
    font-size: 0.9rem;
    margin-top: var(--space-sm);
  }
  
  .legal-content p {
    font-size: 0.8rem;
    line-height: 1.6;
    margin-bottom: var(--space-xs);
  }
  
  .legal-content ul, .legal-content ol {
    margin: var(--space-xs) 0 var(--space-sm) var(--space-md);
  }
  
  .legal-content li {
    font-size: 0.8rem;
    line-height: 1.5;
    margin-bottom: 0.4rem;
  }
  
  .thank-you-container, .error-container {
    padding-top: 4rem;
    min-height: 70vh;
  }
  
  .thank-you-content i {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
  }
  
  .thank-you-content h1, .error-content h2 {
    font-size: 1.3rem;
  }
  
  .thank-you-content p, .error-content p {
    font-size: 0.85rem;
    margin-bottom: var(--space-sm);
  }
  
  .error-content h1 {
    font-size: 3.5rem;
  }
  
  .asymmetric-visual img {
    border-radius: var(--radius-sm);
  }
  
  .header-content {
    padding: 0 var(--space-xs);
  }
  
  a[style*="margin-right"], a[style*="margin-left"] {
    margin: 0.25rem !important;
  }
}

@media (max-width: 768px) and (orientation: landscape) {
  .hero {
    min-height: 100vh;
    padding: var(--space-md) 0;
  }
  
  .hero-content {
    padding: var(--space-sm);
  }
  
  .hero-content h1 {
    font-size: 1.8rem;
  }
  
  .hero-content p {
    font-size: 0.95rem;
    margin-bottom: var(--space-md);
  }
  
  section {
    padding: var(--space-md) 0;
  }
  
  nav ul {
    padding: var(--space-md);
    justify-content: center;
  }
}

@media (max-width: 480px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding: var(--space-lg) 0;
  }
  
  .hero-content h1 {
    font-size: 1.5rem;
  }
  
  .hero-content p {
    font-size: 0.9rem;
    margin-bottom: var(--space-sm);
  }
  
  section {
    padding: var(--space-sm) 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .hero-canvas {
    display: none;
  }
  
  .floating-element {
    animation: none;
  }
}

@media print {
  header, footer, .privacy-popup, .burger, nav {
    display: none;
  }
  
  section {
    page-break-inside: avoid;
  }
  
  .container {
    max-width: 100%;
  }
  
  body {
    background: white;
  }
  
  .card, .product-card {
    box-shadow: none;
    border: 1px solid #ddd;
  }
}
