/* ==========================================================================
   Atsede Andualem Export - Production Style Sheet
   ========================================================================== */

/* --- Design Tokens --- */
:root {
  --green: #063B2A;
  --green-dark: #10251D;
  --green-light: #E6F0EC;
  --gold: #D9A928;
  --gold-dark: #B8921F;
  --gold-light: #FBF5E7;
  --cream: #F5F0E6;
  --cream-dark: #F4F4F1;
  --soft-gray: #F4F4F1;
  --white: #FFFFFF;

  --text-dark: #1B2721;
  --text-muted: #5C6E68;
  --text-light: #FFFFFF;
  --text-light-muted: #B3C2BD;

  --font-main: 'Manrope', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-display: 'Barlow Condensed', sans-serif;

  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.12);

  --max-width: 1200px;
  --header-height: 80px;
  --header-height-scrolled: 64px;
  --duration-fast: 150ms;
  --duration-base: 300ms;
  --duration-slow: 600ms;
  --ease-out: cubic-bezier(0.25, 0.8, 0.25, 1);
  --ease-in-out: cubic-bezier(0.645, 0.045, 0.355, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  font-size: 14px;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--gold);
  transform-origin: left;
  transform: scaleX(0);
  z-index: 1001;
  transition: transform 0.1s ease-out, opacity 0.3s ease;
}

.scroll-progress.hidden {
  opacity: 0;
}

body {
  font-family: var(--font-main);
  background-color: var(--cream);
  color: var(--text-dark);
  font-size: 14px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
}

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

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* --- Reusable Components --- */
.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  overflow: hidden;
  transform: translateZ(0);
}

.button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
  z-index: 1;
  pointer-events: none;
}

.button:hover::before {
  left: 100%;
}

.button .button-content {
  position: relative;
  z-index: 2;
}

.button.gold {
  background-color: var(--gold);
  color: var(--green-dark);
}

.button.gold:hover {
  background-color: var(--gold-dark);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(217, 169, 40, 0.35);
  transform: translateY(-3px) scale(1.02);
}

.button.green {
  background-color: var(--green);
  color: var(--white);
}

.button.green:hover {
  background-color: var(--green-dark);
  box-shadow: 0 6px 20px rgba(6, 59, 42, 0.35);
  transform: translateY(-3px) scale(1.02);
}

.button.outline {
  border-color: var(--white);
  color: var(--white);
  background-color: transparent;
}

.button.outline:hover {
  background-color: var(--white);
  color: var(--green-dark);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.button:active {
  transform: translateY(0) scale(0.98);
}

.button.small {
  padding: 8px 16px;
  font-size: 10px;
}

.underline {
  display: block;
  width: 50px;
  height: 3px;
  background-color: var(--gold);
  margin-top: 8px;
}

.section {
  padding: 80px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 32px;
  color: var(--green);
  position: relative;
  display: inline-block;
}

.section-title .underline {
  margin: 8px auto 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  transition: width 0.3s var(--ease-out), opacity 0.3s var(--ease-out);
}

.section-title:hover .underline {
  width: 60px;
  opacity: 0.8;
}

/* --- Header & Navigation --- */
.site-header {
  height: var(--header-height);
  background-color: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 5vw, 60px);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-md);
  transition: background-color 0.3s var(--ease-out), height 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), padding 0.3s var(--ease-out), backdrop-filter 0.3s var(--ease-out);
}

.site-header.scrolled {
  background-color: var(--green-dark);
  height: var(--header-height-scrolled);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-svg {
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--white);
}

.brand-sub {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 3px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 48px;
}

.nav-link {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.8);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 0;
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--gold);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--gold);
  transition: width 0.3s var(--ease-out);
}

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

/* Show only one highlighted navigation item at a time. */
@media (hover: hover) {
  .nav-menu:hover .nav-link.active:not(:hover) {
    color: rgba(255, 255, 255, 0.8);
  }

  .nav-menu:hover .nav-link.active:not(:hover)::after {
    width: 0;
  }
}

