/* Google Fonts: Lora (Serif) & Montserrat (Sans-serif) */
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
  --dark-stone: #3E3D32;
  --oak-brown: #5C4033;
  --pine-green: #1E3A1E;
  --wool-cream: #FAF6EE;
  --dark-oak: #2A1D17;
  --light-oak: #8C6A53;
  --warm-grey: #EAE3D2;
  --accent-gold: #C5A059;
  
  --text-dark: #2B2A24;
  --text-muted: #5E5C54;
  --text-light: #FAF6EE;
  
  --font-serif: 'Lora', Georgia, serif;
  --font-sans: 'Montserrat', system-ui, -apple-system, sans-serif;
  
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm: 0 2px 8px rgba(62, 61, 50, 0.08);
  --shadow-md: 0 10px 30px rgba(62, 61, 50, 0.12);
  --shadow-lg: 0 20px 50px rgba(62, 61, 50, 0.18);
  
  --border-radius: 4px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--wool-cream);
}
::-webkit-scrollbar-thumb {
  background: var(--dark-stone);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--oak-brown);
}

/* Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--wool-cream);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--dark-stone);
  line-height: 1.25;
}

p {
  font-size: 1rem;
  color: var(--text-muted);
}

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

ul {
  list-style: none;
}

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

input, textarea, select, button {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

/* Button & Link UI */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.85rem;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background-color: var(--oak-brown);
  color: var(--text-light);
  border: 1px solid var(--oak-brown);
}

.btn-primary:hover {
  background-color: var(--dark-oak);
  border-color: var(--dark-oak);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: transparent;
  color: var(--dark-stone);
  border: 1px solid var(--dark-stone);
}

.btn-secondary:hover {
  background-color: var(--dark-stone);
  color: var(--text-light);
  transform: translateY(-2px);
}

.btn-pine {
  background-color: var(--pine-green);
  color: var(--text-light);
  border: 1px solid var(--pine-green);
}

.btn-pine:hover {
  background-color: #122412;
  transform: translateY(-2px);
}

/* Navigation Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(250, 246, 238, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(62, 61, 50, 0.08);
  transition: var(--transition);
}

.header.scrolled {
  padding: 0.6rem 0;
  box-shadow: var(--shadow-sm);
  background-color: rgba(250, 246, 238, 0.98);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--dark-stone);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo span {
  color: var(--oak-brown);
}

.logo svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--dark-stone);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--oak-brown);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--oak-brown);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  flex-direction: column;
  gap: 6px;
  padding: 0.5rem;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--dark-stone);
  transition: var(--transition);
}

/* Mobile Nav Active states */
.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--dark-stone);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(46, 31, 26, 0.4), rgba(62, 61, 50, 0.85));
  z-index: 2;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: saturate(0.8) contrast(1.1);
  transform: scale(1.05);
  animation: panBg 30s ease-in-out infinite alternate;
}

@keyframes panBg {
  0% { transform: scale(1.03) translate(0, 0); }
  100% { transform: scale(1.1) translate(-1%, -1%); }
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  text-align: center;
  padding: 2rem;
  color: var(--text-light);
}

.hero-tagline {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
  display: inline-block;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.hero-description {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: rgba(250, 246, 238, 0.85);
  max-width: 750px;
  margin: 0 auto 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

/* Scroll Indicators */
.scroll-down {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: var(--text-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  opacity: 0.8;
}

.scroll-down svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-8px); }
  60% { transform: translateY(-4px); }
}

/* Section Common Layouts */
.section {
  padding: 8rem 2rem;
  position: relative;
}

.section-dark {
  background-color: var(--dark-stone);
  color: var(--text-light);
}

.section-dark h2,
.section-dark h3 {
  color: var(--text-light);
}

.section-dark p {
  color: rgba(250, 246, 238, 0.75);
}

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

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 5rem;
}

.section-subtitle {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--oak-brown);
  margin-bottom: 1rem;
  display: block;
}

