/* ============================================================
   NALU POKE — landing v1.0.0
   Vanilla puro, mobile-first.
   ============================================================ */

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { -webkit-font-smoothing: antialiased; }
img, svg { display: block; max-width: 100%; }
button { background: none; border: 0; cursor: pointer; font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- TOKENS ---- */
:root {
  --font-display: "Archivo Black", Impact, sans-serif;
  --font-heading: "Fraunces", "Playfair Display", Georgia, serif;
  --font-body: "Inter", -apple-system, sans-serif;

  --ink: #1A1410;
  --cream: #FFF7E8;
  --bone: #F1E9D7;
  --line: rgba(26, 20, 16, 0.12);

  /* Cores ativas (mudam por slide) */
  --c-bg: #FF6A00;
  --c-text-big: #D94F00;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 3rem;
  z-index: 100;
  transition: background 0.4s ease, backdrop-filter 0.4s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 247, 232, 0.92);
  backdrop-filter: blur(14px) saturate(120%);
  border-bottom: 1px solid var(--line);
}

.brand { display: flex; align-items: center; }
.brand__logo { width: 90px; height: auto; transition: filter 0.4s ease; }

.nav { display: flex; gap: 2.4rem; }
.nav__link {
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(26, 20, 16, 0.78);
  position: relative;
  padding: 0.4rem 0;
  transition: color 0.2s ease;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: currentColor;
  transition: width 0.3s ease;
}
.nav__link:hover { color: var(--ink); }
.nav__link:hover::after { width: 100%; }

.cta-pedir {
  padding: 0.85rem 1.7rem;
  background: var(--ink);
  color: var(--cream);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 999px;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}
.cta-pedir:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(26, 20, 16, 0.28);
}

/* Header em hero: cor ajusta */
.hero ~ .site-header,
body:not(.is-past-hero) .site-header .brand__logo {
  /* logo invertida no hero (white over color) */
}
body:not(.is-past-hero) .site-header:not(.is-scrolled) .brand__logo {
  filter: brightness(0) invert(1);
}
body:not(.is-past-hero) .site-header:not(.is-scrolled) .nav__link {
  color: rgba(255, 255, 255, 0.92);
}
body:not(.is-past-hero) .site-header:not(.is-scrolled) .cta-pedir {
  background: white;
  color: var(--ink);
}
/* Hero light (HILO): inverte logo/links pra preto */
body.hero-is-light:not(.is-past-hero) .site-header:not(.is-scrolled) .brand__logo {
  filter: none;
}
body.hero-is-light:not(.is-past-hero) .site-header:not(.is-scrolled) .nav__link {
  color: rgba(26, 20, 16, 0.85);
}
body.hero-is-light:not(.is-past-hero) .site-header:not(.is-scrolled) .nav__link:hover {
  color: var(--ink);
}
body.hero-is-light:not(.is-past-hero) .site-header:not(.is-scrolled) .cta-pedir {
  background: var(--ink);
  color: white;
}

/* ============================================================
   HERO — slider rotacional
   ============================================================ */
.hero {
  position: relative;
  min-height: clamp(800px, 100vh, 1100px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: calc(8rem + 10px) 3rem 5rem;
  gap: 1.6rem;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: var(--c-bg);
  transition: background 0.9s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(255,255,255,0.18), transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(0,0,0,0.18), transparent 60%);
  pointer-events: none;
}

