/* ============================================================
   AMAN — Balanced Cattle Feed · Landing Page
   Palette: earthy greens, cream, ochre, bark
   ============================================================ */

:root {
  --bg: #f4efe4;
  /* warm cream */
  --bg-2: #ebe3d0;
  /* deeper cream */
  --ink: #1f2a1a;
  /* deep forest */
  --ink-soft: #3a4a33;
  --ink-muted: #6a7560;
  --moss: #4b6a3a;
  /* primary green */
  --moss-deep: #2f4525;
  --moss-hi: #8cb26a;
  --ochre: #c9972b;
  /* accent */
  --ochre-soft: #e5c164;
  --bark: #5a3b22;
  --rule: rgba(31, 42, 26, .12);
  --paper: #fbf8f0;
}

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

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}

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

a {
  color: inherit;
  text-decoration: none
}

button {
  font: inherit;
  cursor: none;
  border: none;
  background: none;
  color: inherit
}

::selection {
  background: var(--moss);
  color: var(--paper)
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px
}

/* ---------- Loader ---------- */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .6s ease, visibility .6s ease;
}

.loader.done {
  opacity: 0;
  visibility: hidden
}

.loader-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--paper)
}

.loader-leaf {
  width: 34px;
  height: 34px;
  color: var(--moss-hi);
  animation: leafspin 1.4s cubic-bezier(.7, 0, .3, 1) infinite;
}

@keyframes leafspin {
  0% {
    transform: rotate(0) scale(1)
  }

  50% {
    transform: rotate(180deg) scale(1.15)
  }

  100% {
    transform: rotate(360deg) scale(1)
  }
}

.loader-text {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: .02em
}

/* ---------- Custom cursor ---------- */
.cursor {
  position: fixed;
  width: 32px;
  height: 32px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width .25s ease, height .25s ease, background .25s ease, border-color .25s ease, opacity .2s;
  mix-blend-mode: difference;
}

.cursor.hover {
  width: 56px;
  height: 56px;
  background: var(--paper);
  border-color: var(--paper)
}

.cursor-dot {
  position: fixed;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ink);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}

@media (max-width:860px) {
  body {
    cursor: auto
  }

  button {
    cursor: pointer
  }

  .cursor,
  .cursor-dot {
    display: none
  }
}

/* ---------- Grain overlay ---------- */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9990;
  opacity: .07;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.9'/></svg>");
  mix-blend-mode: multiply;
}

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 36px);
  max-width: 1280px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  background: rgba(251, 248, 240, .7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--rule);
  border-radius: 999px;
  z-index: 100;
  transition: transform .5s cubic-bezier(.7, 0, .3, 1) .2s, opacity .5s ease .2s;
}

.nav.hidden {
  transform: translateX(-50%) translateY(-120%);
  opacity: 0
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 20px
}
.nav-logo img{
    max-width:150px;
}

.nav-mark {
  color: var(--moss);
  font-size: 22px;
  transform: translateY(-2px);
  display: inline-block;
  animation: markpulse 3s ease-in-out infinite;
}

@keyframes markpulse {

  0%,
  100% {
    transform: translateY(-2px) scale(1)
  }

  50% {
    transform: translateY(-2px) scale(1.12)
  }
}

.nav-links {
  display: flex;
  gap: 28px
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 1px;
  width: 0;
  background: var(--moss);
  transition: width .35s ease;
}

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

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

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  transition: background .3s ease, gap .3s ease;
}

.nav-cta:hover {
  background: var(--moss);
  gap: 10px
}

@media (max-width:860px) {
  .nav-links {
    display: none
  }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 0 40px;
  background: linear-gradient(180deg, #faf5e7 0%, #ede3ca 60%, #d9cfaf 100%);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none
}

.hero-hills {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70%;
}

.hero-sun {
  position: absolute;
  top: 10%;
  right: 8%;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, #f4d06a 0%, #e8b43c 40%, transparent 70%);
  filter: blur(40px);
  opacity: .55;
  animation: floaty 14s ease-in-out infinite;
}

.hero-glow {
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, #4b6a3a 0%, transparent 60%);
  opacity: .18;
  filter: blur(60px);
}

@keyframes floaty {

  0%,
  100% {
    transform: translate(0, 0)
  }

  50% {
    transform: translate(-20px, 25px)
  }
}

.hero-grid {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: center;
  min-height: calc(100vh - 180px);
}

@media (max-width:980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 24px
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--ink-muted);
  margin-bottom: 28px;
  padding: 8px 14px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  background: rgba(251, 248, 240, .6);
}

.eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--moss);
  box-shadow: 0 0 0 0 rgba(75, 106, 58, .5);
  animation: dotpulse 2s infinite
}

@keyframes dotpulse {
  0% {
    box-shadow: 0 0 0 0 rgba(75, 106, 58, .5)
  }

  70% {
    box-shadow: 0 0 0 10px rgba(75, 106, 58, 0)
  }

  100% {
    box-shadow: 0 0 0 0 rgba(75, 106, 58, 0)
  }
}

.hero-title {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(40px, 6.3vw, 88px);
  line-height: .98;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.hero-title .line {
  display: block;
  overflow: hidden;
  padding: 4px 0
}

.hero-title .word {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  transition: transform 1s cubic-bezier(.2, .7, .2, 1), opacity .8s ease
}

.hero-title .word.italic {
  font-style: italic;
  font-weight: 400;
  color: var(--moss-deep)
}

.hero-title .word.in {
  transform: translateY(0);
  opacity: 1
}

.hero-sub {
  margin-top: 28px;
  max-width: 540px;
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-soft);
}

.hero-ctas {
  display: flex;
  gap: 14px;
  margin-top: 34px;
  flex-wrap: wrap
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  transition: transform .3s ease, background .3s ease, color .3s ease, box-shadow .3s ease, gap .3s ease;
}

.btn-primary {
  background: var(--ink);
  color: var(--paper)
}

.btn-primary:hover {
  background: var(--moss);
  gap: 16px;
  box-shadow: 0 10px 30px -10px rgba(47, 69, 37, .5)
}

.btn-ghost {
  border: 1px solid var(--ink);
  color: var(--ink)
}

.btn-ghost:hover {
  background: var(--ink);
  color: var(--paper)
}

.btn.full {
  justify-content: center;
  width: 100%;
  padding: 16px
}

.hero-stats {
  display: flex;
  gap: 42px;
  margin-top: 60px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
}

.stat {
  display: flex;
  align-items: baseline;
  gap: 4px;
  flex-direction: column
}

.stat-num {
  font-family: 'Fraunces', serif;
  font-size: 44px;
  font-weight: 600;
  color: var(--moss-deep);
  display: inline-block
}

.stat-unit {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  color: var(--ochre);
  margin-left: 2px
}

.stat-lbl {
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--bg);
  margin-top: 4px
}

.stat .stat-num,
.stat .stat-unit {
  display: inline
}

.stat>div:first-child {
  display: flex;
  align-items: baseline
}

/* Logo stage */
.logo-stage {
  position: relative;
  aspect-ratio: 1/1;
  max-width: 520px;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-ring {
  position: absolute;
  inset: 8%;
  border: 1px dashed rgba(47, 69, 37, .35);
  border-radius: 50%;
  animation: spin 40s linear infinite;
}

.logo-ring-2 {
  inset: -2%;
  border-style: dotted;
  border-color: rgba(201, 151, 43, .4);
  animation: spin 60s linear reverse infinite
}

@keyframes spin {
  to {
    transform: rotate(360deg)
  }
}

.logo-spin {
  position: absolute;
  inset: 0;
  animation: spin 30s linear infinite
}

.logo-spin svg {
  width: 100%;
  height: 100%
}

.logo-card {
  position: relative;
  width: 68%;
  aspect-ratio: 1;
  background: var(--ink);
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  box-shadow: 0 30px 60px -20px rgba(31, 42, 26, .4), 0 0 0 1px rgba(47, 69, 37, .2);
  animation: logofloat 6s ease-in-out infinite;
}

.logo-card img {
  width: 100%;
  height: auto;
  object-fit: contain
}

@keyframes logofloat {

  0%,
  100% {
    transform: translateY(0) rotate(-1deg)
  }

  50% {
    transform: translateY(-14px) rotate(1deg)
  }
}

.floating-leaf {
  position: absolute;
  font-size: 34px;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, .15));
}

.f1 {
  top: -10px;
  left: 6%;
  animation: leaffloat 7s ease-in-out infinite
}

.f2 {
  bottom: 5%;
  right: 0;
  animation: leaffloat 9s ease-in-out -2s infinite
}

.f3 {
  top: 46%;
  left: -4%;
  animation: leaffloat 6s ease-in-out -4s infinite
}

@keyframes leaffloat {

  0%,
  100% {
    transform: translate(0, 0) rotate(-8deg)
  }

  50% {
    transform: translate(10px, -18px) rotate(12deg)
  }
}

.scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .3em;
  color: var(--ink-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: var(--ink-muted);
  position: relative;
  overflow: hidden
}

.scroll-line::after {
  content: "";
  position: absolute;
  top: -40px;
  left: 0;
  width: 1px;
  height: 40px;
  background: var(--moss-deep);
  animation: scroll-down 1.8s cubic-bezier(.7, 0, .3, 1) infinite;
}

@keyframes scroll-down {
  0% {
    top: -40px
  }

  100% {
    top: 40px
  }
}

/* ---------- Marquee ---------- */
.marquee {
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  padding: 22px 0;
  border-top: 1px solid var(--moss-deep);
  border-bottom: 1px solid var(--moss-deep);
}

.marquee-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  font-family: 'Fraunces', serif;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 400;
  font-style: italic;
}

.marquee-track span {
  display: inline-block
}

.marquee-track .sep {
  color: var(--ochre);
  font-style: normal;
  font-size: .8em;
  align-self: center
}

@keyframes marquee {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

/* ---------- Sections shared ---------- */
.section-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 24px;
}

.section-tag.light {
  color: var(--ochre-soft)
}

.section-title {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(30px, 4.4vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  max-width: 920px;
}

.section-title em {
  font-style: italic;
  color: var(--moss);
  font-weight: 400
}

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

.section-title.light em {
  color: var(--ochre-soft)
}

/* ---------- ABOUT ---------- */
.about {
  padding: 140px 0;
  background: var(--bg)
}

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

@media (max-width:980px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px
  }
}

.about-copy p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-top: 22px;
  max-width: 520px
}

.about-copy p strong {
  color: var(--ink);
  font-weight: 600
}

.about-copy p em {
  color: var(--moss);
  font-style: italic
}

.about-badges {
  display: flex;
  gap: 18px;
  margin-top: 36px;
  flex-wrap: wrap
}

.badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 16px;
  transition: transform .35s ease, box-shadow .35s ease;
}

.badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -20px rgba(31, 42, 26, .25)
}

.badge svg {
  width: 22px;
  height: 22px;
  color: var(--moss)
}

.badge strong {
  display: block;
  font-size: 14px;
  color: var(--ink)
}

.badge span {
  font-size: 12px;
  color: var(--ink-muted)
}

.about-visual {
  position: relative
}

.video-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: var(--ink);
  aspect-ratio: 4/5;
  max-width: 460px;
  margin: 0 auto;
  box-shadow: 0 40px 80px -30px rgba(31, 42, 26, .5);
}

.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s ease, background .3s ease;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, .4);
}

.video-play:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--ochre)
}

.video-play.playing {
  opacity: 0;
  pointer-events: none
}

.video-chip {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(0, 0, 0, .55);
  color: var(--paper);
  border-radius: 999px;
  font-size: 12px;
  backdrop-filter: blur(10px);
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e94a4a;
  box-shadow: 0 0 0 0 rgba(233, 74, 74, .6);
  animation: dotpulse 1.6s infinite
}

.about-caption {
  position: absolute;
  right: -10px;
  bottom: -30px;
  font-family: 'Fraunces', serif;
  font-size: 42px;
  line-height: 1;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.about-caption span {
  font-size: 14px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 6px;
  font-family: 'JetBrains Mono', monospace
}

.about-caption em {
  font-style: italic;
  color: var(--moss)
}

@media (max-width:980px) {
  .about-caption {
    position: static;
    margin-top: 16px;
    align-items: flex-start
  }
}

/* ---------- PRODUCTS ---------- */
.products {
  padding: 140px 0;
  background: var(--bg-2);
  position: relative
}

.products::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at top right, rgba(75, 106, 58, .1), transparent 60%);
}

.products-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 22px;
  margin-top: 60px;
}

@media (max-width:980px) {
  .products-grid {
    grid-template-columns: 1fr
  }
}

.product-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--rule);
  transition: transform .5s cubic-bezier(.2, .7, .2, 1), box-shadow .5s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 40px 80px -30px rgba(31, 42, 26, .3)
}

.product-card.featured {
  grid-column: 1;
  grid-row: 1 / span 2;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #fffaeb 0%, #f3e5b6 100%);
  padding: 28px;
}

.product-card.featured .product-img-wrap {
  background: radial-gradient(ellipse at center, #2a3426 0%, #141a11 100%);
  border-radius: 20px;
  margin: 12px 0 22px;
  overflow: hidden;
  border: 1px solid rgba(251, 248, 240, .08);
  box-shadow: inset 0 0 60px rgba(0, 0, 0, .4);
}

.product-card.featured .product-img-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 20%, rgba(201, 151, 43, .18), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(140, 178, 106, .15), transparent 40%);
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px
}

