/* ===========================
   NUTRIYAH — styles.css
   (Minimal editorial, Nutriyah logo palette)
   =========================== */

:root {
  --green-dark: #2d5a27;   /* logo forest green — primary */
  --green-mid:  #3d7a37;
  --green-bright: #4f9648;
  --green-pale: #eef3ea;
  --amber: #d4a02a;        /* logo amber/gold — accent */
  --amber-soft: #e8b948;
  --cream: #faf8f3;        /* warm ivory backdrop */
  --off-white: #f3efe5;
  --text-dark: #1f2a1c;
  --text-mid: #4a5448;
  --text-light: #8a8f86;
  --border: rgba(45, 90, 39, 0.14);
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 14px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

img[loading="lazy"] {
  opacity: 0;
  filter: blur(8px);
  transition: opacity 0.7s ease, filter 0.7s ease;
}
img[loading="lazy"].img-loaded {
  opacity: 1;
  filter: blur(0);
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--green-mid); border-radius: 10px; }

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===========================
   REVEAL — variants
   =========================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.85s cubic-bezier(0.22, 0.61, 0.36, 1),
              transform 0.85s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: opacity, transform;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}
.reveal[data-reveal="left"]  { transform: translateX(-32px); }
.reveal[data-reveal="right"] { transform: translateX(32px); }
.reveal[data-reveal="zoom"]  { transform: scale(0.94); }
.reveal[data-reveal="fade"]  { transform: none; }

/* Stagger via parent */
.stagger > * { transition-delay: 0s; }
.stagger.visible > *:nth-child(1) { transition-delay: 0.05s; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.12s; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.19s; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.26s; }
.stagger.visible > *:nth-child(5) { transition-delay: 0.33s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .marquee-track { animation: none !important; }
}

/* ===========================
   TYPOGRAPHY
   =========================== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 1rem;
}
.eyebrow.light { color: var(--amber-soft); }
.eyebrow-dot {
  width: 5px; height: 5px;
  background: var(--amber);
  border-radius: 50%;
}

.section-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.15;
  color: var(--green-dark);
  letter-spacing: -0.015em;
}
.section-title.light { color: var(--cream); }
.section-title em {
  font-style: italic;
  font-weight: 600;
  color: var(--amber);
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.3rem;
  border-radius: var(--r-md);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.2px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn-primary {
  background: var(--green-dark);
  color: var(--cream);
  border-color: var(--green-dark);
}
.btn-primary:hover {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--green-dark);
}
.btn-primary .arrow { transition: transform 0.3s ease; }
.btn-primary:hover .arrow { transform: translateX(3px); }
.btn-outline {
  background: transparent;
  color: var(--green-dark);
  border-color: var(--green-dark);
}
.btn-outline:hover {
  background: var(--green-dark);
  color: var(--cream);
}
.full-width { width: 100%; justify-content: center; }

/* ===========================
   NAVBAR
   =========================== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: transparent;
  transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
  padding: 1rem 0;
}
.navbar.scrolled {
  background: rgba(250, 248, 243, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
  padding: 0.6rem 0;
}
.nav-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo-img {
  height: 36px;
  width: auto;
  display: block;
  transition: height 0.3s;
}
.navbar.scrolled .logo-img { height: 30px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-size: 0.82rem;
  font-weight: 500;
  position: relative;
  padding: 0.3rem 0;
  transition: color 0.3s;
}
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--amber);
  transition: width 0.3s;
}
.nav-links a:not(.nav-cta):hover { color: var(--green-mid); }
.nav-links a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
  background: var(--green-dark);
  color: var(--cream) !important;
  padding: 0.5rem 1.1rem !important;
  border-radius: var(--r-md);
  transition: background 0.3s;
}
.nav-cta:hover { background: var(--amber); color: var(--green-dark) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
}
.hamburger span {
  width: 22px; height: 1.5px;
  background: var(--green-dark);
}

/* ===========================
   HERO
   =========================== */