/* Big text atrás dos pokes */
.hero__bigtext {
  position: absolute;
  top: calc(4% + 10px);
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: clamp(6rem, 17vw, 16rem);
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--c-text-big);
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
  z-index: 1;
  user-select: none;
  transition: color 0.9s ease;
  width: 100%;
  text-align: center;
  overflow: hidden;
}
.hero__bigtext span {
  display: none;
  opacity: 0;
}
.hero__bigtext span.is-active {
  display: inline-block;
  opacity: 0.55;
  animation: bigtextEntry 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
@keyframes bigtextEntry {
  0%   { transform: translateY(20%) scale(0.85); opacity: 0; letter-spacing: 0.05em; }
  100% { transform: translateY(0) scale(1); opacity: 0.55; letter-spacing: -0.04em; }
}

/* Stage onde os pokes ficam — desce um pouco pra dar respiro ao bigtext */
.hero__stage {
  position: relative;
  z-index: 3;
  width: clamp(280px, 34vw, 440px);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  margin-top: auto;
}

/* Pokes: estaticos quando em repouso, transicao horizontal+rotacao */
.poke {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition:
    transform 1s cubic-bezier(0.65, 0, 0.35, 1),
    opacity 0.5s ease;
  /* default: aguardando entrada do lado direito */
  transform: translateX(140%) rotate(540deg);
}
.poke[data-pos="right"] {
  transform: translateX(140%) rotate(540deg);
  opacity: 0;
}
.poke[data-pos="left"] {
  transform: translateX(-140%) rotate(-540deg);
  opacity: 0;
}
.poke[data-pos="center"] {
  transform: translateX(0) rotate(0);
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

.poke__spinner {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}
.poke__spinner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 35px 60px rgba(0,0,0,0.32));
}

/* Info centralizado abaixo do poke (apenas ingredientes) */
.hero__info {
  position: relative;
  z-index: 4;
  width: 100%;
  max-width: 580px;
  text-align: center;
  color: white;
  margin-bottom: 0.5rem;
}
.poke-card {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease 0.2s, transform 0.6s cubic-bezier(0.34, 1.4, 0.64, 1) 0.2s;
  pointer-events: none;
}
.poke-card.is-active {
  position: relative;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.poke-card__ingredients {
  font-size: 0.98rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 12px rgba(0,0,0,0.12);
}

/* ===== Sidebar esquerda: preço glass + CTA ===== */
.hero__side {
  position: absolute;
  z-index: 6;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}
.hero__side--left {
  left: clamp(1.5rem, 3vw, 3rem);
}

.hero__price-glass {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.2rem 1.3rem 1.3rem;
  width: 230px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 22px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}
.hero__price-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: -0.4rem;
}
.hero__price-tag {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(1.9rem, 2.6vw, 2.5rem);
  line-height: 1;
  color: white;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.18);
}
.hero__price-tag span {
  display: none;
  position: relative;
}
.hero__price-tag span.is-active {
  display: inline-block;
  animation: priceEntry 0.6s cubic-bezier(0.34, 1.4, 0.64, 1);
}
@keyframes priceEntry {
  0%   { opacity: 0; transform: translateY(-8px) scale(0.94); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.4rem;
  background: white;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.92rem;
  border-radius: 999px;
  letter-spacing: 0.01em;
  width: 100%;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}
.hero__cta::after {
  content: "→";
  transition: transform 0.2s ease;
}
.hero__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
}
.hero__cta:hover::after { transform: translateX(3px); }

/* Controles à direita, vertically centered */
.hero__controls {
  position: absolute;
  z-index: 5;
  top: 50%;
  right: clamp(1.5rem, 3vw, 3rem);
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
}
.ctrl-arrow {
  width: 52px;
  height: 52px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  transition: all 0.25s ease;
}
.ctrl-arrow:hover {
  background: white;
  color: var(--ink);
  border-color: white;
  transform: scale(1.06);
}
.ctrl-arrow svg { width: 22px; height: 22px; }

