/* ============================================
   ADORATION FOODS — DESIGN TOKENS
   ============================================ */
:root {
  --cream:        #FFFFFF;
  --cream-light:  #F7F6F3;
  --forest:       #1E5B34;
  --forest-dark:  #163F25;
  --gold:         #D89B3C;
  --gold-dark:    #B7752B;
  --espresso:     #4A2E1C;
  --ink:          #211D16;
  --ink-soft:     #4A453C;
  --rust:         #B75530;
  --line:         rgba(33, 29, 22, 0.12);

  --font-display: 'Poppins', sans-serif;
  --font-body:    'Work Sans', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-pill: 999px;

  --container: 1140px;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; margin: 0; padding: 0; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--espresso);
  margin: 0;
  line-height: 1.15;
}

/* ============================================
   REUSABLE: eyebrow, tags/stamps, buttons
   ============================================ */
.eyebrow {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest);
  margin: 0 0 0.9rem;
}
.eyebrow--light { color: var(--gold); }

.tag {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  padding: 0.45em 0.9em;
  border-radius: var(--radius-pill);
}
.tag--stamp { color: var(--cream-light); }
.tag--gold  { background: var(--gold-dark); }
.tag--brown { background: var(--espresso); }
.tag--green { background: var(--forest); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 0.9em 1.7em;
  border-radius: var(--radius-pill);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.btn--primary {
  background: var(--forest);
  color: var(--cream-light);
}
.btn--primary:hover {
  background: var(--forest-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(30, 91, 52, 0.28);
}
.btn--ghost {
  background: transparent;
  color: var(--espresso);
  border: 1.5px solid var(--line);
}
.btn--ghost:hover {
  border-color: var(--espresso);
  transform: translateY(-2px);
}
.btn:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2.5px solid var(--rust);
  outline-offset: 2px;
}

/* ============================================
   NAV
   ============================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.nav__mark {
  background: var(--forest);
  color: var(--cream-light);
  width: 2.4em;
  height: 2.4em;
  justify-content: center;
  border-radius: var(--radius-sm);
}
.nav__name {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--espresso);
  font-size: 1.05rem;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-weight: 500;
  font-size: 0.95rem;
}
.nav__links a { color: var(--ink-soft); transition: color 0.15s ease; }
.nav__links a:hover { color: var(--forest); }
.nav__cta {
  background: var(--forest);
  color: var(--cream-light) !important;
  padding: 0.6em 1.3em;
  border-radius: var(--radius-pill);
}
.nav__cta:hover { background: var(--forest-dark); }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
}
.nav__toggle span { height: 2.5px; background: var(--espresso); border-radius: 2px; }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  padding: 6rem 0 5rem;
  overflow: hidden;
}
.hero__grain {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(var(--espresso) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.05;
  pointer-events: none;
}
.hero__inner { position: relative; max-width: 780px; }
.hero .mvv { margin-top: 3.5rem; position: relative; }
.hero__headline {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  margin-bottom: 1.3rem;
}
.hero__headline-accent { color: var(--forest); }
.hero__sub {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 560px;
  margin-bottom: 2.2rem;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero__tags { display: flex; gap: 0.7rem; flex-wrap: wrap; }

/* ============================================
   SECTIONS (generic)
   ============================================ */
.section { padding: 6rem 0; }
.section--tint { background: var(--cream-light); }
.section--dark {
  background: var(--espresso);
  color: var(--cream);
}
.section--dark h2, .section--dark h3, .section--dark h4 { color: var(--cream-light); }
.section__title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  max-width: 640px;
  margin-bottom: 1.1rem;
}
.section__title--light { color: var(--cream-light); }
.section__lede {
  font-size: 1.08rem;
  color: var(--ink-soft);
  max-width: 620px;
  margin-bottom: 3rem;
}
.section__lede--light { color: rgba(242, 232, 213, 0.78); }

.grid { display: grid; gap: 1.6rem; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }

/* ============================================
   CARDS (mission/vision/values, why-partner)
   ============================================ */
.card {
  background: var(--cream-light);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 2rem;
}
.section--tint .card { background: var(--cream); }
.card__eyebrow {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 0.7rem;
  font-size: 1.05rem;
}

/* ============================================
   PRODUCT CARDS
   ============================================ */
.product-grid { margin-top: 1rem; }
.product-card {
  position: relative;
  background: var(--cream-light);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(74, 46, 28, 0.12);
}
.product-card__icon {
  width: 64px; height: 64px;
  margin-bottom: 1.2rem;
}
.product-card__weight {
  position: absolute;
  top: 1.6rem;
  right: 1.6rem;
}
.product-card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.product-card p { color: var(--ink-soft); margin-bottom: 1.1rem; font-size: 0.95rem; }
.link-btn {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--forest);
  transition: gap 0.15s ease, color 0.15s ease;
}
.link-btn:hover { color: var(--forest-dark); }

/* ============================================
   BUSINESS MODEL PATH
   ============================================ */
.path {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem;
  counter-reset: step;
}
.path__step {
  border-top: 3px solid var(--forest);
  padding-top: 1.3rem;
}
.path__num {
  display: block;
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--gold-dark);
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
}
.path__step h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.path__step p { color: var(--ink-soft); font-size: 0.92rem; }

/* ============================================
   BRANDING SERVICES CHIPS
   ============================================ */