.hero {
  min-height: 92vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 7rem 0 6rem;
  background: var(--cream);
  overflow: hidden;
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 64px 64px;
  background-position: -1px -1px;
  mask-image: radial-gradient(ellipse at top right, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at top right, black 30%, transparent 70%);
  opacity: 0.4;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  top: -10%; right: -10%;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(212, 160, 42, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-text {
  max-width: 540px;
}

/* Hero visual */
.hero-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  max-width: 420px;
  margin-left: auto;
}
.hero-img-main,
.hero-img-sub {
  position: absolute;
  overflow: hidden;
  border-radius: var(--r-lg);
  box-shadow: 0 20px 50px rgba(45, 90, 39, 0.18);
}
.hero-img-main {
  inset: 0 0 18% 22%;
  z-index: 2;
}
.hero-img-sub {
  width: 55%; height: 42%;
  bottom: 0; left: 0;
  z-index: 3;
  border: 6px solid var(--cream);
}
.hero-img-main img,
.hero-img-sub img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s ease;
}
.hero-visual:hover .hero-img-main img { transform: scale(1.05); }
.hero-visual:hover .hero-img-sub img  { transform: scale(1.05); }
.hero-floating-tag {
  position: absolute;
  top: 8%; left: -6%;
  z-index: 4;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 0.55rem 1rem 0.55rem 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 8px 24px rgba(45, 90, 39, 0.1);
  animation: float-soft 4.5s ease-in-out infinite;
}
.hf-dot {
  width: 8px; height: 8px;
  background: var(--amber);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(212, 160, 42, 0.18);
  animation: pulse-dot 2s ease-in-out infinite;
}
.hero-floating-tag strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--green-dark);
  line-height: 1.15;
}
.hero-floating-tag em {
  display: block;
  font-size: 0.7rem;
  color: var(--text-light);
  font-style: normal;
}

@keyframes float-soft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(212, 160, 42, 0.18); }
  50%      { box-shadow: 0 0 0 8px rgba(212, 160, 42, 0); }
}

/* Hero marquee */
.hero-marquee {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: var(--green-dark);
  color: var(--cream);
  padding: 0.8rem 0;
  overflow: hidden;
  z-index: 3;
}
.marquee-track {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
  width: max-content;
  animation: marquee 30s linear infinite;
  font-family: 'Manrope', sans-serif;
  font-style: italic;
  font-size: 0.95rem;
}
.marquee-track span:nth-child(even) { color: var(--amber); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.hero-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 1.05;
  color: var(--green-dark);
  letter-spacing: -0.025em;
  margin-bottom: 1.4rem;
}
.hero-title em {
  font-style: italic;
  color: var(--amber);
  font-weight: 600;
}
.hero-sub {
  font-size: 0.98rem;
  color: var(--text-mid);
  line-height: 1.65;
  max-width: 460px;
  margin-bottom: 1.8rem;
}
.hero-cta {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--border);
  max-width: 520px;
}
.meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.meta-item strong {
  font-family: 'Manrope', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--green-dark);
  line-height: 1;
}
.meta-item span {
  font-size: 0.68rem;
  color: var(--text-light);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-weight: 500;
}
.meta-divider {
  width: 1px;
  height: 30px;
  background: var(--border);
}

/* ===========================
   SECTIONS — shared
   =========================== */
.about, .focus, .values, .contact, .products { padding: 5rem 0; }
.vm { padding: 0 0 5rem; }
.why, .future { padding: 5rem 0; }

/* ===========================
   ABOUT
   =========================== */