.ctrl-dots {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 28px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.ctrl-dot {
  position: relative;
  padding: 0.55rem 1.2rem;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  transition: all 0.3s ease;
  text-align: center;
  min-width: 100px;
}
.ctrl-dot:hover { color: white; }
.ctrl-dot.is-active {
  background: white;
  color: var(--ink);
}

/* ===== Tema "light" — quando o slide tem fundo claro (HILO) ===== */
.hero.hero--light .hero__bigtext { color: rgba(26, 20, 16, 0.55); }
.hero.hero--light .hero__price-label { color: rgba(26, 20, 16, 0.7); }
.hero.hero--light .hero__price-tag { color: var(--ink); text-shadow: none; }
.hero.hero--light .hero__price-glass {
  background: rgba(26, 20, 16, 0.08);
  border-color: rgba(26, 20, 16, 0.18);
}
.hero.hero--light .poke-card__ingredients {
  color: rgba(26, 20, 16, 0.85);
  text-shadow: none;
}
.hero.hero--light .ctrl-arrow {
  border-color: rgba(26, 20, 16, 0.35);
  color: var(--ink);
}
.hero.hero--light .ctrl-arrow:hover {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}
.hero.hero--light .ctrl-dots {
  background: rgba(26, 20, 16, 0.08);
  border-color: rgba(26, 20, 16, 0.18);
}
.hero.hero--light .ctrl-dot {
  color: rgba(26, 20, 16, 0.55);
}
.hero.hero--light .ctrl-dot:hover { color: var(--ink); }
.hero.hero--light .ctrl-dot.is-active {
  background: var(--ink);
  color: white;
}
/* Header em hero light: links e logo escuros */
body:not(.is-past-hero) .hero.hero--light ~ .site-header:not(.is-scrolled) .brand__logo,
.hero.hero--light + .site-header .brand__logo { /* fallback */ }

/* ============================================================
   SECTION SHARED
   ============================================================ */
.section-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(26, 20, 16, 0.55);
  margin-bottom: 1.2rem;
}
.section-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.section-title em {
  font-style: italic;
  font-weight: 700;
  color: rgba(26, 20, 16, 0.7);
}
.section-sub {
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(26, 20, 16, 0.7);
  max-width: 640px;
  margin-bottom: 3rem;
}

/* ============================================================
   ABOUT — section 16:9 (1920x1080), foto 100%, cream bg, texto cinza
   ============================================================ */
.about {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 1080px;
  background: var(--cream);
  overflow: hidden;
}
.about__photo-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.about__photo-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.about__inner {
  position: relative;
  z-index: 2;
  max-width: 620px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 5vw;
  color: var(--ink);
}
.about .section-title { color: var(--ink); }
.about .section-title em { color: rgba(26, 20, 16, 0.55); }
.about__title em {
  display: inline-block;
  white-space: nowrap;
}

.about__copy p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(26, 20, 16, 0.78);
  margin-bottom: 1.2rem;
}
.about__copy strong { font-weight: 700; color: var(--ink); }
.about__copy em { font-family: var(--font-heading); font-style: italic; font-weight: 700; color: var(--ink); }

.about__pull {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.4rem !important;
  line-height: 1.4 !important;
  color: var(--ink) !important;
  border-left: 3px solid #FF6A00;
  padding-left: 1.4rem;
  margin-top: 1.6rem !important;
  margin-bottom: 1.4rem !important;
}

.about__signature {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.4rem !important;
  font-weight: 700 !important;
  color: var(--ink) !important;
  margin-top: 2rem !important;
  line-height: 1.1;
}
.about__signature small {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 500;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-top: 0.35rem;
  color: rgba(26, 20, 16, 0.6);
}

/* ============================================================
   MENU — sticky stack scroll
   ============================================================ */
.menu {
  padding: 6rem 3rem 4rem;
  background: var(--bone);
}
.menu__inner { max-width: 1100px; margin: 0 auto; }

.menu__grid {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 2rem;
  padding-bottom: 14vh;
}

.menu-item {
  position: sticky;
  margin: 0 0 4vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--c-bg);
  border-radius: 24px;
  overflow: hidden;
  min-height: 320px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.18);
  transition: transform 0.4s cubic-bezier(0.34, 1.4, 0.64, 1);
}
/* Stack offsets — cada card sticka mais embaixo, criando empilhamento */
.menu-item:nth-child(1) { top: 14vh; }
.menu-item:nth-child(2) { top: 16vh; }
.menu-item:nth-child(3) { top: 18vh; }
.menu-item:nth-child(4) { top: 20vh; }
.menu-item:nth-child(5) { top: 22vh; margin-bottom: 0; }
.menu-item--wide {
  grid-template-columns: 1fr 1.5fr;
}

