:root {
  --kari-green: #1a4e3f;
  --kari-green-dark: #1A4E3F;
  --kari-red: #941a1d;
  --kari-cream: #f2ece0;
  --kari-cream-soft: #fbf6eb;
  --kari-orange: #ef7c2e;
  --kari-orange-bright: #ff7a21;
  --kari-pink: #db5c72;
  --kari-rose: #d57567;
  --kari-olive: #708351;
  --kari-brown: #814f1f;
  --ink: #1A4E3F;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(26, 78, 63, 0.18);
  --shadow-small: 0 12px 35px rgba(26, 78, 63, 0.14);
  --radius-xl: 48px;
  --radius-lg: 32px;
  --radius-md: 22px;
  --max-width: 1180px;
  --header-offset: 72px;
  --sans: Barlow, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "Cascadia Code", "Cascadia Code", Consolas, monospace;
  --nav-logo-image: url("the-kari-logo.svg");
  --footer-logo-image: url("the-kari-logo-1.png");
  --placeholder-image: url("https://placehold.co/600x400");
  --placeholder-image-orange: url("https://placehold.co/600x400/orange/white");
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-offset);
  overflow-x: hidden;
  overscroll-behavior-x: none;
}

body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(26, 78, 63, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, var(--kari-cream) 0%, var(--kari-cream-soft) 42%, var(--kari-cream) 100%);
  background-size: 42px 42px, auto;
  font-family: var(--sans);
  overflow-x: hidden;
  overscroll-behavior-x: none;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  background: var(--kari-green);
  color: var(--white);
  padding: 0.75rem 1rem;
  border-radius: 999px;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section-shell {
  width: min(calc(100% - 40px), var(--max-width));
  margin-inline: auto;
}

.spice-trail {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.34;
  background-image:
    linear-gradient(135deg, rgba(148, 26, 29, 0.08) 25%, transparent 25%),
    linear-gradient(45deg, rgba(239, 124, 46, 0.08) 25%, transparent 25%);
  background-size: 120px 120px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(242, 236, 224, 0.94);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(26, 78, 63, 0.12);
  box-shadow: 0 1px 0 rgba(26, 78, 63, 0.12), 0 12px 28px rgba(26, 78, 63, 0.08);
}

.main-nav {
  position: relative;
  width: min(calc(100% - 40px), var(--max-width));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.8rem);
  min-height: 64px;
  padding: 0.2rem 0;
}

.brand-logo {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  width: clamp(142px, 13vw, 190px);
  min-height: 64px;
  overflow: hidden;
  padding: 0.1rem 0.2rem;
  background: var(--nav-logo-image) center / contain no-repeat;
}

.brand-logo__title,
.brand-logo__subtitle {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.nav-drawer {
  display: contents;
}

.nav-group {
  display: flex;
  align-items: center;
  gap: clamp(0.55rem, 1.4vw, 1.1rem);
}

.nav-group--left {
  grid-column: 1;
  grid-row: 1;
  justify-content: flex-end;
}

.nav-group--right {
  grid-column: 3;
  grid-row: 1;
  justify-content: flex-start;
}

.nav-group a {
  position: relative;
  font-family: var(--mono);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--kari-green);
  padding: 0.55rem 0.08rem;
}

.nav-group a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.32rem;
  height: 2px;
  background: currentColor;
  transform: scaleX(0.28);
  transform-origin: left;
  transition: transform 180ms ease, color 180ms ease;
}

.nav-group a:hover::after,
.nav-group a:focus-visible::after,
.nav-group a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-group a.nav-order {
  color: var(--white);
  background: var(--kari-red);
  border-radius: 999px;
  padding: 0.68rem 1rem;
  box-shadow: 0 12px 24px rgba(148, 26, 29, 0.16);
}

.nav-group a.nav-order::after { display: none; }

.nav-group a.nav-order:hover,
.nav-group a.nav-order:focus-visible {
  transform: translateY(-1px) rotate(-0.4deg);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 2px solid var(--kari-green);
  border-radius: 16px;
  background: transparent;
  color: var(--kari-green);
  place-items: center;
}

.nav-toggle__line {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle__line + .nav-toggle__line {
  margin-top: 5px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-of-type(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-of-type(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-of-type(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.button,
.micro-pill,
.pill {
  min-height: 46px;
  border: 2px solid currentColor;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--mono);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform 170ms ease, box-shadow 170ms ease, background 170ms ease, color 170ms ease;
}

.button {
  padding: 0.95rem 1.38rem;
}

.micro-pill,
.pill {
  padding: 0.75rem 1rem;
}

.button:hover,
.button:focus-visible,
.micro-pill:hover,
.micro-pill:focus-visible,
.pill:hover,
.pill:focus-visible {
  transform: translateY(-2px) rotate(-0.3deg);
  box-shadow: var(--shadow-small);
}

.button--green {
  color: var(--white);
  background: var(--kari-green);
  border-color: var(--kari-green);
}

.button--red {
  color: var(--white);
  background: var(--kari-red);
  border-color: var(--kari-red);
}

.button--orange {
  color: var(--white);
  background: var(--kari-orange);
  border-color: var(--kari-orange);
}

.button--cream,
.button--light {
  color: var(--kari-green);
  background: var(--kari-cream-soft);
  border-color: var(--kari-cream-soft);
}

.button--dark {
  color: var(--white);
  background: var(--kari-green-dark);
  border-color: var(--kari-green-dark);
}

.button--outline,
.button--ghost,
.button--outline-light {
  color: currentColor;
  background: transparent;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
  color: var(--kari-red);
  font-family: var(--mono);
  font-size: clamp(0.76rem, 1vw, 0.9rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 0.82em;
  height: 0.82em;
  border: 3px solid currentColor;
  border-left-color: transparent;
  border-radius: 50%;
}

.eyebrow--warm {
  color: #EF7C2E;
}

.section-heading {
  margin-bottom: clamp(1.6rem, 4vw, 3rem);
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(210px, 0.48fr);
  gap: clamp(1rem, 4vw, 3rem);
  align-items: end;
}

.section-heading--center {
  text-align: center;
}

.section-heading--center .eyebrow {
  justify-content: center;
}

.section-heading p:not(.eyebrow) {
  margin: 0;
  color: rgba(17, 51, 42, 0.74);
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.55;
}

.section-title,
.section-heading h2 {
  margin: 0;
  font-size: clamp(2.6rem, 7vw, 5.6rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 0;
}

.page-section {
  padding: clamp(3rem, 7vw, 6.5rem) 0;
}

.page-section--tight {
  padding-top: clamp(2rem, 5vw, 4rem);
}

.hero-reveal-stage {
  position: relative;
  /* min-height: calc(100svh + clamp(260px, 38vh, 430px)); */
  max-width: 100%;
  overflow-x: clip;
  touch-action: pan-y;
}

.hero {
  min-height: min(720px, calc(100svh - var(--header-offset)));
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.86fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding: clamp(3.25rem, 7vw, 6.5rem) 0 clamp(2.5rem, 6vw, 5rem);
}

.hero-reveal-stage .hero {
  position: sticky;
  top: var(--header-offset);
  z-index: 1;
}

.hero__copy {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.hero h1 {
  max-width: 9ch;
  margin: 0;
  font-size: clamp(4.7rem, 12vw, 9.5rem);
  font-weight: 900;
  line-height: 0.78;
  letter-spacing: 0;
}

.hero__lead {
  max-width: 620px;
  margin: 1.25rem 0 0;
  color: rgba(17, 51, 42, 0.74);
  font-size: clamp(1.08rem, 1.7vw, 1.42rem);
  font-weight: 600;
  line-height: 1.48;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.45rem;
}

.hero__quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.72rem;
  margin-top: 1rem;
}

.hero__quick-actions .pill {
  min-height: 42px;
  padding: 0.7rem 1.05rem;
  font-size: 0.78rem;
  background: rgba(255, 255, 255, 0.42);
}

.pill--solid {
  color: var(--white);
  background: var(--kari-red);
  border-color: var(--kari-red);
}

.pill--outline {
  color: var(--kari-orange-bright);
  background: transparent;
}

.pill--ghost {
  color: var(--kari-green);
  background: rgba(255, 255, 255, 0.62);
}

.hero__microcopy {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.05rem;
}

.hero__microcopy span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.46rem 0.72rem;
  border: 1px solid rgba(26, 78, 63, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  color: rgba(17, 51, 42, 0.72);
  font-weight: 800;
}

.hero__visual {
  min-width: 0;
  max-width: 100%;
  min-height: 360px;
  display: grid;
  align-items: center;
  perspective: 1200px;
  overflow-x: clip;
  overflow-y: visible;
  touch-action: pan-y;
}

.hero-image-reveal {
  --reveal-progress: 0;
  position: relative;
  width: min(100%, 750px);
  max-width: 100%;
  min-height: clamp(360px, 58vw, 680px);
  margin-inline: auto;
  display: grid;
  place-items: center;
  isolation: isolate;
  overflow-x: clip;
  overflow-y: visible;
  touch-action: pan-y;
}

.placeholder-card {
  position: relative;
  width: min(calc(100% - clamp(28px, 5vw, 56px)), 700px);
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--kari-orange);
  box-shadow: var(--shadow);
  transform: rotate(2deg);
  will-change: transform, filter;
}

.placeholder-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.placeholder-card figcaption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  margin: 0;
  padding: 1rem;
  border-radius: 24px;
  background: rgba(251, 246, 235, 0.92);
  color: var(--kari-green);
  font-weight: 900;
  line-height: 1.15;
  box-shadow: var(--shadow-small);
}

.hero-image-reveal .placeholder-card {
  position: absolute;
  inset: 50% auto auto 50%;
  transform-style: preserve-3d;
  transition: transform 120ms linear, filter 120ms linear;
}

.placeholder-card--deep {
  z-index: 1;
  background: var(--kari-cream-soft);
  transform:
    translate(
      calc(-50% + (var(--reveal-progress) * 22px)),
      calc(-50% + (var(--reveal-progress) * 24px))
    )
    rotate(calc(-8deg + (var(--reveal-progress) * 2deg)))
    scale(calc(0.82 + (var(--reveal-progress) * 0.05)));
  filter: saturate(calc(0.58 + (var(--reveal-progress) * 0.18))) brightness(calc(0.86 + (var(--reveal-progress) * 0.08)));
}

.placeholder-card--middle {
  z-index: 2;
  background: var(--kari-red);
  transform:
    translate(
      calc(-50% - 6px + (var(--reveal-progress) * 14px)),
      calc(-50% + 10px - (var(--reveal-progress) * 12px))
    )
    rotate(calc(7deg - (var(--reveal-progress) * 4deg)))
    scale(calc(0.86 + (var(--reveal-progress) * 0.06)));
  filter: saturate(calc(0.68 + (var(--reveal-progress) * 0.18))) brightness(calc(0.9 + (var(--reveal-progress) * 0.06)));
}

.placeholder-card--back {
  z-index: 3;
  background: var(--kari-cream-soft);
  transform:
    translate(
      calc(-50% + 8px - (var(--reveal-progress) * 8px)),
      calc(-50% - 4px + (var(--reveal-progress) * 80px))
    )
    rotate(calc(-3deg + (var(--reveal-progress) * 1.5deg)))
    scale(calc(0.91 + (var(--reveal-progress) * 0.05)));
  filter: saturate(calc(0.78 + (var(--reveal-progress) * 0.22))) brightness(calc(0.9 + (var(--reveal-progress) * 0.08)));
}

.placeholder-card--front {
  z-index: 4;
  transform:
    translate(
      calc(-50% + (var(--reveal-progress) * -4px)),
      calc(-50% - (var(--reveal-progress) * 210px))
    )
    rotate(calc(2deg - (var(--reveal-progress) * 8deg)))
    scale(calc(1 - (var(--reveal-progress) * 0.07)));
  filter: saturate(calc(1 - (var(--reveal-progress) * 0.18))) brightness(calc(1 - (var(--reveal-progress) * 0.08)));
}

.hero-image-reveal__cue {
  position: absolute;
  left: 50%;
  bottom: clamp(0.3rem, 3vw, 1.2rem);
  z-index: 3;
  transform: translateX(-50%);
  min-height: 36px;
  display: inline-grid;
  place-items: center;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: var(--kari-green-dark);
  color: var(--kari-cream);
  box-shadow: var(--shadow-small);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: calc(1 - (var(--reveal-progress) * 1.25));
}

.kari-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: min(780px, calc(100svh - var(--header-offset)));
  padding: clamp(3.4rem, 7vw, 7rem) 0 clamp(3rem, 6vw, 5.5rem);
}

.kari-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.24), transparent 32%),
    linear-gradient(180deg, var(--kari-cream-soft), var(--kari-cream));
}

