/* Import modern typography */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Quicksand:wght@400;500;600;700&display=swap');

/* CSS Custom Properties for Biophilic Design Tokens */
:root {
  --color-sapin: #14532D;      /* Deep forest pine */
  --color-sapin-light: #166534;
  --color-sapin-rgb: 20, 83, 45;
  --color-sauge: #84CC16;      /* Bright sage green */
  --color-sauge-muted: #a3e635;
  --color-oak: #D97706;        /* Warm natural oak */
  --color-oak-light: #F59E0B;
  --color-lime: #FAF8F5;       /* Textured plaster white */
  --color-lime-dark: #F3ECE3;  /* Shaded plaster */
  --color-charcoal: #1E293B;   /* Elegant dark text */
  --color-charcoal-rgb: 30, 41, 59;
  
  --font-heading: 'Quicksand', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  --shadow-organic: 0 10px 30px -10px rgba(20, 83, 45, 0.08);
  --shadow-deep: 0 20px 40px -15px rgba(20, 83, 45, 0.15);
  --border-radius-organic: 24px 8px 24px 8px;
  --border-radius-wood: 4px;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--color-lime);
  color: var(--color-charcoal);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-sapin);
  font-weight: 700;
  line-height: 1.25;
}

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

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

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(250, 248, 245, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(20, 83, 45, 0.05);
  transition: var(--transition-smooth);
}

header.scrolled {
  background: var(--color-lime);
  box-shadow: var(--shadow-organic);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-sapin);
}

.logo-leaf {
  width: 32px;
  height: 32px;
  fill: var(--color-sauge);
}

.nav-menu {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--color-sapin);
  position: relative;
  padding: 0.5rem 0;
}

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

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

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

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

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

/* Biophilic Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 2rem 4rem;
  background: radial-gradient(circle at 80% 20%, rgba(132, 204, 22, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 10% 80%, rgba(217, 119, 6, 0.05) 0%, transparent 50%);
  overflow: hidden;
}

.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

.hero-content {
  z-index: 2;
}

.hero-tagline {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-oak);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  display: inline-block;
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero-title span {
  color: var(--color-oak);
  font-style: italic;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--color-charcoal);
  margin-bottom: 2.5rem;
  max-width: 540px;
}

.btn-group {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.25rem;
  font-family: var(--font-heading);
  font-weight: 600;
  border-radius: var(--border-radius-organic);
  transition: var(--transition-smooth);
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--color-sapin);
  color: var(--color-lime);
  border: 2px solid var(--color-sapin);
  box-shadow: 0 4px 15px rgba(20, 83, 45, 0.2);
}

.btn-primary:hover {
  background-color: var(--color-sapin-light);
  border-color: var(--color-sapin-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(20, 83, 45, 0.3);
}

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

.btn-secondary:hover {
  background-color: var(--color-sapin);
  color: var(--color-lime);
  transform: translateY(-3px);
}

/* Biophilic Wood Frame Layout */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.wood-frame {
  position: relative;
  border: 12px solid #a16207; /* Darker warm oak frame */
  outline: 4px solid var(--color-oak);
  box-shadow: var(--shadow-deep);
  border-radius: var(--border-radius-wood);
  overflow: hidden;
  width: 100%;
  aspect-ratio: 4/5;
  background-color: var(--color-lime-dark);
}

.wood-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

.plant-overlay {
  position: absolute;
  pointer-events: none;
  z-index: 3;
}

.plant-top-left {
  top: -40px;
  left: -40px;
  width: 120px;
  height: 120px;
  opacity: 0.95;
  filter: drop-shadow(0 10px 15px rgba(20, 83, 45, 0.15));
}

.plant-bottom-right {
  bottom: -40px;
  right: -30px;
  width: 150px;
  height: 150px;
  opacity: 0.95;
  filter: drop-shadow(0 10px 15px rgba(20, 83, 45, 0.15));
}

/* Section styling */
section {
  padding: 8rem 2rem;
  position: relative;
}

