/* ---------- Lalu Fun Foods: Editorial system ---------- */

:root {
  --lalu-red: #D53C4C;          /* brand red extracted from logo */
  --lalu-red-deep: #A12A38;
  --ink: #0E0E0E;
  --ink-2: #2A2A2A;
  --muted: #6A6A6A;
  --line: #EAEAEA;
  --paper: #FFFFFF;             /* plain white: matches old site */
  --paper-2: #F7F6F3;           /* very subtle off-white for alternating sections */
  --white: #FFFFFF;

  --f-display: "Fraunces", "Canela", "Tiempos Headline", Georgia, serif;
  --f-sans: "Inter Tight", "Inter", "Söhne", -apple-system, sans-serif;
  --f-mono: "JetBrains Mono", ui-monospace, monospace;

  --maxw: 1440px;
  --gutter: clamp(20px, 3.5vw, 56px);

  --r-sm: 4px;
  --r-md: 10px;
}

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

body {
  font-family: var(--f-sans);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 16px;
  line-height: 1.55;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: none; background: none; cursor: pointer; color: inherit; }

/* ---------- Typography ---------- */

.eyebrow {
  font-family: var(--f-sans);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--muted);
}

.eyebrow--light { color: rgba(255,255,255,0.75); }

.display {
  font-family: var(--f-sans);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 0.95;
  text-transform: uppercase;
  font-size: clamp(40px, 7.2vw, 112px);
  margin: 0;
}

.display--serif {
  font-family: var(--f-sans);
  font-weight: 700;
  font-style: normal;
  text-transform: none;
  letter-spacing: -0.015em;
  line-height: 1.02;
}

.headline {
  font-family: var(--f-sans);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.02;
  text-transform: uppercase;
  font-size: clamp(32px, 4.2vw, 64px);
  margin: 0;
}

.h-section {
  font-family: var(--f-sans);
  font-weight: 500;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  font-size: clamp(24px, 2.4vw, 36px);
  line-height: 1.05;
  margin: 0;
}

.kicker {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

.lede {
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 56ch;
}

.mono { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.04em; }

/* ---------- Layout ---------- */

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.container--wide { max-width: none; padding-left: var(--gutter); padding-right: var(--gutter); }

section { position: relative; }

.rule { height: 1px; background: var(--line); border: 0; margin: 0; }

.section-pad { padding: clamp(64px, 9vw, 140px) 0; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), background .25s, color .25s, border-color .25s;
}

.btn .arrow { transition: transform .35s cubic-bezier(.2,.7,.2,1); }
.btn:hover .arrow { transform: translateX(4px); }

.btn--primary {
  background: var(--lalu-red);
  color: #fff;
}
.btn--primary:hover { background: var(--lalu-red-deep); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: #fff; }

.btn--light {
  background: #fff;
  color: var(--ink);
}
.btn--light:hover { background: var(--paper); }

.btn--link {
  padding: 0;
  background: transparent;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  padding-bottom: 4px;
}

/* ---------- Placeholder image tiles ---------- */

.ph {
  position: relative;
  background: #D7CEC1;
  overflow: hidden;
  color: #3a3a3a;
}

.ph::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 20% 10%, rgba(255,255,255,.4), transparent 50%),
    radial-gradient(90% 70% at 85% 85%, rgba(0,0,0,.08), transparent 60%);
  pointer-events: none;
}