.kari-hero::after {
  content: "KARI";
  position: absolute;
  right: clamp(-90px, -8vw, -30px);
  bottom: clamp(-62px, -5vw, -30px);
  z-index: -1;
  color: rgba(26, 78, 63, 0.075);
  font-size: clamp(7rem, 20vw, 18rem);
  font-weight: 900;
  line-height: 0.74;
}

.hero-shell {
  width: min(calc(100% - 40px), var(--max-width));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.86fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy h1 {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(4.4rem, 11vw, 9.5rem);
  font-weight: 900;
  line-height: 0.78;
  letter-spacing: 0;
}

.hero-copy h1.wide-title {
  max-width: 12ch;
  font-size: clamp(3.9rem, 9vw, 8rem);
}

.hero-lead,
.component-intro__lead {
  max-width: 650px;
  margin: 1.2rem 0 0;
  color: rgba(17, 51, 42, 0.74);
  font-size: clamp(1.08rem, 1.7vw, 1.42rem);
  font-weight: 600;
  line-height: 1.48;
}

.hero-actions,
.component-intro__actions,
.banner-actions,
.loyalty__actions,
.booking__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.45rem;
}

.home-quickbar,
.spice-selector,
.date-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.72rem;
  margin-top: 1.1rem;
}

.micro-pill,
.spice-chip,
.date-chip,
.menu-filter,
.event-tab,
.heat-button,
.time-button {
  border: 2px solid rgba(26, 78, 63, 0.2);
  background: rgba(255, 255, 255, 0.54);
  color: var(--kari-green);
  border-radius: 999px;
  font-family: var(--mono);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.spice-chip,
.date-chip,
.menu-filter,
.event-tab {
  padding: 0.72rem 1rem;
}

.spice-chip.is-active,
.date-chip.is-active,
.menu-filter.is-active,
.event-tab[aria-selected="true"],
.time-button[aria-pressed="true"] {
  background: var(--kari-green);
  border-color: var(--kari-green);
  color: var(--white);
}

.visual-panel {
  position: relative;
  min-height: 460px;
}

.marquee,
.utility-strip {
  overflow: hidden;
}

.marquee {
  margin-top: 1.25rem;
  border-block: 1px solid rgba(26, 78, 63, 0.15);
}

.marquee-track,
.utility-strip__track {
  display: flex;
  width: max-content;
  animation: kari-marquee 26s linear infinite;
}

.marquee-track span,
.utility-strip__track span {
  padding: 0.9rem 1.1rem;
  color: var(--kari-green);
  font-family: var(--mono);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero--menu,
.hero--events,
.hero--booking {
  color: var(--white);
}

.hero--menu::before,
.hero--events::before,
.hero--booking::before {
  background: linear-gradient(135deg, var(--kari-green-dark), var(--kari-green));
}

.hero--menu .eyebrow,
.hero--events .eyebrow,
.hero--booking .eyebrow,
.hero--menu .hero-lead,
.hero--events .hero-lead,
.hero--booking .hero-lead {
  color: rgba(255, 255, 255, 0.82);
}

.hero--menu .eyebrow,
.hero--events .eyebrow,
.hero--booking .eyebrow {
  color: var(--kari-orange-bright);
}

.hero--about::before {
  background: linear-gradient(135deg, var(--kari-cream-soft), #f0dfc9);
}

.hero--contact::before,
.hero--takeaway::before {
  background: linear-gradient(135deg, #fff8ea, #ead8c0);
}

.hero--events::before {
  background: linear-gradient(135deg, var(--kari-red), var(--kari-green-dark));
}

.hero--booking::before {
  background: linear-gradient(135deg, var(--kari-green-dark), #173f35 56%, var(--kari-red));
}

.home-orbit,
.story-stack,
.map-board,
.delivery-scene,
.table-map,
.component-orbit,
.banner-stage {
  position: relative;
  min-height: 460px;
}

.thali-hero-card,
.story-stack .story-card,
.map-board,
.phone-frame,
.reserve-card,
.table-board,
.component-orbit,
.banner-disc {
  box-shadow: var(--shadow);
}

.thali-hero-card {
  position: relative;
  min-height: 470px;
  padding: 2rem;
  border-radius: var(--radius-xl);
  background: var(--kari-red);
  color: var(--white);
  transform: rotate(2.2deg);
}

.thali-badge,
.reserve-stamp,
.poster-label,
.map-bubble,
.banner-float,
.orbit-chip,
.seat-status {
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.thali-badge {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 86px;
  aspect-ratio: 1;
  background: var(--kari-orange);
}

.thali-plate {
  position: relative;
  width: min(340px, 90%);
  aspect-ratio: 1;
  margin: 5rem auto 1.2rem;
  border-radius: 50%;
  background: var(--kari-cream);
  box-shadow: inset 0 -16px 0 rgba(0, 0, 0, 0.08), 0 18px 32px rgba(0, 0, 0, 0.18);
}

.bowl,
.naan,
.pickle,
.mood-art::before,
.mood-art::after,
.menu-card__art::before,
.menu-card__art::after,
.order-thumb,
.social-tile {
  position: absolute;
  display: block;
  border-radius: 50%;
}

.bowl::after {
  content: "";
  position: absolute;
  inset: 16%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
}

.bowl--dal {
  width: 30%;
  height: 30%;
  left: 20%;
  top: 18%;
  background: #f4b43f;
}

.bowl--curry {
  width: 34%;
  height: 34%;
  right: 18%;
  top: 22%;
  background: var(--kari-red);
}

.bowl--rice {
  width: 31%;
  height: 31%;
  left: 34%;
  bottom: 18%;
  background: var(--white);
}

.naan {
  width: 34%;
  height: 19%;
  left: 13%;
  bottom: 22%;
  background: #e6b56f;
  border-radius: 50% 45% 48% 44%;
  transform: rotate(-22deg);
}

.pickle {
  width: 16%;
  height: 16%;
  right: 24%;
  bottom: 26%;
  background: var(--kari-olive);
}

.spice-meter {
  display: flex;
  justify-content: center;
  gap: 0.38rem;
}

.spice-meter i,
.heat-meter i,
.rating-row i {
  display: block;
  width: 13px;
  height: 34px;
  border-radius: 999px 999px 8px 8px;
  background: var(--kari-orange);
}

.thali-caption {
  max-width: 300px;
  margin: 1rem auto 0;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 800;
}

.flying-snack {
  position: absolute;
  display: grid;
  place-items: center;
  width: 66px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--white);
  color: var(--kari-red);
  font-family: var(--mono);
  font-weight: 700;
  box-shadow: var(--shadow-small);
}

.flying-snack:nth-of-type(1) {
  top: 3%;
  left: 12%;
}

.flying-snack:nth-of-type(2) {
  right: 4%;
  top: 24%;
}

.flying-snack:nth-of-type(3) {
  left: 4%;
  bottom: 18%;
}

.menu-visual {
  display: grid;
  align-content: center;
  gap: 1rem;
}

.carousel-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.carousel-head p {
  margin: 0;
  font-family: var(--mono);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.carousel-controls,
.mood-controls,
.testimonial-controls {
  display: flex;
  gap: 0.5rem;
}

.carousel-btn,
.round-button {
  display: grid;
  place-items: center;
  width: 44px;
  aspect-ratio: 1;
  border: 2px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: inherit;
  font-weight: 900;
}
.bundle-strip{
  padding-right: 1rem;
}
.menu-track,
.event-track,
.bundle-track,
.mood-scroller {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 0.6rem;
}

.menu-track::-webkit-scrollbar,
.event-track::-webkit-scrollbar,
.bundle-track::-webkit-scrollbar,
.mood-scroller::-webkit-scrollbar {
  display: none;
}

.menu-card {
  position: relative;
  flex: 0 0 min(310px, 78vw);
  min-height: 340px;
  overflow: hidden;
  scroll-snap-align: start;
  border-radius: 999px 999px 38px 38px;
  background: var(--kari-orange);
  color: var(--white);
}

.menu-card:nth-child(2),
.mood-card:nth-child(2) {
  background: #127b83;
}

.menu-card:nth-child(3),
.mood-card:nth-child(3) {
  background: var(--kari-rose);
}

.menu-card:nth-child(4),
.mood-card:nth-child(4) {
  background: var(--kari-red);
}

.menu-card:nth-child(5),
.mood-card:nth-child(5) {
  background: var(--kari-olive);
}

.menu-card:nth-child(6),
.mood-card:nth-child(6) {
  background: var(--kari-brown);
}

.menu-card:nth-child(7),
.mood-card:nth-child(7) {
  background: var(--kari-green);
}

.menu-card:nth-child(8),
.mood-card:nth-child(8) {
  background: var(--kari-pink);
}

.menu-card__art {
  position: absolute;
  inset: 0 42% 0 0;
}

.menu-card__art::before {
  content: "";
  width: 86%;
  aspect-ratio: 1;
  left: 8%;
  top: 22%;
  background: var(--kari-cream);
  box-shadow: inset 0 -12px 0 rgba(0, 0, 0, 0.09);
}

.menu-card__art::after {
  content: "";
  width: 68%;
  height: 17%;
  left: 14%;
  bottom: 20%;
  border-radius: 999px;
  background: #8a4a1e;
}

.menu-card__copy {
  position: absolute;
  inset: auto 1.25rem 1.35rem 42%;
  z-index: 1;
}

.menu-card__copy span,
.mood-card__copy span,
.package-card span,
.preview-copy span {
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--mono);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-card__copy h3,
.mood-card__copy h3,
.event-card h3 {
  margin: 0.55rem 0;
  font-size: clamp(1.45rem, 5vw, 2rem);
  line-height: 0.96;
}

.menu-card__copy p,
.event-card p,
.mood-card__copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 700;
  line-height: 1.35;
}

.story-stack {
  display: grid;
  align-content: center;
}

.story-plate {
  position: absolute;
  width: 52%;
  aspect-ratio: 1;
  right: 4%;
  top: 5%;
  border-radius: 50%;
  background: var(--kari-orange);
  opacity: 0.22;
}

.story-stack .story-card {
  position: relative;
  max-width: 360px;
  margin: 0 0 1rem auto;
  padding: 1.2rem;
  border: 1px solid rgba(26, 78, 63, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
}

.story-stack .story-card:nth-of-type(2) {
  margin-right: 4rem;
}

.story-stack .story-card:nth-of-type(3) {
  margin-right: 1.8rem;
}

.story-stack .story-card span {
  color: var(--kari-red);
  font-family: var(--mono);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-stack .story-card h3 {
  margin: 0.45rem 0;
  font-size: 1.45rem;
}

.story-stack .story-card p {
  margin: 0;
  color: rgba(17, 51, 42, 0.74);
  font-weight: 600;
  line-height: 1.45;
}

.about-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 1.2rem;
}

.about-proof div {
  padding: 0.9rem;
  border: 1px solid rgba(26, 78, 63, 0.11);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.62);
}

.about-proof strong {
  display: block;
  color: var(--kari-red);
  font-size: 1.35rem;
  line-height: 1;
}

.about-proof span {
  color: rgba(17, 51, 42, 0.7);
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-list,
.takeaway-steps {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.contact-line,
.takeaway-step,
.field-pill,
.order-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: center;
  padding: 0.9rem;
  border: 1px solid rgba(26, 78, 63, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.66);
}

.contact-line b,
.takeaway-step span {
  display: grid;
  place-items: center;
  width: 44px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--kari-green);
  color: var(--white);
  font-family: var(--mono);
}

.map-board {
  min-height: 460px;
  border: 1px solid rgba(26, 78, 63, 0.14);
  border-radius: 42px;
  background:
    linear-gradient(90deg, rgba(26, 78, 63, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(26, 78, 63, 0.08) 1px, transparent 1px),
    var(--kari-cream-soft);
  background-size: 48px 48px;
}

.route-line {
  position: absolute;
  inset: 20% 18% 28% 16%;
  border: 12px solid var(--kari-orange);
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-radius: 999px;
  transform: rotate(-8deg);
}

.map-pin {
  position: absolute;
  left: 47%;
  top: 37%;
  width: 84px;
  height: 104px;
  border-radius: 56% 56% 62% 62%;
  background: var(--kari-red);
  transform: rotate(45deg);
}

.map-pin::before {
  content: "";
  position: absolute;
  width: 42%;
  aspect-ratio: 1;
  left: 50%;
  top: 26%;
  border-radius: 50%;
  background: var(--kari-cream);
  transform: translate(-50%, -50%);
}

.map-note {
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1.2rem;
  padding: 1.2rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
}

.map-note h3,
.map-note p {
  margin: 0;
}

.map-note p {
  margin-top: 0.35rem;
  color: rgba(17, 51, 42, 0.68);
  font-weight: 600;
}

.map-bubble {
  position: absolute;
  min-width: 92px;
  min-height: 38px;
  padding: 0.4rem 0.75rem;
  background: var(--white);
  color: var(--kari-green);
  box-shadow: var(--shadow-small);
}

.map-bubble:nth-of-type(1) {
  top: 12%;
  left: 12%;
}

.map-bubble:nth-of-type(2) {
  top: 16%;
  right: 9%;
}

.map-bubble:nth-of-type(3) {
  right: 16%;
  bottom: 28%;
}

.event-stage,
.delivery-scene,
.table-map {
  display: grid;
  align-content: center;
  gap: 1rem;
}

.banquet-table {
  position: relative;
  width: min(92vw, 380px);
  aspect-ratio: 1;
  margin: 0 auto;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(242, 236, 224, .92) 0 31%, transparent 32%),
    radial-gradient(circle at center, var(--kari-orange) 0 52%, transparent 53%),
    radial-gradient(circle at center, rgba(255, 255, 255, .18) 0 64%, transparent 65%);
  box-shadow: 0 28px 60px rgba(0, 0, 0, .28);
  animation: soft-tilt 7s ease-in-out infinite;
}

.banquet-table::before {
  content: "";
  position: absolute;
  inset: 25%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 36%, #ffd47c 0 10%, transparent 11%),
    radial-gradient(circle at 62% 34%, #941a1d 0 11%, transparent 12%),
    radial-gradient(circle at 48% 63%, #708351 0 10%, transparent 11%),
    var(--kari-cream);
}

.seat {
  position: absolute;
  width: 58px;
  height: 78px;
  border-radius: 999px 999px 22px 22px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 12px 22px rgba(0, 0, 0, .16);
}

.seat:nth-child(1) {
  left: 50%;
  top: -26px;
  translate: -50% 0;
}

.seat:nth-child(2) {
  right: 15px;
  top: 18%;
  rotate: 45deg;
}

.seat:nth-child(3) {
  right: -19px;
  top: 50%;
  translate: 0 -50%;
  rotate: 90deg;
}

.seat:nth-child(4) {
  right: 15px;
  bottom: 18%;
  rotate: 135deg;
}

.seat:nth-child(5) {
  left: 50%;
  bottom: -26px;
  translate: -50% 0;
  rotate: 180deg;
}

.seat:nth-child(6) {
  left: 15px;
  bottom: 18%;
  rotate: -135deg;
}

.seat:nth-child(7) {
  left: -19px;
  top: 50%;
  translate: 0 -50%;
  rotate: -90deg;
}

.seat:nth-child(8) {
  left: 15px;
  top: 18%;
  rotate: -45deg;
}

@keyframes soft-tilt {
  50% {
    transform: rotate(-3deg) scale(1.02);
  }
}

@media (max-width: 560px) {
  .banquet-table {
    width: min(88vw, 330px);
  }

  .seat {
    width: 48px;
    height: 64px;
  }
}

.event-card,
.bundle-card {
  flex: 0 0 min(260px, 78vw);
  min-height: 156px;
  padding: 1.1rem;
  scroll-snap-align: start;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.event-card span {
  color: var(--kari-orange-bright);
  font-family: var(--mono);
  font-weight: 700;
}

.delivery-path {
  position: absolute;
  left: 5%;
  right: 5%;
  top: 52%;
  height: 4px;
  background: repeating-linear-gradient(90deg, var(--kari-red) 0 18px, transparent 18px 30px);
}

.delivery-bike {
  position: absolute;
  top: 44%;
  left: 4%;
  display: grid;
  place-items: center;
  width: 72px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--kari-red);
  color: var(--white);
  font-family: var(--mono);
  font-weight: 900;
  animation: bike-roll 7s ease-in-out infinite alternate;
}

.phone-frame {
  position: relative;
  width: min(350px, 86%);
  min-height: 520px;
  margin-left: auto;
  padding: 1.2rem;
  border-radius: 42px;
  background: var(--kari-green-dark);
  color: var(--white);
}

.phone-top {
  padding: 1rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.1);
}

.phone-top span {
  color: var(--kari-orange-bright);
  font-family: var(--mono);
  font-weight: 700;
  text-transform: uppercase;
}

.phone-top h3 {
  margin: 0.25rem 0 0;
  font-size: 1.7rem;
}

.order-item {
  grid-template-columns: 42px 1fr auto;
  margin-top: 0.75rem;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.order-thumb {
  position: relative;
  width: 42px;
  aspect-ratio: 1;
  background: var(--kari-red);
}

.order-item small {
  display: block;
  color: rgba(255, 255, 255, 0.68);
}

.order-total {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 999px;
  background: var(--kari-red);
  color: var(--white);
  font-family: var(--mono);
  font-weight: 700;
}

.bundle-strip {
  color: var(--white);
}

.bundle-card strong,
.bundle-card span {
  display: block;
}

.bundle-card span {
  margin-top: 0.4rem;
  color: rgba(255, 255, 255, 0.74);
}

.reserve-card {
  margin-top: 1.2rem;
  padding: 1.2rem;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.reserve-card__top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.reserve-card h3,
.reserve-card p {
  margin: 0;
}

.reserve-card p {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 600;
}

.reserve-stamp {
  flex: 0 0 auto;
  width: 94px;
  aspect-ratio: 1;
  background: var(--kari-orange);
  color: var(--white);
}

.booking-fields {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 1rem;
}

.field-pill {
  grid-template-columns: 1fr;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.field-pill span {
  color: rgba(255, 255, 255, 0.65);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.table-board {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
  min-height: 420px;
  padding: 2rem;
  border-radius: 42px;
  background: var(--kari-cream-soft);
}

.seat-btn {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border: 0;
  border-radius: 50%;
  background: var(--kari-green);
  color: var(--white);
  font-family: var(--mono);
  font-size: 1.2rem;
  font-weight: 700;
}

.seat-btn[aria-pressed="true"] {
  background: var(--kari-orange);
}

.seat-status {
  justify-self: center;
  min-height: 40px;
  padding: 0.65rem 1rem;
  background: var(--kari-cream-soft);
  color: var(--kari-green);
}

.utility-strip {
  background: var(--kari-green-dark);
}

.utility-strip__track span {
  color: var(--kari-cream);
}

.full-banner {
  overflow: hidden;
  background: var(--kari-red);
  color: var(--white);
  padding: clamp(3rem, 8vw, 7rem) 0;
}

.banner-shell {
  width: min(calc(100% - 40px), var(--max-width));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(310px, 0.72fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.banner-copy h2 {
  max-width: 9ch;
  margin: 0;
  font-size: clamp(3rem, 9vw, 7.5rem);
  font-weight: 900;
  line-height: 0.84;
}

.banner-copy p:not(.eyebrow) {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.16rem;
  font-weight: 600;
  line-height: 1.5;
}

.banner-disc {
  position: absolute;
  inset: 8% 4% 8% auto;
  width: min(430px, 88%);
  border-radius: 50%;
  background: var(--kari-cream);
}

.banner-disc::before,
.component-orbit .orbit-plate::before {
  content: "";
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  background:
    linear-gradient(90deg, var(--kari-orange) 0 34%, transparent 34%),
    linear-gradient(180deg, var(--kari-red) 0 38%, transparent 38%),
    var(--kari-olive);
}

.banner-float {
  position: absolute;
  min-width: 130px;
  min-height: 42px;
  padding: 0.5rem 0.8rem;
  background: var(--white);
  color: var(--kari-green);
  box-shadow: var(--shadow-small);
}

.banner-float--one {
  top: 11%;
  left: 1%;
}

.banner-float--two {
  right: 0;
  top: 42%;
}

.banner-float--three {
  left: 11%;
  bottom: 12%;
}

.story-scroll__grid,
.testimonial-panel,
.event-panel,
.order-grid,
.faq-booking__grid,
.visit-grid,
.contact-panel,
.menu-layout,
.booking-layout-grid,
.component-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.84fr);
  gap: clamp(1.4rem, 4vw, 3.5rem);
  align-items: start;
}

.story-sticky {
  position: sticky;
  top: calc(var(--header-offset) + 24px);
  padding: 1.4rem 0;
}

.story-sticky h2 {
  margin: 0;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.86;
}

.story-sticky p:not(.eyebrow) {
  color: rgba(17, 51, 42, 0.74);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.55;
}

.story-steps {
  display: grid;
  gap: 1rem;
}

.story-steps .story-card,
.value-card,
.dish-card,
.location-card,
.info-card,
.contact-form,
.booking-card,
.accordion-item,
.hours-card {
  border: 1px solid rgba(26, 78, 63, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 1px 0 rgba(26, 78, 63, 0.08);
}

.story-steps .story-card {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 1rem;
  min-height: 185px;
  padding: 1.2rem;
  background: var(--kari-green);
  color: var(--white);
}

.story-steps .story-card:nth-child(2) {
  background: var(--kari-red);
}

.story-steps .story-card:nth-child(3) {
  background: var(--kari-orange);
}

.story-steps .story-card:nth-child(4) {
  background: var(--kari-olive);
}

.story-card__number {
  display: grid;
  place-items: center;
  width: 78px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
  font-family: var(--mono);
  font-size: 1.25rem;
  font-weight: 700;
}

.story-steps h3,
.story-steps p {
  margin: 0;
}

.story-steps h3 {
  font-size: clamp(1.8rem, 5vw, 2.7rem);
  line-height: 0.95;
}

.story-steps p {
  margin-top: 0.65rem;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
  line-height: 1.42;
}

.testimonial-panel {
  padding: clamp(1.2rem, 4vw, 2rem);
  border-radius: var(--radius-xl);
  background: var(--kari-green-dark);
  color: var(--white);
}

.testimonial-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
  font-weight: 600;
  line-height: 1.55;
}

.testimonial-copy h2 {
  margin: 0;
  font-size: clamp(2.8rem, 8vw, 5.8rem);
  line-height: 0.88;
}

.testimonial-carousel {
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 300ms ease;
}

.testimonial-card {
  flex: 0 0 100%;
  min-height: 330px;
  padding: clamp(1.2rem, 4vw, 2rem);
  border-radius: 34px;
  background: var(--kari-cream-soft);
  color: var(--ink);
  display: grid;
  align-content: space-between;
  gap: 1.5rem;
}

.rating-row {
  display: flex;
  gap: 0.28rem;
}

.rating-row i {
  width: 12px;
  height: 24px;
  background: var(--kari-orange);
}

.testimonial-card blockquote {
  margin: 0;
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 900;
  line-height: 0.98;
}

.testimonial-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px dashed rgba(26, 78, 63, 0.24);
}

.testimonial-meta span {
  display: block;
  color: rgba(17, 51, 42, 0.64);
  font-weight: 700;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 1rem;
}

.testimonial-dots button {
  width: 12px;
  aspect-ratio: 1;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
}

.testimonial-dots button[aria-selected="true"] {
  background: var(--kari-orange);
}

.mood-scroller-wrap {
  position: relative;
}

.mood-card {
  position: relative;
  flex: 0 0 min(300px, 82vw);
  display: grid;
  grid-template-rows: 47% 1fr;
  min-height: 470px;
  overflow: hidden;
  scroll-snap-align: start;
  border-radius: 999px 999px 38px 38px;
  background: var(--kari-orange);
  color: var(--white);
}

.mood-art {
  position: relative;
}

.mood-art::before {
  content: "";
  width: 62%;
  aspect-ratio: 1;
  left: 18%;
  bottom: 0;
  background: var(--kari-cream);
}

.mood-art::after {
  content: "";
  width: 45%;
  height: 16%;
  left: 27%;
  bottom: 14%;
  border-radius: 999px;
  background: #7b3f1b;
}

.mood-card__copy {
  padding: 1.2rem;
  display: grid;
  align-content: start;
}

.mood-card__copy a {
  align-self: end;
  width: max-content;
  margin-top: 1rem;
  border-bottom: 3px solid currentColor;
  color: var(--white);
  font-family: var(--mono);
  font-weight: 700;
  text-transform: uppercase;
}

.mood-controls {
  justify-content: flex-end;
  margin-top: 0.8rem;
}

.event-panel {
  align-items: stretch;
}

.event-panel > div:first-child,
.spice-lab,
.contact-form,
.booking-card,
.location-card,
.hours-card,
.info-card {
  padding: clamp(1.2rem, 3vw, 1.7rem);
}

.event-panel p,
.spice-lab p,
.info-card p,
.location-card p,
.hours-card p {
  color: rgba(17, 51, 42, 0.74);
  font-weight: 600;
  line-height: 1.55;
}

.event-tabs,
.menu-filters,
.heat-options,
.time-grid,
.quick-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.2rem;
}

.event-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 0.72fr);
  gap: 1rem;
}

.package-card {
  position: relative;
  overflow: hidden;
  padding: 1.4rem;
  border-radius: 34px;
  background: var(--kari-green);
  color: var(--white);
}

.package-card h3 {
  margin: 0.6rem 0;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 0.94;
}

.package-card p,
.package-card li {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
  line-height: 1.42;
}

.package-card ul {
  display: grid;
  gap: 0.6rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.package-card li {
  display: grid;
  grid-template-columns: 12px 1fr;
  gap: 0.55rem;
}

.package-card li::before {
  content: "";
  width: 10px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--kari-orange);
  margin-top: 0.35rem;
}

.event-poster {
  position: relative;
  min-height: 100%;
  border-radius: 34px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.16), transparent 34%),
    var(--kari-orange);
}

.poster-label {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  min-height: 42px;
  padding: 0.5rem 0.7rem;
  background: var(--white);
  color: var(--kari-green);
}

.order-preview {
  min-height: 390px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-xl);
  background: var(--kari-red);
  color: var(--white);
}

.preview-copy {
  width: min(100%, 360px);
  padding: 1.3rem;
}

.preview-copy h3 {
  margin: 0.6rem 0;
  font-size: clamp(2.1rem, 6vw, 3.8rem);
  line-height: 0.92;
}

.preview-copy p {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
  line-height: 1.45;
}

.heat-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.heat-button {
  min-height: 92px;
  padding: 1rem;
  text-align: left;
  border-radius: 24px;
}

.heat-button span {
  display: block;
  margin-top: 0.35rem;
  color: rgba(17, 51, 42, 0.62);
  font-family: var(--sans);
  font-weight: 700;
  text-transform: none;
}

.heat-button[aria-pressed="true"] {
  background: var(--kari-red);
  border-color: var(--kari-red);
  color: var(--white);
}

.heat-button[aria-pressed="true"] span {
  color: rgba(255, 255, 255, 0.74);
}

.heat-meter {
  display: flex;
  gap: 0.38rem;
  margin-top: 1rem;
}

.heat-meter i {
  opacity: 0.22;
}

.heat-meter[data-level="1"] i:nth-child(-n + 1),
.heat-meter[data-level="2"] i:nth-child(-n + 2),
.heat-meter[data-level="3"] i:nth-child(-n + 3),
.heat-meter[data-level="4"] i:nth-child(-n + 4) {
  opacity: 1;
}

.social-river {
  overflow: hidden;
  padding: clamp(3rem, 7vw, 6rem) 0;
  background: var(--kari-green-dark);
  color: var(--white);
}

.social-river .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
}

.social-river__stage {
  position: relative;
  min-height: 280px;
  margin-top: 2rem;
}

.social-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: kari-marquee 32s linear infinite;
}

.social-tile {
  position: relative;
  width: 210px;
  height: 250px;
  border-radius: 34px;
  background: var(--kari-orange);
}

.social-tile:nth-child(2n) {
  background: var(--kari-red);
}

.social-tile:nth-child(3n) {
  background: var(--kari-olive);
}

.social-bubble {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(420px, calc(100% - 40px));
  padding: 1.4rem;
  border-radius: 34px;
  background: var(--kari-cream-soft);
  color: var(--ink);
  transform: translate(-50%, -50%);
  box-shadow: var(--shadow);
}

.social-bubble p {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.3;
}

.social-bubble a {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--kari-red);
  font-family: var(--mono);
  font-weight: 700;
  text-transform: uppercase;
}