.about {
  background: var(--cream);
  border-top: 1px solid var(--border);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: center;
}
.about-media {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(45, 90, 39, 0.15);
}
.about-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s ease;
}
.about-media:hover img { transform: scale(1.05); }
.about-media-tag {
  position: absolute;
  bottom: 1rem; left: 1rem;
  background: var(--cream);
  color: var(--green-dark);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.45rem 0.9rem;
  border-radius: 50px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.about-body p {
  font-size: 0.98rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 1.1rem;
}
.about-body p:last-child { margin-bottom: 0; }
.about-head { margin-bottom: 1.4rem; }

/* ===========================
   VISION & MISSION
   =========================== */
.vm { background: var(--cream); }
.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.vm-block {
  padding: 2rem 1.8rem;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--cream);
}
.vm-block-alt { background: var(--green-pale); border-color: transparent; }
.vm-tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}
.vm-block h3 {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.25;
  color: var(--green-dark);
  margin-bottom: 0.9rem;
  letter-spacing: -0.01em;
}
.vm-block p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
}
.mission-list {
  list-style: none;
  padding: 0;
}
.mission-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-dark);
  line-height: 1.55;
}
.mission-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.6rem;
  width: 10px; height: 1.5px;
  background: var(--amber);
}

/* ===========================
   PRODUCTS
   =========================== */
.products { background: var(--cream); }
.products-head {
  max-width: 600px;
  margin-bottom: 2.2rem;
}
.products-list {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1rem;
  perspective: 1000px;
}
.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.8rem;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.product-card:not(.product-card-soon):hover {
  background: var(--green-pale);
  border-color: var(--amber);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(45, 90, 39, 0.08);
}
.product-card::before {
  content: '';
  position: absolute;
  top: -40%; right: -20%;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(212, 160, 42, 0.1) 0%, transparent 65%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s;
}
.product-card:not(.product-card-soon):hover::before { opacity: 1; }

.product-card-tag {
  position: absolute;
  top: 1rem; right: 1rem;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--green-dark);
  background: var(--amber);
  padding: 0.3rem 0.7rem;
  border-radius: 50px;
  z-index: 2;
}
.product-card-tag.tag-muted {
  background: transparent;
  color: var(--text-light);
  border: 1px solid var(--border);
}
.product-card-media {
  position: relative;
  margin: -1.8rem -1.8rem 1.4rem;
  height: 260px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background: var(--green-pale);
}
.product-card-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s ease, filter 0.6s ease;
  filter: saturate(1.05);
}
.product-card-featured:hover .product-card-media img {
  transform: scale(1.06);
}
.product-card-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(45, 90, 39, 0.25) 0%, transparent 50%);
  pointer-events: none;
}

/* Loopa product photo */
.product-card-photo { background: var(--green-pale); }
.product-card-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease, filter 0.6s ease;
  filter: saturate(1.05);
}
.product-card-featured:hover .product-card-photo img {
  transform: scale(1.05);
}
.product-card-body {
  position: relative;
  z-index: 1;
}
.product-card-brand {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
  margin-bottom: 0.9rem;
  flex-wrap: wrap;
}
.product-name {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--green-dark);
  letter-spacing: 0.5px;
  line-height: 1;
}
.product-name em {
  font-style: normal;
  color: var(--amber);
}
.product-name-soon {
  font-style: italic;
  font-weight: 500;
  color: var(--text-light);
}
.product-cat {
  font-size: 0.66rem;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--green-mid);
  font-weight: 600;
}
.product-tagline {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--green-dark);
  margin-bottom: 0.5rem;
}
.product-desc {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.2rem;
}
.product-tags span {
  font-size: 0.7rem;
  font-weight: 500;
  padding: 0.25rem 0.7rem;
  background: rgba(45, 90, 39, 0.06);
  color: var(--green-mid);
  border-radius: 50px;
}
.product-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green-dark);
  text-decoration: none;
  letter-spacing: 0.2px;
}
.product-link .arrow { transition: transform 0.3s; }
.product-card:hover .product-link .arrow { transform: translate(3px, -3px); }
.product-card-soon .product-link { color: var(--text-light); }
.product-card-soon .product-link:hover { color: var(--amber); }

/* ===========================
   FOCUS AREAS
   =========================== */
