/* ════════════════════════════════════════════════════════════
   Common Goods — design system
   ════════════════════════════════════════════════════════════ */
:root {
  --ink:        #0a2a10;          /* near-black forest */
  --green:      #0E3D14;          /* primary dark green */
  --green-2:    #0f4a18;          /* slightly lighter */
  --green-deep: #062d0a;
  --lime:       #5CD63F;          /* CTA / highlight lime */
  --lime-soft:  #b3e29b;           /* highlighter pen */
  --lime-pale:  #e7f5dd;           /* form bg */
  --mint:       #cfe6c0;
  --cream:      #f5f3ec;          /* page bg */
  --cream-2:    #efeee6;
  --white:      #ffffff;
  --cyan:       #c3e2eb;          /* nav hover (light teal) */
  --shadow-soft: 0 30px 60px -20px rgba(14,61,20,.18);
  --r-pill:     999px;
  --r-card:     22px;
  --r-md:       14px;
  --maxw:       1380px;

  --f-display: "Fraunces", ui-serif, Georgia, serif;
  --f-body:    "Inter Tight", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--f-body);
  color: var(--ink);
  background: var(--cream);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
h1,h2,h3,h4 { margin: 0; }

/* ─── Reusable buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .01em;
  transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--primary {
  background: var(--green);
  color: #fff;
}
.btn--primary:hover { background: var(--green-deep); box-shadow: 0 10px 24px -8px rgba(14,61,20,.45); }
.btn--dark {
  background: var(--green-deep);
  color: #fff;
  padding: 12px 30px;
}
.btn--dark:hover { background: #000; }

/* ════════════════════════════════════════════════════════════
   NAVIGATION
   ════════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  inset: 18px 24px auto 24px;
  z-index: 100;
  pointer-events: none;
}
.nav__inner {
  pointer-events: auto;
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 10px 14px 10px 22px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,.62);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid rgba(255,255,255,.7);
  box-shadow: 0 10px 30px -10px rgba(10,42,16,.18);
}
.nav__logo {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  transition: background .3s ease;
}
.nav__logo:hover { background: var(--lime); }
.nav__logo-text {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 32px;
  text-align: end;
  line-height: .92;
  color: var(--green);
  letter-spacing: -.02em;
  font-variation-settings: "opsz" 14;
}
.nav__logo-dot { color: var(--lime); }
.nav__logo:hover .nav__logo-dot { color: var(--green); }

.nav__links {
  display: flex;
  justify-self: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__links a {
  display: inline-block;
  padding: 9px 16px;
  border-radius: var(--r-pill);
  font-size: 16px;
  font-weight: 500;
  color: var(--green-deep);
  transition: background .25s ease, color .25s ease;
}
.nav__links a[data-pill="cyan"]:hover { background: var(--cyan); }
.nav__links a[data-pill="green-fill"]:hover { background: var(--green); color: #fff; }

.nav__cta {
  background: var(--lime);
  color: var(--green-deep);
  font-weight: 600;
  font-size: 14.5px;
  padding: 10px 22px;
  border-radius: var(--r-pill);
  transition: background .25s ease, color .25s ease, transform .25s ease;
}
.nav__cta:hover { background: var(--green-deep); color: var(--lime); transform: translateY(-1px); }

/* ════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  max-height: 900px;
  margin: 0 14px;
  border-radius: 26px;
  overflow: hidden;
  isolation: isolate;
}
.hero__media { position: absolute; inset: 0; }
.hero__slide {
  position: absolute; inset: 0;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.4s ease, transform 6s ease-out;
}
.hero__slide.is-active { opacity: 1; transform: scale(1); }
.hero__slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
/* Background fallbacks (visible if image fails) */
.hero__slide--food   { background: linear-gradient(135deg, #d4e2c8 0%, #a9c98c 50%, #6f9a4e 100%); }
.hero__slide--drink  { background: linear-gradient(135deg, #b8e4c8 0%, #5cb87a 60%, #2a7a3e 100%); }
.hero__slide--forest { background: linear-gradient(180deg, #2d4a2a 0%, #1a3018 60%, #0a1e08 100%); }
.hero__slide--field  { background: linear-gradient(180deg, #f5d97a 0%, #d4a849 50%, #6f8a3a 100%); }
.hero::after {
  /* subtle bottom-vignette so the card has contrast */
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 40%;
  background: linear-gradient(to top, rgba(0,0,0,.18), transparent);
  pointer-events: none;
}

.hero__card {
  position: absolute;
  right: 36px;
  bottom: 36px;
  z-index: 2;
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  padding: 22px 26px;
  border-radius: var(--r-card);
  display: grid;
  gap: 14px;
  max-width: 340px;
  border: 1px solid rgba(255,255,255,.7);
  box-shadow: var(--shadow-soft);
  animation: cardIn 1s ease .3s both;
}
@keyframes cardIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero__headline {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.1;
  letter-spacing: -.015em;
  color: var(--green-deep);
}
.hero__headline span { display: block; }
.hero__headline em {
  display: block;
  font-style: italic;
  font-weight: 700;
  color: var(--lime);
  font-variation-settings: "opsz" 120;
}

.hero__dots {
  position: absolute;
  bottom: 24px;
  left: 36px;
  z-index: 2;
  display: flex;
  gap: 8px;
}
.hero__dot {
  width: 30px; height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,.45);
  transition: background .3s ease, width .3s ease;
}
.hero__dot.is-active { background: var(--lime); width: 44px; }
.hero__dot:hover { background: rgba(255,255,255,.8); }

/* ════════════════════════════════════════════════════════════
   STORY / ACCORDION
   ════════════════════════════════════════════════════════════ */
.story {
  max-width: var(--maxw);
  margin: 80px auto 60px;
  padding: 0 24px;
}
.story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}

.accordion { display: grid; gap: 12px; }
.acc__item {
  background: #fff;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(14,61,20,.06);
  transition: box-shadow .3s ease;
}
.acc__item.is-open { box-shadow: 0 16px 40px -16px rgba(14,61,20,.18); }

.acc__head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  text-align: left;
  color: var(--lime);
  font-weight: 600;
  font-size: 22px;
  transition: color .25s ease;
}
.acc__item.is-open .acc__head { color: var(--green); }
.acc__num {
  font-family: var(--f-display);
  font-weight: 600;
  color: inherit;
  font-size: 18px;
  font-variant-numeric: tabular-nums;
}

.acc__panel {
  position: relative;
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .5s cubic-bezier(.5,0,.2,1);
}
.acc__panel > :not(.acc__blob) {
  min-height: 0;
  overflow: hidden;
}
.acc__item.is-open .acc__panel { grid-template-rows: 1fr; }
.acc__panel p {
  font-size: 18px;
  line-height: 1.65;
  color: var(--green-deep);
  margin: 0 24px 16px;
  padding-top: 0;
  position: relative;
  z-index: 1;
}
.acc__panel p:first-of-type { margin: 0px; }
article.acc__item {
    background-image: url(intersect.png);
    background-repeat: no-repeat;
	display: grid;
    align-content: space-between;
}
.acc__item.is-open{
	min-height: 402px;
}
.acc__item.is-open .acc__panel p {
margin: 0 24px 16px;
}
/* The "highlighter blob" behind the top of the panel */
.acc__blob {
  position: absolute;
  left: 8px; top: -10px;
  width: 260px; height: 130px;
  background: var(--lime-soft);
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  transform: rotate(-4deg);
  opacity: 0;
  transition: opacity .5s ease .15s, transform .8s ease .15s;
  z-index: 0;
  pointer-events: none;
  filter: blur(.5px);
}
.acc__item.is-open .acc__blob {
  opacity: .85;
  transform: rotate(-4deg) scale(1.05);
}

/* Right-side media */
.story__media {
  position: relative;
  border-radius: var(--r-card);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background:
    radial-gradient(120% 80% at 30% 20%, #f4cab2 0%, #d59a73 40%, #7a4a2e 100%);
}
.story__media img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.02);
}
.story__overlay {
  position: absolute;
  inset: auto 18px 18px 18px;
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--r-md);
  padding: 18px 22px;
}
.reveal-words {
  margin: 0;
  font-family: var(--f-display);
  font-weight: 600;
  font-style: italic;
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.45;
  color: var(--green-deep);
  letter-spacing: -.005em;
}
.reveal-words span {
  display: inline-block;
  opacity: .25;
  transition: opacity .5s ease, color .5s ease;
}
.reveal-words span.is-in { opacity: 1; }
.reveal-words__hl.is-in { color: var(--lime); }

/* ════════════════════════════════════════════════════════════
   OUR FOCUS (full-bleed)
   ════════════════════════════════════════════════════════════ */
.focus {
  position: relative;
  margin: 60px 14px;
  border-radius: 26px;
  overflow: hidden;
  min-height: 540px;
  display: grid;
  place-items: center;
  isolation: isolate;
}
.focus__bg {
  position: absolute; inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, #2d4a2a 0%, #4a6f3a 50%, #2a4525 100%);
}
.focus__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.05);
}
.focus::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.18) 0%, rgba(0,0,0,.32) 60%, rgba(0,0,0,.45) 100%);
  z-index: -1;
}
.focus__inner {
  max-width: 750px;
  padding: 80px 32px;
  text-align: center;
  color: #fff;
}
.focus__heading {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(48px, 6vw, 88px);
  letter-spacing: -.03em;
  line-height: 1;
  margin-bottom: 28px;
  text-shadow: 0 4px 30px rgba(0,0,0,.3);
}
.focus__copy {
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--r-md);
  padding: 22px 28px;
}
.focus__copy p {
  margin: 0;
  font-size: 20px;
  line-height: 1.55;
  font-weight: 500;
}

