/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #2d3436;
  --secondary: #636e72;
  --accent: #d4af37;
  --background: #fefefe;
  --text-light: #8b95a1;
  --natural: #6b5b73;
  --white: #ffffff;
  --shadow: rgba(45, 52, 54, 0.1);
  --shadow-heavy: rgba(45, 52, 54, 0.15);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --gradient-primary: linear-gradient(
    135deg,
    var(--background) 0%,
    #f8f9fa 100%
  );
  --gradient-accent: linear-gradient(
    135deg,
    var(--natural) 0%,
    var(--accent) 100%
  );
  --agricultural-green: #16a34a;
  --agricultural-blue: #2563eb;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--primary);
  background-color: var(--background);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Typography */
h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  line-height: 1.2;
}

.highlight-number {
  color: var(--accent);
  font-weight: 600;
  font-family: "Playfair Display", serif;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(254, 254, 254, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(45, 52, 54, 0.1);
  z-index: 1000;
  transition: var(--transition);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-image {
  height: 50px;
  width: auto;
  transition: var(--transition);
}

.logo-image:hover {
  transform: scale(1.05);
}

.nav-logo h2 {
  display: none;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: var(--secondary);
  font-weight: 400;
  transition: var(--transition);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link:hover {
  color: var(--agricultural-green);
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--agricultural-green);
  transition: var(--transition);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: var(--primary);
  margin: 3px 0;
  transition: var(--transition);
  border-radius: 2px;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: var(--gradient-primary);
  padding-top: 80px;
  overflow: hidden;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  animation: fadeInUp 1s ease-out;
}

.hero-title {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
  line-height: 1.1;
  font-weight: 500;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: var(--secondary);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.cta-primary {
  background: var(--agricultural-green);
  color: var(--white);
  border: none;
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  font-family: "Inter", sans-serif;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(22, 163, 74, 0.3);
}

.cta-primary:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px var(--shadow-heavy);
}

.hero-visual {
  position: relative;
  height: 500px;
  animation: fadeInRight 1s ease-out 0.3s both;
}

.hero-image {
  width: 100%;
  height: 100%;
  position: relative;
  background: var(--gradient-accent);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 50px var(--shadow-heavy);
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.product-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--agricultural-green);
  color: var(--white);
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 5px 15px rgba(22, 163, 74, 0.3);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  cursor: pointer;
}

.scroll-arrow {
  width: 24px;
  height: 24px;
  border: 2px solid var(--agricultural-green);
  border-top: none;
  border-right: none;
  transform: rotate(-45deg);
}

/* Story Section */
.story {
  padding: 7rem 0;
  background: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-header h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
}

.story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.story-block {
  margin-bottom: 3.5rem;
  padding: 1.5rem 0;
}

.story-block h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.story-block p {
  color: var(--secondary);
  line-height: 1.8;
  font-size: 1.05rem;
}

.story-visual {
  height: 500px;
}

.story-image-container {
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 40px var(--shadow);
}

.story-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Craft Section (Solution) */
.craft {
  padding: 7rem 0;
  background: var(--gradient-primary);
  position: relative;
}

.craft .container {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.craft-header {
  text-align: center;
  margin-bottom: 3rem;
}

.craft-header h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.craft-header p {
  font-size: 1.2rem;
  color: var(--text-light);
}

.craft-content-wrapper {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: center;
}

.craft-process {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.process-step {
  text-align: center;
  padding: 1.8rem 1.5rem;
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 8px 30px var(--shadow);
  transition: var(--transition);
  position: relative;
}

.process-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 50px var(--shadow-heavy);
}

.step-number {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: var(--agricultural-green);
  margin-bottom: 1rem;
  font-weight: 700;
  position: relative;
}

.step-number::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 35px;
  height: 2px;
  background: var(--agricultural-green);
  border-radius: 2px;
}

.step-content h4 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  color: var(--primary);
}

