/* ============================================================
   Neo Nutrition Studio — styles
   Palette: charcoal #111111 · green #7ED957 · white type
   ============================================================ */

:root {
  --bg: #111111;
  --bg-alt: #161616;
  --bg-deep: #0c0c0c;
  --green: #7ED957;
  --green-dark: #58b536;
  --white: #ffffff;
  --grey: #b7b7b7;
  --glass: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --font-head: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 22px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { width: min(1180px, 92%); margin: 0 auto; }
.section { padding: 110px 0; position: relative; }

.accent { color: var(--green); }

.eyebrow {
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 14px;
}

.section__title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.4vw, 3.1rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
}

.section__head { text-align: center; max-width: 640px; margin: 0 auto 64px; }

/* ---------- glassmorphism ---------- */
.glass {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  padding: 16px 34px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.btn--primary {
  background: var(--green);
  color: #0c2a00;
  box-shadow: 0 8px 30px rgba(126, 217, 87, 0.35);
}
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(126, 217, 87, 0.5); }
.btn--ghost {
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { border-color: var(--green); color: var(--green); transform: translateY(-3px); }

/* ---------- curved section dividers ---------- */
.curve { display: block; width: 100%; height: 90px; }
.curve--hero { position: absolute; bottom: -1px; left: 0; }
.curve--top { position: absolute; top: -1px; left: 0; transform: rotate(180deg); }

/* ============================================================ NAV */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
  padding: 22px 0;
}
.nav.is-scrolled {
  background: rgba(17, 17, 17, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
  padding: 12px 0;
}
.nav__inner {
  width: min(1180px, 92%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo { display: flex; align-items: center; gap: 11px; font-family: var(--font-head); }
.nav__logo-mark {
  height: 42px;
  padding: 0 12px;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  display: grid; place-items: center;
  font-weight: 800; font-size: 0.82rem; letter-spacing: 0.08em; color: #0c2a00;
  white-space: nowrap;
}
.nav__logo-text { font-weight: 700; font-size: 1.05rem; letter-spacing: 0.01em; }
.nav__logo-text em { font-style: normal; color: var(--green); }

.location__sister {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(126, 217, 87, 0.12);
  border: 1px solid rgba(126, 217, 87, 0.3);
  padding: 3px 10px;
  border-radius: 999px;
  vertical-align: middle;
  margin-left: 10px;
  font-family: var(--font-body);
}

.nav__links { display: flex; align-items: center; gap: 34px; }
.nav__links a {
  font-size: 0.95rem; font-weight: 500; color: var(--grey);
  transition: color 0.25s ease;
  position: relative;
}
.nav__links a:not(.nav__cta)::after {
  content: '';
  position: absolute; left: 0; bottom: -6px;
  width: 0; height: 2px; border-radius: 2px;
  background: var(--green);
  transition: width 0.3s ease;
}
.nav__links a:hover,
.nav__links a.is-active-link { color: var(--white); }
.nav__links a:hover::after,
.nav__links a.is-active-link::after { width: 100%; }
.nav__cta {
  background: var(--green);
  color: #0c2a00 !important;
  padding: 10px 24px;
  border-radius: 999px;
  font-weight: 600 !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.nav__cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(126, 217, 87, 0.4); }

.nav__burger { display: none; background: none; border: 0; cursor: pointer; flex-direction: column; gap: 5px; padding: 6px; }
.nav__burger span { width: 26px; height: 2.5px; border-radius: 3px; background: var(--white); transition: 0.3s ease; }
.nav__burger.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============================================================ HERO */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; }
.hero__slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.8s ease;
  background-size: cover;
  background-position: center;
}
.hero__slide.is-active { opacity: 1; }
.hero__slide--1 { background-image: url('assets/hero1.png'); }
.hero__slide--2 { background-image: url('assets/hero2.png'); }

@media (max-width: 820px) {
  .hero__slide--1 { background-image: url('assets/heromobile1.png'); }
  .hero__slide--2 { background-image: url('assets/heromobile2.png'); }
}
.hero__overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(17,17,17,0.25) 0%, rgba(17,17,17,0.78) 100%);
}
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.35;
  animation: drift 14s ease-in-out infinite alternate;
}
.hero__orb--1 { width: 420px; height: 420px; background: var(--green); top: -120px; left: -110px; }
.hero__orb--2 { width: 360px; height: 360px; background: #2fb1a5; bottom: -100px; right: -90px; animation-delay: -7s; }
@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(60px, 40px) scale(1.15); }
}