.product-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--moss);
  color: var(--paper);
}

.product-code {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--ink-muted)
}

.product-img-wrap {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  min-height: 320px;
}

.product-img-wrap img {
  max-height: 420px;
  width: auto;
  filter: drop-shadow(0 30px 30px rgba(0, 0, 0, .18));
  transition: transform .8s cubic-bezier(.2, .7, .2, 1);
}

.product-card.featured:hover .product-img-wrap img {
  transform: translateY(-10px) rotate(-2deg)
}

.product-shine {
  position: absolute;
  top: 0;
  left: -120%;
  width: 40%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, .6) 50%, transparent 100%);
  transform: skewX(-20deg);
  transition: left .9s ease;
  pointer-events: none;
}

.product-card.featured:hover .product-shine {
  left: 130%
}

.product-info h3 {
  font-family: 'Fraunces', serif;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -.01em;
  color: var(--ink);
  line-height: 1;
}

.product-info h3 span {
  color: var(--ochre);
  font-style: italic;
  font-weight: 400
}

.product-info>p {
  color: var(--ink-muted);
  margin-top: 10px;
  font-size: 14px;
  max-width: 440px;
  line-height: 1.5
}

.product-specs {
  list-style: none;
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 18px
}

.product-specs li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 8px 0;
  border-bottom: 1px dashed var(--rule);
  font-size: 13px;
}

.product-specs li span {
  color: var(--ink-muted)
}

.product-specs li strong {
  color: var(--ink);
  font-weight: 600;
  font-family: 'JetBrains Mono', monospace
}

.product-card.small {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 260px
}

.product-mini {
  position: relative
}

.mini-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--c) 18%, var(--paper));
  font-size: 28px;
  margin-bottom: 18px;
  transition: transform .5s ease;
}

.product-card.small:hover .mini-icon {
  transform: rotate(-8deg) scale(1.05)
}

.product-mini h4 {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px
}

.product-mini p {
  font-size: 13.5px;
  color: var(--ink-muted);
  line-height: 1.5;
  margin-bottom: 14px
}

.mini-link {
  font-size: 12px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--moss);
  font-family: 'JetBrains Mono', monospace
}

/* ---------- WHY ---------- */
.why {
  padding: 140px 0;
  background: var(--bg)
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 60px
}

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

@media (max-width:560px) {
  .why-grid {
    grid-template-columns: 1fr
  }
}

.why-card {
  padding: 28px;
  border-radius: 24px;
  background: var(--paper);
  border: 1px solid var(--rule);
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform .4s ease, background .4s ease, color .4s ease;
  position: relative;
  overflow: hidden;
}

.why-card::after {
  content: "";
  position: absolute;
  inset: auto -40% -70% auto;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--moss-hi) 0%, transparent 70%);
  opacity: .3;
  transition: inset .6s ease, opacity .5s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  background: var(--ink);
  color: var(--paper)
}

.why-card:hover::after {
  inset: -40% -40% auto auto;
  opacity: .55
}

.why-card:hover .why-num {
  color: var(--ochre-soft)
}

.why-num {
  font-family: 'Fraunces', serif;
  font-size: 48px;
  font-style: italic;
  font-weight: 400;
  color: var(--moss);
  line-height: 1;
  position: relative;
  z-index: 2
}

.why-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 600;
  margin-top: 20px;
  position: relative;
  z-index: 2
}

.why-card p {
  font-size: 14px;
  line-height: 1.55;
  margin-top: 10px;
  opacity: .85;
  position: relative;
  z-index: 2
}

/* ---------- CONTACT ---------- */
.contact {
  background: var(--ink);
  color: var(--paper);
  padding: 140px 0 0;
  position: relative;
  overflow: hidden
}

.contact::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -10%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, var(--moss-deep) 0%, transparent 60%);
  opacity: .6;
  filter: blur(60px);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  margin-top: 50px;
  position: relative
}

@media (max-width:980px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px
  }
}

.contact-copy>p {
  color: rgba(251, 248, 240, .75);
  max-width: 520px;
  line-height: 1.6;
  margin-top: 20px;
  font-size: 17px
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 30px
}

.c-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  background: rgba(251, 248, 240, .05);
  border: 1px solid rgba(251, 248, 240, .1);
  border-radius: 18px;
  transition: background .3s ease, transform .3s ease;
}