.focus { background: var(--cream); }
.focus-head {
  max-width: 600px;
  margin-bottom: 2.2rem;
}
.focus-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem;
}
.focus-row { margin-bottom: 0; }
@media (max-width: 720px) {
  .focus-list { grid-template-columns: 1fr; }
}
.focus-row {
  display: grid;
  grid-template-columns: 50px 1fr 30px;
  gap: 1.5rem;
  align-items: center;
  padding: 1.2rem 1.4rem;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--cream);
  margin-bottom: 0.7rem;
  cursor: pointer;
  transition: padding 0.4s ease, background 0.3s, transform 0.3s, box-shadow 0.3s;
}
.focus-row:last-child { margin-bottom: 0; }
.focus-row:hover {
  padding-left: 1.8rem;
  background: var(--green-pale);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45, 90, 39, 0.06);
}
.focus-num {
  font-family: 'Manrope', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--amber);
  font-style: italic;
}
.focus-content h3 {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--green-dark);
  margin-bottom: 0.2rem;
  letter-spacing: -0.005em;
  transition: color 0.3s;
}
.focus-content p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.5;
}
.focus-arrow {
  font-size: 1rem;
  color: var(--amber);
  text-align: right;
  transition: transform 0.3s;
}
.focus-row:hover .focus-arrow { transform: translate(3px, -3px); }
.focus-row:hover .focus-content h3 { color: var(--amber); }

/* ===========================
   WHY (dark section)
   =========================== */
.why {
  background: var(--green-dark);
  color: var(--cream);
}
.why-head {
  max-width: 600px;
  margin-bottom: 2.2rem;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}
.why-card {
  padding: 1.5rem 1.6rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg);
  transition: background 0.3s, transform 0.3s;
}
.why-card:hover {
  background: rgba(212, 160, 42, 0.08);
  border-color: rgba(212, 160, 42, 0.25);
  transform: translateY(-2px);
}
.why-card h4 {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
  letter-spacing: -0.005em;
}
.why-card p {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* ===========================
   VALUES
   =========================== */
.values { background: var(--cream); }
.values-head {
  text-align: center;
  margin-bottom: 2.2rem;
}
.values-head .eyebrow { justify-content: center; }
.values-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.6rem;
  max-width: 100%;
  margin: 0 auto;
}
.value-item {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
  text-align: left;
}
@media (max-width: 900px) {
  .values-list { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .values-list { grid-template-columns: repeat(2, 1fr); }
}
.value-item {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  padding: 0.85rem 1.3rem;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: padding 0.3s, background 0.3s, transform 0.3s;
}
.value-item:hover {
  padding-left: 2rem;
  background: var(--green-pale);
  transform: translateY(-2px);
}
.value-item span {
  font-family: 'Manrope', sans-serif;
  font-style: italic;
  font-size: 0.85rem;
  color: var(--amber);
  min-width: 24px;
}
.value-item h4 {
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--green-dark);
  letter-spacing: -0.005em;
  transition: color 0.3s;
}
.value-item:hover h4 { color: var(--amber); font-style: italic; }

/* ===========================
   FUTURE
   =========================== */
.future {
  background: var(--green-dark);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.future::before {
  content: '';
  position: absolute;
  top: -50%; left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(212, 160, 42, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}
.future-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  opacity: 0.18;
  pointer-events: none;
}
.future-bg-img img {
  width: 100%; height: 120%;
  object-fit: cover;
  filter: grayscale(40%) hue-rotate(-10deg);
}
.future-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  text-align: center;
  margin: 0 auto;
}
.future-inner .eyebrow { justify-content: center; }
.future-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  line-height: 1.1;
  color: var(--cream);
  letter-spacing: -0.015em;
  margin-bottom: 1.2rem;
}
.future-title em {
  font-style: italic;
  color: var(--amber);
}
.future-text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.7);
  max-width: 580px;
  margin: 0 auto;
}

/* ===========================
   CONTACT
   =========================== */
.contact { background: var(--cream); }

