/* L'Atelier Thématique - Design System & Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  --color-terracotta: #C2410C;
  --color-terracotta-hover: #9A3412;
  --color-sage: #15803D;
  --color-sage-hover: #166534;
  --color-black: #111827;
  --color-black-light: #1F2937;
  --color-cream: #FDFBF7;
  --color-cream-dark: #F5F2EB;
  --color-white: #FFFFFF;
  --color-gray: #6B7280;
  --color-gray-light: #E5E7EB;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
  --container-max: 1280px;
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--color-cream);
  color: var(--color-black);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--color-cream-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--color-terracotta);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-terracotta-hover);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 1.5rem;
}

h3 {
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  margin-bottom: 0.75rem;
}

p {
  color: var(--color-black-light);
  margin-bottom: 1rem;
}

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

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

/* Layout Elements */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(253, 251, 247, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(17, 24, 39, 0.05);
  transition: var(--transition-smooth);
}

header.scrolled {
  padding: 0.75rem 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  transition: var(--transition-smooth);
}

header.scrolled .nav-container {
  height: 60px;
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.nav-links {
  display: flex;
  gap: 3rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-terracotta);
  transition: var(--transition-smooth);
}

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

.nav-links a.active {
  color: var(--color-terracotta);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--color-black);
  margin: 5px 0;
  transition: var(--transition-smooth);
}

/* Footer */
footer {
  background-color: var(--color-black);
  color: var(--color-cream);
  padding: 6rem 0 3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-brand h2 {
  color: var(--color-cream);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--color-gray-light);
  opacity: 0.7;
  max-width: 320px;
}

.footer-links h3 {
  color: var(--color-cream);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.footer-links h3::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 30px;
  height: 1px;
  background-color: var(--color-terracotta);
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

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

.footer-links ul a:hover {
  opacity: 1;
  color: var(--color-terracotta);
  padding-left: 5px;
}

.footer-newsletter h3 {
  color: var(--color-cream);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.footer-newsletter p {
  color: var(--color-gray-light);
  opacity: 0.7;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-form input {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.8rem 1rem;
  color: var(--color-cream);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  border-radius: 4px;
  transition: var(--transition-fast);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--color-terracotta);
  background: rgba(255, 255, 255, 0.1);
}

.newsletter-form button {
  background-color: var(--color-terracotta);
  color: var(--color-white);
  border: none;
  padding: 0 1.5rem;
  font-weight: 500;
  cursor: pointer;
  border-radius: 4px;
  transition: var(--transition-fast);
}

.newsletter-form button:hover {
  background-color: var(--color-terracotta-hover);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.85rem;
  color: var(--color-gray-light);
  opacity: 0.6;
}

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

/* Premium Buttons & Interactive Elements */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.25rem;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background-color: var(--color-terracotta);
  color: var(--color-white);
  border: 1px solid var(--color-terracotta);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--color-black);
  border-color: var(--color-black);
}

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

.btn-secondary:hover {
  background-color: var(--color-black);
  color: var(--color-white);
}

.btn-sage {
  background-color: var(--color-sage);
  color: var(--color-white);
  border: 1px solid var(--color-sage);
}

.btn-sage:hover {
  background-color: transparent;
  color: var(--color-black);
  border-color: var(--color-black);
}

/* Section Header Helper */
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 5rem auto;
}

.section-subtitle {
  color: var(--color-terracotta);
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
  display: block;
}

/* --- Hero Section --- */
.hero {
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  position: relative;
  background-color: var(--color-cream);
  padding-top: 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 4rem;
  height: 100%;
}

.hero-content {
  position: relative;
  z-index: 10;
}

.hero-content h1 span {
  display: block;
  font-style: italic;
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--color-sage);
}

.hero-content p {
  font-size: 1.15rem;
  color: var(--color-black-light);
  margin: 2rem 0 3rem 0;
  max-width: 500px;
}

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

.hero-gallery {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Modern Eclectic Collage (Art Gallery Deco) */
.art-collage {
  position: relative;
  width: 100%;
  height: 550px;
}

.collage-img {
  position: absolute;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  transition: var(--transition-smooth);
  border: 1px solid rgba(17, 24, 39, 0.05);
}

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

.collage-img:hover img {
  transform: scale(1.05);
}

.collage-img-1 {
  top: 0;
  left: 10%;
  width: 55%;
  height: 65%;
  border-radius: 400px 400px 0 0; /* Art Deco Arch */
  z-index: 2;
}

.collage-img-2 {
  bottom: 0;
  right: 5%;
  width: 50%;
  height: 55%;
  z-index: 1;
}

.collage-img-3 {
  bottom: 15%;
  left: -5%;
  width: 35%;
  height: 35%;
  z-index: 3;
  border: 6px solid var(--color-cream);
}

.collage-bg-shape {
  position: absolute;
  top: 10%;
  right: 15%;
  width: 45%;
  height: 60%;
  background-color: var(--color-cream-dark);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 0;
  animation: morphShape 15s ease-in-out infinite alternate;
}

@keyframes morphShape {
  0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
  100% { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; }
}

/* --- Eclectic Art Layouts (Home & About) --- */
.eclectic-section {
  padding: 8rem 0;
}

.eclectic-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: center;
}