.dropdown-chevron {
  opacity: 0.7;
}

.menu-button {
  display: none;
  background: transparent;
  border: none;
  color: var(--gold);
  font-size: 26px;
  cursor: pointer;
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 650px;
  background: linear-gradient(90deg, rgba(6, 59, 42, 0.85) 0%, rgba(6, 59, 42, 0.7) 45%, rgba(6, 59, 42, 0.3) 100%), url('hero_banner_grains.jpg') center/cover no-repeat;
  background-position: center calc(50% + var(--hero-parallax-y, 0px));
  background-size: cover;
  display: flex;
  align-items: center;
  color: var(--white);
  padding: 80px 24px;
  clear: both;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  opacity: 0.6;
}

.hero-container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 640px;
}

.hero h1 {
  font-size: 52px;
  line-height: 1.05;
  margin-bottom: 20px;
  font-weight: 800;
}

.hero h1 .highlight {
  color: var(--gold);
}

.hero p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
  max-width: 500px;
  font-weight: 500;
  line-height: 1.6;
}

.hero .actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Page load sequence animations */
body.loading .site-header,
body.loading .hero h1,
body.loading .hero p,
body.loading .hero .actions,
body.loading .hero .actions .button {
  opacity: 0;
}

body.loading .hero h1,
body.loading .hero p,
body.loading .hero .actions {
  transform: translateY(30px);
}

body.loading .hero .actions .button {
  transform: translateY(10px);
}

body:not(.loading) .site-header {
  animation: slideDown 0.5s var(--ease-out) 0.1s forwards;
}

body:not(.loading) .hero h1 {
  animation: fadeSlideUp 0.7s var(--ease-out) 0.35s forwards;
}

body:not(.loading) .hero p {
  animation: fadeSlideUp 0.7s var(--ease-out) 0.5s forwards;
}

body:not(.loading) .hero .actions {
  animation: fadeSlideUp 0.7s var(--ease-out) 0.6s forwards;
}

body:not(.loading) .hero .actions .button:nth-child(1) {
  animation: fadeSlideUp 0.5s var(--ease-out) 0.75s forwards;
}

body:not(.loading) .hero .actions .button:nth-child(2) {
  animation: fadeSlideUp 0.5s var(--ease-out) 0.85s forwards;
}

/* --- About Us Section --- */
.about {
  background-color: var(--cream);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.3;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}

.about-copy {
  position: relative;
}

.about-copy h2 {
  font-size: 32px;
  color: var(--green);
  position: relative;
  margin-bottom: 20px;
}

.about-copy p {
  color: var(--text-muted);
  margin-bottom: 28px;
  font-size: 15px;
  line-height: 1.7;
}

.about-image-wrapper {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image-wrapper img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.about-image-wrapper:hover img {
  transform: scale(1.03);
}

.about-copy .underline {
  transition: width 0.3s var(--ease-out);
}

.about-copy:hover .underline {
  width: 60px;
}

/* --- Stats Banner --- */
.stats {
  background-color: var(--green);
  color: var(--white);
  padding: 40px 24px;
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.02) 50%, transparent 100%);
  pointer-events: none;
}

.stats-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

.stat-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.stat-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.stat-item:nth-child(1) { transition-delay: 0.1s; }
.stat-item:nth-child(2) { transition-delay: 0.2s; }
.stat-item:nth-child(3) { transition-delay: 0.3s; }
.stat-item:nth-child(4) { transition-delay: 0.4s; }

.stat-item:last-child {
  border-right: none;
}

.stat-icon-wrapper {
  color: var(--gold);
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}

.stat-item.visible .stat-icon-wrapper {
  opacity: 1;
  transform: scale(1);
}

.stat-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.stat-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light-muted);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}

.stat-item.visible .stat-number {
  opacity: 1;
  transform: translateY(0);
}