.section-bg-plaster {
  background-color: var(--color-lime-dark);
  background-image: radial-gradient(rgba(20, 83, 45, 0.03) 1px, transparent 0),
                    radial-gradient(rgba(20, 83, 45, 0.03) 1px, transparent 0);
  background-size: 24px 24px;
  background-position: 0 0, 12px 12px;
}

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

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

.section-title {
  font-size: 2.75rem;
  margin-bottom: 1.25rem;
}

.section-description {
  font-size: 1.1rem;
  color: var(--color-charcoal);
  opacity: 0.85;
}

/* Features/Craftsmanship Section */
.features-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.feature-card {
  background: var(--color-lime);
  padding: 3rem 2.5rem;
  border-radius: var(--border-radius-organic);
  border: 1px solid rgba(20, 83, 45, 0.05);
  box-shadow: var(--shadow-organic);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-sauge), var(--color-sapin));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-smooth);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-deep);
  border-color: rgba(132, 204, 22, 0.2);
}

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

.feature-icon-wrapper {
  background-color: rgba(132, 204, 22, 0.1);
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  color: var(--color-sapin);
}

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

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

.feature-text {
  color: var(--color-charcoal);
  font-size: 0.95rem;
  opacity: 0.8;
}

/* Spotlight/Intro Section */
.spotlight-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.spotlight-visual {
  position: relative;
}

.spotlight-frame {
  border: 12px solid #a16207;
  outline: 4px solid var(--color-oak);
  box-shadow: var(--shadow-deep);
  border-radius: var(--border-radius-wood);
  overflow: hidden;
  aspect-ratio: 1;
}

.spotlight-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.spotlight-content {
  padding-right: 2rem;
}

.spotlight-text {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.craft-detail-list {
  list-style: none;
  margin-bottom: 2.5rem;
}

.craft-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.craft-check {
  color: var(--color-sauge);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.craft-detail-title {
  font-weight: 600;
  color: var(--color-sapin);
  margin-bottom: 0.25rem;
}

/* Category Filter & Products */
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: var(--color-lime);
  border: 1px solid rgba(20, 83, 45, 0.1);
  padding: 0.75rem 2rem;
  font-family: var(--font-heading);
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  color: var(--color-sapin);
  transition: var(--transition-smooth);
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--color-sapin);
  color: var(--color-lime);
  border-color: var(--color-sapin);
  box-shadow: 0 4px 15px rgba(20, 83, 45, 0.15);
}

.products-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 3rem 2.5rem;
}

.product-card {
  background-color: var(--color-lime);
  border-radius: var(--border-radius-wood);
  overflow: hidden;
  box-shadow: var(--shadow-organic);
  border: 1px solid rgba(20, 83, 45, 0.03);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-deep);
  border-color: rgba(217, 119, 6, 0.15);
}

.product-img-wrapper {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background-color: var(--color-lime-dark);
  border-bottom: 4px solid var(--color-oak);
}

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

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

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

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

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

.product-title {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--color-sapin);
}

.product-desc {
  font-size: 0.9rem;
  opacity: 0.75;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(20, 83, 45, 0.05);
  padding-top: 1.25rem;
}

.product-price {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-sapin);
}

/* Testimonials Section */
.testimonials-slider {
  max-width: 1000px;
  margin: 0 auto;
}

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

.testimonial-card {
  background: var(--color-lime);
  padding: 3rem;
  border-radius: var(--border-radius-organic);
  box-shadow: var(--shadow-organic);
  border: 1px solid rgba(20, 83, 45, 0.03);
  position: relative;
}

.testimonial-card::after {
  content: '“';
  position: absolute;
  top: 1rem;
  right: 2.5rem;
  font-size: 6rem;
  font-family: var(--font-heading);
  color: rgba(20, 83, 45, 0.05);
  line-height: 1;
}

.testimonial-text {
  font-style: italic;
  font-size: 1.05rem;
  margin-bottom: 2rem;
  color: var(--color-charcoal);
  position: relative;
  z-index: 1;
}

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

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--color-oak);
  object-fit: cover;
}

.author-name {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-sapin);
  font-size: 1rem;
}

.author-title {
  font-size: 0.8rem;
  opacity: 0.7;
}

