/* ===== Design System ===== */
:root {
  --wheat: #c8a45c;
  --dark-green: #2d3a1e;
  --cream: #f5f0e6;
  --earthy: #8b7355;
  --warm-gray: #6b6b5e;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Noto Sans Armenian', sans-serif;
  background-color: var(--cream);
  color: var(--dark-green);
  overflow-x: hidden;
}

body.lang-hy {
  font-family: 'Noto Sans Armenian', 'Inter', sans-serif;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}

/* ===== Custom Cursor ===== */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  background: var(--wheat);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.8;
  mix-blend-mode: difference;
  transition: width 0.3s, height 0.3s, opacity 0.3s;
  transform: translate(-50%, -50%);
}

.custom-cursor.hover {
  width: 40px;
  height: 40px;
  opacity: 0.3;
}

@media (pointer: coarse) {
  .custom-cursor { display: none; }
}

/* ===== Navigation ===== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: 72px;
  background: transparent;
  backdrop-filter: none;
  transition: background 0.5s, backdrop-filter 0.5s;
}

#navbar.scrolled {
  background: rgba(245, 240, 230, 0.92);
  backdrop-filter: blur(20px);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-family: 'Inter', 'Noto Sans Armenian', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--dark-green);
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
}

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

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

.nav-links a:hover {
  color: var(--wheat);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lang-switcher {
  display: flex;
  gap: 2px;
}

.lang-btn {
  padding: 4px 8px;
  border: none;
  background: transparent;
  color: var(--dark-green);
  font-size: 0.7rem;
  font-weight: 500;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.2s;
  font-family: 'Inter', 'Noto Sans Armenian', sans-serif;
}

.lang-btn.active {
  background: var(--dark-green);
  color: var(--cream);
}

.nav-cta {
  display: inline-block;
  padding: 10px 28px;
  background: linear-gradient(135deg, #c8a45c 0%, #d4b76a 50%, #b8943d 100%);
  color: var(--dark-green);
  font-size: 0.75rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 50px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.nav-cta:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 25px rgba(200, 164, 92, 0.3);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark-green);
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 72px;
  left: 0;
  width: 100%;
  background: rgba(245, 240, 230, 0.98);
  backdrop-filter: blur(20px);
  padding: 2rem;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  color: var(--dark-green);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.mobile-lang {
  display: flex;
  gap: 8px;
  margin-bottom: 1rem;
}

.mobile-cta {
  display: inline-block;
  padding: 14px 28px;
  background: linear-gradient(135deg, #c8a45c 0%, #d4b76a 50%, #b8943d 100%);
  color: var(--dark-green);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 50px;
  text-align: center;
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .nav-links, .nav-cta, .lang-switcher { display: none; }
  .mobile-menu-btn { display: flex; }
  .nav-logo img { height: 40px; }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

#wheat-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: block;
}

.hero-bg-fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, #2d3a1e 0%, #1a2510 50%, #3d4a2e 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 1.5rem;
}

.hero-title {
  font-family: 'Playfair Display', 'Noto Sans Armenian', serif;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.lang-hy .hero-title {
  font-family: 'Noto Sans Armenian', 'Playfair Display', serif;
}

.hero-line {
  display: block;
}

.hero-subtitle {
  font-family: 'Inter', 'Noto Sans Armenian', sans-serif;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 14px 36px;
  background: linear-gradient(135deg, #c8a45c 0%, #d4b76a 50%, #b8943d 100%);
  color: var(--dark-green);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 50px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.hero-cta:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 30px rgba(200, 164, 92, 0.4);
}

.hero-cta svg {
  animation: bounce 1.5s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

.hero-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 128px;
  background: linear-gradient(to top, var(--cream), transparent);
  z-index: 20;
  pointer-events: none;
}

/* ===== Sections Common ===== */
.section-label {
  display: block;
  font-family: 'Inter', 'Noto Sans Armenian', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--wheat);
  margin-bottom: 1rem;
}

.section-label.gold {
  color: var(--wheat);
}

.section-label.light {
  color: var(--cream);
}

.section-label.dark {
  color: var(--dark-green);
  opacity: 0.7;
}

.section-title {
  font-family: 'Playfair Display', 'Noto Sans Armenian', serif;
  font-size: clamp(1.75rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--dark-green);
  margin-bottom: 1.5rem;
}

.lang-hy .section-title {
  font-family: 'Noto Sans Armenian', 'Playfair Display', serif;
}

.section-title.light {
  color: var(--cream);
}

/* ===== About ===== */
.about {
  padding: clamp(80px, 10vw, 160px) 0;
  background: var(--cream);
}

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

.about-text {
  order: 1;
}

.about-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
  color: var(--warm-gray);
  line-height: 1.7;
}

.about-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.stat {
  text-align: center;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--wheat);
  display: block;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--earthy);
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--wheat);
  opacity: 0.3;
}

.about-image-wrapper {
  position: relative;
  order: 2;
}

.about-image {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200,164,92,0.15) 0%, transparent 60%);
}

.about-badge {
  position: absolute;
  bottom: -1rem;
  left: -1rem;
  background: var(--dark-green);
  padding: 1rem 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.badge-top {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--wheat);
  margin-bottom: 0.25rem;
}