.stat-item:nth-child(1) .stat-number { transition-delay: 0.15s; }
.stat-item:nth-child(2) .stat-number { transition-delay: 0.25s; }
.stat-item:nth-child(3) .stat-number { transition-delay: 0.35s; }
.stat-item:nth-child(4) .stat-number { transition-delay: 0.45s; }

/* --- Our Products Section --- */
.products {
  background-color: var(--white);
  border-top: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
  position: relative;
  overflow: hidden;
}

.products::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.4;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.product-card {
  background-color: var(--green);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(30px);
}

.product-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.product-card:nth-child(1) { transition-delay: 0.1s; }
.product-card:nth-child(2) { transition-delay: 0.2s; }
.product-card:nth-child(3) { transition-delay: 0.3s; }
.product-card:nth-child(4) { transition-delay: 0.4s; }
.product-card:nth-child(5) { transition-delay: 0.5s; }
.product-card:nth-child(6) { transition-delay: 0.6s; }

.product-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

.product-image-container {
  height: 200px;
  position: relative;
  overflow: hidden;
}

.product-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

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

.curve-divider {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 25px;
  z-index: 2;
}

.curve-divider svg {
  display: block;
  width: 100%;
  height: 100%;
}

.product-info {
  padding: 0 24px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.icon-badge-wrapper {
  position: absolute;
  top: -24px;
  left: 24px;
  z-index: 3;
}

.round-icon {
  width: 48px;
  height: 48px;
  background-color: var(--gold-light);
  border: 3px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  box-shadow: var(--shadow-md);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.product-card:hover .round-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 20px rgba(217, 169, 40, 0.3);
}

.product-text {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-card h3 {
  color: var(--white);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.product-card p {
  color: var(--text-light-muted);
  font-size: 13px;
  line-height: 1.5;
  flex-grow: 1;
}

.view-details {
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  width: fit-content;
  opacity: 0.7;
  transform: translateX(0);
  transition: all 0.3s var(--ease-out);
}

.product-card:hover .view-details {
  opacity: 1;
  transform: translateX(4px);
}

/* --- Benefits Strip --- */
.benefits-strip {
  background-color: var(--green);
  color: var(--white);
  padding: 50px 24px;
  position: relative;
  overflow: hidden;
}

.benefits-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.4;
}

.benefits-strip::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.4;
}

.benefits-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.benefit-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.benefit-item:nth-child(1) { transition-delay: 0.1s; }
.benefit-item:nth-child(2) { transition-delay: 0.2s; }
.benefit-item:nth-child(3) { transition-delay: 0.3s; }
.benefit-item:nth-child(4) { transition-delay: 0.4s; }

.benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 8px;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}

.benefit-item.visible .benefit-icon {
  opacity: 1;
  transform: scale(1);
}

.benefit-item:nth-child(1) .benefit-icon { transition-delay: 0.15s; }
.benefit-item:nth-child(2) .benefit-icon { transition-delay: 0.25s; }
.benefit-item:nth-child(3) .benefit-icon { transition-delay: 0.35s; }
.benefit-item:nth-child(4) .benefit-icon { transition-delay: 0.45s; }

.benefit-item:hover .benefit-icon {
  transform: scale(1.15) rotate(5deg);
  border-color: var(--gold-dark);
}

.benefit-item h4 {
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.5px;
}

.benefit-item p {
  font-size: 12px;
  color: var(--text-light-muted);
  line-height: 1.5;
}

/* --- Why Choose Us --- */
.why {
  background-color: var(--cream);
  position: relative;
  overflow: hidden;
}

.why::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.3;
}