.accordion {
  display: grid;
  gap: 0.75rem;
}

.accordion-item {
  overflow: hidden;
}

.accordion-button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 68px;
  padding: 1rem 1.1rem;
  border: 0;
  background: transparent;
  color: var(--kari-green);
  font-weight: 900;
  text-align: left;
}

.accordion-button span {
  font-family: var(--mono);
  font-size: 1.3rem;
}

.accordion-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease;
}

.accordion-panel.is-open {
  grid-template-rows: 1fr;
}

.accordion-panel > div {
  overflow: hidden;
}

.accordion-panel p {
  margin: 0;
  padding: 0 1.1rem 1.1rem;
  color: rgba(17, 51, 42, 0.7);
  font-weight: 600;
  line-height: 1.5;
}

.booking-card {
  position: relative;
  overflow: hidden;
  background: var(--kari-green);
  color: var(--white);
}

.booking-card h3 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.3rem);
  line-height: 0.94;
}

.booking-card p {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 700;
  line-height: 1.45;
}

.time-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.time-button {
  min-height: 52px;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.selected-time {
  margin-top: 1rem;
  color: var(--kari-orange-bright);
  font-family: var(--mono);
  font-weight: 700;
  text-transform: uppercase;
}

.dish-grid,
.value-grid,
.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.dish-card,
.value-card,
.info-card {
  overflow: hidden;
  padding: 1rem;
}

.dish-card.is-hidden {
  display: none;
}

.dish-art {
  position: relative;
  min-height: 180px;
  border-radius: 999px 999px 26px 26px;
  background: var(--kari-orange);
}

.dish-art::before {
  content: "";
  position: absolute;
  width: 52%;
  aspect-ratio: 1;
  left: 24%;
  top: 16%;
  border-radius: 50%;
  background: var(--kari-cream);
  box-shadow: inset 0 -10px 0 rgba(0, 0, 0, 0.08);
}

.dish-art::after {
  content: "";
  position: absolute;
  width: 38%;
  height: 14%;
  left: 31%;
  top: 48%;
  border-radius: 999px;
  background: var(--kari-red);
}

.dish-art,
.mood-art,
.menu-card__art,
.banner-disc,
.event-poster {
  background-image: var(--placeholder-image-orange);
  background-size: cover;
  background-position: center;
}

.dish-card:nth-child(2n) .dish-art,
.mood-card:nth-child(2n) .mood-art,
.menu-card:nth-child(2n) .menu-card__art {
  background-image: var(--placeholder-image);
}

.dish-art::before,
.dish-art::after,
.mood-art::before,
.mood-art::after,
.menu-card__art::before,
.menu-card__art::after,
.banner-disc::before {
  display: none;
}

.dish-card:nth-child(2n) .dish-art {
  background-color: var(--kari-green);
}

.dish-card:nth-child(3n) .dish-art {
  background-color: var(--kari-rose);
}

.dish-card__body {
  padding: 1rem 0.25rem 0.25rem;
}

.dish-card__topline {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--kari-red);
  font-family: var(--mono);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.dish-card h3,
.value-card h3,
.info-card h3,
.location-card h3,
.hours-card h3 {
  margin: 0.6rem 0 0.35rem;
  font-size: clamp(1.5rem, 4vw, 2.1rem);
  line-height: 0.98;
}

.dish-card p,
.value-card p {
  color: rgba(17, 51, 42, 0.72);
  font-weight: 600;
  line-height: 1.45;
}

.location-card dl {
  display: grid;
  gap: 0.65rem;
  margin: 1rem 0 0;
}

.location-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.65rem;
  border-top: 1px solid rgba(26, 78, 63, 0.1);
}

