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

:root {
  --gold-yellow: #EAB308;
  --oak-white: #F5F5F4;
  --dry-clay: #A8A29E;
  --gypsum: #FFFFFF;
  --dark-charcoal: #1C1917; /* Slate/Stone dark for text contrast */
  --soft-clay: #E7E5E4;
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --header-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--oak-white);
  color: var(--dark-charcoal);
  font-family: var(--font-body);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
  line-height: 1.2;
}

p {
  font-weight: 300;
  color: #44403C;
}

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

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: rgba(245, 245, 244, 0.85); /* Oak white glassmorphism */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(168, 162, 158, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--dark-charcoal);
}

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

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

.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  padding: 0.5rem 0;
}

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

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

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

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

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 5%;
  background-size: cover;
  background-position: center;
  color: var(--gypsum);
  margin-top: 0;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(28, 25, 23, 0.7) 0%, rgba(168, 162, 158, 0.3) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-tagline {
  font-family: var(--font-heading);
  color: var(--gold-yellow);
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  font-weight: 400;
  line-height: 1.1;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero p {
  color: var(--oak-white);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 600px;
}

.btn {
  display: inline-block;
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  padding: 1rem 2.5rem;
  border: 1px solid var(--gold-yellow);
  background: transparent;
  color: var(--gypsum);
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: var(--gold-yellow);
  transition: var(--transition-smooth);
  z-index: -1;
}

.btn:hover {
  color: var(--dark-charcoal);
}

.btn:hover::before {
  width: 100%;
}

.btn-dark {
  border-color: var(--dark-charcoal);
  color: var(--dark-charcoal);
}

.btn-dark::before {
  background-color: var(--dark-charcoal);
}

.btn-dark:hover {
  color: var(--gypsum);
}

/* Sections General */
section {
  padding: 8rem 5%;
}

.section-header {
  margin-bottom: 5rem;
  text-align: center;
}

.section-subtitle {
  font-family: var(--font-heading);
  color: var(--gold-yellow);
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 2.8rem;
  color: var(--dark-charcoal);
  position: relative;
  display: inline-block;
  padding-bottom: 1rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--gold-yellow);
}

/* Concept/Inspiration Grid (Desert sand and wildflower layouts) */
.concept-section {
  background-color: var(--gypsum);
}

.concept-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.concept-image-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(12, 1fr);
  height: 550px;
}

.concept-img-1 {
  grid-column: 1 / 9;
  grid-row: 1 / 10;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.concept-img-2 {
  grid-column: 6 / 13;
  grid-row: 5 / 13;
  background-size: cover;
  background-position: center;
  border: 8px solid var(--gypsum);
  border-radius: 4px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  z-index: 2;
}

.concept-details h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.concept-details p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

/* Products/Collections Filter */
.filters {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.filter-btn {
  font-family: var(--font-heading);
  background: none;
  border: none;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dry-clay);
  cursor: pointer;
  padding: 0.5rem 1.5rem;
  border-bottom: 2px solid transparent;
  transition: var(--transition-smooth);
}

.filter-btn.active, .filter-btn:hover {
  color: var(--dark-charcoal);
  border-bottom-color: var(--gold-yellow);
}

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

.product-card {
  background-color: var(--gypsum);
  border: 1px solid rgba(168, 162, 158, 0.15);
  border-radius: 4px;
  overflow: hidden;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

.product-image-container {
  position: relative;
  height: 350px;
  overflow: hidden;
  background-color: var(--oak-white);
}

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

.product-card:hover .product-image {
  transform: scale(1.05);
}

.product-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background-color: var(--gold-yellow);
  color: var(--dark-charcoal);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.8rem;
  text-transform: uppercase;
  border-radius: 2px;
}

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

.product-title {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: var(--dark-charcoal);
}

.product-category {
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--dry-clay);
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  border-top: 1px solid rgba(168, 162, 158, 0.15);
  padding-top: 1.5rem;
}

.product-price {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--dark-charcoal);
  font-weight: 500;
}

/* Testimonials */
.testimonials-section {
  background-color: var(--oak-white);
}