.reasons {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.reason-col {
  text-align: center;
  padding: 24px 16px;
  background-color: var(--white);
  border-radius: 6px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
  opacity: 0;
  transform: translateY(30px);
}

.reason-col.visible {
  opacity: 1;
  transform: translateY(0);
}

.reason-col:nth-child(1) { transition-delay: 0.1s; }
.reason-col:nth-child(2) { transition-delay: 0.2s; }
.reason-col:nth-child(3) { transition-delay: 0.3s; }
.reason-col:nth-child(4) { transition-delay: 0.4s; }
.reason-col:nth-child(5) { transition-delay: 0.5s; }

.reason-col:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.icon-container {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--green-light);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}

.reason-col.visible .icon-container {
  opacity: 1;
  transform: scale(1);
}

.reason-col:nth-child(1) .icon-container { transition-delay: 0.15s; }
.reason-col:nth-child(2) .icon-container { transition-delay: 0.25s; }
.reason-col:nth-child(3) .icon-container { transition-delay: 0.35s; }
.reason-col:nth-child(4) .icon-container { transition-delay: 0.45s; }
.reason-col:nth-child(5) .icon-container { transition-delay: 0.55s; }

.icon-container.gold {
  background-color: var(--gold-light);
  color: var(--gold-dark);
}

.reason-col h3 {
  font-size: 14px;
  color: var(--green-dark);
  margin-bottom: 8px;
  font-weight: 700;
}

.reason-col p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* --- Testimonial Section --- */
.testimonial-section {
  background-color: var(--white);
  padding: 80px 24px;
  border-bottom: 1px solid var(--cream-dark);
  position: relative;
  overflow: hidden;
}

.testimonial-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.3;
}

.testimonial-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 80px;
}

.testimonial-copy {
  max-width: 540px;
}

.quote-mark-wrapper {
  color: var(--gold);
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.5s var(--ease-out) 0.2s, transform 0.5s var(--ease-out) 0.2s;
}

.testimonial-copy.visible .quote-mark-wrapper {
  opacity: 0.6;
  transform: translateY(0);
}

.testimonial-text {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease-out) 0.35s, transform 0.6s var(--ease-out) 0.35s;
}

.testimonial-copy.visible .testimonial-text {
  opacity: 1;
  transform: translateY(0);
}

.testimonial-text p {
  font-size: 20px;
  font-style: italic;
  font-weight: 500;
  color: var(--green-dark);
  line-height: 1.5;
  margin-bottom: 20px;
}

.testimonial-author {
  display: block;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold-dark);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s var(--ease-out) 0.5s, transform 0.5s var(--ease-out) 0.5s;
}

.testimonial-copy.visible .testimonial-author {
  opacity: 1;
  transform: translateY(0);
}

.testimonial-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 300px;
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 0.6s var(--ease-out) 0.2s, transform 0.6s var(--ease-out) 0.2s;
}

.testimonial-image.visible img {
  opacity: 1;
  transform: scale(1);
}

.testimonial-image:hover img {
  transform: scale(1.04);
}

/* --- Founder Message --- */
.founder-section {
  background-color: var(--cream);
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}

.founder-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.3;
}

.founder-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}

.founder-content h2 {
  font-size: 24px;
  color: var(--green);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.founder-content p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.founder-signature {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.founder-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.founder-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.founder-image:hover img {
  transform: scale(1.03);
}

/* --- Quote / Contact Section --- */
.contact-section {
  background-color: var(--cream-dark);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.3;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.3fr 1.6fr;
  min-height: 480px;
}

.contact-image-col {
  position: relative;
  overflow: hidden;
}

.contact-image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.contact-image-col:hover img {
  transform: scale(1.03);
}

.contact-content-col {
  padding: 50px 36px;
  background-color: var(--cream);
  display: flex;
  align-items: center;
}

.contact-intro h2 {
  font-size: 32px;
  color: var(--green);
  line-height: 1.1;
  margin-bottom: 16px;
}

.contact-intro p {
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 24px;
  line-height: 1.6;
}

.contact-form-col {
  padding: 50px 36px;
  background-color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: -10px 0 20px rgba(0, 0, 0, 0.02);
}

.inquiry-form .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-group.wide {
  grid-column: span 2;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #e1e6e4;
  border-radius: 4px;
  background-color: var(--cream);
  font-family: var(--font-main);
  font-size: 11px;
  color: var(--text-dark);
  transition: border-color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), background-color 0.3s var(--ease-out);
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background-color: var(--white);
  box-shadow: 0 0 0 3px rgba(217, 169, 40, 0.15);
}

.inquiry-form input.error,
.inquiry-form select.error,
.inquiry-form textarea.error {
  border-color: #e74c3c;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.15);
}

.inquiry-form input:focus:invalid,
.inquiry-form select:focus:invalid,
.inquiry-form textarea:focus:invalid {
  border-color: #e74c3c;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.15);
}

.inquiry-form textarea {
  height: 80px;
  resize: none;
}

.inquiry-form select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%235c6e68' d='M0 0l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 10px 6px;
  padding-right: 30px;
}

