/* ============================================================
   Pure Cook — Mustard Oil  ·  Stylesheet
   Brand:  yellow (#FAC81E) · leaf green (#1E7B34) · oil gold · orange accent
   Type:   Open Sans (single family, weights 300–800)
   ============================================================ */

:root {
  --yellow:      #FAC81E;
  --yellow-soft: #FDE58A;
  --yellow-tint: #FEF6D8;
  --yellow-deep: #E3A50A;   /* oil gold / CTA */
  --green:       #1E7B34;   /* leaf / apron */
  --green-mid:   #256E33;
  --green-deep:  #123D1C;   /* dark sections / footer */
  --orange:      #E0611C;   /* "Pure" accent */
  --ink:         #2A2110;
  --ink-soft:    #6E603F;
  --cream:       #FFFCF3;
  --cream-2:     #FBF3DD;
  --line:        #ECE0BE;
  --white:       #FFFFFF;

  --radius:      16px;
  --radius-sm:   10px;
  --shadow:      0 1px 2px rgba(42,33,16,.05), 0 12px 30px -14px rgba(42,33,16,.20);
  --shadow-lg:   0 26px 60px -20px rgba(42,33,16,.38);

  --maxw:        1180px;
  --pad:         clamp(20px, 5vw, 56px);
  --ff:          "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--ff);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
.section { padding-block: clamp(52px, 8vw, 104px); }
.section--tight { padding-block: clamp(38px, 6vw, 68px); }

h1, h2, h3, h4 { font-weight: 800; line-height: 1.12; letter-spacing: -.02em; }
h2.title { font-size: clamp(1.9rem, 4.2vw, 2.9rem); margin-top: .35em; }
.lede { font-size: clamp(1.02rem, 1.5vw, 1.16rem); color: var(--ink-soft); max-width: 60ch; }

.eyebrow {
  font-size: .74rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--green); display: inline-flex; align-items: center; gap: .6em;
}
.eyebrow::before { content: ""; width: 26px; height: 3px; border-radius: 3px; background: var(--yellow-deep); }

.head { max-width: 62ch; }
.head--center { margin-inline: auto; text-align: center; }
.head--center .eyebrow { justify-content: center; }
.head--center .eyebrow::before { display: none; }
.head .lede { margin-top: 1rem; }
.head--center .lede { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  padding: .85em 1.55em; border-radius: 999px; font-weight: 700; font-size: .96rem;
  border: 2px solid transparent;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--green); color: #fff; }
.btn--primary:hover { background: var(--green-deep); box-shadow: var(--shadow); }
.btn--yellow { background: var(--yellow); color: var(--ink); }
.btn--yellow:hover { background: var(--yellow-deep); }
.btn--ghost { border-color: var(--line); background: transparent; color: var(--ink); }
.btn--ghost:hover { border-color: var(--green); color: var(--green); }
/* header sits on yellow — give the outline real contrast */
.site-header .btn--ghost { border-color: rgba(42,33,16,.4); color: var(--ink); }
.site-header .btn--ghost:hover { border-color: var(--green-deep); background: var(--green-deep); color: #fff; }
.btn--wa { background: #25D366; color: #06331a; }
.btn--wa:hover { background: #1eb457; color: #fff; }
.btn--block { width: 100%; }
.btn svg { width: 1.15em; height: 1.15em; flex: none; }

:focus-visible { outline: 3px solid var(--green); outline-offset: 2px; border-radius: 4px; }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--yellow);
  border-bottom: 3px solid var(--yellow-deep);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1.4rem; min-height: 76px; }
.brand { display: inline-flex; align-items: center; gap: .6rem; }
.brand__logo { height: 52px; width: auto; }
.brand__text { display: none; }
.nav__links { display: flex; align-items: center; gap: 1.7rem; }
.nav__links a { font-size: .96rem; font-weight: 600; color: var(--ink); position: relative; padding-block: 4px; }
.nav__links a:hover { color: var(--green-deep); }
.nav__links a.is-active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -3px; height: 3px; background: var(--green); border-radius: 3px; }
.nav__cta { display: flex; align-items: center; gap: .7rem; }
.nav__toggle { display: none; background: rgba(255,255,255,.35); border: 2px solid var(--ink); border-radius: 10px; width: 46px; height: 46px; padding: 0; align-items: center; justify-content: center; }
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after { content: ""; display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; position: relative; transition: .25s ease; }
.nav__toggle span::before { position: absolute; top: -6px; }
.nav__toggle span::after { position: absolute; top: 6px; }
body.nav-open .nav__toggle span { background: transparent; }
body.nav-open .nav__toggle span::before { transform: rotate(45deg); top: 0; }
body.nav-open .nav__toggle span::after { transform: rotate(-45deg); top: 0; }