.ph[data-tone="warm"] { background: #E4C7A8; }
.ph[data-tone="sand"] { background: #D9CBB5; }
.ph[data-tone="stone"] { background: #C9C0B3; }
.ph[data-tone="red"]   { background: #B83A34; color: #fff; }
.ph[data-tone="ink"]   { background: #1B1B1B; color: #fff; }
.ph[data-tone="cream"] { background: #EADFC8; }
.ph[data-tone="moss"]  { background: #6E7A58; color: #fff; }
.ph[data-tone="clay"]  { background: #B76A4E; color: #fff; }

.ph__label {
  position: absolute;
  left: 12px; top: 12px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 7px;
  background: rgba(0,0,0,0.55);
  color: #fff;
  border-radius: 2px;
  z-index: 2;
  line-height: 1;
}

.ph__meta {
  position: absolute;
  right: 12px; bottom: 12px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  z-index: 2;
  line-height: 1;
}

.ph--dark .ph__label { background: rgba(255,255,255,0.2); }

/* Real-image placeholders: image fills container, drop the gradient overlay */
.ph--real {
  background: #0E0E0E;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.ph--real::after { display: none; }
.ph--real > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Nav logo image */
.nav__logo-img {
  height: 56px;
  width: auto;
  display: block;
}
.nav.is-scrolled .nav__logo-img { height: 44px; transition: height .2s; }

/* Client logo strip: real images, full-color uniform row */
.proof__logo-img {
  flex: 0 0 auto;
  height: 56px;
  width: 160px;
  object-fit: contain;
  object-position: center;
  opacity: 1;
  transition: transform .25s ease;
}
.proof__logo-img:hover { transform: translateY(-2px); }

/* aspect helpers */
.r-2x3 { aspect-ratio: 2/3; }
.r-3x2 { aspect-ratio: 3/2; }
.r-16x9 { aspect-ratio: 16/9; }
.r-4x5 { aspect-ratio: 4/5; }
.r-1x1 { aspect-ratio: 1/1; }

/* hover feel on cards */
.card-hov {
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
}
.card-hov:hover { transform: translateY(-4px); }

.card-hov .ph img,
.card-hov .ph::before {
  transition: transform 1s cubic-bezier(.2,.7,.2,1);
}
.card-hov:hover .ph::before { transform: scale(1.04); }

/* ---------- Nav ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s;
}
.nav.is-scrolled { border-bottom-color: var(--line); }

.nav__row {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
  padding-top: 16px;
  padding-bottom: 16px;
}

.nav__logo {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.nav__logo-mark {
  font-family: var(--f-sans);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--lalu-red);
  text-transform: uppercase;
}
.nav__logo-sub {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav__links {
  display: flex;
  gap: 28px;
  justify-self: center;
}
.nav__item {
  display: flex;
  align-items: center;
}
.nav__link {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-2);
  padding: 6px 0;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav__link:hover { color: var(--ink); }
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--ink);
  transition: right .35s cubic-bezier(.2,.7,.2,1);
}
.nav__link:hover::after,
.nav__item.is-open .nav__link::after { right: 0; }
.nav__link-caret {
  opacity: .6;
  transition: transform .2s ease, opacity .2s ease;
}
.nav__item.is-open .nav__link-caret { transform: rotate(180deg); opacity: 1; }

/* ---------- Nav mega menu ---------- */

.nav__mega {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  padding: 40px 0 28px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity .18s ease-out, transform .18s ease-out;
  z-index: 49;
}
.nav__item.is-open .nav__mega {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity .18s ease-out, transform .18s ease-out;
}
.nav__mega-inner {
  display: grid;
  gap: 48px;
  align-items: start;
}
.nav__mega--products .nav__mega-inner { grid-template-columns: 1fr 280px; }
.nav__mega--services .nav__mega-inner { grid-template-columns: 1fr 280px; }
.nav__mega-cols {
  display: grid;
  gap: 40px;
}
.nav__mega--products .nav__mega-cols { grid-template-columns: repeat(3, 1fr); }
.nav__mega-col { min-width: 0; }
.nav__mega-twocol {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 40px;
}
.nav__mega-head {
  display: block;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  padding-bottom: 14px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.nav__mega-head:hover { color: var(--lalu-red); }
.nav__mega-count { color: var(--muted); margin-left: 4px; font-weight: 400; }
.nav__mega-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 2px;
}
.nav__mega-list li a {
  display: block;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
  color: var(--ink-2);
  padding: 6px 0;
  position: relative;
}
.nav__mega-list li a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 4px;
  height: 1px;
  background: var(--lalu-red);
  transition: right .28s cubic-bezier(.2,.7,.2,1);
}
.nav__mega-list li a:hover { color: var(--lalu-red); }
.nav__mega-list li a:hover::after { right: calc(100% - 1.5em); }

.nav__mega-featured {
  display: block;
  padding: 16px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  transition: border-color .2s ease, transform .2s ease;
}
.nav__mega-featured:hover { border-color: var(--lalu-red); transform: translateY(-2px); }
.nav__mega-featured-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.nav__mega-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lalu-red);
  display: inline-block;
}
.nav__mega-featured-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--r-sm);
  background: var(--line);
  margin-bottom: 12px;
}
.nav__mega-featured-img img { width: 100%; height: 100%; object-fit: cover; }
.nav__mega-featured-name {
  font-family: var(--f-display);
  font-size: 20px;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 6px;
}
.nav__mega-featured-tag {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
  margin-bottom: 10px;
}
.nav__mega-featured-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lalu-red);
}

.nav__mega-foot {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: flex-end;
}
.nav__mega-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 10px 16px;
  border: 1px solid var(--ink);
  border-radius: 2px;
  transition: background .2s ease, color .2s ease;
}
.nav__mega-all:hover { background: var(--ink); color: #fff; }

@media (max-width: 1024px) {
  .nav__mega--products .nav__mega-inner,
  .nav__mega--services .nav__mega-inner { grid-template-columns: 1fr 240px; gap: 32px; }
  .nav__mega-cols { gap: 28px; }
}
@media (max-width: 860px) {
  .nav__mega { display: none; }
}

/* ---------- Mobile drawer ---------- */

.nav__drawer {
  position: fixed;
  inset: 0;
  background: var(--paper);
  z-index: 100;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity .22s ease, transform .22s ease;
  overflow-y: auto;
}
.nav__drawer.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.nav__drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.nav__drawer-close {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 2px;
  color: var(--ink);
}
.nav__drawer-close:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.nav__drawer-list {
  display: flex;
  flex-direction: column;
  padding-top: 24px;
  padding-bottom: 40px;
  gap: 2px;
}
.nav__drawer-item { border-bottom: 1px solid var(--line); }
.nav__drawer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__drawer-link {
  flex: 1;
  font-family: var(--f-display);
  font-size: 28px;
  line-height: 1.1;
  padding: 18px 0;
  color: var(--ink);
}
.nav__drawer-link.is-active { color: var(--lalu-red); }
.nav__drawer-toggle {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-2);
  transition: transform .2s ease;
}
.nav__drawer-item.is-open .nav__drawer-toggle { transform: rotate(180deg); color: var(--lalu-red); }
.nav__drawer-sub {
  padding: 8px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.nav__drawer-featured {
  display: flex;
  gap: 14px;
  padding: 14px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  align-items: center;
}
.nav__drawer-featured-img {
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  border-radius: var(--r-sm);
  overflow: hidden;
  background: var(--line);
}
.nav__drawer-featured-img img { width: 100%; height: 100%; object-fit: cover; }
.nav__drawer-featured-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.nav__drawer-featured-name {
  font-family: var(--f-display);
  font-size: 18px;
  color: var(--ink);
}
.nav__drawer-group-label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.nav__drawer-sub ul {
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
  display: grid;
  gap: 2px;
}
.nav__drawer-sub ul li a {
  display: block;
  font-size: 16px;
  padding: 8px 0;
  color: var(--ink-2);
}
.nav__drawer-sub ul li a:hover { color: var(--lalu-red); }
.nav__drawer-all {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 10px 14px;
  border: 1px solid var(--ink);
  border-radius: 2px;
}
.nav__drawer-cta {
  margin-top: 16px;
  justify-content: center;
}

@media (min-width: 861px) {
  .nav__drawer { display: none; }
}

.nav__cta {
  padding: 12px 20px;
  font-size: 12px;
}

.nav__menu-btn {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid var(--ink);
  border-radius: 2px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  justify-self: start;
}
.nav__menu-btn:hover { background: var(--ink); color: #fff; }
.nav__menu-icon {
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
}
.nav__menu-icon span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: currentColor;
}

@media (max-width: 1024px) {
  .nav__links { gap: 18px; }
  .nav__link { font-size: 11px; letter-spacing: 0.12em; }
}
@media (max-width: 860px) {
  .nav__links { display: none; }
  .nav__menu-btn { display: inline-flex; }
}
@media (max-width: 520px) {
  .nav__menu-btn-label { display: none; }
  .nav__menu-btn { padding: 10px 12px; }
  .nav__cta { display: none; }
  .nav__row { gap: 12px; grid-template-columns: 1fr auto; }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
}

.hero__media {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero__media .ph { width: 100%; height: 100%; }
.hero__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.15) 40%, rgba(0,0,0,0.72) 100%);
  z-index: 1;
}