.menu-item__visual {
  position: relative;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  overflow: hidden;
}
.menu-item__bigword {
  position: absolute;
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  color: var(--c-text);
  opacity: 0.4;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.03em;
  z-index: 1;
}
.menu-item__visual img {
  position: relative;
  width: 100%;
  height: auto;
  max-width: 240px;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,0.28));
  z-index: 2;
  transition: transform 0.6s cubic-bezier(0.34, 1.4, 0.64, 1);
}
.menu-item:hover .menu-item__visual img {
  transform: rotate(15deg) scale(1.05);
}

.menu-item__body {
  padding: 2.2rem 2rem;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.menu-item__name {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.7rem;
  margin-bottom: 0.8rem;
  line-height: 1;
}
.menu-item__name em {
  font-style: italic;
  font-weight: 600;
  opacity: 0.9;
}
.menu-item__ingredients {
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 1.2rem;
}
.menu-item__price {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.8rem;
}

/* HILO: fundo claro pede texto preto */
.menu-item--dark .menu-item__body { color: var(--ink); }
.menu-item--dark .menu-item__name { color: var(--ink); }
.menu-item--dark .menu-item__name em { opacity: 0.7; color: var(--ink); }
.menu-item--dark .menu-item__ingredients { color: rgba(26, 20, 16, 0.78); }
.menu-item--dark .menu-item__price { color: var(--ink); }
.menu-item--dark .menu-item__bigword { color: rgba(26, 20, 16, 0.32); }

/* ============================================================
   BUILD YOUR POKE
   ============================================================ */
.build {
  padding: 8rem 3rem;
  background: var(--cream);
}
.build__inner { max-width: 1200px; margin: 0 auto; }

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

.build-col__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  padding-bottom: 0.7rem;
  border-bottom: 2px solid var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.build-col__title small {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(26, 20, 16, 0.55);
}
.build-col__list li {
  padding: 0.55rem 0;
  font-size: 0.98rem;
  color: rgba(26, 20, 16, 0.82);
  border-bottom: 1px solid var(--line);
  transition: color 0.2s ease, padding 0.2s ease;
  cursor: default;
}
.build-col__list li:hover {
  color: var(--ink);
  padding-left: 0.4rem;
}
.build-col__list li:last-child { border-bottom: none; }

.build__cta-wrap {
  text-align: center;
  margin-top: 4rem;
}

.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1.2rem 2.8rem;
  background: var(--ink);
  color: var(--cream);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 999px;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}
.cta-primary::after { content: "→"; transition: transform 0.2s ease; }
.cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(26, 20, 16, 0.32);
}
.cta-primary:hover::after { transform: translateX(4px); }

.cta-primary--green {
  background: #25D366;
  color: white;
}

.cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1.2rem 2.4rem;
  border: 2px solid var(--ink);
  color: var(--ink);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 999px;
  transition: all 0.2s ease;
}
.cta-secondary:hover {
  background: var(--ink);
  color: var(--cream);
}

/* ============================================================
   VALUES — sticky stack scroll
   ============================================================ */
.values {
  padding: 6rem 3rem 4rem;
  background: linear-gradient(180deg, #00B8D9 0%, #008EAA 100%);
  color: white;
}
.values__inner { max-width: 1100px; margin: 0 auto; }
.values .section-title { color: white; }
.values .section-title em { color: rgba(255, 255, 255, 0.62); }

.values__grid {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 3rem;
  padding-bottom: 14vh;
}

.value-card {
  position: sticky;
  margin: 0 0 3vh;
  padding: 2.4rem 2rem 2.6rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.4rem 2rem;
  align-items: center;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 22px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.22);
}
.value-card:nth-child(1) { top: 14vh; }
.value-card:nth-child(2) { top: 16vh; }
.value-card:nth-child(3) { top: 18vh; }
.value-card:nth-child(4) { top: 20vh; }
.value-card:nth-child(5) { top: 22vh; margin-bottom: 0; }
.value-card__num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  color: #FFC400;
  letter-spacing: -0.02em;
  line-height: 1;
  grid-row: 1 / span 2;
}
.value-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  margin: 0 0 0.5rem;
  color: white;
  align-self: end;
}
.value-card__text {
  font-size: 0.98rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
  align-self: start;
}

/* ============================================================
   ORDER CTA
   ============================================================ */