.chip-grid { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.chip {
  border: 1.5px solid rgba(242, 232, 213, 0.35);
  color: var(--cream-light);
  padding: 0.6em 1.2em;
  border-radius: var(--radius-pill);
  font-size: 0.92rem;
  font-weight: 500;
}

/* ============================================
   AUDIENCE + PERSONAS
   ============================================ */
.audience-grid { margin-top: 0.5rem; }
.audience-card {
  padding: 1.4rem 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--cream-light);
}
.audience-card__icon { width: 28px; height: 28px; margin-bottom: 0.8rem; }
.audience-card h4 { font-size: 1rem; margin-bottom: 0.3rem; }
.audience-card p { color: var(--ink-soft); font-size: 0.9rem; margin: 0; }

.persona-grid { margin-top: 3rem; }
.persona-card {
  background: var(--cream-light);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 2rem;
}
.persona-card__head { display: flex; align-items: baseline; gap: 0.8rem; flex-wrap: wrap; margin-bottom: 1.2rem; }
.persona-card__head h3 { font-size: 1.3rem; }
.persona-card__age { font-size: 0.85rem; color: var(--ink-soft); font-family: var(--font-mono); }
.persona-card__label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--forest);
  margin: 1rem 0 0.3rem;
  font-weight: 700;
}
.persona-card p:not(.persona-card__label) { color: var(--ink-soft); margin: 0; }

/* ============================================
   CONTACT
   ============================================ */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact__details { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.contact__row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 500;
  color: var(--cream-light);
}
.contact__row svg { width: 20px; height: 20px; flex-shrink: 0; }

.contact__locations { margin-top: 2.2rem; }
.contact__locations-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.9rem;
}
.contact__location-list { display: flex; flex-direction: column; gap: 0.9rem; }
.contact__location-item h4 { font-size: 0.95rem; color: var(--cream-light); margin-bottom: 0.15rem; }
.contact__location-item p { font-size: 0.88rem; color: rgba(255, 255, 255, 0.65); margin: 0; }

.contact__form {
  background: rgba(242, 232, 213, 0.06);
  border: 1px solid rgba(242, 232, 213, 0.18);
  border-radius: var(--radius-md);
  padding: 2rem;
}
.form__row { margin-bottom: 1.2rem; display: flex; flex-direction: column; gap: 0.4rem; }
.form__row--split { flex-direction: row; gap: 1rem; }
.form__row--split > div { flex: 1; display: flex; flex-direction: column; gap: 0.4rem; }
.form__row label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}
.form__row input, .form__row select, .form__row textarea {
  font-family: var(--font-body);
  font-size: 0.98rem;
  padding: 0.8em 1em;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(242, 232, 213, 0.25);
  background: rgba(242, 232, 213, 0.08);
  color: var(--cream-light);
}
.form__row input::placeholder, .form__row textarea::placeholder { color: rgba(242, 232, 213, 0.45); }
.form__row select option { color: var(--ink); }
.form__submit { width: 100%; justify-content: center; margin-top: 0.4rem; }
.form__note {
  font-size: 0.88rem;
  margin-top: 0.9rem;
  min-height: 1.2em;
  color: var(--gold);
}
.form__note[data-state="error"] { color: #E28B7D; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--forest-dark);
  color: rgba(242, 232, 213, 0.75);
  padding: 3rem 0;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--cream-light);
}
.footer__tagline { font-size: 0.9rem; margin: 0; }
.footer__links { display: flex; gap: 1.4rem; font-size: 0.9rem; }
.footer__links a:hover { color: var(--cream-light); }
.footer__copy { width: 100%; font-size: 0.8rem; opacity: 0.7; margin: 0; }

/* ============================================
   WHATSAPP FAB
   ============================================ */
.whatsapp-fab {
  position: fixed;
  bottom: 1.6rem;
  right: 1.6rem;
  width: 56px;
  height: 56px;
  background: var(--forest);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(22, 63, 37, 0.4);
  z-index: 90;
  transition: transform 0.2s ease;
}
.whatsapp-fab:hover { transform: scale(1.08); }
.whatsapp-fab svg { width: 26px; height: 26px; }

/* ============================================
   SCROLL REVEAL
   ============================================ */
/* Content is visible by default. Only once js.js confirms JavaScript
   is running do we hide .reveal elements pending their scroll-in
   animation — this way, if JS is slow, blocked, or fails, the page
   still shows everything instead of leaving sections blank. */
.reveal { transition: opacity 0.6s ease, transform 0.6s ease; }
.js .reveal:not(.is-visible) {
  opacity: 0;
  transform: translateY(16px);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .path { grid-template-columns: repeat(3, 1fr); }
  .contact { grid-template-columns: 1fr; }
  .hero { padding: 4.5rem 0 3.5rem; }
  .section { padding: 4.5rem 0; }
}

@media (max-width: 640px) {
  html { -webkit-text-size-adjust: 100%; }
  body { overflow-x: hidden; }

  .nav__inner { height: 68px; }
  .nav__links {
    position: absolute;
    top: 68px;
    left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem 24px 2rem;
    gap: 1.4rem;
    border-bottom: 1px solid var(--line);
    display: none;
  }
  .nav__links.is-open { display: flex; }
  .nav__links a { padding: 0.3rem 0; font-size: 1.02rem; }
  .nav__toggle { display: flex; }
  .nav__cta { align-self: flex-start; }

  .hero { padding: 3.2rem 0 2.8rem; }
  .section { padding: 3.5rem 0; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { justify-content: center; }
  .hero .mvv { margin-top: 2.5rem; }

  .grid--3 { grid-template-columns: 1fr; }
  .grid--2 { grid-template-columns: 1fr; }
  .path { grid-template-columns: 1fr; }
  .form__row--split { flex-direction: column; }
  .footer__inner { flex-direction: column; align-items: flex-start; }
  .contact__form { padding: 1.5rem; }
}