.hero__inner {
  position: relative;
  z-index: 2;
  min-height: clamp(520px, 72vh, 760px);
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding-top: clamp(32px, 6vw, 72px);
  padding-bottom: clamp(32px, 5vw, 56px);
  gap: 32px;
}

.hero__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  color: rgba(255,255,255,0.8);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero__top-right { text-align: right; }

.hero__headline { align-self: end; max-width: min(92%, 1100px); }
.hero__headline .display {
  color: #fff;
  font-size: clamp(40px, 6vw, 96px);
}
.hero__headline .display em,
.hero__headline .display strong {
  font-family: var(--f-sans);
  font-style: normal;
  font-weight: 700;
  text-transform: none;
  letter-spacing: -0.02em;
}

.hero__bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 32px;
}

.hero__sub {
  max-width: 48ch;
  font-size: clamp(15px, 1.1vw, 17px);
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}

.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }

@media (max-width: 860px) {
  .hero__top-right { display: none; }
}
@media (max-width: 720px) {
  .hero__bottom { grid-template-columns: 1fr; }
}

/* ---------- Marquee / logos ---------- */

.proof {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 36px 0;
  overflow: hidden;
}
.proof__row {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 32px;
}
.proof__label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.proof__track {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.proof__lane {
  display: flex;
  gap: 72px;
  align-items: center;
  animation: slide 45s linear infinite;
  width: max-content;
}
.proof__logo {
  flex: 0 0 auto;
  height: 28px;
  display: inline-flex;
  align-items: center;
  font-family: var(--f-display);
  font-size: 22px;
  letter-spacing: -0.01em;
  color: #3a3a3a;
  opacity: 0.7;
  white-space: nowrap;
  font-weight: 500;
}
.proof__logo--caps {
  font-family: var(--f-sans);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 14px;
}

@keyframes slide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 720px) {
  .proof__row { grid-template-columns: 1fr; }
}

