/* ============================================================
   AKAI SUSHI WOK RESTAURANT — Tanger
   Identity sampled from the restaurant's own assets:
   forest wall #242E19, sage badge #607260, neon sign #F4C245,
   kraft packaging #BF7949. Single superfamily: Archivo variable
   (wght 100–900, wdth 62–125%), expanded-black for display.
   ============================================================ */

@font-face {
  font-family: "Archivo";
  src: url("../fonts/archivo-var-latin.woff2") format("woff2-variations");
  font-weight: 100 900;
  font-stretch: 62% 125%;
  font-style: normal;
  font-display: swap;
}

:root {
  /* color — sampled */
  --forest: #242e19;
  --forest-deep: #181f10;
  --noir: #0d100a;
  --sage: #607260;
  --sage-dark: #45543f;
  --sage-light: #b3c0aa;
  --neon: #f4c245;
  --neon-bright: #ffd25a;
  --kraft: #bf7949;
  --mist: #f4f6ef;
  --ink: #171b12;

  /* type */
  --font: "Archivo", "Segoe UI", Arial, sans-serif;
  --display-stretch: 122%;

  /* space (4pt base) */
  --s-1: 0.25rem; --s-2: 0.5rem; --s-3: 0.75rem; --s-4: 1rem;
  --s-6: 1.5rem; --s-8: 2rem; --s-12: 3rem; --s-16: 4rem; --s-24: 6rem;

  /* z-scale */
  --z-nav: 10;
  --z-float: 20;
  --z-toast: 30;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { overflow-x: clip; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--mist);
  font-kerning: normal;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
h1, h2, h3, p, figure, blockquote { margin: 0; }
a { color: inherit; }
h1, h2 { text-wrap: balance; }

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

.wrap {
  max-width: 72.5rem;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3rem;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  font-weight: 750;
  font-stretch: 108%;
  font-size: 0.95rem;
  letter-spacing: 0.015em;
  text-decoration: none;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.25s ease, border-color 0.25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-neon { background: var(--neon); color: var(--ink); }
.btn-neon:hover { background: var(--neon-bright); }

.btn-ghost {
  background: transparent;
  color: var(--mist);
  border: 2px solid rgb(244 246 239 / 0.35);
}
.btn-ghost:hover { border-color: var(--neon); color: var(--neon); }

.btn-forest { background: var(--forest); color: var(--neon); }
.btn-forest:hover { background: var(--forest-deep); }

.stars { color: var(--neon); letter-spacing: 0.1em; }

/* ---------- nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-nav);
  background: var(--forest);
  border-bottom: 1px solid rgb(96 114 96 / 0.35);
}
.nav-inner {
  max-width: 72.5rem;
  margin-inline: auto;
  padding: 0.65rem clamp(1.25rem, 4vw, 2.5rem);
  display: flex;
  align-items: center;
  gap: var(--s-6);
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  margin-right: auto;
}
.brand-badge {
  width: 42px;
  height: 42px;
  border-radius: 50%;
}
.brand-word {
  display: flex;
  flex-direction: column;
  color: var(--mist);
  font-weight: 900;
  font-stretch: var(--display-stretch);
  font-size: 1.3rem;
  line-height: 1;
  letter-spacing: 0.02em;
}
.brand-sub {
  font-weight: 500;
  font-stretch: 100%;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-top: 0.3rem;
}
.nav-links {
  display: flex;
  gap: clamp(0.9rem, 2vw, 1.6rem);
}
.nav-links a {
  color: var(--mist);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.4rem 0.1rem;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.nav-links a:hover { color: var(--neon); border-bottom-color: var(--neon); }
.nav-actions { display: flex; align-items: center; gap: 0.9rem; }
.btn-nav { min-height: 2.5rem; padding: 0.5rem 1.15rem; font-size: 0.88rem; }

.lang-switch {
  display: flex;
  border: 1px solid rgb(179 192 170 / 0.4);
  border-radius: 999px;
  overflow: hidden;
}
.lang-switch button {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--sage-light);
  font: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.35rem 0.7rem;
  cursor: pointer;
  min-height: 2rem;
}
.lang-switch .lang-on { background: var(--mist); color: var(--forest); }
.lang-switch #lang-en:hover { color: var(--mist); }

/* ---------- hero ---------- */
.hero {
  background: var(--forest);
  color: var(--mist);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 40rem);
  align-items: stretch;
}
.hero-panel {
  padding: clamp(2.5rem, 6vw, 5.5rem) clamp(1.25rem, 5vw, 5rem) clamp(2.5rem, 6vw, 5rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  max-width: 42rem;
  justify-self: end;
  width: 100%;
}
.hero-badge {
  width: clamp(64px, 8vw, 84px);
  height: auto;
  border-radius: 50%;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}
.hero-title {
  font-size: clamp(3rem, 10.5vw, 5.5rem);
  font-weight: 900;
  font-stretch: var(--display-stretch);
  line-height: 0.92;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}
.tdot { color: var(--neon); }
.hero-city {
  display: block;
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-weight: 600;
  font-stretch: 100%;
  letter-spacing: 0.08em;
  color: var(--sage-light);
  margin-top: 0.9rem;
}
.hero-line {
  margin-top: var(--s-6);
  max-width: 34rem;
  font-size: 1.1rem;
  line-height: 1.65;
  letter-spacing: 0.01em;
  color: rgb(244 246 239 / 0.88);
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: var(--s-8);
}
.hero-trust {
  margin-top: var(--s-6);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: var(--sage-light);
}
.hero-trust strong { color: var(--mist); font-size: 1.05rem; }
.hero-photo { min-height: 100%; }
.hero-photo img {
  width: 100%;
  height: 100%;
  max-height: 50rem;
  object-fit: cover;
}

/* hero entrance */
@media (prefers-reduced-motion: no-preference) {
  .hero-panel > * {
    animation: rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) backwards;
  }
  .hero-panel > *:nth-child(2) { animation-delay: 0.08s; }
  .hero-panel > *:nth-child(3) { animation-delay: 0.16s; }
  .hero-panel > *:nth-child(4) { animation-delay: 0.24s; }
  .hero-panel > *:nth-child(5) { animation-delay: 0.32s; }
  .hero-photo img { animation: fadein 1.1s ease-out backwards 0.15s; }
}
@keyframes rise {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: none; }
}
@keyframes fadein {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ---------- marquee ---------- */
.marquee {
  background: var(--neon);
  color: var(--ink);
  overflow: hidden;
  padding-block: 0.7rem;
  border-block: 3px solid var(--ink);
}
.marquee-track {
  display: flex;
  width: max-content;
  white-space: nowrap;
  font-weight: 850;
  font-stretch: var(--display-stretch);
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
@media (prefers-reduced-motion: no-preference) {
  .marquee-track { animation: slide 26s linear infinite; }
}
@keyframes slide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- reveals (progressive: html.js gates the hidden state) ---------- */
@media (prefers-reduced-motion: no-preference) {
  html.js .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  }
  html.js .reveal.in { opacity: 1; transform: none; }
}

/* ---------- concept ---------- */
.concept { padding-block: clamp(4rem, 9vw, 7.5rem); }
.concept-lead {
  max-width: 62ch;
  font-size: clamp(1.35rem, 2.6vw, 1.9rem);
  line-height: 1.45;
  font-weight: 500;
  text-wrap: pretty;
}
.concept-lead em {
  font-style: normal;
  font-weight: 750;
  background: linear-gradient(transparent 62%, var(--neon) 62% 94%, transparent 94%);
  padding-inline: 0.08em;
}

/* ---------- signatures ---------- */
.signatures { padding-bottom: clamp(4.5rem, 9vw, 8rem); }
.sig-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.75rem 2rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.signatures h2, .emporter h2, .avis h2, .infos h2 {
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  font-weight: 900;
  font-stretch: var(--display-stretch);
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.sig-deck {
  font-size: 1.05rem;
  color: var(--sage-dark);
  max-width: 38ch;
}
.sig-grid {
  display: grid;
  grid-template-columns: 5fr 3.6fr 3.6fr;
  grid-template-areas:
    "wok crunchy crunchy"
    "wok chef bowl";
  gap: clamp(1rem, 2vw, 1.5rem);
}
.sig { display: flex; flex-direction: column; }
.sig-wok { grid-area: wok; }
.sig-crunchy { grid-area: crunchy; }
.sig-chef { grid-area: chef; }
.sig-bowl { grid-area: bowl; }
.sig-img {
  overflow: hidden;
  border-radius: 14px;
  background: var(--forest);
  flex: 1;
}
.sig-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.sig:hover .sig-img img { transform: scale(1.04); }
.sig-crunchy .sig-img, .sig-chef .sig-img, .sig-bowl .sig-img { aspect-ratio: 4 / 3.1; flex: initial; }
.sig-chef .sig-img, .sig-bowl .sig-img { aspect-ratio: 4 / 4.4; }
.sig figcaption { padding: 0.9rem 0.25rem 0; }
.sig-name {
  display: block;
  font-weight: 850;
  font-stretch: 112%;
  font-size: 1.12rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.sig-desc {
  display: block;
  color: var(--sage-dark);
  font-size: 0.95rem;
  margin-top: 0.2rem;
}

/* ---------- emporter ---------- */
.emporter {
  background: var(--noir);
  color: var(--mist);
  padding-block: clamp(4.5rem, 9vw, 8rem);
}
.emporter-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.neon-word {
  color: var(--neon);
  text-shadow: 0 0 18px rgb(244 194 69 / 0.4), 0 0 52px rgb(244 194 69 / 0.22);
}
.emporter-copy p {
  margin-top: var(--s-6);
  max-width: 54ch;
  line-height: 1.7;
  letter-spacing: 0.012em;
  color: rgb(244 246 239 / 0.85);
}
.emporter-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: var(--s-8);
}
.emporter-photos {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: start;
}
.emporter-photos img { border-radius: 14px; }
.emporter-photos figure:last-child { margin-top: clamp(2.5rem, 6vw, 5rem); }

/* ---------- avis ---------- */
.avis {
  background: var(--forest);
  color: var(--mist);
  padding-block: clamp(4.5rem, 9vw, 8rem);
}
.avis-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem 2rem;
}
.avis-score { color: var(--sage-light); letter-spacing: 0.02em; }
.avis-score strong { color: var(--mist); font-size: 1.15rem; }
.avis-list {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}
.avis-list blockquote { max-width: 36ch; }
.avis-list blockquote:nth-child(2) { align-self: center; }
.avis-list blockquote:nth-child(3) { align-self: flex-end; text-align: right; }
.avis-list p {
  font-size: clamp(1.45rem, 3.2vw, 2.15rem);
  font-weight: 650;
  font-stretch: 108%;
  line-height: 1.25;
  letter-spacing: 0.005em;
  text-wrap: balance;
}
.avis-list p::before { content: ""; }
.avis-list footer {
  margin-top: 0.7rem;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  color: var(--sage-light);
}

/* ---------- infos ---------- */
.infos { padding-block: clamp(4.5rem, 9vw, 8rem); }
.infos-cols {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  margin-top: clamp(2rem, 4vw, 3rem);
  align-items: start;
}
.infos-list { display: flex; flex-direction: column; gap: var(--s-6); align-items: flex-start; }
.info-row { display: flex; flex-direction: column; gap: 0.35rem; }
.info-label {
  font-weight: 850;
  font-stretch: 112%;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sage-dark);
}
.info-value { font-size: 1.1rem; line-height: 1.55; }
.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  max-width: 21rem;
  font-variant-numeric: tabular-nums;
}
.hours-row span:first-child { font-weight: 650; }
.info-tel {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 850;
  font-stretch: 112%;
  text-decoration: none;
  letter-spacing: 0.01em;
}
.info-tel:hover { color: var(--sage-dark); }
.infos-note { font-size: 0.92rem; color: var(--sage-dark); max-width: 40ch; }