.section-dark .section-subtitle {
  color: var(--accent-gold);
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.section-desc {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--text-muted);
}

.section-dark .section-desc {
  color: rgba(250, 246, 238, 0.75);
}

/* Grid Layouts & Cards */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

/* Feature Cards (Chalet Detail Card) */
.feature-card {
  background: white;
  padding: 3rem 2.5rem;
  border-radius: var(--border-radius);
  border: 1px solid rgba(62, 61, 50, 0.06);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--oak-brown);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(62, 61, 50, 0.12);
}

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

.feature-icon {
  margin-bottom: 2rem;
  color: var(--oak-brown);
}

.feature-icon svg {
  width: 40px;
  height: 40px;
  fill: currentColor;
}

.feature-title {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.feature-desc {
  font-size: 0.95rem;
}

/* Product Cards */
.product-card {
  position: relative;
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.product-img-wrapper {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background-color: #e5e5e5;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-img {
  transform: scale(1.08);
}

.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: var(--pine-green);
  color: var(--text-light);
  padding: 0.4rem 0.8rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 10;
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(62, 61, 50, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  z-index: 5;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.product-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  border-top: 1px solid rgba(62, 61, 50, 0.05);
}

.product-category {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.product-title {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--dark-stone);
}

.product-price {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--oak-brown);
  margin-top: auto;
}

/* Catalog Filter UI */
.filter-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 4rem;
}

.filter-btn {
  padding: 0.75rem 1.75rem;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 1px solid rgba(62, 61, 50, 0.15);
  color: var(--dark-stone);
  border-radius: 30px;
  cursor: pointer;
  background-color: transparent;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--dark-stone);
  color: var(--text-light);
  border-color: var(--dark-stone);
}

/* Image Text Split Section */
.split-image {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
}

.split-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(250, 246, 238, 0.25);
  margin: 1rem;
  width: calc(100% - 2rem);
  height: calc(100% - 2rem);
  pointer-events: none;
}

.split-content {
  padding: 2rem 0;
}

.split-content h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.split-content p {
  margin-bottom: 1.5rem;
}

/* Alpine Signature Accent Line */
.alpine-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
}

.alpine-divider::before,
.alpine-divider::after {
  content: '';
  height: 1px;
  flex-grow: 1;
  background: linear-gradient(to right, transparent, rgba(62, 61, 50, 0.25), transparent);
}

.alpine-divider svg {
  width: 24px;
  height: 24px;
  fill: var(--oak-brown);
}

/* Testimonials / Feedbacks */
.testimonial-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-item {
  display: none;
  animation: fadeIn 0.8s ease-in-out forwards;
}

.testimonial-item.active {
  display: block;
}

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

.testimonial-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.2rem, 2.5vw, 1.75rem);
  color: var(--dark-stone);
  line-height: 1.5;
  margin-bottom: 2rem;
  position: relative;
}

.testimonial-quote::before {
  content: '“';
  font-size: 5rem;
  position: absolute;
  top: -2.5rem;
  left: -1rem;
  opacity: 0.08;
  font-family: var(--font-serif);
}

.testimonial-author {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--oak-brown);
  margin-bottom: 0.25rem;
}

.testimonial-location {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(62, 61, 50, 0.2);
  cursor: pointer;
  transition: var(--transition);
}

.testimonial-dot.active {
  background-color: var(--oak-brown);
  transform: scale(1.3);
}

/* Forms - Floating Labels */
.contact-form {
  background: white;
  padding: 3.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(62, 61, 50, 0.05);
}

.form-group {
  position: relative;
  margin-bottom: 2rem;
}

.form-input {
  width: 100%;
  padding: 1rem 0;
  font-family: var(--font-sans);
  border-bottom: 1px solid rgba(62, 61, 50, 0.25);
  color: var(--text-dark);
  background: transparent;
  transition: var(--transition);
}

.form-input:focus {
  border-bottom-color: var(--oak-brown);
}

