/* ===================================================
   EKINORA — CSS
   Palette: Deep Forest Green + Amber Wheat
   Fonts: Cormorant Garamond (display) + DM Sans (body)
   =================================================== */

/* ---- Reset & Custom Properties ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --deep-green:   #1A3728;
  --mid-green:    #2B5940;
  --light-green:  #3D7A56;
  --accent:       #BF8630;
  --accent-light: #D4A44C;
  --bg-light:     #FAF8F4;
  --bg-warm:      #F2EBD9;
  --bg-green:     #EDF3EF;
  --text-dark:    #1C1208;
  --text-mid:     #5C4D3A;
  --text-light:   #8B7A65;
  --border:       #E2D9C8;
  --border-green: #C5D8CC;
  --white:        #FFFFFF;
  --shadow-sm:    0 2px 8px rgba(26,55,40,.08);
  --shadow-md:    0 6px 24px rgba(26,55,40,.12);
  --radius:       10px;
  --radius-lg:    18px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--bg-light);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  line-height: 1.2;
  color: var(--deep-green);
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 600; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; }
em { font-style: italic; color: var(--accent); }
p { color: var(--text-mid); }

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .75rem;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .03em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .25s ease;
  text-decoration: none;
}
.btn--primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn--primary:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(191,134,48,.35);
}
.btn--outline {
  background: transparent;
  color: var(--deep-green);
  border-color: var(--deep-green);
}
.btn--outline:hover {
  background: var(--deep-green);
  color: var(--white);
}

/* ---- Grain Divider (signature element) ---- */
.grain-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
}
.grain-divider svg {
  width: 320px;
  max-width: 90%;
  height: 40px;
  overflow: visible;
}

/* ===================================================
   HEADER
   =================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250,248,244,.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
.header.scrolled { box-shadow: var(--shadow-md); }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.header__logo img { height: 40px; width: auto; }
.header__logo:focus-visible { outline: 2px solid var(--accent); }

.nav__list {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__list a {
  font-size: .88rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: color .2s;
}
.nav__list a:hover { color: var(--accent); }
.nav__cta {
  background: var(--deep-green);
  color: var(--white) !important;
  padding: .5rem 1.25rem;
  border-radius: 50px;
  transition: background .2s !important;
}
.nav__cta:hover { background: var(--mid-green) !important; color: var(--white) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--deep-green);
  border-radius: 2px;
  transition: all .25s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===================================================
   HERO
   =================================================== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(26,55,40,.88) 0%,
    rgba(26,55,40,.65) 55%,
    rgba(26,55,40,.30) 100%
  );
}
.hero__content {
  position: relative;
  max-width: 620px;
  padding: 6rem 0 4rem;
}
.hero__eyebrow {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 1.25rem;
}
.hero__title {
  color: var(--white);
  margin-bottom: 1.25rem;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
}
.hero__title em {
  color: var(--accent-light);
  font-style: italic;
}
.hero__subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 2.5rem;
  max-width: 500px;
  line-height: 1.75;
}
.hero__stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
}
.hero__stat { text-align: left; }
.hero__stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-light);
  line-height: 1;
}
.hero__stat-label {
  font-size: .78rem;
  color: rgba(255,255,255,.7);
  margin-top: .25rem;
}

/* ===================================================
   INTRO
   =================================================== */
.intro {
  padding: 96px 0;
  background: var(--white);
}
.intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.intro__img-wrap {
  position: relative;
}
.intro__img-wrap img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  height: 440px;
  box-shadow: var(--shadow-md);
}
.intro__badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--deep-green);
  color: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-md);
  width: 170px;
  text-align: center;
}
.intro__badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-light);
  line-height: 1;
}
.intro__badge-text {
  font-size: .75rem;
  line-height: 1.4;
  color: rgba(255,255,255,.8);
  margin-top: .35rem;
}
.intro__text h2 { margin-bottom: 1.25rem; }
.intro__text p { margin-bottom: 1rem; }
.intro__features {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: .85rem;
}
.intro__feature {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-dark);
}
.intro__feature::before {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  min-width: 18px;
  background: var(--accent);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2 6l3 3 5-5' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}

/* ===================================================
   BENEFITS
   =================================================== */
.benefits {
  padding: 96px 0;
  background: var(--bg-warm);
}
.benefits__head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem;
}
.benefits__head h2 { margin-bottom: .75rem; }
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.benefit-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
  border-top: 3px solid var(--accent);
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.benefit-card__icon {
  width: 52px;
  height: 52px;
  background: var(--bg-green);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.benefit-card__icon svg { width: 28px; height: 28px; }
.benefit-card h3 { font-size: 1.2rem; margin-bottom: .6rem; }
.benefit-card p { font-size: .88rem; line-height: 1.65; }

/* ===================================================
   GUIDE (Bread types)
   =================================================== */
.guide {
  padding: 96px 0;
  background: var(--white);
}
.guide__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}
.guide__head h2 { margin-bottom: .75rem; }
.guide__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.guide-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: box-shadow .25s;
}
.guide-card:hover { box-shadow: var(--shadow-md); }
.guide-card__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.guide-card__body {
  padding: 1.5rem;
}
.guide-card__tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(191,134,48,.1);
  padding: .25rem .7rem;
  border-radius: 20px;
  margin-bottom: .85rem;
}
.guide-card h3 { margin-bottom: .6rem; }
.guide-card p { font-size: .88rem; line-height: 1.65; }
.guide-card__gi {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-dark);
}
.gi-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.gi-low  { background: #5CAC73; }
.gi-mid  { background: #E8A83A; }
.gi-high { background: #D95F5F; }

/* ===================================================
   GRAINS comparison
   =================================================== */
.grains {
  padding: 96px 0;
  background: var(--bg-light);
}
.grains__head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem;
}
.grains__head h2 { margin-bottom: .75rem; }
.grains__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.grain-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .25s;
}
.grain-card:hover { transform: translateY(-4px); }
.grain-card__img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}
.grain-card__body { padding: 1.25rem; }
.grain-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  margin-bottom: .5rem;
}
.grain-card__stats {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-top: .75rem;
}
.grain-stat {
  display: flex;
  justify-content: space-between;
  font-size: .8rem;
}
.grain-stat__label { color: var(--text-light); }
.grain-stat__val { font-weight: 600; color: var(--deep-green); }

