/* Base Reset and Theme */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --warm-base: #f8f5f2;
  --warm-tan: #f0ebe6;
  --earth-text: #5d4e37;
  --earth-dark: #4a3c28;
  --accent: #8b6f47;
  --accent-dark: #6b5135;
  --soft-bg: rgba(248, 245, 242, 0.85);
  --light-shadow: rgba(139, 111, 71, 0.08);
  --medium-shadow: rgba(139, 111, 71, 0.12);
  --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  
  /* Social media brand colors */
  --instagram-gradient: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4);
  --twitter-color: #1da1f2;
  --youtube-color: #ff0000;
}

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, var(--warm-base) 0%, var(--warm-tan) 100%);
  color: var(--earth-text);
  line-height: 1.7;
  overflow-x: hidden;
  letter-spacing: -0.01em;
}

/* Screen reader only content */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Containers and Sections */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 5rem 0;
}

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

.section-header h2 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  color: var(--earth-dark);
  font-weight: 500;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-header p {
  color: var(--earth-text);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.9;
}

/* Header */
.header {
  position: fixed;
  width: 100%;
  background: var(--soft-bg);
  backdrop-filter: blur(20px);
  z-index: 1000;
  border-bottom: 1px solid rgba(214, 207, 199, 0.6);
  transition: var(--transition);
}

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