.eclectic-grid.reverse {
  grid-template-columns: 1.2fr 1fr;
}

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

.eclectic-accent-title {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--color-terracotta);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.eclectic-image-wrapper {
  position: relative;
  padding: 2rem;
}

.eclectic-image-frame {
  position: relative;
  background-color: var(--color-white);
  padding: 1.5rem;
  box-shadow: 0 30px 60px rgba(0,0,0,0.05);
  border: 1px solid var(--color-gray-light);
}

.eclectic-image-frame img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

.eclectic-image-caption {
  margin-top: 1rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--color-gray);
  display: flex;
  justify-content: space-between;
}

.eclectic-decor-box {
  position: absolute;
  top: -1rem;
  left: -1rem;
  width: 150px;
  height: 200px;
  background-color: rgba(21, 128, 61, 0.08); /* sage tint */
  z-index: -1;
  border-radius: 4px;
}

.eclectic-decor-line {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  width: 200px;
  height: 150px;
  border-bottom: 2px solid var(--color-terracotta);
  border-right: 2px solid var(--color-terracotta);
  z-index: -1;
}

/* --- Highlights Carousel / Grid --- */
.highlights-section {
  background-color: var(--color-cream-dark);
  padding: 8rem 0;
}

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

.highlight-card {
  background-color: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.03);
  padding: 3rem 2.5rem;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.02);
  transition: var(--transition-smooth);
  position: relative;
}

.highlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background-color: var(--color-sage);
  transition: var(--transition-smooth);
}

.highlight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.highlight-card:hover::before {
  height: 100%;
}

.highlight-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(194, 65, 12, 0.08); /* terracotta tint */
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-terracotta);
  margin-bottom: 2rem;
  font-size: 1.25rem;
}

.highlight-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.highlight-card p {
  color: var(--color-gray);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* --- Collections Category Filters & Product Grid --- */
.products-section {
  padding: 8rem 0;
}

.filter-controls {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
  padding: 0.6rem 1.5rem;
  cursor: pointer;
  border-radius: 30px;
  border: 1px solid var(--color-gray-light);
  transition: var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--color-black);
  color: var(--color-white);
  border-color: var(--color-black);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 3rem;
}

.product-card {
  position: relative;
  background-color: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.03);
  box-shadow: 0 15px 35px rgba(0,0,0,0.03);
  transition: var(--transition-smooth);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.08);
}

.product-image-container {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  background-color: var(--color-cream-dark);
}

.product-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.product-card:hover .product-image-container img {
  transform: scale(1.06);
}

.product-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background-color: var(--color-sage);
  color: var(--color-white);
  padding: 0.4rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
}

.product-badge.terracotta {
  background-color: var(--color-terracotta);
}

.product-details {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-category {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--color-terracotta);
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.product-title {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.product-price {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-black);
  margin-bottom: 1.5rem;
}

.product-action {
  margin-top: auto;
}

/* --- Testimonials --- */
.testimonials-section {
  padding: 8rem 0;
  background-color: var(--color-cream);
  position: relative;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-card {
  background-color: var(--color-white);
  padding: 3rem;
  border-radius: 4px;
  border: 1px solid var(--color-gray-light);
  box-shadow: 0 15px 35px rgba(0,0,0,0.02);
  position: relative;
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--color-black);
  margin-bottom: 2rem;
  line-height: 1.5;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author-info h4 {
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}

.testimonial-author-info p {
  color: var(--color-gray);
  font-size: 0.85rem;
  margin: 0;
}

/* --- Contact & Forms --- */
.contact-section {
  padding: 8rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-info h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.contact-details-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 3rem 0;
}

.contact-details-item {
  display: flex;
  gap: 1.5rem;
}

.contact-details-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(21, 128, 61, 0.08);
  color: var(--color-sage);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-details-text h4 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.contact-details-text p {
  color: var(--color-gray);
  margin: 0;
}

/* Floating labels for Form */
.contact-form-wrapper {
  background-color: var(--color-white);
  padding: 4rem;
  border-radius: 4px;
  border: 1px solid var(--color-gray-light);
  box-shadow: 0 30px 60px rgba(0,0,0,0.04);
}

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

.form-input {
  width: 100%;
  padding: 1rem 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--color-black);
  border: none;
  border-bottom: 1px solid var(--color-gray-light);
  background-color: transparent;
  outline: none;
  transition: var(--transition-fast);
}

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

.form-label {
  position: absolute;
  top: 1rem;
  left: 0;
  font-size: 1rem;
  color: var(--color-gray);
  pointer-events: none;
  transition: var(--transition-fast);
}

/* Floating behavior */
.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label {
  top: -12px;
  font-size: 0.8rem;
  color: var(--color-terracotta);
  font-weight: 500;
}

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

/* Map placeholder (Art Gallery Style Map) */
.map-container {
  width: 100%;
  height: 400px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--color-gray-light);
  box-shadow: 0 20px 40px rgba(0,0,0,0.03);
  position: relative;
  margin-top: 4rem;
}