.location-card dt,
.location-card dd {
  margin: 0;
  font-weight: 700;
}

.location-card dt {
  color: var(--kari-red);
  font-family: var(--mono);
  text-transform: uppercase;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.form-field {
  display: grid;
  gap: 0.35rem;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field label {
  color: var(--kari-green);
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 52px;
  border: 2px solid rgba(26, 78, 63, 0.16);
  border-radius: 18px;
  background: var(--kari-cream-soft);
  color: var(--ink);
  padding: 0.82rem 0.95rem;
}

.form-field textarea {
  min-height: 132px;
  resize: vertical;
}

.mobile-sticky-actions {
  position: fixed;
  left: 0.8rem;
  right: 0.8rem;
  bottom: 0.8rem;
  z-index: 70;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
  padding: 0.55rem;
  border: 1px solid rgba(26, 78, 63, 0.14);
  border-radius: 999px;
  background: rgba(251, 246, 235, 0.95);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.mobile-sticky-actions a {
  min-height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--kari-green);
  color: var(--white);
  font-family: var(--mono);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mobile-sticky-actions a:last-child {
  background: var(--kari-red);
}

.site-footer {
  background: var(--kari-green-dark);
  color: var(--kari-cream);
  padding: 3rem 1.25rem;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 2fr;
  gap: 2rem;
  align-items: start;
}

.site-footer__brand .brand-logo {
  width: min(260px, 70vw);
  min-height: 94px;
  align-items: flex-start;
  justify-self: start;
  border-radius: 12px;
  background-color: var(--kari-cream);
  background-image: var(--footer-logo-image);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 92% auto;
}

.site-footer__brand p {
  margin: 1rem 0 0;
  color: rgba(242, 236, 224, 0.78);
  font-weight: 700;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.8rem;
  justify-content: flex-end;
}

.site-footer__links a {
  font-family: var(--mono);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer__small {
  grid-column: 1 / -1;
  margin: 1.8rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(242, 236, 224, 0.18);
  color: rgba(242, 236, 224, 0.58);
  font-size: 0.92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes kari-marquee {
  to {
    transform: translateX(-50%);
  }
}

@keyframes bike-roll {
  to {
    transform: translateX(min(410px, 62vw));
  }
}

@media (max-width: 1120px) {
  :root {
    --header-offset: 68px;
  }

  .main-nav {
    grid-template-columns: auto 1fr auto;
    min-height: 64px;
  }

  .brand-logo {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    width: clamp(132px, 20vw, 180px);
  }

  .nav-toggle {
    display: grid;
    grid-column: 1;
    grid-row: 1;
    z-index: 2;
  }

  .nav-drawer {
    position: fixed;
    top: calc(var(--header-offset) + 8px);
    left: 1rem;
    right: 1rem;
    z-index: 90;
    display: none;
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding: 1rem;
    border: 1px solid rgba(26, 78, 63, 0.16);
    border-radius: 28px;
    background: rgba(251, 246, 235, 0.98);
    box-shadow: var(--shadow);
  }

  .nav-drawer.is-open {
    display: grid;
  }

  .nav-group,
  .nav-group--left,
  .nav-group--right {
    display: grid;
    grid-column: auto;
    grid-row: auto;
    align-items: stretch;
    justify-content: stretch;
    gap: 0.5rem;
  }

  .nav-group a {
    display: block;
    padding: 0.85rem 1rem;
    border-radius: 16px;
    background: rgba(26, 78, 63, 0.06);
  }

  .nav-group a::after {
    display: none;
  }

  .nav-group a.nav-order {
    padding: 0.9rem 1rem;
    text-align: center;
  }

  .hero-shell,
  .hero,
  .banner-shell,
  .story-scroll__grid,
  .testimonial-panel,
  .event-panel,
  .order-grid,
  .faq-booking__grid,
  .visit-grid,
  .contact-panel,
  .menu-layout,
  .booking-layout-grid,
  .component-intro {
    grid-template-columns: 1fr;
  }

  .visual-panel {
    min-height: 420px;
  }

  .dish-grid,
  .value-grid,
  .package-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .story-sticky {
    position: relative;
    top: auto;
  }
}

@media (max-width: 760px) {
  :root {
    --header-offset: 64px;
  }

  .section-shell,
  .hero-shell,
  .banner-shell {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .main-nav {
    width: min(calc(100% - 24px), var(--max-width));
    grid-template-columns: 50px 1fr 50px;
    min-height: 60px;
  }

  .brand-logo {
    width: min(42vw, 150px);
  }

  .nav-drawer {
    left: 0.75rem;
    right: 0.75rem;
    border-radius: 24px;
  }

  .kari-hero {
    min-height: auto;
    padding-top: 2.2rem;
  }

  .hero {
    min-height: auto;
    padding-top: 2.2rem;
    gap: 1.5rem;
  }

  .hero-copy h1,
  .hero-copy h1.wide-title,
  .hero h1 {
    font-size: clamp(3.9rem, 18vw, 6.4rem);
  }

  .hero-actions,
  .hero__actions,
  .component-intro__actions,
  .banner-actions {
    align-items: center;
  }

  .hero-actions .button,
  .hero__actions .button,
  .component-intro__actions .button,
  .banner-actions .button {
    flex: 0 1 auto;
  }

  .home-quickbar,
  .hero__quick-actions,
  .spice-selector,
  .date-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.15rem;
    scrollbar-width: none;
  }

  .home-quickbar::-webkit-scrollbar,
  .hero__quick-actions::-webkit-scrollbar,
  .spice-selector::-webkit-scrollbar,
  .date-row::-webkit-scrollbar {
    display: none;
  }

  .thali-hero-card,
  .placeholder-card,
  .map-board,
  .phone-frame,
  .reserve-card,
  .table-board,
  .testimonial-panel,
  .order-preview {
    border-radius: 38px;
  }

  .thali-hero-card {
    min-height: 420px;
    transform: rotate(0deg);
  }

  .thali-plate {
    width: min(100%, 300px);
    margin-top: 5rem;
  }

  .about-proof,
  .booking-fields,
  .event-summary,
  .form-grid,
  .heat-options,
  .dish-grid,
  .value-grid,
  .package-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .story-stack .story-card,
  .story-stack .story-card:nth-of-type(2),
  .story-stack .story-card:nth-of-type(3) {
    margin-right: 0;
  }

  .story-steps .story-card {
    grid-template-columns: 1fr;
  }

  .testimonial-meta,
  .reserve-card__top,
  .location-card dl div {
    flex-direction: column;
  }

  .site-footer__links {
    justify-content: flex-start;
  }

  .mobile-sticky-actions {
    display: grid;
  }
}

@media (max-width: 440px) {
  :root {
    --header-offset: 62px;
  }

  .main-nav {
    grid-template-columns: 44px 1fr 44px;
    min-height: 58px;
  }

  .brand-logo {
    width: min(46vw, 138px);
  }

  .nav-toggle {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .hero-actions,
  .hero__actions,
  .component-intro__actions,
  .banner-actions {
    flex-direction: row;
  }

  .hero-copy h1,
  .hero-copy h1.wide-title,
  .hero h1 {
    font-size: 3.8rem;
  }

  .menu-card,
  .mood-card {
    flex-basis: 86vw;
  }

  .table-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

.kari-scroll-story-block {
  padding: clamp(2.5rem, 7vw, 6rem) 0;
}

.kari-scroll-story-container {
  width: min(calc(100% - 40px), var(--max-width));
  margin-inline: auto;
}

.kari-scroll-story-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1.04fr);
  gap: clamp(1.4rem, 5vw, 5rem);
  align-items: start;
}

.kari-scroll-story-panel {
  position: sticky;
  top: calc(var(--header-height, 72px) + 1.5rem);
  align-self: start;
  z-index: 2;
  padding: clamp(1.4rem, 4vw, 2.5rem);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(26, 78, 63, 0.12);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.kari-scroll-story-panel::after {
  content: "";
  position: absolute;
  right: -68px;
  bottom: -72px;
  width: 220px;
  aspect-ratio: 1;
  border: 32px solid var(--kari-red);
  border-left-color: transparent;
  border-radius: 50%;
  transform: rotate(-28deg);
  opacity: 0.86;
}

.kari-scroll-story-kicker {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
  color: var(--kari-red);
  font-family: "Cascadia Code", Consolas, monospace;
  font-weight: 700;
  font-size: clamp(0.76rem, 1vw, 0.9rem);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.kari-scroll-story-kicker::before {
  content: "";
  width: 28px;
  height: 28px;
  border: 8px solid currentColor;
  border-left-color: transparent;
  border-radius: 50%;
  transform: rotate(30deg);
}

.kari-scroll-story-panel h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--kari-green);
  font-size: clamp(3rem, 7vw, 6.9rem);
  line-height: 0.86;
  letter-spacing: -0.025em;
  font-weight: 900;
  max-width: 8ch;
}

.kari-scroll-story-panel p:not(.kari-scroll-story-kicker) {
  position: relative;
  z-index: 1;
  max-width: 450px;
  margin: 1rem 0 0;
  color: rgba(17, 51, 42, 0.74);
  font-size: 1.08rem;
  line-height: 1.52;
  font-weight: 600;
}

.kari-scroll-story-steps {
  display: grid;
  gap: 1rem;
}

.kari-scroll-story-card {
  position: relative;
  min-height: 300px;
  display: grid;
  grid-template-columns: 108px 1fr;
  align-items: end;
  gap: 1rem;
  padding: clamp(1.2rem, 3.5vw, 2rem);
  border-radius: 42px;
  color: var(--white);
  background: var(--kari-green);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transform-style: preserve-3d;
}

.kari-scroll-story-card:nth-child(2) {
  background: var(--kari-red);
}

.kari-scroll-story-card:nth-child(3) {
  background: var(--kari-orange);
}

.kari-scroll-story-card:nth-child(4) {
  background: var(--kari-olive);
}

.kari-scroll-story-card::before {
  content: "";
  position: absolute;
  inset: -120px -90px auto auto;
  width: 260px;
  aspect-ratio: 1;
  border: 32px solid rgba(255, 255, 255, 0.18);
  border-left-color: transparent;
  border-radius: 50%;
  transform: rotate(28deg);
}

.kari-scroll-story-number {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 98px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.88);
  font-family: "Cascadia Code", Consolas, monospace;
  font-size: 1.4rem;
  font-weight: 700;
}

.kari-scroll-story-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 0.55rem;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 0.9;
  letter-spacing: -0.015em;
  font-weight: 900;
}

.kari-scroll-story-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 530px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
  line-height: 1.48;
}

.kari-scroll-story-reveal {
  opacity: 0;
  transform: translateY(26px) rotate(0.001deg);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.kari-scroll-story-reveal.is-visible {
  opacity: 1;
  transform: translateY(0) rotate(0deg);
}

@media (max-width: 760px) {
  .kari-scroll-story-container {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .kari-scroll-story-card {
    grid-template-columns: 1fr;
    min-height: 270px;
  }

  .kari-scroll-story-number {
    width: 74px;
  }

  .kari-scroll-story-panel {
    border-radius: 38px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .kari-scroll-story-reveal {
    opacity: 1;
    transform: none;
    transition-duration: 0.01ms !important;
  }
}
html,
body {
  overflow-x: clip;
}

.kari-scroll-story-block,
.kari-scroll-story-container,
.kari-scroll-story-layout {
  overflow: visible;
}

.kari-scroll-story-layout {
  align-items: start;
}

.kari-scroll-story-panel {
  position: sticky;
  position: -webkit-sticky;
  top: calc(var(--header-offset, 72px) + 24px);
  align-self: flex-start;
  z-index: 20;
}

@media (max-width: 1120px) {
  .kari-scroll-story-layout {
    grid-template-columns: 1fr;
  }

  .kari-scroll-story-panel {
    position: relative;
    top: auto;
  }
}

.hero--events .marquee {
  position: relative;
  z-index: 3;
  width: 100%;
  overflow: hidden;
  margin-top: 1.2rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--kari-cream);
  padding: .78rem 0;
  transform: rotate(-1deg);
}

.hero--events .marquee-track {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  width: max-content;
  animation: marquee 24s linear infinite;
  will-change: transform;
}

.hero--events .marquee span {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 1.15rem;
  color: var(--kari-cream);
  font-family: var(--mono);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero--events .marquee span::before {
  content: "✹";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--kari-orange-bright);
  font-size: .86rem;
  line-height: 1;
  margin: 0;
  transform: translateY(-0.02em);
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus,
.form-field input:focus-visible,
.form-field select:focus-visible,
.form-field textarea:focus-visible {
  border-color: var(--kari-red);
  outline: none;
  box-shadow: 0 0 0 2px rgba(239, 124, 46, 0.18);
}
.takeaway-mode {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-top: 1.15rem;
}

.takeaway-mode__button {
  flex: 1 1 180px;
  min-height: 72px;
  padding: .85rem 1rem;
  border: 2px solid rgba(26, 78, 63, .16);
  border-radius: 24px;
  background: rgba(255, 255, 255, .52);
  color: var(--kari-green);
  text-align: left;
  font-family: var(--mono);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.takeaway-mode__button span {
  display: block;
  margin-top: .35rem;
  color: rgba(17, 51, 42, .66);
  font-family: var(--sans);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.takeaway-mode__button.is-active {
  background: var(--kari-green);
  border-color: var(--kari-green);
  color: var(--white);
  transform: rotate(-.4deg);
}

.takeaway-mode__button.is-active span {
  color: rgba(255, 255, 255, .76);
}

.takeaway-step {
  position: relative;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.takeaway-step::after {
  content: "";
  position: absolute;
  left: 23px;
  top: calc(100% - 2px);
  width: 3px;
  height: .6rem;
  border-radius: 999px;
  background: rgba(148, 26, 29, .24);
}

.takeaway-step:last-child::after {
  display: none;
}

.takeaway-step.is-active {
  background: rgba(255, 255, 255, .78);
  border-color: rgba(239, 124, 46, .45);
  transform: translateX(.35rem);
}

.takeaway-step.is-active span {
  background: var(--kari-orange);
}

.order-progress {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .35rem;
  margin: .85rem 1rem .2rem;
  padding: .35rem;
  border-radius: 999px;
  background: rgba(26, 78, 63, .08);
}

.order-progress span {
  display: grid;
  place-items: center;
  min-height: 32px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.order-progress span.is-active {
  background: var(--kari-green);
  color: var(--white);
}

.delivery-bike {
  font-family: var(--mono);
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: .03em;
}

.delivery-bike::after {
  content: "min";
  display: block;
  font-size: .58rem;
  line-height: 1;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.bundle-card {
  flex: 0 0 min(78vw, 220px);
  min-height: 150px;
  scroll-snap-align: start;
  border-radius: 24px;
  background: var(--kari-green);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 1.15rem;
  box-shadow: 0 14px 34px rgba(26, 78, 63, 0.12);
  color: var(--white);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.bundle-card strong {
  display: block;
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1.05;
}

.bundle-card span {
  display: block;
  margin-top: 0.45rem;
  color: var(--kari-orange-bright);
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.25;
}

.bundle-card:hover,
.bundle-card:focus-within {
  transform: translateY(-3px) rotate(-0.4deg);
}

.bundle-card.is-picked {
  background: var(--kari-green);
  border-color: var(--kari-green);
}

.bundle-card.is-picked strong {
  color: var(--white);
}

.bundle-card.is-picked span {
  color: var(--kari-orange-bright);
}

.bundle-card {
  background: rgba(255, 255, 255, 0.56);
  color: var(--kari-green);
}

.bundle-card strong {
  color: var(--kari-green);
}

.bundle-card span {
  color: var(--kari-red);
}

@media (max-width: 560px) {
  .takeaway-mode {
    display: grid;
    grid-template-columns: 1fr;
  }

  .takeaway-step.is-active {
    transform: none;
  }
}

.text-orange {
  color: var(--kari-orange);
}
.text-red{
  color: var(--kari-red);
}
.text-green{
  color: var(--kari-green);
}

/* TAKEAWAY HERO MOBILE FIX */
.hero--takeaway,
.hero--takeaway * {
  max-width: 100%;
}

.hero--takeaway {
  overflow: hidden;
}

.hero--takeaway .hero-shell {
  min-width: 0;
}

.hero--takeaway .hero-copy,
.hero--takeaway .visual-panel,
.hero--takeaway .delivery-scene,
.hero--takeaway .bundle-strip {
  min-width: 0;
}

/* Desktop/tablet safety */
.hero--takeaway .delivery-scene {
  overflow: hidden;
}

.hero--takeaway .phone-frame {
  margin-inline: auto;
}

.hero--takeaway .bundle-strip {
  width: 100%;
  overflow: hidden;
}

.hero--takeaway .bundle-track {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.hero--takeaway .bundle-track::-webkit-scrollbar {
  display: none;
}

.hero--takeaway .bundle-card {
  flex: 0 0 min(78vw, 260px);
}

/* Main mobile layout */
@media (max-width: 760px) {
  .hero--takeaway {
    padding-top: 2.2rem;
    padding-bottom: 3rem;
  }

  .hero--takeaway .hero-shell {
    width: min(calc(100% - 28px), var(--max-width));
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    overflow: hidden;
  }

  .hero--takeaway .hero-copy h1,
  .hero--takeaway .hero-copy h1.wide-title {
    font-size: clamp(3.15rem, 15vw, 4.9rem);
    line-height: 0.84;
  }

  .hero--takeaway .hero-lead {
    font-size: 1rem;
    line-height: 1.45;
  }

  .hero--takeaway .takeaway-mode {
    grid-template-columns: 1fr;
  }

  .hero--takeaway .takeaway-mode__button {
    width: 100%;
    min-height: 68px;
  }

  .hero--takeaway .takeaway-step {
    grid-template-columns: 42px 1fr;
    padding: 0.8rem;
  }

  .hero--takeaway .takeaway-step span {
    width: 42px;
  }

  .hero--takeaway .takeaway-step.is-active {
    transform: none;
  }

  .hero--takeaway .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
  }

  .hero--takeaway .hero-actions .button {
    width: 100%;
    min-height: 42px;
    padding-inline: 0.7rem;
    font-size: 0.68rem;
  }

  .hero--takeaway .visual-panel,
  .hero--takeaway .delivery-scene {
    width: 100%;
    min-height: auto;
    display: grid;
    place-items: center;
    align-content: start;
    overflow: hidden;
  }

  .hero--takeaway .delivery-path {
    left: 8%;
    right: 8%;
    top: 210px;
  }

  .hero--takeaway .delivery-bike {
    top: 184px;
    left: 50%;
    width: 58px;
    transform: translateX(-50%);
    animation: none;
    z-index: 4;
  }

  .hero--takeaway .phone-frame {
    width: min(100%, 310px);
    min-height: 430px;
    margin: 0 auto;
    padding: 0.95rem;
    border-radius: 34px;
    transform: none;
  }

  .hero--takeaway .phone-top h3 {
    font-size: 1.45rem;
  }

  .hero--takeaway .order-progress {
    margin-inline: 0;
  }

  .hero--takeaway .order-item {
    grid-template-columns: 38px minmax(0, 1fr) auto;
    gap: 0.55rem;
    padding: 0.7rem;
  }

  .hero--takeaway .order-thumb {
    width: 38px;
  }

  .hero--takeaway .order-item div {
    min-width: 0;
  }

  .hero--takeaway .order-item small {
    white-space: normal;
  }

  .hero--takeaway .bundle-strip {
    margin-top: 1rem;
    padding-right: 0;
  }

  .hero--takeaway .carousel-head {
    width: 100%;
    align-items: center;
  }

  .hero--takeaway .carousel-head p {
    font-size: 0.72rem;
  }

  .hero--takeaway .carousel-controls {
    flex: 0 0 auto;
  }

  .hero--takeaway .carousel-btn {
    width: 40px;
  }

  .hero--takeaway .bundle-track {
    gap: 0.75rem;
    padding: 0 0 0.65rem;
  }

  .hero--takeaway .bundle-card {
    flex: 0 0 min(74vw, 250px);
    min-height: 132px;
    padding: 1rem;
  }

  .hero--takeaway .bundle-card strong {
    font-size: 1.05rem;
  }

  .hero--takeaway .bundle-card span {
    font-size: 0.95rem;
  }
}

/* Extra small phones */
@media (max-width: 440px) {
  .hero--takeaway .hero-shell {
    width: min(calc(100% - 24px), var(--max-width));
  }

  .hero--takeaway .hero-copy h1,
  .hero--takeaway .hero-copy h1.wide-title {
    font-size: 3.2rem;
  }

  .hero--takeaway .hero-actions {
    grid-template-columns: 1fr;
  }

  .hero--takeaway .phone-frame {
    width: min(100%, 292px);
  }

  .hero--takeaway .bundle-card {
    flex-basis: 78vw;
  }
}
.kari-social-flow {
  padding: clamp(3rem, 7vw, 6rem) 0;
  overflow: hidden;
}

.kari-social-flow-shell {
  width: min(calc(100% - 40px), var(--max-width));
  margin-inline: auto;
}

.kari-social-flow-heading {
  margin-bottom: clamp(1.7rem, 4vw, 3rem);
}

.kari-social-flow-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(170px, 0.45fr);
  gap: 2rem;
  align-items: end;
}

.kari-social-flow-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
  color: var(--kari-red);
  font-family: "Cascadia Code", Consolas, monospace;
  font-weight: 700;
  font-size: clamp(0.76rem, 1vw, 0.9rem);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.kari-social-flow-eyebrow::before {
  content: "";
  width: 28px;
  height: 28px;
  border: 8px solid currentColor;
  border-left-color: transparent;
  border-radius: 50%;
  transform: rotate(30deg);
}

.kari-social-flow-title {
  margin: 0;
  color: var(--kari-green);
  font-size: clamp(2.7rem, 6.4vw, 6.8rem);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -0.06em;
  max-width: 10.5ch;
  text-wrap: balance;
}

.kari-social-flow-heading p:not(.kari-social-flow-eyebrow) {
  margin: 0;
  color: rgba(17, 51, 42, 0.74);
  font-size: 1.1rem;
  line-height: 1.55;
  font-weight: 600;
}

.kari-social-flow-stage {
  position: relative;
  margin-top: 2rem;
  padding-block: 2rem 4rem;
}

.kari-social-flow-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: kari-social-flow-river 34s linear infinite;
}

.kari-social-flow-tile {
  position: relative;
  width: min(72vw, 260px);
  height: 260px;
  flex: 0 0 auto;
  border-radius: 40px;
  background: var(--kari-green);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.kari-social-flow-tile:nth-child(2n) {
  background: var(--kari-red);
  transform: translateY(28px);
}

.kari-social-flow-tile:nth-child(3n) {
  background: var(--kari-orange);
  transform: translateY(-10px);
}

.kari-social-flow-tile:nth-child(4n) {
  background: var(--kari-olive);
  transform: translateY(18px);
}

.kari-social-flow-tile:nth-child(5n) {
  background: var(--kari-pink);
}

.kari-social-flow-tile::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 66%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--kari-cream-soft);
  transform: translate(-50%, -50%);
  box-shadow: inset 0 -12px 18px rgba(129, 79, 31, 0.10);
}

.kari-social-flow-tile::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 32%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--kari-orange);
  transform: translate(-50%, -50%);
  box-shadow: -40px 30px 0 -14px var(--kari-red), 38px 26px 0 -15px var(--kari-green);
}

.kari-social-flow-bubble {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(calc(100% - 40px), 470px);
  transform: translateX(-50%);
  border-radius: 44px;
  background: var(--kari-cream-soft);
  color: var(--kari-green);
  padding: 1.35rem 1.5rem;
  box-shadow: var(--shadow);
  z-index: 2;
}

.kari-social-flow-bubble p {
  margin: 0;
  font-family: "Cascadia Code", Consolas, monospace;
  font-size: clamp(1rem, 2vw, 1.28rem);
  line-height: 1.48;
}

.kari-social-flow-bubble a {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--kari-red);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

@keyframes kari-social-flow-river {
  to {
    transform: translateX(-50%);
  }
}

.site-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(2.6rem, 6vw, 5rem) 0 1.1rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 38%),
    var(--kari-green-dark);
  color: var(--kari-cream);
}

.site-footer::before {
  content: "";
  position: absolute;
  right: clamp(-120px, -8vw, -42px);
  top: clamp(-90px, -6vw, -34px);
  z-index: -1;
  width: clamp(220px, 28vw, 390px);
  aspect-ratio: 1;
  border: clamp(26px, 4vw, 54px) solid rgba(239, 124, 46, 0.42);
  border-left-color: transparent;
  border-radius: 50%;
  transform: rotate(-28deg);
}

.site-footer::after {
  content: "KARI";
  position: absolute;
  right: clamp(-18px, 3vw, 40px);
  bottom: -0.13em;
  z-index: -1;
  color: rgba(255, 255, 255, 0.055);
  font-size: clamp(5rem, 17vw, 14rem);
  font-weight: 900;
  line-height: 0.76;
}

.site-footer__shell {
  width: min(calc(100% - 40px), 1280px);
  padding-inline: 0;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.7rem, 4vw, 3rem);
}

.site-footer__hero {
  padding-bottom: clamp(1.5rem, 3vw, 2.2rem);
  border-bottom: 1px solid rgba(251, 246, 235, 0.18);
  text-align: left;
}

.site-footer__brand {
  display: grid;
  gap: 1rem;
  align-content: start;
  max-width: 620px;
}

.site-footer .brand-logo {
  grid-column: auto;
  grid-row: auto;
  justify-self: start;
  width: clamp(170px, 18vw, 275px);
  min-height: clamp(86px, 9vw, 108px);
  background-image: var(--footer-logo-image);
}

.site-footer__brand p,
.site-footer__column p,
.site-footer__bottom p {
  margin: 0;
  color: rgba(251, 246, 235, 0.74);
  font-weight: 600;
  line-height: 1.52;
}

.site-footer__brand p {
  max-width: 560px;
  font-size: clamp(1.08rem, 1.8vw, 1.32rem);
}

.site-footer__column h2 {
  color: var(--kari-orange-bright);
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.site-footer__grid {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.4rem, 4vw, 4rem);
  justify-items: start;
  padding: 0;
  min-width: 0;
}

.site-footer__column {
  display: grid;
  align-content: start;
  gap: 0.72rem;
  min-width: 0;
  width: 100%;
}

.site-footer__column h2 {
  margin: 0 0 0.15rem;
}

.site-footer__column a,
.site-footer__meta a {
  color: var(--kari-cream);
  font-weight: 800;
  line-height: 1.25;
  overflow-wrap: break-word;
  transition: color 180ms ease, transform 180ms ease;
}

.site-footer__column p {
  max-width: 330px;
}

nav.site-footer__column a {
  white-space: normal;
}

.site-footer__column--social {
  min-width: 0;
}

.site-footer__column a:hover,
.site-footer__column a:focus-visible,
.site-footer__meta a:hover,
.site-footer__meta a:focus-visible {
  color: var(--kari-orange-bright);
}

.site-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.25rem;
}

.social-icon {
  display: grid;
  place-items: center;
  width: 46px;
  aspect-ratio: 1;
  border: 2px solid rgba(251, 246, 235, 0.58);
  border-radius: 50%;
  background: rgba(251, 246, 235, 0.08);
  color: var(--kari-cream);
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.social-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-icon--facebook svg,
.site-footer__social .social-icon:nth-child(3) svg {
  fill: currentColor;
  stroke: none;
}

.social-icon:hover,
.social-icon:focus-visible {
  transform: translateY(-3px) rotate(-2deg);
  border-color: var(--kari-orange-bright);
  background: var(--kari-orange-bright);
  color: var(--kari-green-dark) !important;
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 0;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(251, 246, 235, 0.14);
}

.site-footer__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.8rem 1rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .site-footer {
    padding-bottom: 5.5rem;
  }

  .site-footer__shell {
    width: min(calc(100% - 28px), 1280px);
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .site-footer__bottom,
  .site-footer__meta {
    align-items: stretch;
    justify-content: flex-start;
  }

  .site-footer__bottom {
    flex-direction: column;
  }
}
/* FINAL FOOTER FIX — overrides old grid footer */
.site-footer {
  display: block;
  grid-template-columns: none;
  gap: 0;
  align-items: initial;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(3rem, 6vw, 5.5rem) 0 1.2rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 38%),
    var(--kari-green-dark);
  color: var(--kari-cream);
}

.site-footer::before {
  content: "";
  position: absolute;
  right: clamp(-130px, -7vw, -48px);
  top: clamp(-110px, -6vw, -42px);
  z-index: -1;
  width: clamp(230px, 28vw, 420px);
  aspect-ratio: 1;
  border: clamp(28px, 4vw, 56px) solid rgba(148, 26, 29, 0.62);
  border-left-color: transparent;
  border-radius: 50%;
  transform: rotate(-28deg);
}

.site-footer::after {
  content: "KARI";
  position: absolute;
  right: clamp(-18px, 3vw, 40px);
  bottom: -0.13em;
  z-index: -1;
  color: rgba(255, 255, 255, 0.055);
  font-size: clamp(5rem, 17vw, 14rem);
  font-weight: 900;
  line-height: 0.76;
  pointer-events: none;
}

.site-footer__shell {
  width: min(calc(100% - 40px), 1280px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.7rem, 4vw, 3rem);
}

.site-footer__hero {
  max-width: 720px;
  padding-bottom: clamp(1.5rem, 3vw, 2.2rem);
  border-bottom: 1px solid rgba(251, 246, 235, 0.18);
}

.site-footer__brand {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.site-footer .brand-logo {
  grid-column: auto;
  grid-row: auto;
  justify-self: start;
  width: clamp(170px, 18vw, 275px);
  min-height: clamp(86px, 9vw, 108px);
  border-radius: 14px;
  background-color: var(--kari-cream);
  background-image: var(--footer-logo-image);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 92% auto;
}

.site-footer__brand p {
  max-width: 640px;
  margin: 0;
  color: rgba(251, 246, 235, 0.76);
  font-size: clamp(1.08rem, 1.8vw, 1.34rem);
  font-weight: 700;
  line-height: 1.55;
}

.site-footer__grid {
  display: grid;
  width: 100%;
  grid-template-columns: 0.8fr 0.85fr 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 4.5rem);
  align-items: start;
}

.site-footer__column {
  display: grid;
  align-content: start;
  gap: 0.72rem;
  min-width: 0;
}

.site-footer__column h2 {
  margin: 0 0 0.18rem;
  color: var(--kari-orange-bright);
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.site-footer__column a,
.site-footer__meta a {
  color: var(--kari-cream);
  font-weight: 800;
  line-height: 1.25;
  overflow-wrap: break-word;
  transition: color 180ms ease, transform 180ms ease;
}

.site-footer__column a:hover,
.site-footer__column a:focus-visible,
.site-footer__meta a:hover,
.site-footer__meta a:focus-visible {
  color: var(--kari-orange-bright);
}

.site-footer__column p {
  max-width: 310px;
  margin: 0;
  color: rgba(251, 246, 235, 0.74);
  font-weight: 700;
  line-height: 1.52;
}

.site-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.25rem;
}

.social-icon {
  display: grid;
  place-items: center;
  width: 46px;
  aspect-ratio: 1;
  border: 2px solid rgba(251, 246, 235, 0.58);
  border-radius: 50%;
  background: rgba(251, 246, 235, 0.08);
  color: var(--kari-cream);
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.social-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-icon--facebook svg,
.site-footer__social .social-icon:nth-child(3) svg {
  fill: currentColor;
  stroke: none;
}

.social-icon:hover,
.social-icon:focus-visible {
  transform: translateY(-3px) rotate(-2deg);
  border-color: var(--kari-orange-bright);
  background: var(--kari-orange-bright);
  color: var(--kari-green-dark);
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(251, 246, 235, 0.14);
}

.site-footer__bottom p {
  max-width: 520px;
  margin: 0;
  color: rgba(251, 246, 235, 0.74);
  font-weight: 700;
  line-height: 1.45;
}

.site-footer__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.8rem 1rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Tablet */
@media (max-width: 900px) {
  .site-footer__shell {
    width: min(calc(100% - 32px), 1280px);
  }

  .site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem 3rem;
  }

  .site-footer__hero {
    max-width: 100%;
  }

  .site-footer::before {
    right: -150px;
    top: -90px;
    width: 330px;
  }
}

/* Mobile */
@media (max-width: 620px) {
  .site-footer {
    padding: 2.4rem 0 5.8rem;
  }

  .site-footer__shell {
    width: min(calc(100% - 28px), 1280px);
    gap: 1.7rem;
  }

  .site-footer .brand-logo {
    width: min(210px, 70vw);
    min-height: 82px !important;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 1.55rem;
  }

  .site-footer__column {
    gap: 0.58rem;
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer__meta {
    justify-content: flex-start;
  }

  .site-footer::before {
    right: -190px;
    top: -70px;
    width: 300px;
  }

  .site-footer::after {
    right: -12px;
    font-size: clamp(5rem, 28vw, 8.5rem);
  }
}

.team-section {
  position: relative;
  overflow: hidden;
}

.team-section::before {
  content: "";
  position: absolute;
  right: max(-90px, -7vw);
  top: 22%;
  z-index: -1;
  width: min(30vw, 340px);
  aspect-ratio: 1;
  border: 36px solid rgba(239, 124, 46, 0.22);
  border-left-color: transparent;
  border-radius: 50%;
  transform: rotate(24deg);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.team-card {
  position: relative;
  min-height: 430px;
  display: grid;
  grid-template-rows: 190px 1fr;
  overflow: hidden;
  border-radius: 999px 999px 38px 38px;
  background: var(--kari-green);
  color: var(--white);
  box-shadow: var(--shadow-small);
}

.team-card:nth-child(2) {
  background: var(--kari-red);
}

.team-card:nth-child(3) {
  background: var(--kari-orange);
}

.team-card:nth-child(4) {
  background: var(--kari-olive);
}

.team-card::before {
  content: "";
  position: absolute;
  right: -72px;
  top: -86px;
  width: 190px;
  aspect-ratio: 1;
  border: 26px solid rgba(255, 255, 255, 0.16);
  border-left-color: transparent;
  border-radius: 50%;
  transform: rotate(28deg);
}

.team-card__portrait {
  position: relative;
  display: grid;
  place-items: center;
  margin: 1.1rem 1.1rem 0;
  min-height: 172px;
  overflow: hidden;
  border-radius: 999px 999px 30px 30px;
  background: rgba(255, 255, 255, 0.14);
}

.team-card__portrait img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.04);
}

.team-card__copy {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  padding: 1.15rem;
}

.team-card__copy span {
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--mono);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.team-card__copy h3 {
  margin: 0.55rem 0;
  color: var(--white);
  font-size: 2rem;
  font-weight: 900;
  line-height: 0.95;
}

.team-card__copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 700;
  line-height: 1.38;
}

@media (max-width: 1020px) {
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .team-card {
    min-height: 390px;
  }
}

@media (max-width: 560px) {
  .team-section::before {
    display: none;
  }

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

  .team-card {
    grid-template-rows: 170px 1fr;
    min-height: 340px;
    border-radius: 42px;
  }

  .team-card__portrait {
    min-height: 150px;
    border-radius: 34px;
  }

  .team-card__copy h3 {
    font-size: 1.75rem;
  }
}

/* Final mobile nav interaction */
@media (max-width: 1120px) {
  body.menu-open .site-header {
    z-index: 500;
  }

  .nav-toggle {
    position: relative;
    overflow: hidden;
    display: grid;
    place-items: center;
    border-color: rgba(26, 78, 63, 0.28);
    background: rgba(255, 255, 255, 0.52);
    box-shadow: 0 10px 24px rgba(26, 78, 63, 0.1);
    transition: transform 180ms ease, background 220ms ease, color 220ms ease, border-color 220ms ease;
  }

  .nav-toggle::before {
    content: "";
    position: absolute;
    inset: 7px;
    border: 2px solid currentColor;
    border-radius: 50%;
    opacity: 0.16;
    transform: scale(0.82);
    transition: transform 240ms ease, opacity 220ms ease;
  }

  .nav-toggle__line {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 23px;
    height: 3px;
    margin: 0;
    border-radius: 999px;
    background: currentColor;
    transform-origin: center;
    transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1), opacity 180ms ease, width 220ms ease;
  }

  .nav-toggle__line + .nav-toggle__line {
    margin-top: 0;
  }

  .nav-toggle__line:nth-of-type(1) {
    transform: translate(-50%, -7px);
  }

  .nav-toggle__line:nth-of-type(2) {
    left: calc(50% + 9px);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
  }

  .nav-toggle__line:nth-of-type(3) {
    transform: translate(-50%, 7px);
  }

  .nav-toggle:hover,
  .nav-toggle:focus-visible {
    transform: translateY(-1px);
    border-color: var(--kari-red);
  }

  .nav-toggle[aria-expanded="true"] {
    background: var(--kari-green);
    border-color: var(--kari-green);
    color: var(--kari-cream);
  }

  .nav-toggle[aria-expanded="true"]::before {
    opacity: 0.24;
    transform: scale(1);
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-of-type(1) {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-of-type(2) {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0);
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-of-type(3) {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .nav-drawer {
    position: absolute;
    display: grid;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    z-index: 120;
    margin-inline: auto;
    max-height: calc(100dvh - var(--header-offset) - 22px);
    overflow: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-14px) scale(0.96);
    transform-origin: top center;
    clip-path: inset(0 0 100% 0 round 28px);
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(251, 246, 235, 0.98)),
      var(--kari-cream-soft);
    backdrop-filter: blur(20px);
    transition:
      opacity 220ms ease,
      transform 280ms cubic-bezier(0.22, 1, 0.36, 1),
      clip-path 320ms cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0ms linear 320ms;
    will-change: transform, opacity, clip-path;
  }

  .nav-drawer.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    clip-path: inset(0 0 0 0 round 28px);
    transition-delay: 0ms;
  }

  .nav-drawer .nav-group a {
    opacity: 0;
    transform: translateY(-8px);
    transition:
      opacity 220ms ease,
      transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
      background 180ms ease,
      color 180ms ease;
  }

  .nav-drawer.is-open .nav-group a {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-drawer.is-open .nav-group:nth-child(1) a:nth-child(1) {
    transition-delay: 70ms;
  }

  .nav-drawer.is-open .nav-group:nth-child(1) a:nth-child(2) {
    transition-delay: 105ms;
  }

  .nav-drawer.is-open .nav-group:nth-child(1) a:nth-child(3) {
    transition-delay: 140ms;
  }

  .nav-drawer.is-open .nav-group:nth-child(1) a:nth-child(4) {
    transition-delay: 175ms;
  }

  .nav-drawer.is-open .nav-group:nth-child(2) a:nth-child(1) {
    transition-delay: 210ms;
  }

  .nav-drawer.is-open .nav-group:nth-child(2) a:nth-child(2) {
    transition-delay: 245ms;
  }

  .nav-drawer.is-open .nav-group:nth-child(2) a:nth-child(3) {
    transition-delay: 280ms;
  }

  .nav-group a:hover,
  .nav-group a:focus-visible {
    background: rgba(26, 78, 63, 0.12);
  }

  .nav-group a.nav-order {
    box-shadow: 0 12px 24px rgba(148, 26, 29, 0.18);
  }
}

@media (max-width: 760px) {
  .nav-drawer {
    clip-path: inset(0 0 100% 0 round 24px);
  }

  .nav-drawer.is-open {
    clip-path: inset(0 0 0 0 round 24px);
  }
}

@media (max-width: 440px) {
  .nav-toggle::before {
    inset: 6px;
  }

  .nav-toggle__line:nth-of-type(1) {
    transform: translate(-50%, -6px);
  }

  .nav-toggle__line:nth-of-type(3) {
    transform: translate(-50%, 6px);
  }
}

/* Private events hero mobile containment */
@media (max-width: 760px) {
  .hero--events {
    padding-top: 2.4rem;
    padding-bottom: 3rem;
  }

  .hero--events .hero-shell {
    width: min(calc(100% - 28px), var(--max-width));
    grid-template-columns: 1fr;
    gap: 2rem;
    overflow: hidden;
  }

  .hero--events .hero-copy,
  .hero--events .visual-panel,
  .hero--events .event-stage,
  .hero--events .event-track {
    min-width: 0;
    max-width: 100%;
  }

  .hero--events .visual-panel.event-stage {
    width: 100%;
    min-height: auto;
    justify-items: center;
    align-content: start;
    overflow: hidden;
    padding: 0.35rem 0 0.5rem;
  }

  .hero--events .banquet-table {
    width: min(68vw, 280px, calc(100% - 72px));
    max-width: 100%;
    animation: none;
  }

  .hero--events .seat {
    width: 42px;
    height: 56px;
  }

  .hero--events .seat:nth-child(1) {
    top: -16px;
  }

  .hero--events .seat:nth-child(2) {
    right: 4px;
  }

  .hero--events .seat:nth-child(3) {
    right: -10px;
  }

  .hero--events .seat:nth-child(4) {
    right: 4px;
  }

  .hero--events .seat:nth-child(5) {
    bottom: -16px;
  }

  .hero--events .seat:nth-child(6) {
    left: 4px;
  }

  .hero--events .seat:nth-child(7) {
    left: -10px;
  }

  .hero--events .seat:nth-child(8) {
    left: 4px;
  }

  .hero--events .carousel-head,
  .hero--events .event-track {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .hero--events .banquet-table {
    width: min(66vw, calc(100% - 68px));
  }

  .hero--events .seat {
    width: 36px;
    height: 50px;
  }

  .hero--events .seat:nth-child(3) {
    right: -8px;
  }

  .hero--events .seat:nth-child(7) {
    left: -8px;
  }
}

/* Event mood card edge fades */
.event-track-wrap {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  border-radius: 26px;
  isolation: isolate;
}

.event-track-wrap::before,
.event-track-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0.6rem;
  z-index: 2;
  width: clamp(42px, 9vw, 76px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.event-track-wrap::before {
  left: 0;
  background: linear-gradient(90deg, rgba(26, 78, 63, 0.95), rgba(26, 78, 63, 0));
}

.event-track-wrap::after {
  right: 0;
  background: linear-gradient(270deg, rgba(26, 78, 63, 0.95), rgba(26, 78, 63, 0));
}

.event-stage.has-left-overflow .event-track-wrap::before,
.event-stage.has-right-overflow .event-track-wrap::after {
  opacity: 1;
}

.event-track-wrap .event-track {
  width: 100%;
  max-width: 100%;
}

/* Event package tabs: one-line moving strip */
.event-builder,
.event-panel,
.event-summary,
.package-card,
.event-poster {
  min-width: 0;
  max-width: 100%;
}

.event-tabs-shell {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  align-items: center;
  gap: 0.48rem;
  width: 100%;
  max-width: 100%;
  margin-top: 1.15rem;
}

.event-tabs-wrap {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-radius: 999px;
  isolation: isolate;
}

.event-tabs-wrap::before,
.event-tabs-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 54px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.event-tabs-wrap::before {
  left: 0;
  background: linear-gradient(90deg, rgba(251, 246, 235, 0.96), rgba(251, 246, 235, 0));
}

.event-tabs-wrap::after {
  right: 0;
  background: linear-gradient(270deg, rgba(251, 246, 235, 0.96), rgba(251, 246, 235, 0));
}

.event-tabs-shell.has-left-overflow .event-tabs-wrap::before,
.event-tabs-shell.has-right-overflow .event-tabs-wrap::after {
  opacity: 1;
}

.event-tabs-nav {
  position: relative;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 42px;
  aspect-ratio: 1;
  border: 2px solid rgba(26, 78, 63, 0.2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.78);
  color: var(--kari-green);
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1;
  transition: transform 180ms ease, opacity 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.event-tabs-nav--next {
  box-shadow: -14px 0 24px rgba(251, 246, 235, 0.82), 0 12px 24px rgba(26, 78, 63, 0.08);
}

.event-tabs-nav--prev {
  box-shadow: 14px 0 24px rgba(251, 246, 235, 0.68), 0 12px 24px rgba(26, 78, 63, 0.08);
}

.event-tabs-nav:hover,
.event-tabs-nav:focus-visible {
  transform: translateY(-1px);
  border-color: var(--kari-red);
  background: var(--kari-green);
  color: var(--kari-cream);
}

.event-tabs-nav.is-muted {
  opacity: 0.52;
}

.event-tabs {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.7rem;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-padding-inline: 0.35rem;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 0.16rem 0.35rem;
}

.event-tabs::-webkit-scrollbar {
  display: none;
}

.event-tab {
  flex: 0 0 auto;
  white-space: nowrap;
  scroll-snap-align: center;
}

@media (max-width: 760px) {
  .event-builder.section-shell {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .event-builder .event-panel {
    width: 100%;
    max-width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.4rem;
    overflow: hidden;
    padding: clamp(1rem, 5vw, 1.4rem);
    border-radius: 32px;
  }

  .event-builder .event-summary {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .event-builder .package-card,
  .event-builder .event-poster {
    width: 100%;
  }

  .event-builder .event-poster {
    display: block;
    min-height: clamp(190px, 52vw, 260px);
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: 28px;
  }

  .event-builder .poster-label {
    left: 0.85rem;
    right: 0.85rem;
    bottom: 0.85rem;
  }
}

@media (max-width: 560px) {
  .event-tabs-shell {
    grid-template-columns: 38px minmax(0, 1fr) 38px;
    gap: 0.35rem;
  }

  .event-tabs-nav {
    width: 38px;
    font-size: 1.35rem;
  }

  .event-tabs-wrap::before,
  .event-tabs-wrap::after {
    width: 38px;
  }

  .event-tabs {
    gap: 0.55rem;
    padding-inline: 0.12rem;
  }

  .event-tab {
    min-height: 42px;
    padding: 0.66rem 0.82rem;
    font-size: 0.68rem;
  }
}
.justify-center{
  justify-content: center;
}
/* NAV FIX ONLY FOR TABLET + MOBILE — logo-safe */
@media (max-width: 1120px) {
  .site-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    min-height: var(--header-offset, 68px);
    height: auto !important;
    z-index: 99999 !important;
    overflow: visible !important;
  }

  body {
    padding-top: var(--header-offset, 68px);
  }

  .main-nav {
    position: relative !important;
    min-height: var(--header-offset, 68px);
    height: auto !important;
    overflow: visible !important;
  }

  .brand-logo {
    min-height: 64px !important;
    height: auto !important;
    overflow: visible !important;
  }

  .nav-toggle {
    position: relative !important;
    z-index: 100001 !important;
  }

  .nav-drawer {
    position: fixed !important;
    top: calc(var(--header-offset, 68px) + 10px) !important;
    left: 16px !important;
    right: 16px !important;
    z-index: 100000 !important;

    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 0.5rem !important;

    max-height: calc(100dvh - var(--header-offset, 68px) - 24px) !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;

    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translateY(-12px) scale(0.96) !important;
    clip-path: inset(0 0 100% 0 round 28px) !important;
  }

  .nav-drawer.is-open {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) scale(1) !important;
    clip-path: inset(0 0 0 0 round 28px) !important;
  }

  body.menu-open {
    overflow: hidden;
  }
}

@media (max-width: 760px) {
  body {
    padding-top: var(--header-offset, 64px);
  }

  .site-header {
    min-height: var(--header-offset, 64px);
    height: auto !important;
  }

  .main-nav {
    min-height: var(--header-offset, 64px);
    height: auto !important;
  }

  .brand-logo {
    width: min(42vw, 150px);
    min-height: 60px !important;
    height: auto !important;
    overflow: visible !important;
  }

  .nav-drawer {
    top: calc(var(--header-offset, 64px) + 8px) !important;
    left: 10px !important;
    right: 10px !important;
    border-radius: 24px !important;
    clip-path: inset(0 0 100% 0 round 24px) !important;
  }

  .nav-drawer.is-open {
    clip-path: inset(0 0 0 0 round 24px) !important;
  }
}

@media (max-width: 440px) {
  .brand-logo {
    width: min(46vw, 138px);
    min-height: 58px !important;
  }
}

/* Takeaway bundle edge fades */
.bundle-track-wrap {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  border-radius: 24px;
  isolation: isolate;
}

.bundle-track-wrap::before,
.bundle-track-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0.6rem;
  z-index: 2;
  width: clamp(38px, 8vw, 70px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.bundle-track-wrap::before {
  left: 0;
  background: linear-gradient(90deg, #ead8c0, rgba(234, 216, 192, 0));
}

.bundle-track-wrap::after {
  right: 0;
  background: linear-gradient(270deg, #ead8c0, rgba(234, 216, 192, 0));
}

.delivery-scene.has-left-overflow .bundle-track-wrap::before,
.delivery-scene.has-right-overflow .bundle-track-wrap::after {
  opacity: 1;
}

.bundle-track-wrap .bundle-track {
  width: 100%;
  max-width: 100%;
}

.hero--events .event-track-wrap::before {
  background: linear-gradient(90deg, #493A32, rgba(73, 58, 50, 0));
}

.kari-social-flow-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kari-social-flow-tile::before,
.kari-social-flow-tile::after {
  display: none;
}

.map-board--embed {
  overflow: hidden;
  padding: 0;
  background: var(--kari-cream-soft);
}

.map-board--embed iframe {
  display: block;
  width: 100%;
  min-height: 460px;
  height: 100%;
  border: 0;
}

@media (max-width: 760px) {
  .map-board--embed,
  .map-board--embed iframe {
    min-height: 340px;
  }
}
/* FOOTER CRACKLING / PAINT FIX */
.site-footer {
  contain: paint;
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: transform;
  overflow: hidden;
}

.site-footer::before,
.site-footer::after {
  transform: translateZ(0) rotate(-28deg);
  backface-visibility: hidden;
  will-change: transform;
}

.site-footer::after {
  transform: translateZ(0);
}

/* Reduce heavy repaint when footer enters viewport */
.site-footer,
.site-footer * {
  text-rendering: geometricPrecision;
}

/* Prevent reveal animation from causing footer-area jump/repaint */
.site-footer .reveal,
.site-footer__shell,
.site-footer__grid,
.site-footer__bottom {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

/* Mobile sticky buttons can cause bottom flicker over footer */
@media (max-width: 760px) {
  .site-footer {
    padding-bottom: 7rem;
  }

  .mobile-sticky-actions {
    transform: translateZ(0);
    backface-visibility: hidden;
  }
}
*:focus,
*:focus-visible {
  outline: none !important;
  box-shadow: none !important;
  -webkit-tap-highlight-color: transparent;
}

* {
  -webkit-tap-highlight-color: transparent;
}