.country-select-control {
  position: relative;
  width: 100%;
}

.country-select-control.is-open {
  z-index: 30;
}

.country-native-select {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 1px !important;
  height: 1px;
  padding: 0 !important;
  border: 0 !important;
  opacity: 0;
  pointer-events: none;
}

.country-select-trigger {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 11px;
  align-items: center;
  width: 100%;
  min-height: 39px;
  padding: 9px 14px;
  border: 1px solid #e1e6e4;
  border-radius: 6px;
  background: var(--cream);
  color: var(--text-muted);
  font-family: var(--font-main);
  font-size: 11px;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out), background-color 0.2s var(--ease-out);
}

.country-select-trigger:hover {
  border-color: rgba(217, 169, 40, 0.65);
  background-color: var(--white);
}

.country-select-trigger:focus-visible,
.country-select-control.is-open .country-select-trigger {
  outline: none;
  border-color: var(--gold);
  background-color: var(--white);
  box-shadow: 0 0 0 3px rgba(217, 169, 40, 0.15);
}

.country-select-trigger.error {
  border-color: #e74c3c;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.15);
}

.country-select-trigger.has-country {
  color: var(--text-dark);
}

.country-selected-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.country-selected-flag,
.country-option img {
  width: 24px;
  height: 18px;
  border-radius: 2px;
  object-fit: cover;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.country-select-chevron {
  width: 8px;
  height: 8px;
  margin-right: 2px;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.2s var(--ease-out);
}

.country-select-control.is-open .country-select-chevron {
  transform: rotate(225deg) translate(-2px, -2px);
}

.country-select-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 40;
  overflow: hidden;
  padding: 8px;
  border: 1px solid rgba(6, 59, 42, 0.14);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 16px 38px rgba(16, 37, 29, 0.18);
}

.country-search {
  height: 38px;
  margin-bottom: 7px;
  padding: 9px 12px !important;
  border-radius: 6px !important;
  background-color: var(--soft-gray) !important;
  font-size: 12px !important;
}

.country-options {
  display: grid;
  max-height: 250px;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(6, 59, 42, 0.28) transparent;
}

.country-option {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 11px;
  align-items: center;
  width: 100%;
  padding: 9px 10px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--text-dark);
  font-family: var(--font-main);
  font-size: 12px;
  text-align: left;
  cursor: pointer;
}

.country-option:hover,
.country-option:focus-visible {
  outline: none;
  background: var(--gold-light);
}

.country-option[aria-selected='true'] {
  background: var(--green-light);
  color: var(--green);
  font-weight: 700;
}

.country-no-results {
  padding: 22px 12px;
  color: var(--text-muted);
  font-size: 12px;
  text-align: center;
}

.country-select-panel[hidden],
.country-option[hidden],
.country-no-results[hidden] {
  display: none;
}

.submit-btn {
  margin-top: 16px;
  width: fit-content;
}

.form-success {
  display: none;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 18px;
  background-color: var(--green-light);
  border: 1px solid var(--green);
  border-radius: 8px;
  color: var(--green);
  font-size: 13px;
  margin-top: 12px;
}