.gallery-map {
  width: 100%;
  height: 100%;
  background-color: var(--color-cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 2rem;
}

.map-badge {
  background-color: var(--color-black);
  color: var(--color-cream);
  padding: 0.5rem 1.25rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.map-accent-circle {
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  border: 1px dashed rgba(194, 65, 12, 0.2);
  animation: rotateMapLine 20s linear infinite;
  pointer-events: none;
}

@keyframes rotateMapLine {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.map-location-pin {
  width: 20px;
  height: 20px;
  background-color: var(--color-terracotta);
  border-radius: 50%;
  position: relative;
  margin-bottom: 1rem;
  box-shadow: 0 0 0 10px rgba(194, 65, 12, 0.15);
  animation: pulsePin 2s infinite;
}

@keyframes pulsePin {
  0% { box-shadow: 0 0 0 0 rgba(194, 65, 12, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(194, 65, 12, 0); }
  100% { box-shadow: 0 0 0 0 rgba(194, 65, 12, 0); }
}

/* --- About Values / Gallery Deco Style Grid --- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  align-items: center;
  padding: 4rem 0;
}

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

.value-img-card {
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

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

.value-img-card.offset {
  margin-top: 3rem;
}

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

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

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* --- Legal Pages Styles --- */
.legal-section {
  padding: 10rem 0 8rem 0;
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h1 {
  font-size: 3rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--color-gray-light);
  padding-bottom: 1rem;
}

.legal-content h2 {
  font-size: 1.75rem;
  margin-top: 3rem;
  margin-bottom: 1rem;
  color: var(--color-terracotta);
}

.legal-content p, .legal-content li {
  font-size: 1.05rem;
  color: var(--color-black-light);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.legal-content ul {
  padding-left: 2rem;
  margin-bottom: 1.5rem;
}

/* --- GDPR Consent Banner --- */
.cookie-consent-banner {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  max-width: 600px;
  background-color: var(--color-white);
  border: 1px solid var(--color-gray-light);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  border-radius: 4px;
  z-index: 1000;
  transform: translateY(150%);
  transition: var(--transition-smooth);
}

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

.cookie-consent-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.cookie-consent-content p {
  font-size: 0.9rem;
  color: var(--color-gray);
  margin-bottom: 1.5rem;
}

.cookie-consent-content p a {
  text-decoration: underline;
  color: var(--color-terracotta);
}

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

.cookie-consent-actions .btn {
  padding: 0.75rem 1.5rem;
  font-size: 0.8rem;
}

/* --- Mobile Menu Styles --- */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-top: 100px;
  }
  
  .hero {
    height: auto;
    padding-bottom: 4rem;
  }
  
  .hero-gallery {
    height: 500px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background-color: var(--color-cream);
    flex-direction: column;
    padding: 3rem 2rem;
    gap: 2rem;
    border-bottom: 1px solid var(--color-gray-light);
    transform: translateY(-150%);
    transition: var(--transition-smooth);
    z-index: 99;
  }
  
  header.scrolled .nav-links {
    top: 60px;
  }
  
  .nav-links.active {
    transform: translateY(0);
  }
  
  .menu-toggle {
    display: block;
  }
  
  .menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  
  .eclectic-grid, .eclectic-grid.reverse {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .highlights-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .contact-form-wrapper {
    padding: 2rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  
  .footer-legal-links {
    flex-direction: column;
    gap: 1rem;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .values-images {
    grid-template-columns: 1fr;
  }
  
  .value-img-card.offset {
    margin-top: 0;
  }
}