/* ===================================================
   TIPS
   =================================================== */
.tips {
  padding: 96px 0;
  background: var(--deep-green);
}
.tips__head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem;
}
.tips__head .section-label { color: var(--accent-light); }
.tips__head h2 { color: var(--white); margin-bottom: .75rem; }
.tips__head p { color: rgba(255,255,255,.75); }
.tips__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.tip-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: background .25s;
}
.tip-card:hover { background: rgba(255,255,255,.12); }
.tip-card__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  opacity: .6;
  line-height: 1;
  margin-bottom: .75rem;
}
.tip-card h3 { color: var(--white); margin-bottom: .75rem; }
.tip-card p { color: rgba(255,255,255,.72); font-size: .9rem; }
.tips__img-wrap {
  margin-top: 4rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.tips__img-wrap img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

/* ===================================================
   TESTIMONIALS
   =================================================== */
.testimonials {
  padding: 96px 0;
  background: var(--bg-warm);
}
.testimonials__head {
  text-align: center;
  max-width: 540px;
  margin: 0 auto 3.5rem;
}
.testimonials__head h2 { margin-bottom: .75rem; }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.review-card::before {
  content: '\201C';
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  line-height: .8;
  color: var(--accent);
  opacity: .2;
  position: absolute;
  top: 1rem;
  left: 1.5rem;
}
.review-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
}
.review-card__stars span {
  font-size: 1rem;
  color: var(--accent);
}
.review-card__text {
  font-size: .9rem;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 1.5rem;
  font-style: italic;
}
.review-card__author {
  display: flex;
  align-items: center;
  gap: .85rem;
}
.review-card__author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
}
.review-card__name {
  font-weight: 600;
  font-size: .88rem;
  color: var(--text-dark);
  display: block;
}
.review-card__role {
  font-size: .78rem;
  color: var(--text-light);
}

/* ===================================================
   FAQ
   =================================================== */
.faq {
  padding: 96px 0;
  background: var(--white);
}
.faq__head {
  text-align: center;
  max-width: 540px;
  margin: 0 auto 3.5rem;
}
.faq__head h2 { margin-bottom: .75rem; }
.faq__list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  font-size: .95rem;
  color: var(--text-dark);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  transition: background .2s;
}
.faq-item__q:hover { background: var(--bg-light); }
.faq-item.open .faq-item__q { background: var(--bg-green); color: var(--deep-green); }
.faq-item__icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border: 1.5px solid var(--border-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .25s, background .25s;
}
.faq-item.open .faq-item__icon {
  background: var(--accent);
  border-color: var(--accent);
  transform: rotate(45deg);
}
.faq-item__icon svg { width: 14px; height: 14px; }
.faq-item.open .faq-item__icon svg path { stroke: white; }
.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .25s;
}
.faq-item.open .faq-item__a { max-height: 300px; }
.faq-item__a-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: .9rem;
  line-height: 1.75;
  color: var(--text-mid);
}

/* ===================================================
   CONTACT
   =================================================== */