.map-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  background: var(--forest);
  color: var(--mist);
  border-radius: 18px;
  padding: clamp(1.75rem, 4vw, 2.75rem);
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
}
.map-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgb(23 27 18 / 0.28);
}
.map-pin { margin-bottom: 0.5rem; }
.map-title {
  font-weight: 850;
  font-stretch: 112%;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.map-sub { color: var(--sage-light); font-size: 0.98rem; }
.map-cta {
  margin-top: var(--s-4);
  color: var(--neon);
  font-weight: 700;
  font-size: 0.95rem;
}

/* ---------- footer ---------- */
.footer {
  background: var(--forest-deep);
  color: var(--sage-light);
  padding-block: clamp(3rem, 6vw, 4.5rem) var(--s-8);
}
.footer-inner {
  max-width: 72.5rem;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  text-align: center;
}
.footer-badge { width: 64px; height: 64px; border-radius: 50%; }
.footer-rating { color: var(--mist); letter-spacing: 0.02em; }
.footer-cities { font-size: 0.95rem; letter-spacing: 0.22em; text-transform: uppercase; }
.footer-google { color: var(--neon); font-weight: 650; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.footer-google:hover { color: var(--neon-bright); }
.footer-copy { font-size: 0.85rem; margin-top: var(--s-4); color: rgb(179 192 170 / 0.75); }

/* ---------- floating WA ---------- */
.wa-float {
  position: fixed;
  right: clamp(1rem, 3vw, 1.75rem);
  bottom: clamp(1rem, 3vw, 1.75rem);
  z-index: var(--z-float);
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--neon);
  color: var(--ink);
  box-shadow: 0 10px 28px rgb(13 16 10 / 0.4);
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.25s ease;
}
.wa-float:hover { transform: translateY(-3px) scale(1.05); background: var(--neon-bright); }

/* ---------- toast ---------- */
.toast {
  position: fixed;
  left: 50%;
  bottom: 1.5rem;
  transform: translate(-50%, 1rem);
  z-index: var(--z-toast);
  background: var(--ink);
  color: var(--mist);
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.3s;
}
.toast.show { opacity: 1; visibility: visible; transform: translate(-50%, 0); }

/* ============================================================
   responsive
   ============================================================ */
@media (max-width: 68rem) {
  .sig-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "wok crunchy"
      "wok chef"
      "bowl bowl";
  }
  .sig-bowl .sig-img { aspect-ratio: 16 / 9.5; }
}