/* ════════════════════════════════════════════════════════════
   SHELF / MARQUEES
   ════════════════════════════════════════════════════════════ */
.shelf {
  position: relative;
  padding: 80px 0 100px;
  background: linear-gradient(180deg, var(--cream) 0%, var(--lime-pale) 100%);
  overflow: hidden;
}
.shelf__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
  padding: 0 24px;
}
.shelf__head h2 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(34px, 4vw, 52px);
  letter-spacing: -.025em;
  color: var(--green);
  line-height: 1.05;
  margin-bottom: 16px;
}
.shelf__head p {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--green-deep);
  line-height: 1.4;
  margin: 0;
}

.marquees { display: grid; gap: 18px; }
.marquee { overflow: hidden; }
.marquee__track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: scroll var(--dur, 40s) linear infinite;
}
.marquee--reverse .marquee__track { animation-direction: reverse; }
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee:hover .marquee__track { animation-play-state: paused; }

.chip {
  flex: 0 0 auto;
  height: 86px;
  border-radius: var(--r-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
}
.chip--text {
  padding: 0 56px;
  background: var(--green);
  color: #fff;
  font-weight: 700;
  font-size: clamp(20px, 2vw, 28px);
  letter-spacing: -.01em;
  font-family: var(--f-body);
  text-transform: capitalize;
  white-space: nowrap;
}
.chip--img {
  width: 220px;
  background-color: var(--mint);
}

/* ════════════════════════════════════════════════════════════
   BRANDS
   ════════════════════════════════════════════════════════════ */
.brands {
  padding: 90px 24px 40px;
}
.brands__heading {
  font-family: var(--f-display);
  font-weight: 700;
  text-align: center;
  font-size: clamp(36px, 4vw, 52px);
  color: var(--green);
  letter-spacing: -.025em;
  margin-bottom: 40px;
}

.brands__strip {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.7fr 0.7fr 0.7fr 2.4fr 0.7fr;
  gap: 14px;
  min-height: 640px;
  max-height: 750px;
  transition: grid-template-columns .6s cubic-bezier(.5,0,.2,1);
}
/* When card 5 is open, swap the column proportions */
.brands__strip:has(.brands__expand:nth-of-type(2).is-open) {
  grid-template-columns: 0.7fr 0.7fr 0.7fr 0.7fr 2.4fr;
}

.brands__col {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  background-color: var(--mint);
}
.brands__col img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.brands__col--tomato   { background: linear-gradient(165deg, #f4a8a0 0%, #d83a2e 50%, #7a1810 100%); }
.brands__col--apple    { background: linear-gradient(180deg, #d4e8a0 0%, #8ec540 50%, #3a6a1f 100%); }
.brands__col--orange   { background: linear-gradient(170deg, #ffb877 0%, #f0762a 50%, #a13d10 100%); }
.brands__col--smoothie { background: linear-gradient(180deg, #e8e0d2 0%, #b8c08a 50%, #6a7a3a 100%); }

/* ─── Expandable cards ─── */
.brands__expand {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 640px;
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
  transition: transform .3s ease;
}
.brands__expand:hover:not(.is-open) { transform: translateY(-2px); }

/* Cover layer (the image / wordmark shown when collapsed) */
.brands__cover {
  position: absolute;
  inset: 0;
  border-radius: 18px;
  overflow: hidden;
  opacity: 1;
  transition: opacity .35s ease;
}
.brands__cover img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.brands__expand.is-open .brands__cover { opacity: 0; pointer-events: none; }

/* Detail layer (text shown when expanded) */
.brands__details {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 18px;
  padding: 36px 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s ease .1s;
}
.brands__expand.is-open .brands__details {
  opacity: 1;
  pointer-events: auto;
}
/* Hide details overflow while column is narrow so text doesn't clip awkwardly */
.brands__expand:not(.is-open) .brands__details {
  visibility: hidden;
}
.brands__expand.is-open .brands__details {
  visibility: visible;
}

/* Rotator faces (only used inside the Punchy card's cover) */
.brands__cover .brands__face {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  border-radius: 18px;
  opacity: 0;
  transition: opacity 1s ease, transform 1.2s ease;
  transform: scale(1.04);
}
.brands__cover .brands__face.is-active { opacity: 1; transform: scale(1); }
.brands__face--word {
  display: grid; place-items: center;
  background: #fff;
  color: var(--green-deep);
}
.brands__face--word span {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(40px, 4.4vw, 64px);
  font-style: italic;
  letter-spacing: -.04em;
  font-variation-settings: "opsz" 120;
}
.brands__face--can {
  background-color: #fff7e3;
  display: grid; place-items: center;
}
.brands__face--can::before {
  content: "";
  width: 58%; height: 78%;
  border-radius: 14px;
  background:
    radial-gradient(circle at 50% 30%, #f5d44a 0 18%, transparent 19%),
    repeating-radial-gradient(circle at 50% 40%, rgba(20,40,80,.45) 0 2px, transparent 2px 14px),
    linear-gradient(180deg, #fbbe3e 0%, #f99a2d 100%);
  box-shadow:
    inset 0 -30px 40px rgba(0,0,0,.18),
    inset 0 30px 30px rgba(255,255,255,.25),
    0 18px 30px -10px rgba(0,0,0,.25);
  position: relative;
}
.brands__face--can::after {
  content: "MANGO";
  position: absolute;
  bottom: 22%;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--f-display);
  font-weight: 800;
  font-style: italic;
  font-size: clamp(20px, 2vw, 34px);
  color: #0c2a4b;
  letter-spacing: -.02em;
}
.brands__face--can-lime { background-color: #d8e8b3; }
.brands__face--can-lime::before {
  background:
    radial-gradient(circle at 50% 30%, #ffd6c2 0 16%, transparent 17%),
    repeating-radial-gradient(circle at 50% 40%, rgba(200,80,120,.4) 0 2px, transparent 2px 14px),
    linear-gradient(180deg, #6ec042 0%, #4ea330 100%);
}
.brands__face--can-lime::after { content: "MEXICAN LIME"; font-size: clamp(14px, 1.4vw, 22px); color: #0c2a4b; }

/* Inner text styles (carried over) */
.brands__eyebrow {
  font-weight: 600;
  font-size: 30px;
  color: var(--lime);
  margin: 0;
  letter-spacing: -.005em;
}
.brands__wordmark {
  font-family: var(--f-display);
  font-weight: 800;
  font-style: italic;
  font-size: clamp(70px, 8vw, 130px);
  line-height: .9;
  letter-spacing: -.045em;
  color: #0c2a4b;
  font-variation-settings: "opsz" 144;
  margin: 8px 0 14px;
}
.brands__wordmark--alt { color: #1a4d2e; }
.brands__body p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--green-deep);
  margin: 0 0 12px;
}
.brands__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--green-deep);
  font-size: 20px;
  align-self: flex-start;
  transition: gap .25s ease, color .25s ease;
}
.brands__expand:hover .brands__link { gap: 12px; color: var(--lime); }
/* ════════════════════════════════════════════════════════════
   QUICK CLICKS
   ════════════════════════════════════════════════════════════ */
.qc {
  max-width: 980px;
  margin: 0 auto;
  padding: 80px 24px 60px;
}
.qc__heading {
  font-family: var(--f-display);
  font-weight: 700;
  text-align: center;
  font-size: clamp(32px, 4vw, 48px);
  color: var(--green);
  letter-spacing: -.025em;
  margin-bottom: 32px;
}
.qc__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.qc__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--green);
  color: #fff;
  padding: 22px 26px;
  border-radius: var(--r-pill);
  text-align: left;
  font-size: 15.5px;
  font-weight: 600;
  transition: background .3s ease, transform .3s ease;
}
.qc__btn:hover { background: var(--green-deep); transform: translateX(4px); }
.qc__arrow {
  flex: 0 0 auto;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: #fff;
  color: var(--green-deep);
  display: grid;
  place-items: center;
  transition: transform .3s ease, background .3s ease;
}
.qc__btn:hover .qc__arrow { transform: rotate(-45deg); background: var(--lime); }

/* ════════════════════════════════════════════════════════════
   CONTACT
   ════════════════════════════════════════════════════════════ */
.contact {
  max-width: 1500px;
  margin: 0 auto;
  padding: 40px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 20px;
  align-items: stretch;
}
.contact__map {
  border-radius: 22px;
  overflow: hidden;
  min-height: 460px;
  box-shadow: var(--shadow-soft);
  background: #d4e6c8;
}
.contact__map iframe { width: 100%; height: 100%; border: 0; min-height: 460px; }

.contact__form {
  background: var(--lime);
  border-radius: 22px;
  padding: 36px 40px;
  display: grid;
  gap: 16px;
  align-content: start;
}
.contact__heading {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(26px, 2.4vw, 32px);
  color: var(--green-deep);
  letter-spacing: -.02em;
  margin-bottom: 8px;
}
.field {
  position: relative;
  display: block;
}
.field input,
.field textarea {
  width: 100%;
  padding: 18px 22px 14px;
  border-radius: var(--r-pill);
  border: 0;
  background: #fff;
  color: var(--green-deep);
  font: inherit;
  font-size: 15px;
  outline: none;
  transition: box-shadow .25s ease;
}
.field--ta textarea {
  border-radius: var(--r-md);
  resize: vertical;
  min-height: 120px;
}
.field input:focus,
.field textarea:focus {
  box-shadow: 0 0 0 3px rgba(14,61,20,.25);
}
.field__label {
  position: absolute;
  left: 24px; top: 50%;
  transform: translateY(-50%);
  color: rgba(14,61,20,.55);
  font-size: 14.5px;
  pointer-events: none;
  transition: opacity .2s ease;
}
.field--ta .field__label { top: 18px; transform: none; }
/* Hide label when field is focused OR has content.
   JS sets placeholder=" " on every field so :placeholder-shown only matches when empty. */
.field input:focus + .field__label,
.field textarea:focus + .field__label,
.field input:not(:placeholder-shown) + .field__label,
.field textarea:not(:placeholder-shown) + .field__label {
  opacity: 0;
}

.contact__actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 6px;
}
/* Honeypot — invisible but not display:none (bots skip display:none) */
.contact__form .hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Status message under the form */
.contact__status {
  min-height: 1.3em;
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--green-deep);
  transition: color .2s ease;
}
.contact__status[data-kind="success"] { color: var(--green-deep); }
.contact__status[data-kind="error"]   { color: #8a1a1a; }
/* ════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════ */
.footer {
  padding: 20px 14px 24px;
}
.footer__panel {
  position: relative;
  border-radius: 26px;
  padding: 56px 56px 36px;
  color: #fff;
  overflow: hidden;
  background:
    radial-gradient(30% 55% at 20% 0%, #c9f0aa 0%, #6ab948 35%, #2d7a25 70%, #0E3D14 100%);
  min-height: 450px;
  isolation: isolate;
}
.footer__cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 36px;
  max-width: 1000px;
}
.footer__col h4 {
  font-family: var(--f-display);
  font-weight: 700;
  font-style: italic;
  font-size: 32px;
  letter-spacing: -.01em;
  margin-bottom: 18px;
  color: #fff;
}
.footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 15px;
}
.footer__col a {
  font-size: 20px;
  color: rgba(255,255,255,.92);
  transition: color .25s ease, padding .25s ease;
}
.footer__col a:hover { color: var(--lime); padding-left: 4px; }
.footer__mail {
  display: inline-block;
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: .02em;
  color: #fff !important;
}

.footer__bottom {
  margin-top: 40px;
  max-width: 720px;
  border-top: 1px solid rgba(255,255,255,.18);
  padding-top: 18px;
}
.footer__tag {
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 6px;
  color: #fff;
}
.footer__fine {
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
  color: rgba(255,255,255,.78);
}

.footer__wordmark {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl;
  font-family: var(--f-display);
  font-weight: 800;
  font-style: italic;
  font-size: clamp(110px, 14vw, 100px);
  line-height: .85;
  color: rgba(255,255,255,.18);
  letter-spacing: -.04em;
  font-variation-settings: "opsz" 144;
  pointer-events: none;
  user-select: none;
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .brands__strip,
  .brands__strip:has(.brands__expand:nth-of-type(2).is-open) {
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-rows: 280px;
  }
  .brands__expand { grid-column: 1 / -1; min-height: 480px; }
}
@media (max-width: 900px) {
  .nav { inset: 12px 12px auto 12px; }
  .nav__inner { grid-template-columns: auto auto; gap: 8px; padding: 8px 8px 8px 14px; }
  .nav__links { display: none; }
  .nav__cta { padding: 9px 16px; font-size: 13px; }

  .hero { height: 80vh; min-height: 520px; }
  .hero__card { right: 16px; bottom: 16px; max-width: 78%; padding: 16px 18px; }
  .hero__dots { left: 18px; bottom: 16px; }

  .story__grid { grid-template-columns: 1fr; }
  .story__media { aspect-ratio: 4 / 3; }

  .contact { grid-template-columns: 1fr; }
  .contact__map { min-height: 280px; }
  .contact__form { padding: 24px 22px; }

  .footer__panel { padding: 36px 24px 28px; }
  .footer__cols { grid-template-columns: 1fr; gap: 28px; }
  .footer__wordmark { font-size: 80px; right: 10px; }

  .brands__strip { grid-template-columns: 1fr 1fr; grid-auto-rows: 240px; }

  .chip--text { padding: 0 32px; font-size: 18px; }
  .chip { height: 64px; }
  .chip--img { width: 140px; }
}
@media (max-width: 540px) {
  .brands__strip { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .focus__inner { padding: 60px 20px; }
  .qc__btn { padding: 16px 18px; font-size: 14px; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .marquee__track { animation: none; }
}