.step-content p {
  color: var(--secondary);
  line-height: 1.6;
  font-size: 0.95rem;
}

.craft-image {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 500px;
}

.craft-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 15px 40px var(--shadow);
}

/* Benefits Section (Meditation equivalent) */
.meditation {
  padding: 7rem 0;
  background: var(--white);
}

.meditation-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.meditation-text h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.meditation-intro {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 3rem;
  line-height: 1.6;
}

.benefits {
  display: grid;
  gap: 2.5rem;
}

.benefit {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(248, 249, 250, 0.8);
  border-radius: 12px;
  transition: var(--transition);
}

.benefit:hover {
  background: rgba(22, 163, 74, 0.1);
  transform: translateX(10px);
}

.benefit-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 60px;
  height: 60px;
}

.number-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--agricultural-green) 0%,
    #22c55e 100%
  );
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  box-shadow: 0 4px 15px rgba(22, 163, 74, 0.3);
  transition: var(--transition);
}

.benefit:hover .number-icon {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(22, 163, 74, 0.4);
}

.benefit-content h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.benefit-content p {
  color: var(--secondary);
  line-height: 1.6;
  font-size: 1.05rem;
}

.meditation-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 500px;
  position: relative;
}

.meditation-image-container {
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}

.meditation-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Product Section */
.product {
  padding: 7rem 0;
  background: var(--gradient-primary);
}

.product-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "header images"
    "info images";
  gap: 4rem;
  align-items: start;
}

.product-header {
  grid-area: header;
}