@media (max-width: 55rem) {
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-panel { justify-self: start; max-width: none; }
  .hero-photo img { max-height: none; aspect-ratio: 4 / 5; }
  .emporter-inner { grid-template-columns: 1fr; }
  .infos-cols { grid-template-columns: 1fr; }
  .avis-list blockquote { max-width: 36ch; }
}

@media (max-width: 40rem) {
  .brand-sub { display: none; }
  .sig-grid {
    grid-template-columns: 1fr;
    grid-template-areas: "wok" "crunchy" "chef" "bowl";
  }
  .sig-wok .sig-img { aspect-ratio: 4 / 5; flex: initial; }
  .sig-chef .sig-img, .sig-bowl .sig-img { aspect-ratio: 4 / 3.6; }
  .emporter-photos { grid-template-columns: 1fr 1fr; }
  .emporter-photos figure:last-child { margin-top: 2rem; }
  .avis-list blockquote:nth-child(2) { align-self: flex-start; }
  .avis-list blockquote:nth-child(3) { align-self: flex-start; text-align: left; }
  .hours-row { max-width: none; }
}

@media (max-width: 26rem) {
  .btn-nav { padding: 0.5rem 0.9rem; }
  .nav-inner { gap: var(--s-4); }
  .hero-cta .btn { width: 100%; }
  .emporter-cta .btn { width: 100%; }
  .emporter-photos { grid-template-columns: 1fr; }
  .emporter-photos figure:last-child { margin-top: 0; }
}

/* the badge alone carries the brand on very narrow screens:
   below 384px the wordmark collides with the language switch */
@media (max-width: 24rem) {
  .brand-word { display: none; }
}