.form-label {
  position: absolute;
  top: 1rem;
  left: 0;
  color: var(--text-muted);
  pointer-events: none;
  transition: var(--transition);
  transform-origin: left top;
}

/* Floating Label Animation */
.form-input:focus + .form-label,
.form-input:not(:placeholder-shown) + .form-label {
  transform: translateY(-1.5rem) scale(0.8);
  color: var(--oak-brown);
}

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

/* Custom Mountain Map Container */
.map-container {
  height: 100%;
  min-height: 450px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
}

.mountain-map-svg {
  width: 100%;
  height: 100%;
  background-color: #E2DDD5;
  display: block;
}

.map-card {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  background: rgba(62, 61, 50, 0.95);
  backdrop-filter: blur(5px);
  color: var(--text-light);
  padding: 2rem;
  border-radius: var(--border-radius);
  max-width: 350px;
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--accent-gold);
  z-index: 10;
}

.map-card h4 {
  color: var(--text-light);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.map-card p {
  color: rgba(250, 246, 238, 0.85);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

/* Footer Style */
.footer {
  background-color: var(--dark-stone);
  color: var(--text-light);
  padding: 6rem 2rem 2rem;
  border-top: 4px solid var(--oak-brown);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand .logo {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.footer-brand p {
  color: rgba(250, 246, 238, 0.7);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.footer-title {
  font-size: 1.15rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  color: var(--accent-gold);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-links a {
  color: rgba(250, 246, 238, 0.7);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--text-light);
  transform: translateX(5px);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: rgba(250, 246, 238, 0.7);
  font-size: 0.9rem;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  fill: var(--accent-gold);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.footer-bottom {
  border-top: 1px solid rgba(250, 246, 238, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.85rem;
  color: rgba(250, 246, 238, 0.5);
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.footer-bottom-links a {
  color: rgba(250, 246, 238, 0.5);
}

.footer-bottom-links a:hover {
  color: var(--text-light);
}

/* GDPR Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  max-width: 500px;
  background-color: rgba(62, 61, 50, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(250, 246, 238, 0.15);
  box-shadow: var(--shadow-lg);
  border-radius: var(--border-radius);
  color: var(--text-light);
  padding: 2rem;
  z-index: 10000;
  transform: translateY(150%);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content h4 {
  color: var(--text-light);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.cookie-content p {
  font-size: 0.85rem;
  color: rgba(250, 246, 238, 0.8);
  line-height: 1.5;
}

.cookie-content a {
  color: var(--accent-gold);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

.cookie-actions .btn {
  padding: 0.6rem 1.2rem;
  font-size: 0.75rem;
}

/* Policy Content Styles */
.policy-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 0;
}

.policy-container h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.policy-meta {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 3rem;
}

.policy-content h2 {
  font-size: 1.6rem;
  margin: 2.5rem 0 1rem;
  color: var(--dark-stone);
}

.policy-content p, 
.policy-content li {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

.policy-content ul {
  list-style-type: cubic-bezier;
  margin-left: 2rem;
  margin-bottom: 1.5rem;
}

.policy-content li {
  list-style: disc;
  margin-bottom: 0.5rem;
}

.consent-id-box {
  background-color: var(--warm-grey);
  border: 1px solid rgba(62, 61, 50, 0.15);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  margin: 2rem 0;
}

.consent-id-box p {
  margin: 0;
  font-family: monospace;
  font-size: 0.9rem;
}

/* Scroll Reveal Class */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background-color: var(--wool-cream);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    z-index: 1000;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .grid-3 {
    grid-template-columns: 1fr;
  }
  
  .section {
    padding: 5rem 1.5rem;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .hero-actions .btn {
    width: 100%;
    max-width: 300px;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-banner {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    padding: 1.5rem;
  }
  
  .contact-form {
    padding: 2rem 1.5rem;
  }
  
  .map-container {
    min-height: 350px;
  }
  
  .map-card {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    max-width: none;
  }
}