.hero__content { position: relative; z-index: 2; padding: 120px 20px 80px; max-width: 860px; }
.hero__eyebrow {
  color: var(--green);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 22px;
}
.hero__title {
  font-family: var(--font-head);
  font-size: clamp(2.7rem, 7.5vw, 5.4rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin-bottom: 26px;
}
.hero__sub {
  color: rgba(255,255,255,0.92);
  font-size: clamp(1.02rem, 1.6vw, 1.25rem);
  max-width: 580px;
  margin: 0 auto 40px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.7), 0 4px 24px rgba(0,0,0,0.5);
}
.hero__actions { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

.hero__scroll {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 44px;
  border: 2px solid rgba(255,255,255,0.35);
  border-radius: 16px;
  z-index: 2;
}
.hero__scroll span {
  position: absolute; top: 8px; left: 50%;
  width: 4px; height: 9px;
  margin-left: -2px;
  border-radius: 3px;
  background: var(--green);
  animation: scrollHint 1.8s ease-in-out infinite;
}
@keyframes scrollHint {
  0%, 100% { transform: translateY(0); opacity: 1; }
  60% { transform: translateY(14px); opacity: 0; }
}

/* ============================================================ ABOUT */
.about__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 70px;
  align-items: center;
}
.about__text p { color: var(--grey); margin-bottom: 16px; max-width: 480px; }
.about__list { margin-top: 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; }
.about__list li { display: flex; align-items: center; gap: 10px; font-weight: 500; }
.about__list li::before {
  content: '\f00c';
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  flex: 0 0 auto;
  width: 26px; height: 26px;
  border-radius: 8px;
  background: rgba(126, 217, 87, 0.14);
  color: var(--green);
  display: grid; place-items: center;
  font-size: 0.75rem;
}

.about__visual { position: relative; min-height: 460px; }
.about__card { position: absolute; overflow: hidden; padding: 12px; }
.about__card:first-child { top: 0; left: 0; width: 72%; height: 320px; }
.about__card--float { bottom: 0; right: 0; width: 58%; height: 250px; animation: floaty 6s ease-in-out infinite; }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
.about__photo {
  width: 100%; height: 100%;
  border-radius: calc(var(--radius) - 8px);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
}
.about__photo--a { background-image: url('assets/about2.png'); }
.about__photo--b { background-image: url('assets/about1.png'); }
.about__badge {
  position: absolute;
  bottom: 60px; left: 4%;
  display: flex; align-items: center; gap: 14px;
  padding: 18px 24px;
  background: rgba(17, 17, 17, 0.72);
}
.about__badge strong { font-family: var(--font-head); font-size: 2.2rem; color: var(--green); }
.about__badge span { font-size: 0.82rem; color: var(--grey); line-height: 1.35; }