.contact-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 2.4rem;
}
.contact-head .eyebrow { justify-content: center; }
.contact-lead {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-top: 0.8rem;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}
.contact-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1.4rem 1.3rem;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.25s, background 0.25s, transform 0.25s, box-shadow 0.25s;
}
.contact-card:not(.contact-card-static):hover {
  background: var(--off-white);
  border-color: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45, 90, 39, 0.08);
}
.contact-card:not(.contact-card-static):hover .contact-card-icon {
  background: var(--green-dark);
  color: var(--amber);
  border-color: var(--green-dark);
}
.contact-card:not(.contact-card-static):hover .contact-card-arrow {
  color: var(--green-dark);
  transform: translate(3px, -3px);
}

.contact-card-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--green-pale);
  color: var(--green-dark);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.contact-card-icon svg {
  width: 20px;
  height: 20px;
}

.contact-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
  flex: 1;
}
.contact-card-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--amber);
}
.contact-card-value {
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.3;
  word-break: break-word;
}
.contact-card-hint {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 0.15rem;
}

.contact-card-arrow {
  position: absolute;
  top: 1rem;
  right: 1.1rem;
  font-size: 0.95rem;
  color: var(--text-light);
  transition: transform 0.25s, color 0.25s;
}
.contact-card-static {
  cursor: default;
}

@media (max-width: 880px) {
  .contact-cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .contact-cards { grid-template-columns: 1fr; }
  .contact-card { padding: 1.15rem 1.1rem; }
}

/* form */
.contact-form { background: transparent; padding: 0; }
.form-row { margin-bottom: 1rem; }
.form-row label { display: block; }
.form-row label > span {
  display: block;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 0.4rem;
}
.form-row input,
.form-row textarea {
  width: 100%;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 0.65rem 0.85rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  outline: none;
  resize: vertical;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.form-row input::placeholder,
.form-row textarea::placeholder {
  color: var(--text-light);
  opacity: 0.6;
}
.form-row input:focus,
.form-row textarea:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(212, 160, 42, 0.12);
}
.form-status {
  margin-top: 0.7rem;
  font-size: 0.8rem;
  color: var(--green-mid);
  font-weight: 500;
  min-height: 1.1rem;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  padding: 2.5rem 0 1.5rem;
  background: var(--green-dark);
  color: var(--cream);
}
.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-brand {
  display: flex;
  align-items: center;
}
.footer-logo-img {
  height: 32px;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
.footer-tag {
  color: rgba(255,255,255,0.55);
  font-size: 0.8rem;
  font-style: italic;
}
.footer-links {
  display: flex;
  gap: 1.4rem;
  justify-self: end;
}
.footer-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.65);
  font-size: 0.8rem;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--amber); }
.footer-copy {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 1.8rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 900px) {
  .container { padding: 0 1.2rem; }
  .nav-inner { padding: 0 1.2rem; }
  .nav-links {
    display: none;
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.8rem;
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1rem; }
  .hamburger { display: flex; z-index: 100; }
  .hero-meta { flex-wrap: wrap; gap: 1.2rem; }
  .meta-divider { display: none; }
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual { max-width: 320px; margin: 0 auto; aspect-ratio: 4 / 4; }
  .hero-floating-tag { left: 2%; }
  .hero-marquee { font-size: 0.85rem; }
  .marquee-track { font-size: 0.85rem; }
  .about-inner { grid-template-columns: 1fr; gap: 1.8rem; }
  .about-media { max-width: 360px; margin: 0 auto; aspect-ratio: 4 / 3; }
  .product-card-media { height: 200px; }
  .vm-grid { grid-template-columns: 1fr; padding: 0 1.2rem; }
  .vm-block { padding: 1.6rem 1.4rem; }
  .focus-row { grid-template-columns: 40px 1fr 24px; gap: 1rem; padding: 1rem 1.2rem; }
  .focus-row:hover { padding-left: 1.5rem; }
  .products-list { grid-template-columns: 1fr; }
  .product-card { padding: 1.5rem 1.4rem; }
  .why-grid { grid-template-columns: 1fr; }
  .why-card { padding: 1.4rem 1.4rem; }
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1rem;
  }
  .footer-brand, .footer-links { justify-self: center; }
}