.order {
  padding: 9rem 3rem;
  background: linear-gradient(135deg, #FF6A00, #FFC400 70%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.order::before {
  content: "NALU NALU NALU NALU NALU";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(8rem, 16vw, 16rem);
  color: rgba(255, 255, 255, 0.18);
  white-space: nowrap;
  letter-spacing: 0.12em;
  pointer-events: none;
  user-select: none;
}
.order__inner { position: relative; max-width: 800px; margin: 0 auto; z-index: 2; }
.order .section-eyebrow { color: rgba(255, 255, 255, 0.85); }
.order .section-title { color: white; }
.order .section-title em { color: rgba(255, 255, 255, 0.7); font-weight: 700; }
.order .section-sub { color: rgba(255, 255, 255, 0.92); margin-left: auto; margin-right: auto; }
.order .cta-secondary {
  border-color: white;
  color: white;
}
.order .cta-secondary:hover {
  background: white;
  color: var(--ink);
}

.order__ctas {
  display: inline-flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  padding: 6rem 3rem 2rem;
  background: var(--ink);
  color: rgba(255, 247, 232, 0.78);
}
.site-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 247, 232, 0.1);
}
.site-footer__logo {
  width: 110px;
  filter: brightness(0) invert(1);
  margin-bottom: 1.4rem;
}
.site-footer__tagline {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.55;
  max-width: 380px;
  color: rgba(255, 247, 232, 0.82);
}
.site-footer__col h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--cream);
  font-size: 1rem;
  margin-bottom: 1rem;
}
.site-footer__col p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.site-footer__link {
  color: #FFC400;
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.site-footer__link:hover { border-color: #FFC400; }

.site-footer__bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255, 247, 232, 0.5);
}
.site-footer__credit a {
  color: #FFC400;
  font-weight: 500;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .menu-item, .menu-item--wide { grid-template-columns: 1fr; }
  .menu-item__body { padding: 1.6rem; }

  .build__grid { grid-template-columns: repeat(2, 1fr); }
  .about__grid { grid-template-columns: 1fr; }
  .about__photo { max-width: 360px; margin: 2rem auto 0; }

  .site-footer__inner { grid-template-columns: 1fr 1fr; gap: 2rem; }

  /* Hero: sidebar e controles voltam pro layout em coluna */
  .hero {
    justify-content: center;
    padding: 7rem 1.6rem 4rem;
    gap: 1.4rem;
  }
  .hero__side {
    position: static;
    transform: none;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.6rem;
  }
  .hero__price-glass { padding: 0.7rem 1rem; }
  .hero__price-tag { font-size: 1.6rem; }
  .hero__cta { padding: 0.85rem 1.4rem; font-size: 0.88rem; }

  .hero__controls {
    position: static;
    transform: none;
    flex-direction: row;
    margin-top: 0.6rem;
    gap: 1rem;
  }
  .hero__controls .ctrl-dots {
    flex-direction: row;
    border-radius: 999px;
  }
  .ctrl-dot { min-width: auto; padding: 0.45rem 0.9rem; }
}