/* ============================================================ LOCATIONS */
.locations__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; }
.location { overflow: hidden; transition: transform 0.4s ease, box-shadow 0.4s ease; }
.location:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(0,0,0,0.5); }
.location__media {
  height: 230px;
  position: relative;
  display: flex; align-items: flex-end;
  padding: 22px;
  background-size: cover;
  background-position: center;
}
.location__media--neo { background-color: #1d3a14; }
.location__media--thrive { background-color: #14323a; }
.location__tag {
  background: rgba(17,17,17,0.65);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.location__body { padding: 32px; }
.location__body h3 { font-family: var(--font-head); font-size: 1.45rem; margin-bottom: 12px; }
.location__body > p { color: var(--grey); font-size: 0.96rem; margin-bottom: 22px; }
.location__body h4 {
  text-transform: uppercase; letter-spacing: 0.16em;
  font-size: 0.74rem; color: var(--green);
  margin-bottom: 12px;
}
.location__hours { margin-bottom: 24px; }
.location__hours li {
  display: flex; justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 0.92rem;
}
.location__hours li span:first-child { color: var(--grey); }
.location__hours li span:last-child { font-weight: 500; }
.location__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--green);
  transition: opacity 0.25s ease;
  margin-bottom: 20px;
}
.location__phone:hover { opacity: 0.75; }

.location__map {
  border-radius: 14px;
  overflow: hidden;
  height: 200px;
  margin-bottom: 18px;
}
.location__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: invert(0.9) hue-rotate(180deg) saturate(0.6) brightness(0.85);
}
.location__directions {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 22px;
  border-radius: 999px;
  border: 1.5px solid rgba(126, 217, 87, 0.45);
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.location__directions:hover {
  background: var(--green);
  border-color: var(--green);
  color: #0c2a00;
}

/* ============================================================ MENU */
.menu { background: var(--bg-alt); padding-top: 160px; }
.menu__category { margin-bottom: 64px; }
.menu__category:last-child { margin-bottom: 0; }
.menu__cat-title {
  font-family: var(--font-head);
  font-size: 1.4rem;
  margin-bottom: 26px;
  display: flex; align-items: center; gap: 16px;
}
.menu__cat-title::after { content: ''; flex: 1; height: 1px; background: linear-gradient(90deg, rgba(126,217,87,0.45), transparent); }
.menu__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.menu__grid--three { grid-template-columns: repeat(3, 1fr); }

.drink {
  padding: 22px;
  text-align: center;
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}
.drink:hover { transform: translateY(-8px); border-color: rgba(126,217,87,0.45); box-shadow: 0 20px 50px rgba(0,0,0,0.45); }
.drink h4 { font-family: var(--font-head); font-size: 1.05rem; margin: 18px 0 6px; }
.drink p { color: var(--grey); font-size: 0.86rem; }

/* drink visual — swap .drink__img for real photography */
.drink__img {
  height: 170px;
  border-radius: calc(var(--radius) - 8px);
  display: grid; place-items: center;
  background: radial-gradient(90% 90% at 50% 110%, var(--tint, #1d3a14) 0%, rgba(0,0,0,0.18) 75%);
  overflow: hidden;
}
.drink__cup {
  width: 64px; height: 110px;
  border-radius: 10px 10px 22px 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.16), rgba(255,255,255,0.04));
  border: 2px solid rgba(255,255,255,0.3);
  position: relative;
  transition: transform 0.4s ease;
}
.drink:hover .drink__cup { transform: scale(1.07) rotate(-3deg); }
.drink__cup::before { /* straw */
  content: '';
  position: absolute;
  top: -26px; left: 60%;
  width: 7px; height: 38px;
  border-radius: 4px;
  background: rgba(255,255,255,0.55);
  transform: rotate(14deg);
}
.drink__cup i { /* liquid */
  position: absolute;
  left: 5px; right: 5px; bottom: 5px;
  top: 28px;
  border-radius: 5px 5px 16px 16px;
  background: var(--tint, #7ED957);
  opacity: 0.85;
}
.drink__cup--tea { border-radius: 8px 8px 14px 14px; }
.drink__cup--tea i { top: 16px; opacity: 0.7; }

/* per-drink tints */
.drink[data-tint="biscoff"]  { --tint: #c98c4a; }
.drink[data-tint="choc"]     { --tint: #6b4226; }
.drink[data-tint="vanilla"]  { --tint: #e8dcb8; }
.drink[data-tint="cookies"]  { --tint: #9a948c; }
.drink[data-tint="hulk"]     { --tint: #7ED957; }
.drink[data-tint="berry"]    { --tint: #7a4fd1; }
.drink[data-tint="tropical"] { --tint: #f5a623; }
.drink[data-tint="citrus"]   { --tint: #ffd23f; }
.drink[data-tint="hydra"]    { --tint: #38b6ff; }
.drink[data-tint="electro"]  { --tint: #2fd1c0; }
.drink[data-tint="wellness"] { --tint: #9ae66e; }

/* ============================================================ REVIEWS */
.slider { position: relative; overflow: hidden; }
.slider__track {
  display: flex;
  gap: 28px;
  transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}
.review {
  flex: 0 0 calc((100% - 56px) / 3);
  padding: 38px 32px;
  text-align: center;
}
.review__stars { color: var(--green); letter-spacing: 6px; font-size: 1.15rem; margin-bottom: 18px; }
.review blockquote { font-size: 1.08rem; font-weight: 500; line-height: 1.55; margin-bottom: 16px; }
.review figcaption { color: var(--grey); font-size: 0.85rem; }

.slider__nav { display: flex; align-items: center; justify-content: center; gap: 22px; margin-top: 38px; }
.slider__btn {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.25);
  background: transparent;
  color: var(--white);
  font-size: 1.1rem;
  cursor: pointer;
  transition: 0.3s ease;
}
.slider__btn:hover { border-color: var(--green); color: var(--green); transform: scale(1.08); }
.slider__dots { display: flex; gap: 10px; }
.slider__dots button {
  width: 9px; height: 9px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: 0.3s ease;
  padding: 0;
}
.slider__dots button.is-active { background: var(--green); transform: scale(1.35); }

/* ============================================================ INSTAGRAM */
.insta { background: var(--bg-alt); padding-top: 160px; }
.insta__feeds { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; }
.insta__handle {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--green);
  margin-bottom: 18px;
  transition: opacity 0.25s ease;
}
.insta__handle:hover { opacity: 0.75; }
.insta__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.insta__tile {
  aspect-ratio: 1;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease;
  background-size: cover;
  background-position: center;
  background-color: #1a1a1a;
}
.insta__tile:hover { transform: scale(1.04); }
.insta__tile::after {
  content: '\f030';
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-size: 1.4rem;
  color: var(--white);
  opacity: 0;
  background: rgba(17,17,17,0.5);
  transition: opacity 0.3s ease;
}
.insta__tile:hover::after { opacity: 1; }
.insta__tile.t1 { background: linear-gradient(135deg, #1d3a14, #2a5220); }
.insta__tile.t2 { background: linear-gradient(135deg, #14323a, #1d5a52); }
.insta__tile.t3 { background: linear-gradient(135deg, #3a2a14, #6b4a20); }
.insta__tile.t4 { background: linear-gradient(135deg, #2a1438, #4a2a66); }
.insta__tile.t5 { background: linear-gradient(135deg, #38141e, #66202e); }
.insta__tile.t6 { background: linear-gradient(135deg, #14233a, #204266); }


/* ============================================================ CONTACT */
.contact { background: var(--bg-alt); padding-top: 160px; }
.contact__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.contact__card {
  padding: 42px 30px;
  text-align: center;
  transition: transform 0.4s ease, border-color 0.4s ease;
}
.contact__card:hover { transform: translateY(-6px); border-color: rgba(126,217,87,0.45); }
.contact__icon {
  width: 62px; height: 62px;
  margin: 0 auto 18px;
  border-radius: 18px;
  background: rgba(126,217,87,0.12);
  display: grid; place-items: center;
  font-size: 1.5rem;
}
.contact__card h3 { font-family: var(--font-head); font-size: 1.15rem; margin-bottom: 10px; }
.contact__card a {
  display: block;
  color: var(--green);
  font-weight: 600;
  margin-top: 6px;
  transition: opacity 0.25s ease;
}
.contact__card a:hover { opacity: 0.75; }

/* ============================================================ FOOTER */
.footer { background: var(--bg-deep); padding-top: 140px; position: relative; }

.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 48px;
}
.footer__nav { display: flex; flex-wrap: wrap; gap: 26px; }
.footer__nav a { color: var(--grey); font-size: 0.92rem; transition: color 0.25s ease; }
.footer__nav a:hover { color: var(--green); }

.footer__studios {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__studio h4 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--green);
  margin-bottom: 14px;
}
.footer__studio p, .footer__studio a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--grey);
  font-size: 0.9rem;
  margin-bottom: 10px;
  transition: color 0.25s ease;
}
.footer__studio a:hover { color: var(--white); }
.footer__studio i { color: var(--green); flex-shrink: 0; font-size: 0.85rem; }

.footer__hours {
  margin: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.footer__hours li {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 0.85rem;
  color: var(--grey);
}
.footer__hours li span:last-child { color: var(--white); font-weight: 500; }

.footer__map-link {
  display: inline-flex !important;
  align-items: center;
  gap: 7px;
  margin-top: 6px;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(126,217,87,0.35) !important;
  color: var(--green) !important;
  font-size: 0.82rem !important;
  font-weight: 600;
  transition: background 0.3s ease, border-color 0.3s ease !important;
  margin-bottom: 0 !important;
}
.footer__map-link:hover {
  background: var(--green);
  color: #0c2a00 !important;
  border-color: var(--green) !important;
}
.footer__map-link i { color: inherit !important; }

.footer__bottom {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer__bottom p { color: #6f6f6f; font-size: 0.8rem; }
.footer__bottom a { color: var(--green); transition: opacity 0.25s ease; }
.footer__bottom a:hover { opacity: 0.75; }

@media (max-width: 820px) {
  .footer__studios { grid-template-columns: 1fr; gap: 36px; }
  .footer__bottom { flex-direction: column; text-align: center; gap: 6px; }
}

/* ============================================================ REVEAL ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}
.reveal--delay { transition-delay: 0.15s; }
.reveal--delay2 { transition-delay: 0.3s; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================ RESPONSIVE */
@media (max-width: 1024px) {
  .menu__grid { grid-template-columns: repeat(2, 1fr); }
  .menu__grid--three { grid-template-columns: repeat(3, 1fr); }
  .review { flex: 0 0 calc((100% - 28px) / 2); }
  .gallery__masonry { columns: 2; }
}

@media (max-width: 820px) {
  .section { padding: 80px 0; }
  .about__grid { grid-template-columns: 1fr; gap: 50px; }
  .about__visual { min-height: 400px; }
  .locations__grid { grid-template-columns: 1fr; }
  .insta__feeds { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .menu__grid--three { grid-template-columns: 1fr; }

  .nav__burger { display: flex; }
  .nav__links {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(78vw, 320px);
    background: rgba(12, 12, 12, 0.96);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.65, 0, 0.35, 1);
  }
  .nav__links.is-open { transform: translateX(0); box-shadow: -20px 0 60px rgba(0,0,0,0.6); }
  .nav__links a { font-size: 1.15rem; }
}

@media (max-width: 560px) {
  .menu__grid { grid-template-columns: 1fr; }
  .review { flex: 0 0 100%; }
  .gallery__masonry { columns: 1; }
  .hero__scroll { display: none; }
  .about__badge { left: 0; bottom: 30px; }
}

/* ============================================================ FEATURED MENU */
.featured { background: var(--bg-alt); }

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

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

.featured-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.featured-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}

.featured-card__img {
  width: 100%;
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  background-color: rgba(255,255,255,0.04);
  flex-shrink: 0;
}

.featured-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 18px 20px 20px;
  gap: 8px;
}
.featured-card__body h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
}
.featured-card__body p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  flex: 1;
  line-height: 1.5;
}

.featured-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 4px;
}
.featured-card__price {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green);
}

.btn--order-sm {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--green); color: #111;
  border: none; cursor: pointer;
  font-family: inherit; font-size: 0.8rem; font-weight: 700;
  padding: 8px 16px; border-radius: 100px;
  white-space: nowrap;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn--order-sm:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(126,217,87,0.4); }

/* Skeleton loader */
.featured-skeleton {
  border-radius: var(--radius);
  aspect-ratio: 3/4;
  background: linear-gradient(90deg,
    rgba(255,255,255,0.05) 25%,
    rgba(255,255,255,0.1) 50%,
    rgba(255,255,255,0.05) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
}
@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position:  200% 0; }
}

.featured__cta {
  text-align: center;
  margin-top: 8px;
}

/* ============================================================ ORDER BUTTON */
.btn--order {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green); color: #111;
  border: none; cursor: pointer;
  font-family: inherit; font-size: inherit; font-weight: 700;
  padding: 14px 28px; border-radius: 100px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn--order:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(126,217,87,0.45); }

/* ============================================================ FLOATING ORDER FAB */
.order-fab {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 900;
  display: flex; align-items: center; gap: 10px;
  background: var(--green); color: #111;
  border: none; cursor: pointer;
  font-family: inherit; font-size: 0.95rem; font-weight: 700;
  padding: 14px 22px 14px 18px;
  border-radius: 100px;
  box-shadow: 0 8px 32px rgba(126,217,87,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
}
.order-fab:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(126,217,87,0.55); }
.order-fab i { font-size: 1.1rem; }

/* ============================================================ ORDER MODAL */
.order-modal {
  position: fixed; inset: 0;
  z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s;
}
.order-modal.is-open { opacity: 1; pointer-events: auto; }

.order-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(4px);
  cursor: pointer;
}

.order-modal__box {
  position: relative;
  width: 100%; max-width: 480px;
  background: rgba(20,20,20,0.96);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 40px 32px 36px;
  text-align: center;
  transform: translateY(18px) scale(0.97);
  transition: transform 0.28s cubic-bezier(0.34,1.56,0.64,1);
}
.order-modal.is-open .order-modal__box { transform: translateY(0) scale(1); }

.order-modal__close {
  position: absolute; top: 16px; right: 16px;
  background: rgba(255,255,255,0.08); border: none; cursor: pointer;
  color: #fff; width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: background 0.2s;
}
.order-modal__close:hover { background: rgba(255,255,255,0.18); }

.order-modal__icon {
  width: 60px; height: 60px; border-radius: 16px;
  background: rgba(126,217,87,0.15);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.6rem; color: var(--green);
}

.order-modal__box h2 { font-size: 1.5rem; margin-bottom: 6px; }
.order-modal__box p { color: rgba(255,255,255,0.55); font-size: 0.9rem; margin-bottom: 24px; }

.order-modal__branches { display: flex; flex-direction: column; gap: 14px; }

.order-modal__branch {
  display: flex; align-items: center; gap: 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px; padding: 16px;
  text-decoration: none; color: #fff;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  text-align: left;
}
.order-modal__branch:hover {
  background: rgba(126,217,87,0.12);
  border-color: rgba(126,217,87,0.45);
  transform: translateX(4px);
}
.order-modal__branch:hover .fa-arrow-right { color: var(--green); }

.order-modal__branch-img {
  flex-shrink: 0;
  width: 52px; height: 52px; border-radius: 10px;
  background-size: cover; background-position: center;
}
.order-modal__branch-img--neo   { background-image: url('assets/hero1.png'); }
.order-modal__branch-img--thrive { background-image: url('assets/hero2.png'); }

.order-modal__branch-info { flex: 1; }
.order-modal__branch-info strong { display: block; font-size: 0.95rem; font-weight: 700; }
.order-modal__branch-info small  { color: rgba(255,255,255,0.45); font-size: 0.8rem; }

.order-modal__branch .fa-arrow-right { color: rgba(255,255,255,0.3); font-size: 0.85rem; transition: color 0.2s; }

@media (max-width: 480px) {
  .order-fab span { display: none; }
  .order-fab { padding: 16px; border-radius: 50%; }
  .order-modal__box { padding: 32px 20px 28px; }
}