/* Contact Form with Floating Labels */
.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-info {
  background-color: var(--color-sapin);
  color: var(--color-lime);
  padding: 4rem;
  border-radius: var(--border-radius-organic);
  box-shadow: var(--shadow-deep);
  position: relative;
  overflow: hidden;
}

.contact-info::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 250px;
  height: 250px;
  background-color: rgba(132, 204, 22, 0.1);
  border-radius: 50%;
  pointer-events: none;
}

.contact-info h3 {
  color: var(--color-lime);
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.contact-details {
  margin: 3rem 0;
  list-style: none;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.contact-icon {
  color: var(--color-sauge);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.contact-item-title {
  font-weight: 600;
  margin-bottom: 0.25rem;
  font-size: 1.05rem;
}

.contact-item-text {
  font-size: 0.95rem;
  opacity: 0.85;
}

.contact-form {
  background: var(--color-lime);
  padding: 4rem;
  border-radius: var(--border-radius-organic);
  box-shadow: var(--shadow-organic);
  border: 1px solid rgba(20, 83, 45, 0.05);
}

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

.form-input {
  width: 100%;
  padding: 1rem 0;
  background: transparent;
  border: none;
  border-bottom: 2px solid rgba(20, 83, 45, 0.2);
  color: var(--color-charcoal);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: var(--transition-smooth);
}

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

.form-label {
  position: absolute;
  left: 0;
  top: 1rem;
  color: rgba(20, 83, 45, 0.6);
  pointer-events: none;
  transition: var(--transition-smooth);
  font-family: var(--font-heading);
}

/* Floating labels effect */
.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label {
  top: -0.75rem;
  font-size: 0.8rem;
  color: var(--color-oak);
  font-weight: 600;
}

.form-checkbox-group {
  margin-bottom: 2.25rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.form-checkbox {
  margin-top: 0.25rem;
  accent-color: var(--color-sapin);
}

.form-checkbox-label {
  font-size: 0.85rem;
  color: var(--color-charcoal);
  opacity: 0.8;
}

.form-checkbox-label a {
  color: var(--color-sapin);
  text-decoration: underline;
  font-weight: 500;
}

/* Custom Forest Map section */
.map-section {
  padding: 0;
  height: 450px;
  position: relative;
  overflow: hidden;
  background-color: var(--color-lime-dark);
}

.custom-map {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.map-plaster-texture {
  position: absolute;
  inset: 0;
  background: radial-gradient(rgba(20, 83, 45, 0.05) 15%, transparent 16%) 0 0,
              radial-gradient(rgba(20, 83, 45, 0.05) 15%, transparent 16%) 8px 8px;
  background-size: 16px 16px;
  opacity: 0.4;
}

.map-svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(0.2) hue-rotate(80deg) brightness(0.95) contrast(1.05);
}

.map-marker {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--color-sapin);
  color: var(--color-lime);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: var(--shadow-deep);
  border: 2px solid var(--color-oak);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  animation: pulse 2s infinite;
  z-index: 5;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(217, 119, 6, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(217, 119, 6, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(217, 119, 6, 0);
  }
}

/* Footer styling */
footer {
  background-color: var(--color-sapin);
  color: var(--color-lime);
  padding: 5rem 2rem 2rem;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--color-sauge), var(--color-oak), var(--color-sauge));
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto 4rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 4rem;
}

.footer-logo {
  color: var(--color-lime);
}

.footer-logo .logo-leaf {
  fill: var(--color-sauge);
}

.footer-desc {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-top: 1.5rem;
  max-width: 280px;
}

.footer-title {
  color: var(--color-lime);
  font-size: 1.2rem;
  margin-bottom: 1.75rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--color-oak);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.85rem;
}

.footer-links a {
  font-size: 0.9rem;
  opacity: 0.8;
}

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

.newsletter-text {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 1.25rem;
}

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

.newsletter-input {
  background-color: rgba(250, 248, 245, 0.1);
  border: 1px solid rgba(250, 248, 245, 0.2);
  padding: 0.75rem 1rem;
  border-radius: var(--border-radius-wood);
  color: var(--color-lime);
  font-family: var(--font-body);
  flex-grow: 1;
  outline: none;
}

.newsletter-input::placeholder {
  color: rgba(250, 248, 245, 0.5);
}

.newsletter-input:focus {
  border-color: var(--color-sauge);
  background-color: rgba(250, 248, 245, 0.15);
}

.newsletter-btn {
  background-color: var(--color-oak);
  color: var(--color-lime);
  border: none;
  padding: 0.75rem 1.25rem;
  border-radius: var(--border-radius-wood);
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.newsletter-btn:hover {
  background-color: var(--color-oak-light);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(250, 248, 245, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.85rem;
  opacity: 0.7;
}

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

/* Scroll Reveal classes */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* GDPR Cookie Consent Modal */
.cookie-consent {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  max-width: 500px;
  background-color: var(--color-lime);
  border: 2px solid var(--color-oak);
  border-radius: var(--border-radius-organic);
  box-shadow: var(--shadow-deep);
  padding: 2.25rem;
  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.25rem;
}

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

.cookie-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--color-sapin);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cookie-desc {
  font-size: 0.9rem;
  color: var(--color-charcoal);
  opacity: 0.9;
}

.cookie-desc a {
  color: var(--color-sapin);
  text-decoration: underline;
  font-weight: 600;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.cookie-btn {
  flex: 1;
  padding: 0.85rem 1.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  border-radius: var(--border-radius-organic);
  cursor: pointer;
  transition: var(--transition-smooth);
  font-size: 0.9rem;
  text-align: center;
}

.cookie-btn-accept {
  background-color: var(--color-sapin);
  color: var(--color-lime);
  border: 2px solid var(--color-sapin);
}

.cookie-btn-accept:hover {
  background-color: var(--color-sapin-light);
  border-color: var(--color-sapin-light);
}

.cookie-btn-decline {
  background-color: transparent;
  color: var(--color-sapin);
  border: 2px solid var(--color-sapin);
}

.cookie-btn-decline:hover {
  background-color: var(--color-sapin);
  color: var(--color-lime);
}

.consent-id-badge {
  font-family: monospace;
  font-size: 0.75rem;
  color: var(--color-oak);
  align-self: flex-start;
  background-color: rgba(217, 119, 6, 0.08);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}

/* Legal Pages styling */
.legal-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 6rem 0;
}

.legal-title {
  font-size: 3rem;
  margin-bottom: 2rem;
  text-align: center;
}

.legal-meta {
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.7;
  margin-bottom: 4rem;
}

.legal-content h2 {
  font-size: 1.75rem;
  margin: 2.5rem 0 1rem;
}

.legal-content p {
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

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

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

/* About Page Specific Styles */
.about-hero {
  text-align: center;
  padding: 10rem 2rem 5rem;
  background-color: var(--color-lime-dark);
}

.about-intro-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.plaster-text-card {
  background-color: var(--color-lime);
  padding: 4rem;
  border-radius: var(--border-radius-organic);
  box-shadow: var(--shadow-organic);
  border-left: 8px solid var(--color-oak);
}

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

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--border-radius-organic);
  overflow: hidden;
  box-shadow: var(--shadow-organic);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(20, 83, 45, 0.9), transparent);
  padding: 2rem;
  color: var(--color-lime);
}

.gallery-title {
  color: var(--color-lime);
  font-size: 1.25rem;
  font-family: var(--font-heading);
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .hero-grid, .spotlight-grid, .contact-container, .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .features-grid, .about-craft-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
  
  .hero-visual {
    order: -1;
  }
  
  .spotlight-content {
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 72px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 72px);
    background-color: var(--color-lime);
    flex-direction: column;
    align-items: center;
    padding-top: 4rem;
    gap: 2rem;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-deep);
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-toggle {
    display: block;
  }
  
  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  
  .hero-title {
    font-size: 2.75rem;
  }
  
  .section-title {
    font-size: 2.25rem;
  }
  
  .features-grid, .about-craft-gallery, .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-info, .contact-form, .plaster-text-card {
    padding: 2.5rem 2rem;
  }
  
  .cookie-consent {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    padding: 1.5rem;
  }
}