.contact {
  padding: 96px 0;
  background: var(--bg-warm);
}
.contact__head {
  text-align: center;
  max-width: 540px;
  margin: 0 auto 3.5rem;
}
.contact__head h2 { margin-bottom: .75rem; }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: start;
}
.contact__form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: .45rem;
  letter-spacing: .02em;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: .8rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
  color: var(--text-dark);
  background: var(--bg-light);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--mid-green);
  box-shadow: 0 0 0 3px rgba(43,89,64,.12);
}
.form-group input.error,
.form-group textarea.error { border-color: #C0392B; }
.form-group .err-msg {
  display: none;
  font-size: .78rem;
  color: #C0392B;
  margin-top: .3rem;
}
.form-group .err-msg.show { display: block; }
.form-group textarea { resize: vertical; min-height: 130px; }
.form__submit { width: 100%; }
.form__success {
  display: none;
  text-align: center;
  padding: 2.5rem 1.5rem;
}
.form__success.show { display: block; }
.form__success-icon {
  width: 64px;
  height: 64px;
  background: #EDF7ED;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
.form__success-icon svg { width: 32px; height: 32px; color: #3D8B4A; }
.form__success h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--deep-green);
  margin-bottom: .5rem;
}
.form__success p { font-size: .9rem; color: var(--text-mid); }

.contact__info { display: flex; flex-direction: column; gap: 2rem; }
.contact__info-block h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--deep-green);
  margin-bottom: .75rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--border);
}
.contact__info-item {
  display: flex;
  gap: .85rem;
  font-size: .88rem;
  color: var(--text-mid);
  margin-bottom: .6rem;
  align-items: flex-start;
}
.contact__info-item svg {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  color: var(--accent);
}
.contact__info-item a:hover { color: var(--accent); }

/* ===================================================
   FOOTER
   =================================================== */
.footer {
  background: var(--deep-green);
  color: rgba(255,255,255,.75);
  padding: 48px 0 32px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
  border-bottom: 1px solid rgba(255,255,255,.12);
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}
.footer__logo img { filter: brightness(0) invert(1) opacity(.9); height: 34px; }
.footer__desc {
  font-size: .85rem;
  line-height: 1.6;
  margin-top: .75rem;
  max-width: 340px;
  color: rgba(255,255,255,.6);
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  text-align: right;
}
.footer__links a {
  font-size: .82rem;
  color: rgba(255,255,255,.65);
  transition: color .2s;
}
.footer__links a:hover { color: var(--accent-light); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .75rem;
  font-size: .8rem;
  color: rgba(255,255,255,.45);
}
.footer__legal {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer__legal a {
  color: rgba(255,255,255,.5);
  transition: color .2s;
  font-size: .8rem;
}
.footer__legal a:hover { color: var(--accent-light); }

/* ===================================================
   LEGAL PAGES (privacy, terms, cookies)
   =================================================== */
.legal-hero {
  background: var(--deep-green);
  padding: 72px 0 56px;
}
.legal-hero h1 { color: var(--white); }
.legal-hero p { color: rgba(255,255,255,.7); margin-top: .5rem; font-size: .9rem; }
.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 64px 24px 96px;
}
.legal-content h2 {
  font-size: 1.4rem;
  margin: 2.5rem 0 .75rem;
  color: var(--deep-green);
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p {
  font-size: .92rem;
  line-height: 1.8;
  margin-bottom: .9rem;
  color: var(--text-mid);
}
.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin: .5rem 0 1rem;
}
.legal-content ul li {
  font-size: .9rem;
  color: var(--text-mid);
  margin-bottom: .4rem;
  line-height: 1.7;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .85rem;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 2rem;
}
.back-link:hover { color: var(--deep-green); }

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 1024px) {
  .benefits__grid { grid-template-columns: repeat(2, 1fr); }
  .grains__grid   { grid-template-columns: repeat(2, 1fr); }
  .contact__grid  { grid-template-columns: 1fr; }
  .contact__info  { flex-direction: row; flex-wrap: wrap; }
}

@media (max-width: 900px) {
  .intro__grid { grid-template-columns: 1fr; }
  .intro__img-wrap { order: -1; }
  .intro__badge { right: 0; }
  .guide__grid { grid-template-columns: 1fr; }
  .tips__grid  { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav__list {
    position: fixed;
    inset: 72px 0 0 0;
    background: var(--bg-light);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    transform: translateX(100%);
    transition: transform .3s ease;
    z-index: 999;
  }
  .nav__list.open { transform: translateX(0); }
  .nav__list a { font-size: 1.1rem; }
  .hamburger { display: flex; }

  h1 { font-size: clamp(2rem, 8vw, 3rem); }
  h2 { font-size: clamp(1.6rem, 5vw, 2.2rem); }
  .hero { min-height: 100dvh; }
  .hero__stats { flex-direction: column; gap: 1.25rem; }
  .benefits__grid { grid-template-columns: 1fr; }
  .grains__grid { grid-template-columns: 1fr 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__links { text-align: left; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .guide__grid { grid-template-columns: 1fr; }
  .intro__img-wrap img { height: 300px; }
}

@media (max-width: 480px) {
  .grains__grid { grid-template-columns: 1fr; }
  .contact__info { flex-direction: column; }
  .hero__content { padding: 5rem 0 3rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