.form-success.is-visible {
  display: grid;
}

.form-status-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: var(--green);
  color: var(--white);
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
}

.form-status-content {
  display: grid;
  gap: 4px;
}

.form-status-title {
  font-size: 15px;
  line-height: 1.4;
}

.form-status-message {
  color: var(--text-dark);
  font-weight: 500;
  line-height: 1.6;
}

.form-success.is-action {
  background-color: var(--gold-light);
  border-color: var(--gold-dark);
  color: var(--text-dark);
}

.form-success.is-action .form-status-icon {
  background-color: var(--gold-dark);
}

.form-success.is-error {
  background-color: #fff1f0;
  border-color: #c0392b;
  color: #9f2d20;
}

.form-success.is-error .form-status-icon {
  background-color: #c0392b;
}

/* --- Products Page --- */
.page-hero {
  min-height: 320px;
  background: linear-gradient(90deg, rgba(6, 59, 42, 0.9) 0%, rgba(6, 59, 42, 0.7) 60%, rgba(6, 59, 42, 0.3) 100%), url('hero_banner_grains.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  color: var(--white);
  padding: 80px 24px;
}

.page-hero-container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.page-hero h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.breadcrumb {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
}

.breadcrumb a {
  color: var(--gold);
}

.page-intro {
  max-width: 700px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

.products-page-section {
  padding: 80px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.category-cards {
  display: grid;
  gap: 30px;
}

.category-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

.category-card-image {
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 260px;
}

.category-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

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

.category-card-content {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
}

.category-card-content h3 {
  font-size: 24px;
  color: var(--green);
  font-weight: 800;
}

.category-card-content p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}

/* --- Product Detail Pages --- */
.product-detail-hero {
  min-height: 320px;
  background: linear-gradient(90deg, rgba(6, 59, 42, 0.9) 0%, rgba(6, 59, 42, 0.75) 60%, rgba(6, 59, 42, 0.3) 100%), url('hero_banner_grains.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  color: var(--white);
  padding: 80px 24px;
}

.product-detail-hero-container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.product-detail-hero h1 {
  font-size: 44px;
  font-weight: 800;
  margin-bottom: 12px;
}

.product-detail-content {
  padding: 80px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.product-detail-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: 100px;
}

.product-detail-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.product-detail-info h2 {
  font-size: 28px;
  color: var(--green);
  margin-bottom: 16px;
}

.product-detail-info .product-overview {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.product-specs {
  list-style: none;
  margin-bottom: 28px;
}

.product-specs li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--cream-dark);
  font-size: 13px;
  color: var(--text-dark);
}

.product-specs li strong {
  min-width: 140px;
  color: var(--green);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.5px;
}

/* --- Contact Page --- */
.contact-page-hero {
  min-height: 320px;
  background: linear-gradient(90deg, rgba(6, 59, 42, 0.9) 0%, rgba(6, 59, 42, 0.75) 60%, rgba(6, 59, 42, 0.3) 100%), url('hero_banner_grains.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  color: var(--white);
  padding: 80px 24px;
}

.contact-page-container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.contact-page-hero h1 {
  font-size: 44px;
  font-weight: 800;
  margin-bottom: 12px;
}

.contact-page-hero p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
}

.contact-page-section {
  padding: 80px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.contact-grid-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info-card {
  background-color: var(--white);
  border-radius: 8px;
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.contact-info-card h2 {
  font-size: 24px;
  color: var(--green);
  margin-bottom: 24px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--green-light);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-text strong {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--green);
  margin-bottom: 4px;
}

.contact-detail-text span {
  font-size: 14px;
  color: var(--text-dark);
  line-height: 1.5;
}

.contact-form-card {
  background-color: var(--white);
  border-radius: 8px;
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.contact-form-card h2 {
  font-size: 24px;
  color: var(--green);
  margin-bottom: 24px;
}

.contact-form-card .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact-form-card .form-group.wide {
  grid-column: span 2;
}

/* --- Footer --- */
.site-footer {
  background-color: var(--green-dark);
  color: var(--white);
  padding: 60px 0 0;
}

.footer-top {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px 50px;
  display: grid;
  grid-template-columns: 1.4fr 1.2fr 1.4fr;
  gap: 60px;
}

.footer-brand-col .brand {
  margin-bottom: 20px;
}

.brand-desc {
  font-size: 12px;
  color: var(--text-light-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: transform 0.3s var(--ease-out), background-color 0.3s var(--ease-out), border-color 0.3s var(--ease-out), color 0.3s var(--ease-out);
  transform: translateZ(0);
}

.social-links a:hover {
  background-color: var(--gold);
  color: var(--green-dark);
  border-color: var(--gold);
  transform: translateY(-3px) scale(1.1);
}

.footer-contact-col h3 {
  font-size: 16px;
  color: var(--gold);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.footer-contact-col h3::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transition: width 0.3s var(--ease-out);
}

.footer-contact-col h3:hover::after {
  width: 100%;
}

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 12px;
  color: var(--text-light-muted);
  transition: color 0.3s var(--ease-out);
}

.contact-list li:hover {
  color: var(--white);
}

.contact-list-icon {
  color: var(--gold);
  margin-top: 2px;
  transition: transform 0.3s var(--ease-out);
}

.contact-list li:hover .contact-list-icon {
  transform: scale(1.1);
}

.contact-list li strong {
  color: var(--white);
}

.footer-gallery-col {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.footer-image-wrapper {
  width: 280px;
  height: 160px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
  transition: transform 0.4s var(--ease-out);
}

.footer-image-wrapper:hover {
  transform: translateY(-3px);
}

.footer-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
  transition: transform 0.6s var(--ease-out);
}

.footer-image-wrapper:hover img {
  transform: scale(1.05);
}

.footer-nav {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px 30px;
}

.footer-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 28px;
  justify-content: center;
}

.footer-nav a {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-light-muted);
  font-weight: 600;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s var(--ease-out);
}

.footer-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--gold);
  transition: width 0.3s var(--ease-out);
}

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

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-bottom-links a {
  transition: color 0.3s var(--ease-out), text-shadow 0.3s var(--ease-out);
}