.c-card:hover {
  background: rgba(251, 248, 240, .1);
  transform: translateX(6px)
}

.c-ico {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--moss);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.c-ico svg {
  width: 20px;
  height: 20px;
  color: var(--paper)
}

.c-card span {
  display: block;
  font-size: 12px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(251, 248, 240, .55);
  margin-bottom: 2px
}

.c-card strong {
  font-size: 15px;
  font-weight: 500;
  color: var(--paper)
}

.contact-form {
  background: var(--paper);
  color: var(--ink);
  border-radius: 28px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 40px 100px -30px rgba(0, 0, 0, .5);
}

.contact-form h3 {
  font-family: 'Fraunces', serif;
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 6px
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.contact-form label span {
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-muted)
}

.contact-form input {
  padding: 12px 14px;
  border: 1px solid var(--rule);
  border-radius: 12px;
  background: var(--bg);
  font-size: 15px;
  color: var(--ink);
  transition: border-color .2s ease, background .2s ease;
  font-family: inherit;
}

.contact-form input:focus {
  outline: none;
  border-color: var(--moss);
  background: var(--paper)
}

.form-ok {
  margin-top: 4px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #e7f1dd;
  color: var(--moss-deep);
  font-size: 14px;
  text-align: center;
  display: none;
}

.form-ok.on {
  display: block;
  animation: pop .4s ease
}

@keyframes pop {
  from {
    transform: scale(.9);
    opacity: 0
  }

  to {
    transform: scale(1);
    opacity: 1
  }
}

/* ---------- Footer ---------- */
.footer {
  margin-top: 100px;
  padding: 32px 0;
  border-top: 1px solid rgba(251, 248, 240, .1);
  position: relative
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap
}

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

.footer-brand img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #0a0a0a;
  padding: 6px;
  object-fit: contain
}

.footer-brand strong {
  display: block;
  font-size: 15px;
  color: var(--paper)
}

.footer-brand span {
  font-size: 12px;
  color: rgba(251, 248, 240, .5)
}

.footer-small {
  font-size: 12px;
  color: rgba(251, 248, 240, .45)
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .9s ease, transform .9s cubic-bezier(.2, .7, .2, 1)
}

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

.reveal-card {
  opacity: 0;
  transform: translateY(40px) scale(.98);
  transition: opacity 1s ease, transform 1s cubic-bezier(.2, .7, .2, 1)
}

.reveal-card.in {
  opacity: 1;
  transform: translateY(0) scale(1)
}

/* ---------- WhatsApp FAB ---------- */
.wa-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  display: inline-flex;
  align-items: center;
  gap: 0;
  height: 60px;
  padding: 0 18px 0 18px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 14px 40px -10px rgba(37, 211, 102, .55), 0 6px 20px rgba(0, 0, 0, .18);
  overflow: hidden;
  max-width: 60px;
  transition: max-width .55s cubic-bezier(.2, .7, .2, 1), gap .35s ease, background .25s ease, transform .25s ease;
  cursor: none;
}

.wa-fab:hover {
  max-width: 280px;
  gap: 10px;
  background: #1da851;
  transform: translateY(-2px)
}

.wa-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  animation: wa-bob 2.4s ease-in-out infinite;
}

@keyframes wa-bob {

  0%,
  100% {
    transform: translateY(0) rotate(0)
  }

  50% {
    transform: translateY(-2px) rotate(-6deg)
  }
}

.wa-text {
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .3s ease .15s, transform .3s ease .15s;
  letter-spacing: .01em;
}

.wa-fab:hover .wa-text {
  opacity: 1;
  transform: translateX(0)
}

.wa-pulse {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, .55);
  animation: wa-pulse 2.2s ease-out infinite;
  pointer-events: none;
}

@keyframes wa-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, .55)
  }

  70% {
    box-shadow: 0 0 0 18px rgba(37, 211, 102, 0)
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0)
  }
}

@media (max-width:640px) {
  .wa-fab {
    bottom: 18px;
    right: 18px;
    height: 54px;
    padding: 0 16px;
    max-width: 54px
  }

  .wa-fab:hover {
    max-width: 240px
  }
}

/* ---------- Mobile ---------- */
@media (max-width:640px) {
  .hero {
    padding: 120px 0 40px
  }

  .hero-stats {
    gap: 24px;
    flex-wrap: wrap
  }

  .stat-num {
    font-size: 34px
  }

  .about,
  .products,
  .why {
    padding: 90px 0
  }

  .contact {
    padding: 90px 0 0
  }
}