@media (max-width: 768px) {
  .site-header { padding: 1rem 1.4rem; }
  .nav { display: none; }
  .brand__logo { width: 70px; }

  /* Hero compactado: tudo encostado no topo, big text peeking acima do poke */
  .hero {
    justify-content: flex-start;
    padding: 4.5rem 1rem 1rem;
    min-height: 93vh;
    gap: 0;
  }
  .hero__side {
    margin: 0.5rem 0 2rem;
    width: 100%;
    max-width: 320px;
    align-items: stretch;
  }
  .hero__bigtext {
    top: 24%;
    bottom: auto;
    font-size: clamp(3.5rem, 20vw, 7rem);
    line-height: 0.85;
  }
  .hero__stage {
    width: 76vw;
    max-width: 320px;
    margin-top: 1.6rem;
  }
  .hero__price-glass {
    width: 100%;
    flex-direction: column;
    gap: 0.65rem;
    padding: 0.85rem 1rem 0.95rem;
    align-items: stretch;
  }
  .hero__price-label { font-size: 0.66rem; margin-bottom: -0.25rem; text-align: center; }
  .hero__price-tag { font-size: 1.7rem; text-align: center; }
  .hero__price-glass .hero__cta { padding: 0.7rem 1rem; font-size: 0.85rem; }

  .hero__info {
    margin-top: 0.6rem;
    text-align: center;
    max-width: 100%;
    padding: 0 0.5rem;
  }
  .poke-card__ingredients { font-size: 0.88rem; line-height: 1.55; }

  .hero__controls { margin-top: 0.6rem; gap: 0.6rem; }
  .ctrl-arrow { width: 40px; height: 40px; }
  .ctrl-arrow svg { width: 16px; height: 16px; }
  /* Dots viram bolinhas no mobile (texto escondido) */
  .ctrl-dots { gap: 0.45rem; padding: 0.55rem 0.7rem; }
  .ctrl-dot {
    padding: 0;
    width: 9px;
    height: 9px;
    min-width: 9px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transition: all 0.25s ease;
  }
  .ctrl-dot span {
    position: absolute;
    width: 1px; height: 1px; padding: 0;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
  }
  .ctrl-dot.is-active {
    background: white;
    width: 28px;
    border-radius: 999px;
  }
  .hero.hero--light .ctrl-dot { background: rgba(26,20,16,0.32); }
  .hero.hero--light .ctrl-dot.is-active { background: var(--ink); }

  .menu, .build, .values, .order { padding: 4rem 1.2rem; }

  .build__grid { grid-template-columns: 1fr; }

  /* Stack mobile: offsets menores */
  .menu-item, .menu-item--wide { grid-template-columns: 1fr; }
  .menu-item__body { padding: 1.6rem; }
  .menu-item:nth-child(1) { top: 8vh; }
  .menu-item:nth-child(2) { top: 10vh; }
  .menu-item:nth-child(3) { top: 12vh; }
  .menu-item:nth-child(4) { top: 14vh; }
  .menu-item:nth-child(5) { top: 16vh; }

  .value-card { padding: 1.6rem 1.4rem; gap: 0.8rem 1.2rem; }
  .value-card:nth-child(1) { top: 8vh; }
  .value-card:nth-child(2) { top: 10vh; }
  .value-card:nth-child(3) { top: 12vh; }
  .value-card:nth-child(4) { top: 14vh; }
  .value-card:nth-child(5) { top: 16vh; }

  /* About mobile: texto em cima, foto horizontal embaixo */
  .about {
    aspect-ratio: auto;
    max-height: none;
    display: flex;
    flex-direction: column-reverse;
    height: auto;
  }
  .about__photo-bg {
    position: relative;
    inset: auto;
    width: 100%;
    aspect-ratio: 1920 / 1080;
    overflow: hidden;
    flex: none;
  }
  .about__photo-bg::after {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 18%;
    background: linear-gradient(180deg, var(--cream) 0%, transparent 100%);
    pointer-events: none;
  }
  .about__photo-bg img { object-position: center center; }
  .about__inner {
    position: relative;
    height: auto;
    max-width: 100%;
    padding: 4rem 1.6rem 1.2rem;
    justify-content: flex-start;
    background: var(--cream);
  }
  .about .section-title { font-size: clamp(2rem, 8vw, 3rem); }
  .about__copy p { font-size: 0.95rem; line-height: 1.55; }
  .about__pull { font-size: 1.1rem !important; padding-left: 0.9rem; }
  .about__signature { font-size: 1.2rem !important; }

  /* Footer compactado mobile */
  .site-footer { padding: 3rem 1.4rem 1.5rem; }
  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 1.6rem;
    padding-bottom: 1.8rem;
  }
  .site-footer__logo { width: 80px; margin-bottom: 0.8rem; }
  .site-footer__tagline { font-size: 0.92rem; line-height: 1.45; }
  .site-footer__col h4 { margin-bottom: 0.6rem; font-size: 0.92rem; }
  .site-footer__col p { font-size: 0.84rem; margin-bottom: 0.6rem; }
  .site-footer__bottom {
    flex-direction: column;
    gap: 0.4rem;
    align-items: center;
    text-align: center;
    padding-top: 1.4rem;
    font-size: 0.74rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