.logo h1 {
  color: var(--earth-dark);
  font-size: 1.625rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

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

.nav-menu a {
  text-decoration: none;
  color: var(--earth-text);
  position: relative;
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--accent);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

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

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

.hamburger {
  width: 24px;
  height: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger span {
  height: 2px;
  background: var(--earth-text);
  border-radius: 1px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Sidebar */
.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(74, 60, 40, 0.4);
  width: 100%;
  height: 100%;
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-sidebar {
  position: fixed;
  top: 0;
  left: -100%;
  width: 280px;
  height: 100vh;
  background: var(--soft-bg);
  backdrop-filter: blur(20px);
  padding: 2rem;
  transition: var(--transition);
  z-index: 9999;
  box-shadow: 8px 0 30px rgba(0, 0, 0, 0.1);
}

.mobile-sidebar.open {
  left: 0;
}

.sidebar-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  float: right;
  cursor: pointer;
  color: var(--earth-text);
  transition: var(--transition);
}

.sidebar-close:hover {
  color: var(--accent);
}

.sidebar-nav {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.sidebar-nav a {
  text-decoration: none;
  color: var(--earth-text);
  font-weight: 500;
  font-size: 1.1rem;
  transition: var(--transition);
  padding: 0.5rem 0;
  border-bottom: 1px solid transparent;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* Hero */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 7rem 1rem 5rem;
  min-height: 90vh;
  justify-content: center;
}

.scroll-wrapper {
  display: flex;
  overflow-x: auto;
  width: 100%;
  padding: 1rem 0 2rem;
  margin-bottom: 2.5rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.scroll-wrapper::-webkit-scrollbar {
  display: none;
}

.horizontal-scroll {
  display: flex;
  gap: 2rem;
  padding: 0 1rem;
  min-width: max-content;
  justify-content: center;
}

.horizontal-scroll img {
  width: 380px;
  height: 240px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 10px 30px var(--light-shadow);
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.horizontal-scroll img:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 40px var(--medium-shadow);
}

/* Hero Text */
.hero-content {
  text-align: center;
  max-width: 650px;
}

.hero-badge {
  display: inline-block;
  background: rgba(233, 222, 209, 0.8);
  padding: 0.6rem 1.25rem;
  border-radius: 999px;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  backdrop-filter: blur(10px);
}

.hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  color: var(--earth-dark);
  margin-bottom: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.hero-content p {
  color: var(--earth-text);
  margin-bottom: 2.5rem;
  font-size: 1.125rem;
  opacity: 0.9;
  line-height: 1.6;
}

/* Buttons */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: white;
  padding: 0.875rem 2rem;
  border-radius: 999px;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  box-shadow: 0 4px 15px rgba(139, 111, 71, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  box-shadow: 0 6px 20px rgba(139, 111, 71, 0.4);
}

/* About Section */
.about-section {
  background: rgba(255, 255, 255, 0.4);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.about-image {
  aspect-ratio: 4/3;
  border-radius: 20px;
  overflow: hidden;
}

.image-placeholder {
  background: linear-gradient(135deg, var(--warm-tan), #e8e0d6);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-weight: 500;
  font-size: 1.1rem;
}

/* Social Media Section */
.social-media-section {
  margin-top: 4rem;
  text-align: center;
}

.social-heading {
  color: var(--earth-dark);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.social-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.8);
  padding: 1.5rem;
  border-radius: 16px;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 2px 12px var(--light-shadow);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(214, 207, 199, 0.3);
}

.social-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 25px var(--medium-shadow);
}

.social-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}

.social-content {
  text-align: left;
  flex: 1;
}

.social-content h4 {
  color: var(--earth-dark);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.social-content p {
  color: var(--earth-text);
  font-size: 0.9rem;
  opacity: 0.8;
  margin: 0;
}

/* Instagram Card */
.instagram-card .social-icon {
  background: var(--instagram-gradient);
  color: white;
}

.instagram-card:hover .social-icon {
  transform: scale(1.1);
}

/* Twitter Card */
.twitter-card .social-icon {
  background: var(--twitter-color);
  color: white;
}

.twitter-card:hover .social-icon {
  transform: scale(1.1);
  background: #1991db;
}

/* YouTube Card */
.youtube-card .social-icon {
  background: var(--youtube-color);
  color: white;
}

.youtube-card:hover .social-icon {
  transform: scale(1.1);
  background: #e60000;
}

/* Collection */
.collection-section {
  padding: 6rem 0;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.product-card {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 20px var(--light-shadow);
  transition: var(--transition);
  text-align: center;
  backdrop-filter: blur(10px);
}

.product-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 8px 30px var(--medium-shadow);
}

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

.product-info {
  padding: 1.5rem;
}

.product-info h3 {
  margin-bottom: 0.5rem;
  color: var(--earth-dark);
  font-weight: 500;
  font-size: 1.1rem;
}

.product-price {
  color: var(--accent);
  font-weight: 600;
  font-size: 1.125rem;
}

/* Process Section */
.process-section {
  background: rgba(255, 255, 255, 0.3);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  text-align: left;
}

.step-number {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.25rem;
}

.step-content h3 {
  color: var(--earth-dark);
  margin-bottom: 0.75rem;
  font-weight: 500;
  font-size: 1.2rem;
}

.step-content p {
  color: var(--earth-text);
  opacity: 0.9;
  line-height: 1.6;
}

/* Contact Section */
.contact-section {
  padding: 6rem 0;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 2rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

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

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-item strong {
  color: var(--earth-dark);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-item span {
  color: var(--earth-text);
  font-size: 1.125rem;
}

.contact-form {
  background: rgba(255, 255, 255, 0.8);
  padding: 2.5rem;
  border-radius: 24px;
  box-shadow: 0 6px 25px var(--light-shadow);
  backdrop-filter: blur(15px);
}

.form-group {
  margin-bottom: 1.75rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1.125rem 1.25rem;
  border-radius: 12px;
  border: 1px solid rgba(214, 207, 199, 0.6);
  background: rgba(248, 245, 242, 0.7);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.9);
}

.form-group textarea {
  min-height: 120px;
}

/* Footer */
.footer {
  background: rgba(243, 238, 233, 0.8);
  padding: 4rem 0 2rem;
  margin-top: 5rem;
  backdrop-filter: blur(10px);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: start;
  margin-bottom: 2rem;
}

.footer-brand h3 {
  color: var(--accent);
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.footer-brand p {
  color: var(--earth-text);
  opacity: 0.8;
  font-style: italic;
}

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

.footer-column h4 {
  color: var(--earth-dark);
  margin-bottom: 1rem;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-column a {
  color: var(--earth-text);
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: var(--transition);
  opacity: 0.8;
}

.footer-column a:hover {
  color: var(--accent);
  opacity: 1;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(214, 207, 199, 0.4);
}

.footer-bottom p {
  color: var(--earth-text);
  opacity: 0.7;
  font-size: 0.9rem;
}

/* Scroll-to-top */
.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: white;
  border: none;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  font-size: 1.5rem;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(139, 111, 71, 0.3);
  z-index: 1000;
}

.scroll-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(139, 111, 71, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .nav-container {
    padding: 1rem 1.5rem;
  }
  
  .container {
    padding: 0 1rem;
  }
  
  section {
    padding: 4rem 0;
  }
  
  .hero {
    padding: 6rem 1rem 4rem;
    min-height: 80vh;
  }
  
  .horizontal-scroll {
    justify-content: flex-start;
  }
  
  .horizontal-scroll img {
    width: 320px;
    height: 200px;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  /* Social Media Mobile Styles */
  .social-cards {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .social-card {
    padding: 1.25rem;
  }
  
  .social-icon {
    width: 44px;
    height: 44px;
  }
  
  .social-content h4 {
    font-size: 1rem;
  }
  
  .social-content p {
    font-size: 0.85rem;
  }
  
  .collection-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }
  
  .process-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .process-step {
    text-align: center;
    flex-direction: column;
    align-items: center;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .contact-form {
    padding: 2rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .footer-links {
    justify-content: center;
    gap: 2rem;
  }
  
  .scroll-to-top {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
  }
}