.testimonials-slider {
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-card {
  background-color: var(--gypsum);
  padding: 4rem;
  border-radius: 4px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.quote-icon {
  font-size: 3rem;
  color: var(--gold-yellow);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.testimonial-text {
  font-size: 1.3rem;
  font-style: italic;
  margin-bottom: 2rem;
  color: var(--dark-charcoal);
}

.testimonial-author {
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.testimonial-role {
  font-size: 0.85rem;
  color: var(--dry-clay);
  margin-top: 0.25rem;
}

/* Forms with Floating Labels */
.contact-section {
  background-color: var(--gypsum);
}

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

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-group {
  position: relative;
}

.form-control {
  width: 100%;
  padding: 1rem 0;
  border: none;
  border-bottom: 2px solid var(--dry-clay);
  background: transparent;
  outline: none;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--dark-charcoal);
  transition: var(--transition-smooth);
}

.form-control:focus {
  border-bottom-color: var(--gold-yellow);
}

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

.form-control:focus ~ .form-label,
.form-control:not(:placeholder-shown) ~ .form-label {
  top: -1.2rem;
  font-size: 0.8rem;
  color: var(--gold-yellow);
  font-weight: 600;
}

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

/* Custom Sand Dunes Map Component */
.map-container {
  height: 100%;
  min-height: 450px;
  background-color: var(--oak-white);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(168, 162, 158, 0.2);
}

.sand-dunes-map {
  width: 100%;
  height: 100%;
  position: relative;
  background: radial-gradient(circle at 70% 30%, #fef08a 0%, #fef3c7 40%, #fde68a 80%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.dune-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  height: 60%;
  background-color: rgba(245, 245, 244, 0.4);
  border-radius: 40%;
  animation: wave 25s infinite linear;
}

.dune-wave:nth-child(2) {
  bottom: 5%;
  height: 45%;
  background-color: rgba(234, 179, 8, 0.1);
  border-radius: 43%;
  animation: wave 35s infinite linear reverse;
}

.map-marker {
  position: relative;
  z-index: 5;
  background-color: var(--dark-charcoal);
  color: var(--gypsum);
  padding: 1.5rem 2rem;
  border-radius: 4px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  border-left: 4px solid var(--gold-yellow);
  max-width: 300px;
}

.map-marker h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.map-marker p {
  color: var(--oak-white);
  font-size: 0.9rem;
}

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

/* About / Plants dry concept */
.plants-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 4rem;
}

.plant-card {
  background-color: var(--gypsum);
  padding: 3rem 2rem;
  border-radius: 4px;
  border-top: 4px solid var(--gold-yellow);
  box-shadow: 0 10px 30px rgba(0,0,0,0.02);
  transition: var(--transition-smooth);
}

.plant-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.plant-icon {
  font-size: 2.5rem;
  color: var(--dry-clay);
  margin-bottom: 1.5rem;
}

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

.plant-card p {
  font-size: 0.95rem;
}

/* GDPR Cookie Consent Modal */
.cookie-consent {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  max-width: 420px;
  background-color: var(--gypsum);
  border-left: 4px solid var(--gold-yellow);
  padding: 2rem;
  box-shadow: 0 15px 40px rgba(28, 25, 23, 0.15);
  border-radius: 4px;
  z-index: 2000;
  transform: translateY(150%);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.cookie-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
}

.cookie-text {
  font-size: 0.9rem;
  color: #57534E;
}

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

.cookie-btn {
  flex: 1;
  padding: 0.8rem;
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  border: 1px solid var(--dark-charcoal);
  cursor: pointer;
  transition: var(--transition-smooth);
  border-radius: 2px;
}

.cookie-btn-accept {
  background-color: var(--dark-charcoal);
  color: var(--gypsum);
}

.cookie-btn-accept:hover {
  background-color: var(--gold-yellow);
  border-color: var(--gold-yellow);
  color: var(--dark-charcoal);
}

.cookie-btn-decline {
  background-color: transparent;
  color: var(--dark-charcoal);
}

.cookie-btn-decline:hover {
  background-color: var(--soft-clay);
}

/* Legal/Policy Pages */
.legal-container {
  max-width: 800px;
  margin: calc(var(--header-height) + 4rem) auto 6rem;
  padding: 0 5%;
}

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

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

.legal-content h2 {
  font-size: 1.8rem;
  margin-top: 3rem;
  margin-bottom: 1rem;
  color: var(--dark-charcoal);
  border-bottom: 1px solid rgba(168, 162, 158, 0.2);
  padding-bottom: 0.5rem;
}

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

.legal-content ul {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
  font-weight: 300;
  color: #44403C;
}

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

/* Footer */
footer {
  background-color: var(--dark-charcoal);
  color: var(--oak-white);
  padding: 5rem 5% 2rem;
}

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

.footer-col h3 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--gypsum);
}

.footer-col p {
  color: var(--dry-clay);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

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

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

.footer-links a {
  color: var(--dry-clay);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--gold-yellow);
}

.footer-contact-info {
  list-style: none;
  color: var(--dry-clay);
  font-size: 0.95rem;
}

.footer-contact-info li {
  margin-bottom: 0.8rem;
}

.footer-bottom {
  border-top: 1px solid rgba(168, 162, 158, 0.15);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.9rem;
  color: var(--dry-clay);
}

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

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Responsive CSS */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 3rem;
  }
  
  .concept-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .concept-image-wrapper {
    height: 450px;
  }
  
  .plants-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background-color: var(--oak-white);
    flex-direction: column;
    align-items: center;
    padding-top: 3rem;
    transition: var(--transition-smooth);
    z-index: 999;
  }
  
  .nav-links.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 h1 {
    font-size: 2.5rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .footer-legal-links {
    flex-direction: column;
    gap: 0.8rem;
    align-items: center;
  }
  
  .cookie-consent {
    bottom: 1rem;
    right: 1rem;
    left: 1rem;
    max-width: none;
  }
}