@media (max-width: 550px) {
  .hero-cta { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
  .value-item { gap: 0.8rem; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 0.8rem; }
}

/* ===========================
   HERO VIDEO BACKGROUND
   =========================== */
.hero-video-wrap {
  position: absolute;
  top: 300px;
  inset: auto 0 0 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.1s linear;
  will-change: opacity;
}
.hero-video-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    var(--cream) 0%,
    rgba(250, 248, 243, 0) 25%,
    rgba(250, 248, 243, 0) 75%,
    var(--cream) 100%
  );
  pointer-events: none;
}
.hero-inner { z-index: 2; }

@media (max-width: 720px) {
  .hero-video-wrap { top: 200px; }
}

/* ===========================
   FADE-RISE ANIMATIONS
   =========================== */
@keyframes fade-rise {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-rise,
.fade-rise-delay,
.fade-rise-delay-2 {
  opacity: 0;
  transform: translateY(20px);
  animation: fade-rise 0.8s ease-out forwards;
}
.fade-rise-delay   { animation-delay: 0.2s; }
.fade-rise-delay-2 { animation-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  .fade-rise,
  .fade-rise-delay,
  .fade-rise-delay-2 {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
  .hero-video { transition: none !important; }
}

/* ===========================
   COMPACT SIZING — desktop & mobile
   =========================== */
.container { max-width: 880px; }

.about, .focus, .values, .contact, .products,
.why, .future { padding: 3.2rem 0; }
.vm { padding: 0 0 3.2rem; }

.hero { min-height: 78vh; padding: 5rem 0 3.5rem; }
.hero-title { font-size: clamp(2rem, 4.2vw, 3.2rem); }
.hero-sub { font-size: 0.95rem; max-width: 460px; }

.section-title { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.about-head, .products-head, .focus-head, .why-head,
.values-head, .vm-grid { margin-bottom: 1.6rem; }

.about-body p { font-size: 0.92rem; line-height: 1.65; }

.vm-grid { max-width: 880px; gap: 0.8rem; }
.vm-block { padding: 1.4rem 1.3rem; }
.vm-block h3 { font-size: 1.1rem; }
.vm-block p, .mission-list li { font-size: 0.88rem; }

.products-list { grid-template-columns: 1.25fr 1fr; gap: 0.9rem; }
.product-card { padding: 1.3rem; }
.product-card-media { margin: -1.3rem -1.3rem 1rem; height: 200px; }
.product-name { font-size: 1.3rem; }
.product-tagline { font-size: 0.98rem; }
.product-desc { font-size: 0.84rem; margin-bottom: 0.8rem; }

.focus-row { padding: 0.95rem 1.1rem; grid-template-columns: 40px 1fr 24px; gap: 1.1rem; }
.focus-content h3 { font-size: 0.98rem; }
.focus-content p { font-size: 0.8rem; }

.why-grid { gap: 0.7rem; }
.why-card { padding: 1.2rem 1.3rem; }
.why-card h4 { font-size: 1rem; }
.why-card p { font-size: 0.82rem; }

.value-item { padding: 0.85rem 1rem; }
.value-item h4 { font-size: 1.05rem; }

.future-title { font-size: clamp(1.7rem, 3.2vw, 2.4rem); }
.future-text { font-size: 0.95rem; max-width: 560px; }

@media (max-width: 720px) {
  .container { padding: 0 1.1rem; }
  .about, .focus, .values, .contact, .products,
  .why, .future { padding: 2.4rem 0; }
  .vm { padding: 0 0 2.4rem; }

  .hero { min-height: auto; padding: 4rem 0 2.5rem; }
  .hero-title { font-size: clamp(1.7rem, 7vw, 2.2rem); }
  .hero-sub { font-size: 0.9rem; }

  .section-title { font-size: clamp(1.3rem, 5.5vw, 1.7rem); }

  .vm-grid { grid-template-columns: 1fr; padding: 0 1.1rem; }
  .vm-block { padding: 1.2rem 1.1rem; }

  .products-list { grid-template-columns: 1fr; }
  .product-card { padding: 1.1rem; }
  .product-card-media { margin: -1.1rem -1.1rem 0.9rem; height: 170px; }
  .product-name { font-size: 1.2rem; }

  .focus-row { padding: 0.8rem 1rem; grid-template-columns: 32px 1fr 20px; gap: 0.9rem; }
  .why-grid { grid-template-columns: 1fr; }
  .why-card { padding: 1rem 1.1rem; }
  .value-item { padding: 0.6rem 1rem; }
  .value-item h4 { font-size: 0.98rem; }
}

/* ===========================
   CORPORATE MINIMAL — overrides
   =========================== */

/* Strip decorative italics across the site */
.hero-title em,
.product-name em,
.product-tagline,
.focus-num,
.value-item span,
.value-item:hover h4,
.future-title em,
.about-media-tag,
.eyebrow {
  font-style: normal;
}

/* Logo-derived accent: amber on numerals/emphasis */
.focus-num { color: var(--amber); font-weight: 700; }
.value-item span { color: var(--amber); font-weight: 700; }
.product-name em { color: var(--amber); }
.future-title em { font-weight: 600; color: var(--amber-soft); }

/* Eyebrow: pill -> simple uppercase label */
.eyebrow-dot { display: none; }
.eyebrow {
  letter-spacing: 2px;
  color: var(--amber);
  font-weight: 700;
}
.eyebrow.light { color: var(--amber-soft); }

/* Remove the soft gradient halos behind sections */
.hero::after,
.product-card::before,
.future::before {
  display: none !important;
}

/* Sharper, more conservative borders & hovers */
.product-card,
.focus-row,
.vm-block,
.why-card,
.value-item,
.contact .contact-list,
.about-media {
  border-radius: var(--r-lg);
}

.product-card:not(.product-card-soon):hover {
  background: var(--off-white);
  border-color: var(--green-mid);
  transform: none;
  box-shadow: 0 1px 0 var(--border);
}
.focus-row:hover {
  padding-left: 1.4rem;
  background: var(--off-white);
  transform: none;
  box-shadow: none;
}
.focus-row:hover .focus-content h3 { color: var(--green-dark); }
.focus-row:hover .focus-arrow { color: var(--green-dark); transform: translate(2px, 0); }
.value-item:hover {
  padding-left: 1.6rem;
  background: var(--off-white);
  transform: none;
}
.value-item:hover h4 { color: var(--green-dark); }
.why-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
  transform: none;
}

/* Button: sharper, no italic flourish */
.btn {
  border-radius: var(--r-md);
  font-weight: 600;
  letter-spacing: 0.2px;
}
.btn-primary {
  background: var(--green-dark);
  color: var(--cream);
  border: 1px solid var(--green-dark);
}
.btn-primary:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
  transform: none;
}
.btn-outline {
  border: 1px solid var(--border);
  color: var(--text-dark);
}
.btn-outline:hover {
  background: var(--off-white);
  border-color: var(--green-mid);
  transform: none;
}

/* Product tag pill -> small uppercase label */
.product-card-tag {
  background: var(--green-dark);
  color: var(--cream);
  border-radius: var(--r-sm);
  letter-spacing: 1.4px;
  font-size: 0.6rem;
}
.product-card-tag.tag-muted {
  background: transparent;
  color: var(--text-light);
  border: 1px solid var(--border);
}
.product-tags span {
  background: var(--off-white);
  color: var(--text-mid);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
}

/* Why (dark) section — restrained */
.why { background: var(--green-dark); }

/* Mission list bullets — plain markers */
.mission-list li::marker { color: var(--green-mid); }

/* Headlines tighter, no italic flair */
.hero-title, .section-title, .future-title {
  letter-spacing: -0.01em;
  font-weight: 700;
}