/* ============================================================
   Hero
   ============================================================ */
.hero { position: relative; background: linear-gradient(160deg, var(--yellow) 0%, #FFDA5A 55%, var(--yellow-soft) 100%); overflow: hidden; }
.hero::after { content: ""; position: absolute; inset: auto 0 -1px 0; height: 40px; background: var(--cream); clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 60%); }
.hero__grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; padding-block: clamp(44px, 7vw, 84px); }
.hero__tag-hi { font-size: 1.06rem; font-weight: 700; color: var(--green-deep); }
.hero h1 { font-size: clamp(2.5rem, 6vw, 4.1rem); margin-top: .5rem; }
.hero h1 em { font-style: normal; color: var(--orange); }
.hero .lede { color: #4a3d18; margin-top: 1.2rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.9rem; }
.hero__trust { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.8rem; }
.chip { font-size: .74rem; font-weight: 700; letter-spacing: .04em; background: rgba(255,255,255,.55); border: 1.5px solid rgba(42,33,16,.15); color: var(--green-deep); padding: .45em .8em; border-radius: 999px; }

/* Hero art: chef + press animation preview */
.hero__art { position: relative; display: grid; place-items: center; }
/* darker, richer circular field behind the chef */
.hero__disc { position: absolute; width: 76%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle at 36% 30%, #FFE7A0 0%, var(--yellow-deep) 58%, #A9720A 100%); box-shadow: var(--shadow-lg), inset 0 -18px 40px rgba(120,80,10,.4); }
/* inner counter-rotating dark ring */
.hero__art::before { content: ""; position: absolute; width: 88%; aspect-ratio: 1; border-radius: 50%; border: 2.5px dashed rgba(18,61,28,.4); animation: spinRev 20s linear infinite; }
@keyframes spinRev { to { transform: rotate(-360deg); } }
.hero__chef { position: relative; z-index: 2; max-height: 380px; filter: drop-shadow(0 18px 24px rgba(42,33,16,.28)); }
.hero__seedring { position: absolute; inset: 0%; border-radius: 50%; border: 2.5px dashed rgba(80,52,8,.5); animation: spin 26s linear infinite; }
/* dark seed that orbits with the outer ring */
.hero__seedring::after { content: ""; position: absolute; top: -10px; left: calc(50% - 10px); width: 20px; height: 20px; border-radius: 60% 40% 55% 45% / 55% 55% 45% 45%; background: var(--green-deep); box-shadow: 0 3px 7px rgba(0,0,0,.35); }
.hero__seedring::before { content: ""; position: absolute; bottom: 4%; right: 12%; width: 13px; height: 13px; border-radius: 60% 40% 55% 45% / 55% 55% 45% 45%; background: #5c3f1a; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================================
   Marquee strip
   ============================================================ */
.strip { background: var(--green-deep); color: #EAF3E4; overflow: hidden; }
.strip__track { display: flex; gap: 2.5rem; white-space: nowrap; padding-block: .8rem; font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; animation: marquee 30s linear infinite; will-change: transform; }
.strip__track span { display: inline-flex; align-items: center; gap: 2.5rem; }
.strip__track span::after { content: "🌱"; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   Seed → Oil press animation section
   ============================================================ */
.press { background: var(--cream-2); }
.press__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.press__stage {
  position: relative; aspect-ratio: 1/1; max-width: 460px; margin-inline: auto; width: 100%;
  background: radial-gradient(circle at 50% 30%, #fff, var(--yellow-tint) 70%, #F6E7B8 100%);
  border-radius: 24px; border: 1px solid var(--line); box-shadow: var(--shadow); overflow: hidden;
}
.press__stage svg { width: 100%; height: 100%; }

/* falling seeds */
.seed-fall { animation: seedDrop 2.4s linear infinite; transform-origin: center; }
.seed-fall.s2 { animation-delay: .5s; }
.seed-fall.s3 { animation-delay: 1s; }
.seed-fall.s4 { animation-delay: 1.6s; }
.seed-fall.s5 { animation-delay: .8s; }
@keyframes seedDrop { 0% { transform: translateY(-14px); opacity: 0; } 12% { opacity: 1; } 55% { transform: translateY(70px); opacity: 1; } 62% { opacity: 0; } 100% { opacity: 0; } }

/* rotating press screw */
.press-screw { transform-origin: 200px 205px; animation: spin 3.2s linear infinite; }

/* oil stream */
.oil-stream { stroke-dasharray: 6 8; animation: oilFlow .7s linear infinite; }
@keyframes oilFlow { to { stroke-dashoffset: -14; } }

/* filling bottle level */
.oil-level { animation: fill 5s ease-in-out infinite; transform-origin: bottom; }
@keyframes fill { 0% { transform: scaleY(.12); } 45% { transform: scaleY(.92); } 55% { transform: scaleY(.92); } 100% { transform: scaleY(.12); } }

.press__steps { display: grid; gap: .9rem; margin-top: 1.6rem; }
.press__step { display: flex; gap: .9rem; align-items: flex-start; }
.press__step b { flex: none; width: 30px; height: 30px; border-radius: 50%; background: var(--green); color: #fff; display: grid; place-items: center; font-size: .85rem; }
.press__step p { font-size: .96rem; color: var(--ink-soft); }
.press__step p strong { color: var(--ink); }

/* ============================================================
   Product cards
   ============================================================ */
.products { display: grid; gap: 1.4rem; margin-top: 2.6rem; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.card { position: relative; display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--yellow-deep); }
.card--soon { opacity: .96; }
.card__media { position: relative; aspect-ratio: 4/3; background: linear-gradient(160deg, var(--yellow-tint), #F7E9BC); display: grid; place-items: center; overflow: hidden; }
.card__bottle { height: 78%; filter: drop-shadow(0 10px 14px rgba(42,33,16,.22)); }
.card__tag { position: absolute; top: .8rem; left: .8rem; font-size: .64rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; background: var(--green); color: #fff; padding: .4em .7em; border-radius: 999px; }
.card__soon { position: absolute; top: .8rem; right: .8rem; font-size: .64rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; background: var(--orange); color: #fff; padding: .4em .7em; border-radius: 999px; }
.card__body { padding: 1.25rem 1.25rem 1.4rem; display: flex; flex-direction: column; flex: 1; }
.card__name { font-size: 1.24rem; }
.card__tagline { font-size: .9rem; color: var(--yellow-deep); font-weight: 700; margin-top: .2rem; }
.card__desc { font-size: .92rem; color: var(--ink-soft); margin-top: .7rem; }
.spec { margin-top: 1.1rem; border-top: 1px dashed var(--line); }
.spec__row { display: flex; justify-content: space-between; gap: 1rem; padding: .5rem 0; border-bottom: 1px dashed var(--line); }
.spec__k { font-size: .68rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-soft); }
.spec__v { font-size: .84rem; font-weight: 700; text-align: right; }
.card__foot { margin-top: 1.2rem; }

/* filter */
.filters { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; margin-top: 2.2rem; }
.filter { font-size: .78rem; font-weight: 700; letter-spacing: .04em; padding: .6em 1.15em; border-radius: 999px; border: 2px solid var(--line); background: transparent; color: var(--ink-soft); transition: .2s ease; }
.filter:hover { border-color: var(--yellow-deep); color: var(--ink); }
.filter.is-active { background: var(--green); color: #fff; border-color: var(--green); }

/* ============================================================
   Why-us / features
   ============================================================ */
.why { background: var(--green-deep); color: #EAF3E4; }
.why .eyebrow { color: var(--yellow); }
.why .eyebrow::before { background: var(--yellow); }
.why h2 { color: #fff; }
.why__grid { display: grid; gap: 1.3rem; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); margin-top: 2.6rem; }
.why__item { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); padding: 1.5rem; }
.why__ic { width: 44px; height: 44px; border-radius: 12px; background: var(--yellow); color: var(--green-deep); display: grid; place-items: center; font-size: 1.3rem; margin-bottom: .9rem; }
.why__item h3 { font-size: 1.12rem; color: #fff; }
.why__item p { font-size: .92rem; color: #C7D8BF; margin-top: .4rem; }

/* ============================================================
   About split
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.split__art { aspect-ratio: 5/4; border-radius: var(--radius); overflow: hidden; position: relative; background: linear-gradient(160deg, var(--green) 0%, var(--green-deep) 100%); box-shadow: var(--shadow); display: grid; place-items: center; }
.split__art img { max-height: 86%; width: auto; filter: drop-shadow(0 16px 20px rgba(0,0,0,.3)); }
.split__art .leaf { position: absolute; width: 26%; aspect-ratio: 1; border-radius: 0 60% 0 60%; background: rgba(250,200,30,.18); }
.checklist { margin-top: 1.3rem; display: grid; gap: .65rem; }
.checklist li { display: flex; gap: .7rem; align-items: flex-start; font-size: .98rem; }
.checklist li::before { content: "✓"; color: var(--green); font-weight: 800; margin-top: 1px; }

/* nutrition table */
.nutri { margin-top: 2.6rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; box-shadow: var(--shadow); }
.nutri h3 { font-size: 1.15rem; margin-bottom: .3rem; }
.nutri table { width: 100%; border-collapse: collapse; margin-top: .8rem; }
.nutri td { padding: .55rem .4rem; border-bottom: 1px solid var(--line); font-size: .92rem; }
.nutri td:last-child { text-align: right; font-weight: 700; }
.nutri caption { font-size: .78rem; color: var(--ink-soft); text-align: left; margin-bottom: .3rem; }

/* ============================================================
   Blog
   ============================================================ */
.blog-grid { display: grid; gap: 1.4rem; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); margin-top: 2.6rem; }
.post { display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .2s ease, box-shadow .2s ease; }
.post:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.post__cover { aspect-ratio: 16/10; background: linear-gradient(160deg, var(--yellow), var(--yellow-deep)); position: relative; display: grid; place-items: center; color: var(--green-deep); font-size: 2.6rem; }
.post__cover.g2 { background: linear-gradient(160deg, var(--green), var(--green-deep)); color: var(--yellow); }
.post__cover.g3 { background: linear-gradient(160deg, var(--orange), #b8480f); color: #fff; }
.post__body { padding: 1.3rem; display: flex; flex-direction: column; flex: 1; }
.post__cat { font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--green); }
.post__body h3 { font-size: 1.16rem; margin: .5rem 0; }
.post__body p { font-size: .92rem; color: var(--ink-soft); flex: 1; }
.post__more { margin-top: 1rem; font-weight: 700; color: var(--green); font-size: .92rem; }

/* full article */
.article { max-width: 760px; margin-inline: auto; }
.article h1 { font-size: clamp(1.9rem, 4vw, 2.7rem); margin: .6rem 0 1rem; }
.article p { margin: 1rem 0; font-size: 1.04rem; color: #3f3620; }
.article h2 { font-size: 1.4rem; margin: 2rem 0 .6rem; }
.article ul.dots { margin: 1rem 0 1rem 1.1rem; list-style: disc; display: grid; gap: .4rem; }
.article ul.dots li { color: #3f3620; }
.article-meta { font-size: .8rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--green); }

/* ============================================================
   CTA band
   ============================================================ */
.cta-band { background: var(--green-deep); position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; top: -60%; right: -8%; width: 340px; height: 340px; border-radius: 50%; background: radial-gradient(circle at 40% 40%, rgba(250,200,30,.22), transparent 70%); }
.cta-band .container { position: relative; display: grid; grid-template-columns: 1.4fr 1fr; gap: 2rem; align-items: center; }
.cta-band h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); color: #fff; }
.cta-band p { color: #C9DCC0; margin-top: .7rem; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: flex-end; }
/* amber primary + ghost secondary — the combination from the reference */
.cta-band .btn--wa { background: var(--yellow); color: var(--ink); }
.cta-band .btn--wa:hover { background: var(--yellow-deep); color: var(--ink); }
.cta-band .btn--primary { background: transparent; border-color: rgba(255,255,255,.45); color: #fff; }
.cta-band .btn--primary:hover { background: #fff; color: var(--green-deep); border-color: #fff; }

/* ============================================================
   Contact
   ============================================================ */
.contact { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.info-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; margin-bottom: 1rem; box-shadow: var(--shadow); }
.info-card h3 { font-size: 1.05rem; }
.info-card a, .info-card p { font-size: .95rem; color: var(--ink-soft); margin-top: .3rem; display: block; }
.info-card a:hover { color: var(--green); }

/* ============================================================
   Forms
   ============================================================ */
.form { display: grid; gap: 1rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: grid; gap: .35rem; }
.field label { font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-soft); }
.field input, .field select, .field textarea { font-family: inherit; font-size: .96rem; color: var(--ink); padding: .8em .9em; border: 2px solid var(--line); border-radius: var(--radius-sm); background: var(--white); width: 100%; transition: border-color .2s ease, box-shadow .2s ease; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(30,123,52,.14); }
.field textarea { resize: vertical; min-height: 120px; }
.form__note { font-size: .82rem; color: var(--ink-soft); }
.form__status { font-size: .92rem; padding: .8em 1em; border-radius: var(--radius-sm); display: none; }
.form__status.is-ok { display: block; background: #E7F3E2; color: var(--green-deep); border: 1px solid #C4DFB9; }
.form__status.is-err { display: block; background: #F9E7DF; color: #8A3B23; border: 1px solid #EAC8BA; }

/* ============================================================
   Enquiry modal
   ============================================================ */
.modal { position: fixed; inset: 0; z-index: 100; display: none; align-items: center; justify-content: center; padding: 1.2rem; }
.modal.is-open { display: flex; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(18,61,28,.55); backdrop-filter: blur(3px); }
.modal__dialog { position: relative; width: 100%; max-width: 560px; max-height: 92vh; overflow-y: auto; background: var(--cream); border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: clamp(1.4rem, 4vw, 2.2rem); animation: pop .22s ease; }
@keyframes pop { from { opacity: 0; transform: translateY(12px) scale(.98); } to { opacity: 1; transform: none; } }
.modal__head { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; margin-bottom: 1.2rem; }
.modal__head h3 { font-size: 1.45rem; }
.modal__head p { font-size: .9rem; color: var(--ink-soft); margin-top: .2rem; }
.modal__product { font-size: .74rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--yellow-deep); display: inline-block; margin-top: .4rem; }
.modal__close { flex: none; width: 40px; height: 40px; border-radius: 10px; border: 2px solid var(--line); background: var(--white); font-size: 1.2rem; line-height: 1; color: var(--ink); }
.modal__close:hover { border-color: var(--green); color: var(--green); }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--green-deep); color: #C8D8C0; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 2rem; padding-block: clamp(46px, 7vw, 76px); }
.footer__brand .footer__logo { font-size: 1.5rem; font-weight: 800; color: #fff; letter-spacing: -.02em; }
.footer__brand .footer__logo span { color: var(--yellow); }
.footer__brand p { margin-top: .8rem; max-width: 34ch; font-size: .92rem; color: #B7C9AF; }
.footer__brand .hi { color: var(--yellow); font-weight: 700; margin-top: .8rem; font-size: .95rem; }
.footer__grid h4 { color: #fff; font-size: .76rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1rem; }
.footer__grid a, .footer__grid p.fp { font-size: .92rem; color: #B7C9AF; display: block; margin-bottom: .5rem; }
.footer__grid a:hover { color: var(--yellow); }
.footer__certs { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .6rem; }
.footer__certs span { font-size: .66rem; font-weight: 700; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); color: #DDE8D6; padding: .3em .6em; border-radius: 6px; }
.footer__bar { border-top: 1px solid rgba(255,255,255,.14); padding-block: 1.2rem; display: flex; flex-wrap: wrap; gap: .6rem; justify-content: space-between; font-size: .82rem; color: #93A78B; }

/* floating WhatsApp button */
.wa-float { position: fixed; right: 18px; bottom: 18px; z-index: 60; width: 58px; height: 58px; border-radius: 50%; background: #25D366; display: grid; place-items: center; box-shadow: 0 10px 26px -6px rgba(0,0,0,.4); animation: waPulse 2.4s ease-in-out infinite; }
.wa-float svg { width: 30px; height: 30px; }
@keyframes waPulse { 0%,100% { box-shadow: 0 10px 26px -6px rgba(0,0,0,.4), 0 0 0 0 rgba(37,211,102,.5); } 50% { box-shadow: 0 10px 26px -6px rgba(0,0,0,.4), 0 0 0 12px rgba(37,211,102,0); } }

.empty { text-align: center; color: var(--ink-soft); padding: 3rem 1rem; grid-column: 1 / -1; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
  .hero__grid, .press__grid, .split, .contact, .cta-band .container { grid-template-columns: 1fr; }
  .hero__art { max-width: 360px; margin-inline: auto; order: -1; }
  .cta-band__actions { justify-content: flex-start; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .nav__toggle { display: inline-flex; }
  .nav__links { position: fixed; inset: 79px 0 auto 0; flex-direction: column; align-items: flex-start; gap: 0; background: var(--yellow); border-bottom: 3px solid var(--yellow-deep); padding: .5rem var(--pad) 1.2rem; transform: translateY(-130%); transition: transform .28s ease; box-shadow: var(--shadow); }
  body.nav-open .nav__links { transform: translateY(0); }
  .nav__links a { width: 100%; padding: .9rem 0; border-bottom: 1px solid rgba(42,33,16,.15); font-size: 1.05rem; }
  .nav__cta .btn--ghost { display: none; }
}
@media (max-width: 520px) {
  .form__row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .nav__cta .btn { padding: .7em 1.05em; font-size: .88rem; }
}

/* ============================================================
   Hero oil-drip animation  (+ optional real-video background)
   ============================================================ */
.hero { position: relative; }
.hero__grid { position: relative; z-index: 2; }
.hero__oil { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; pointer-events: none; }

/* optional real oil video background — add class "hero--video" to <section class="hero"> */
.hero__video { position: absolute; inset: 0; z-index: 0; overflow: hidden; display: none; }
.hero--video .hero__video { display: block; }
.hero__video video { width: 100%; height: 100%; object-fit: cover; }
.hero--video .hero__oil { opacity: .45; }
.hero__scrim { position: absolute; inset: 0; z-index: 1; display: none;
  background: linear-gradient(90deg, rgba(52,34,4,.78) 0%, rgba(52,34,4,.5) 46%, rgba(52,34,4,.12) 100%); }
.hero--video .hero__scrim { display: block; }
.hero--video .hero__tag-hi { color: #FFE39A; }
.hero--video .hero__copy h1 { color: #fff; }
.hero--video .hero__copy h1 em { color: #FFD24A; }
.hero--video .hero__copy .lede { color: #F3E7C9; }
.hero--video .chip { background: rgba(255,255,255,.16); color: #fff; border-color: rgba(255,255,255,.32); }

/* --- video hero: clean, text-left, centered over the oil clip --- */
.hero--video { min-height: 82vh; display: flex; align-items: center; }
.hero--video .hero__grid { grid-template-columns: 1fr; width: 100%; padding-block: clamp(48px,8vw,96px); }
.hero--video .hero__copy { max-width: 640px; }
.hero--video .hero__art { display: none; }
.hero--video .hero__oil { display: none; }
.hero--video .hero__scrim { background: linear-gradient(90deg, rgba(8,22,10,.84) 0%, rgba(8,22,10,.52) 46%, rgba(10,28,12,.14) 100%); }
.hero--video .hero__cta .btn--yellow { background: var(--yellow); color: var(--ink); }
@media (max-width: 760px){
  .hero--video { min-height: 88vh; }
  .hero--video .hero__scrim { background: linear-gradient(180deg, rgba(8,22,10,.55) 0%, rgba(8,22,10,.35) 40%, rgba(8,22,10,.75) 100%); }
}

/* ============================================================
   (2) Remove the cream wedge under the video hero (no white gap)
   ============================================================ */
.hero--video::after { display: none; }
.hero--video { margin-bottom: 0; }
.strip { margin-top: 0; }

/* ============================================================
   (1) Custom circular cursor  (desktop / fine-pointer only)
   ============================================================ */
@media (hover:hover) and (pointer:fine){
  html.has-cursor, html.has-cursor * { cursor: none; }
  html.has-cursor input, html.has-cursor textarea, html.has-cursor select,
  html.has-cursor [contenteditable] { cursor: auto; }
  .cursor-ring, .cursor-dot { position: fixed; top: 0; left: 0; z-index: 99999; pointer-events: none; border-radius: 50%; will-change: transform; }
  .cursor-ring { width: 34px; height: 34px; margin: -17px 0 0 -17px; border: 2px solid var(--green);
    box-shadow: 0 0 0 1px rgba(255,255,255,.30), 0 2px 8px rgba(0,0,0,.18);
    transition: width .22s ease, height .22s ease, margin .22s ease, background-color .22s ease, border-color .22s ease; }
  .cursor-dot { width: 6px; height: 6px; margin: -3px 0 0 -3px; background: var(--green); box-shadow: 0 0 0 1px rgba(255,255,255,.4); }
  html.cursor-hover .cursor-ring { width: 54px; height: 54px; margin: -27px 0 0 -27px; background: rgba(30,123,52,.10); border-color: var(--yellow-deep); }
  html.cursor-down .cursor-ring { width: 24px; height: 24px; margin: -12px 0 0 -12px; border-color: var(--yellow-deep); }
  .cursor-ripple { position: fixed; z-index: 99998; pointer-events: none; width: 40px; height: 40px; border-radius: 50%;
    border: 2px solid var(--yellow-deep); animation: cursorRipple .5s ease-out forwards; }
  @keyframes cursorRipple { from { opacity:.6; transform: translate(-50%,-50%) scale(.3); } to { opacity:0; transform: translate(-50%,-50%) scale(1.05); } }
}

/* ============================================================
   (3) Scroll-reveal (site-wide) + oil-fill "depth" animation
   ============================================================ */
[data-reveal]{ opacity:0; transform: translateY(20px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
[data-reveal].in{ opacity:1; transform:none; }
[data-reveal].d1{ transition-delay:.08s } [data-reveal].d2{ transition-delay:.16s }
[data-reveal].d3{ transition-delay:.24s } [data-reveal].d4{ transition-delay:.32s }
@media (prefers-reduced-motion:reduce){ [data-reveal]{ opacity:1 !important; transform:none !important; transition:none !important; } }

/* oil-filling jar */
.oilfill-wrap{ position:relative; width:100%; max-width:240px; margin-inline:auto; }
.oilfill-svg{ width:100%; height:auto; display:block; filter: drop-shadow(0 16px 24px rgba(0,0,0,.28)); }
.oilfill-rise{ animation: oilRise 7s ease-in-out infinite; }
@keyframes oilRise{ 0%{transform:translateY(130px)} 46%{transform:translateY(4px)} 60%{transform:translateY(4px)} 100%{transform:translateY(130px)} }
.oilfill-wave{ animation: oilWave 3.4s linear infinite; }
@keyframes oilWave{ from{transform:translateX(0)} to{transform:translateX(-80px)} }
.oil-bubble{ animation: oilBub 3s ease-in infinite; opacity:0; }
.oil-bubble.b2{ animation-delay:1s } .oil-bubble.b3{ animation-delay:2s }
@keyframes oilBub{ 0%{opacity:0; transform:translateY(0)} 20%{opacity:.6} 100%{opacity:0; transform:translateY(-64px)} }
.oil-drip2{ animation: oilDrip2 2.6s ease-in infinite; }
@keyframes oilDrip2{ 0%{transform:translateY(-6px); opacity:0} 15%{opacity:1} 60%{transform:translateY(58px); opacity:1} 72%{opacity:0} 100%{opacity:0} }