.badge-bottom {
  display: block;
  font-size: 0.8rem;
  color: var(--cream);
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about-text { order: 2; }
  .about-image-wrapper { order: 1; }
  .about-badge {
    bottom: -0.5rem;
    left: -0.5rem;
  }
}

/* ===== Products ===== */
.products {
  padding: clamp(80px, 10vw, 160px) 0;
  background: var(--dark-green);
  overflow: hidden;
}

.products .container {
  text-align: center;
}

.products-subtitle {
  font-family: 'Inter', 'Noto Sans Armenian', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  color: #b0a88c;
  max-width: 500px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

.products-scroll {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding-bottom: 1.5rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--wheat) transparent;
}

.products-scroll::-webkit-scrollbar {
  height: 4px;
}

.products-scroll::-webkit-scrollbar-thumb {
  background: var(--wheat);
  border-radius: 2px;
}

.product-card {
  flex-shrink: 0;
  width: 300px;
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(45, 58, 30, 0.08);
  transition: transform 0.4s, box-shadow 0.4s;
  scroll-snap-align: start;
}

.product-card:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 30px rgba(45, 58, 30, 0.15);
}

.product-image {
  height: 240px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

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

.product-info {
  padding: 1.25rem;
  text-align: left;
}

.product-info h3 {
  font-family: 'Inter', 'Noto Sans Armenian', sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--dark-green);
  margin-bottom: 0.5rem;
}

.product-info p {
  font-size: 0.875rem;
  color: var(--warm-gray);
  line-height: 1.6;
}

.scroll-hint {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  color: #8b7355;
  font-size: 0.75rem;
}

@media (max-width: 768px) {
  .scroll-hint { display: flex; }
  .product-card { width: 280px; }
}

/* ===== Process ===== */
.process {
  padding: clamp(80px, 10vw, 160px) 0;
  background: var(--cream);
}

.process .container {
  text-align: center;
}

.process-timeline {
  position: relative;
  margin-top: 4rem;
}

.process-line {
  position: absolute;
  top: 100px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--wheat), #d4b76a, var(--wheat));
  transform-origin: left;
  transform: scaleX(0);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}

.process-step {
  text-align: left;
}

.process-image {
  position: relative;
  height: 200px;
  border-radius: 0.75rem;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.process-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(45,58,30,0.3), transparent);
}

.process-num {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 40px;
  height: 40px;
  background: var(--wheat);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--dark-green);
}

.process-step h3 {
  font-family: 'Inter', 'Noto Sans Armenian', sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--dark-green);
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.875rem;
  color: var(--warm-gray);
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-line { display: none; }
}

@media (max-width: 640px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Retailers ===== */
.retailers {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--wheat);
}

.retailers .container {
  text-align: center;
}

.retailers .section-title {
  color: var(--dark-green);
  margin-bottom: 3rem;
}

.retailers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.retailer-card {
  padding: 2.5rem 1.5rem;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid var(--dark-green);
  border-radius: 1rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark-green);
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
}

.retailer-card:hover {
  background: var(--dark-green);
  color: var(--cream);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(45, 58, 30, 0.3);
}

.retailers-subtext {
  text-align: center;
  margin-top: 2rem;
  font-size: 1.5rem;
  color: var(--dark-green);
  font-weight: 500;
}

.retailers .section-label {
  font-size: 2rem;
  font-weight: 600;
}

@media (max-width: 768px) {
  .retailers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== Footer ===== */
.footer {
  background: linear-gradient(180deg, #2d3a1e 0%, #1a2510 100%);
  padding: clamp(60px, 8vw, 100px) 0 40px;
}

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

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--cream);
  margin-bottom: 1rem;
}

.footer-desc {
  font-size: 0.875rem;
  color: #b0a88c;
  line-height: 1.7;
}

.footer-col h4 {
  font-family: 'Inter', 'Noto Sans Armenian', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--wheat);
  margin-bottom: 1rem;
}

.footer-col address {
  font-style: normal;
  font-size: 0.875rem;
  color: #b0a88c;
  line-height: 1.8;
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-contacts a {
  font-size: 0.875rem;
  color: #b0a88c;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-contacts a:hover {
  color: var(--wheat);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(200, 164, 92, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  transition: all 0.3s;
}

.social-links a:hover {
  background: var(--wheat);
  color: var(--dark-green);
  transform: scale(1.1);
}

.social-links svg {
  width: 20px;
  height: 20px;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(200, 164, 92, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: var(--warm-gray);
}

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

.footer-links a {
  font-size: 0.75rem;
  color: var(--warm-gray);
  text-decoration: none;
  transition: color 0.3s;
}

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

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* ===== Animations ===== */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
}


/* Android/mobile improvements */
html,body{width:100%;overflow-x:hidden!important;}
.hero{min-height:100svh;height:auto;}
img{max-width:100%;height:auto;display:block;}
.container{width:100%;}
@media(max-width:768px){.container{padding:0 16px!important;} .hero-content{padding:0 16px;} h1,h2,h3{word-wrap:break-word;} *{max-width:100vw;} }