/* ---------- Section header ---------- */

.sec-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: clamp(40px, 5vw, 72px);
  align-items: end;
}
.sec-head__right { justify-self: end; max-width: 42ch; }
.sec-head__index {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}

@media (max-width: 720px) {
  .sec-head { grid-template-columns: 1fr; }
  .sec-head__right { justify-self: start; }
}

/* ---------- What we do (6 event types) ---------- */

.whatwedo__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.event-card {
  display: block;
  text-decoration: none;
  color: inherit;
}
.event-card__img {
  position: relative;
  aspect-ratio: 2/3;
  overflow: hidden;
  margin-bottom: 18px;
}
.event-card__num {
  position: absolute; left: 14px; top: 14px;
  font-family: var(--f-mono);
  font-size: 11px;
  color: #fff;
  letter-spacing: 0.1em;
  z-index: 2;
  text-shadow: 0 1px 2px rgba(0,0,0,.4);
}
.event-card__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.event-card__title {
  font-size: clamp(18px, 1.6vw, 24px);
  font-weight: 500;
  letter-spacing: -0.005em;
  text-transform: uppercase;
}
.event-card__arrow {
  font-size: 18px;
  color: var(--muted);
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
}
.event-card:hover .event-card__arrow { transform: translate(4px, -4px); color: var(--ink); }
.event-card__desc {
  font-size: 14px;
  color: var(--muted);
  margin-top: 6px;
  line-height: 1.45;
}

@media (max-width: 900px) {
  .whatwedo__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .whatwedo__grid { grid-template-columns: 1fr; }
}

/* ---------- Pillars (4 columns) ---------- */