.product-images {
  grid-area: images;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-info {
  grid-area: info;
}

.product-header h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.product-story {
  font-size: 1.2rem;
  color: var(--secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.main-product-image {
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 60px var(--shadow-heavy);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-features {
  margin-bottom: 3rem;
}

.feature {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(45, 52, 54, 0.1);
  transition: var(--transition);
}

.feature:hover {
  background: rgba(248, 249, 250, 0.5);
  padding-left: 1rem;
  margin: 0 -1rem;
  border-radius: 8px;
}

.sacred-feature {
  background: linear-gradient(
    135deg,
    rgba(22, 163, 74, 0.1) 0%,
    transparent 100%
  );
  border-left: 4px solid var(--agricultural-green);
  padding-left: 1rem;
  margin-bottom: 0.5rem;
  border-radius: 8px;
}

.feature-label {
  font-weight: 600;
  color: var(--primary);
  font-size: 1.05rem;
}

.feature-value {
  color: var(--secondary);
  font-size: 1.05rem;
}

.solution-highlight {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 2rem;
  border-radius: 15px;
  margin: 3rem 0;
  border-left: 5px solid var(--agricultural-green);
  box-shadow: 0 5px 20px var(--shadow);
}

.solution-highlight h4 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.solution-highlight p {
  color: var(--secondary);
  line-height: 1.7;
  margin: 0;
  font-size: 1.05rem;
}

.product-price {
  margin-bottom: 3rem;
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 5px 20px var(--shadow);
}

.price {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--agricultural-green);
  display: block;
  margin-bottom: 0.5rem;
}

.price-note {
  color: var(--text-light);
  font-size: 1rem;
  font-style: italic;
}

.purchase-btn {
  width: 100%;
  background: var(--agricultural-green);
  color: var(--white);
  border: none;
  padding: 1.5rem 2rem;
  font-size: 1.2rem;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  font-family: "Inter", sans-serif;
  font-weight: 600;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 25px rgba(22, 163, 74, 0.3);
}

.purchase-btn:hover {
  background: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px var(--shadow-heavy);
}

.guarantee {
  font-size: 1rem;
  color: var(--text-light);
  background: rgba(248, 249, 250, 0.8);
  padding: 1.5rem;
  border-radius: 10px;
}

.guarantee p {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
}

.guarantee p:last-child {
  margin-bottom: 0;
}

/* Footer */
.footer {
  background: var(--primary);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h3 {
  margin-bottom: 0.5rem;
  color: var(--agricultural-green);
  font-size: 1.8rem;
}

.footer-logo {
  margin-bottom: 1rem;
}

.footer-logo-image {
  height: 35px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-tagline {
  color: var(--agricultural-green);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  font-style: italic;
}

.footer-section h4 {
  margin-bottom: 1.5rem;
  color: var(--agricultural-green);
  font-size: 1.2rem;
}

.footer-section p {
  color: var(--text-light);
  line-height: 1.7;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.8rem;
}

.footer-section ul li a {
  color: var(--text-light);
  text-decoration: none;
  transition: var(--transition);
  padding: 0.2rem 0;
}

.footer-section ul li a:hover {
  color: var(--agricultural-green);
  padding-left: 0.5rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 3rem;
  border-top: 1px solid var(--secondary);
  color: var(--text-light);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-15px);
  }
  60% {
    transform: translateX(-50%) translateY(-8px);
  }
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
  .craft-content-wrapper {
    grid-template-columns: 1.3fr 1fr;
    gap: 3rem;
  }

  .craft-process {
    gap: 1.2rem;
  }

  .process-step {
    padding: 1.5rem 1.2rem;
  }
}

@media screen and (max-width: 1024px) {
  .hero-container,
  .story-content,
  .meditation-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-title {
    font-size: 3.5rem;
  }

  .craft-content-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .craft-process {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .craft-image {
    height: 350px;
  }

  .product-showcase {
    display: flex;
    flex-direction: column;
    grid-template-areas: none;
  }

  .product-header {
    order: 1;
    text-align: center;
    margin-bottom: 2rem;
  }

  .product-images {
    order: 2;
    margin-bottom: 2rem;
    height: 350px;
  }

  .product-info {
    order: 3;
  }

  .section-header h2,
  .craft-header h2,
  .meditation-text h2,
  .product-header h2 {
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 80px;
    flex-direction: column;
    background: var(--white);
    width: 100%;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 10px 27px var(--shadow);
    padding: 2rem 0;
    z-index: 999;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .nav-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .container {
    padding: 0 1.5rem;
  }

  .nav-container {
    padding: 1rem 1.5rem;
  }

  .section-header h2,
  .craft-header h2,
  .meditation-text h2,
  .product-header h2 {
    font-size: 2.2rem;
  }

  .craft-process {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .process-step {
    padding: 2rem 1.5rem;
  }

  .step-number {
    font-size: 2.8rem;
  }

  .step-content h4 {
    font-size: 1.3rem;
  }

  .step-content p {
    font-size: 1rem;
  }

  .craft-image {
    height: 300px;
  }

  .story,
  .craft,
  .meditation,
  .product {
    padding: 5rem 0;
  }

  .logo-image {
    height: 35px;
  }

  .footer-logo-image {
    height: 30px;
  }
}

@media screen and (max-width: 480px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .cta-primary,
  .purchase-btn {
    padding: 1.2rem 2rem;
    font-size: 1rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .step-number {
    font-size: 2.5rem;
  }

  .price {
    font-size: 2rem;
  }

  .logo-image {
    height: 30px;
  }

  .product-header h2 {
    font-size: 2.2rem;
  }

  .product-story {
    font-size: 1rem;
  }
}

/* Loading and performance optimizations */
.loaded body {
  opacity: 1;
}

/* Image placeholder styles */
.image-placeholder {
  background: linear-gradient(135deg, var(--natural) 0%, var(--accent) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  border-radius: inherit;
}

/* Scroll animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.animate-on-scroll.animate {
  opacity: 1;
  transform: translateY(0);
}

.animate-delay-1 {
  transition-delay: 0.2s;
}

.animate-delay-2 {
  transition-delay: 0.4s;
}

.animate-delay-3 {
  transition-delay: 0.6s;
}