.footer-bottom-links a:hover {
  color: var(--gold);
  text-shadow: 0 0 8px rgba(217, 169, 40, 0.5);
}

.separator {
  color: rgba(255, 255, 255, 0.15);
}

/* --- Animations --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes countUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

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

.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }
.reveal.delay-4 { transition-delay: 0.4s; }
.reveal.delay-5 { transition-delay: 0.5s; }

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

@media (max-width: 1100px) {
  .site-header {
    padding-inline: 24px;
  }

  .nav-menu {
    gap: 28px;
  }

  .header-cta {
    display: none;
  }
}

@media (max-width: 1024px) {
  .about-container {
    gap: 40px;
  }
  .product-grid {
    gap: 20px;
  }
  .reasons {
    grid-template-columns: repeat(3, 1fr);
  }
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-image-col {
    display: none;
  }
  .footer-top {
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
  }
  .footer-gallery-col {
    grid-column: span 2;
    justify-content: center;
    margin-top: 20px;
  }
  .category-card {
    grid-template-columns: 1fr;
  }
  .category-card-image {
    min-height: 220px;
  }
  .product-detail-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .product-detail-image {
    position: static;
  }
  .contact-grid-page {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .site-header,
  .site-header.scrolled {
    height: 60px;
  }

  .menu-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--green);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    align-items: stretch;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }

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

  .nav-link {
    font-size: 14px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .nav-link::after {
    display: none;
  }

  .section {
    padding: 50px 20px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero p {
    font-size: 14px;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image-wrapper img {
    height: 300px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .reasons {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item {
    border-right: none;
    padding: 12px;
  }

  .stat-item:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }

  .testimonial-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .testimonial-image {
    height: 220px;
  }

  .founder-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .founder-image img {
    height: 300px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-content-col {
    padding: 40px 24px;
  }

  .contact-form-col {
    padding: 40px 24px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .footer-gallery-col {
    grid-column: span 1;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding-bottom: 40px;
  }
}

@media (max-width: 480px) {
  .reasons {
    grid-template-columns: 1fr;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .stat-item:nth-child(odd) {
    border-right: none;
  }
  .inquiry-form .form-grid {
    grid-template-columns: 1fr;
  }
  .form-group.wide {
    grid-column: span 1;
  }
  .hero .actions {
    flex-direction: column;
    width: 100%;
  }
  .hero .button {
    width: 100%;
  }
  .page-hero h1 {
    font-size: 32px;
  }
  .product-detail-hero h1 {
    font-size: 32px;
  }
  .contact-page-hero h1 {
    font-size: 32px;
  }
  .contact-form-card .form-grid {
    grid-template-columns: 1fr;
  }
   .contact-form-card .form-group.wide {
    grid-column: span 1;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero p {
    font-size: 14px;
  }

  .hero {
    background-attachment: scroll;
  }

  body:not(.loading) .hero h1,
  body:not(.loading) .hero p,
   body:not(.loading) .hero .actions,
   body:not(.loading) .hero .actions .button {
    transition: none;
  }
}

/* --- Mobile Touch Optimization --- */
@media (hover: none) {
  .button {
    -webkit-tap-highlight-color: transparent;
    min-height: 44px;
  }

  .nav-link {
    -webkit-tap-highlight-color: transparent;
    padding: 10px 0;
  }

  .product-card {
    -webkit-tap-highlight-color: transparent;
  }

  .social-links a {
    -webkit-tap-highlight-color: transparent;
    width: 40px;
    height: 40px;
  }

  .view-details {
    -webkit-tap-highlight-color: transparent;
    min-height: 44px;
    min-width: 44px;
    padding: 6px 6px 6px 12px;
  }

  .stat-item {
    padding: 16px 12px;
  }

  .hero .actions {
    gap: 10px;
  }
}