.pillars {
  background: var(--ink);
  color: #fff;
}
.pillars .sec-head { color: #fff; }
.pillars .sec-head__index { color: rgba(255,255,255,0.55); }
.pillars .lede { color: rgba(255,255,255,0.8); }

.pillars__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.1);
}
.pillar {
  padding: 24px;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: background .3s;
}
.pillar:hover { background: #151515; }
.pillar__img {
  position: relative;
  aspect-ratio: 4/3;
}
.pillar__num {
  font-family: var(--f-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.16em;
}
.pillar__title {
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  margin: 0;
}
.pillar__desc {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
  margin: 0;
}
.pillar__link {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 4px;
  align-self: flex-start;
  transition: border-color .25s, color .25s;
}
.pillar__link:hover { border-color: #fff; color: #fff; }

@media (max-width: 900px) {
  .pillars__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .pillars__grid { grid-template-columns: 1fr; }
}

/* ---------- Video ---------- */

.video {
  background: var(--paper-2);
}
.video__frame {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  cursor: pointer;
}
.video__play {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 96px; height: 96px;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  display: grid;
  place-items: center;
  font-size: 20px;
  z-index: 3;
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
  box-shadow: 0 8px 40px rgba(0,0,0,0.25);
}
.video__frame:hover .video__play { transform: translate(-50%, -50%) scale(1.08); }
.video__caption {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  margin-top: 20px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Portfolio ---------- */

.work__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.work-card__img {
  aspect-ratio: 2/3;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}

.work-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}
.work-card__client {
  font-size: clamp(18px, 1.4vw, 22px);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: -0.005em;
}
.work-card__tag {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.work-card__type {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}

@media (max-width: 900px) {
  .work__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .work__grid { grid-template-columns: 1fr; }
}

/* ---------- Why Lalu ---------- */

.why {
  background: var(--paper-2);
}
.why__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.why__cell {
  background: var(--paper-2);
  padding: 40px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 260px;
}
.why__num {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--muted);
}
.why__title {
  font-size: clamp(18px, 1.4vw, 22px);
  font-weight: 500;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  line-height: 1.1;
}
.why__desc {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.5;
  margin-top: auto;
}

@media (max-width: 900px) {
  .why__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .why__grid { grid-template-columns: 1fr; }
}

/* ---------- Final CTA ---------- */

.finalcta {
  background: var(--lalu-red);
  color: #fff;
}
.finalcta__inner {
  padding-top: clamp(80px, 12vw, 180px);
  padding-bottom: clamp(80px, 12vw, 180px);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: end;
}
.finalcta__headline {
  font-size: clamp(40px, 6vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  font-weight: 500;
  text-transform: uppercase;
  margin: 0;
}
.finalcta__headline em,
.finalcta__headline strong {
  font-family: var(--f-sans);
  font-style: normal;
  font-weight: 700;
  text-transform: none;
  letter-spacing: -0.02em;
}
.finalcta__right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.finalcta__sub {
  font-size: 16px;
  color: rgba(255,255,255,0.9);
  max-width: 36ch;
  line-height: 1.5;
}
.finalcta .btn--light { align-self: flex-start; }

@media (max-width: 720px) {
  .finalcta__inner { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */

.foot {
  background: var(--ink);
  color: rgba(255,255,255,0.8);
  padding: 80px 0 32px;
}
.foot__top {
  display: grid;
  grid-template-columns: minmax(280px, 360px) repeat(4, max-content);
  column-gap: clamp(48px, 4.5vw, 88px);
  row-gap: 40px;
  justify-content: space-between;
  align-items: start;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.foot__col--areas ul {
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
}
.foot__brand { max-width: 36ch; }
.foot__logo {
  display: inline-block;
  margin-bottom: 16px;
}
.foot__logo-img {
  height: 104px;
  width: auto;
  display: block;
}
.foot__tag {
  font-size: 14px;
  line-height: 1.55;
}
.foot__col h4 {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 16px;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}
.foot__col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.foot__col a {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
}
.foot__col a:hover { color: #fff; }

.foot__giant {
  font-family: var(--f-sans);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  line-height: 0.9;
  font-size: clamp(32px, 10.5vw, 170px);
  color: #fff;
  margin: 48px 0 24px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: clip;
}
.foot__giant em,
.foot__giant strong {
  font-family: var(--f-sans);
  font-style: normal;
  font-weight: 700;
  text-transform: none;
  letter-spacing: -0.02em;
  color: var(--lalu-red);
}

.foot__bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.foot__bottom a {
  color: inherit;
  text-decoration: none;
  transition: color .15s ease;
}
.foot__bottom a:hover { color: #fff; }

@media (max-width: 1100px) {
  .foot__top { grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
  .foot__brand { grid-column: 1 / -1; max-width: 52ch; }
  .foot__col--areas { grid-column: 1 / -1; }
  .foot__col--areas ul { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .foot__top { grid-template-columns: 1fr 1fr; }
  .foot__brand { grid-column: 1 / -1; }
  .foot__col--areas { grid-column: 1 / -1; }
  .foot__col--areas ul { grid-template-columns: 1fr 1fr; }
}

/* ---------- Sticky mobile CTA ---------- */

.mobcta {
  display: none;
}
@media (max-width: 720px) {
  .mobcta {
    display: block;
    position: fixed;
    bottom: 16px; left: 16px; right: 16px;
    z-index: 40;
  }
  .mobcta .btn {
    width: 100%;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  }
  /* Reserve space at the bottom of the page so the sticky CTA doesn't cover content. */
  body { padding-bottom: 84px; }
}

/* ---------- Fade-up animations ---------- */

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1);
}
.fade-up.is-in {
  opacity: 1;
  transform: none;
}