/* --- Reduced Motion Accessibility --- */
@media (prefers-reduced-motion: reduce) {
  .scroll-progress {
    display: none;
  }

  html, body {
    scroll-behavior: auto;
  }

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  body:not(.loading) .site-header,
  body:not(.loading) .hero h1,
  body:not(.loading) .hero p,
  body:not(.loading) .hero .actions,
  body:not(.loading) .hero .actions .button {
    opacity: 1;
    transform: none;
  }

  .stat-item {
    opacity: 1;
    transform: none;
  }

  .stat-number,
  .stat-icon-wrapper {
    opacity: 1;
    transform: none;
  }

  .benefit-item,
  .benefit-icon {
    opacity: 1;
    transform: none;
  }

  .reason-col,
  .icon-container {
    opacity: 1;
    transform: none;
  }

  .quote-mark-wrapper,
  .testimonial-text,
  .testimonial-author {
    opacity: 1;
    transform: none;
  }

  .contact-intro .reveal {
    opacity: 1;
    transform: none;
  }

  body.loading .site-header,
  body.loading .hero h1,
  body.loading .hero p,
  body.loading .hero .actions,
  body.loading .hero .actions .button {
    opacity: 1;
  }

  .about-image-wrapper img,
  .testimonial-image img,
  .founder-image img,
  .contact-image-col img {
    transition: none;
  }

  .product-card:hover,
  .reason-col:hover,
  .category-card:hover,
  .social-links a:hover,
  .footer-image-wrapper:hover,
  .button:hover,
  .button:active {
    transform: none;
  }

  .hero {
    background-attachment: scroll;
  }

  .button::before {
    display: none;
  }
}
