/* ═══════════════════════════════════════════════════════════════════════════
   GotPiqle Theme – main.css
   Mirrors the Next.js Tailwind design: dark bg, green accent (#61BD72),
   Gotham font, ambient glow, all sections.
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Gotham Font (@font-face) ─────────────────────────────────────────────── */
@font-face {
  font-family: "Gotham";
  src: url("../fonts/GothamBook.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gotham";
  src: url("../fonts/Gotham-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gotham";
  src: url("../fonts/GothamBold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gotham";
  src: url("../fonts/Gotham Black Regular.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* ── Keyframes ────────────────────────────────────────────────────────────── */
@keyframes ambient-drift-1 {
  0%,
  100% {
    transform: translate(0%, 0%) scale(1);
    opacity: 0.85;
  }
  33% {
    transform: translate(30%, 15%) scale(1.3);
    opacity: 0.6;
  }
  66% {
    transform: translate(-10%, 30%) scale(0.9);
    opacity: 0.4;
  }
}
@keyframes ambient-drift-2 {
  0%,
  100% {
    transform: translate(0%, 0%) scale(1);
    opacity: 0.75;
  }
  33% {
    transform: translate(-25%, -20%) scale(1.2);
    opacity: 0.5;
  }
  66% {
    transform: translate(15%, -25%) scale(0.8);
    opacity: 0.3;
  }
}
@keyframes loader-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.9);
  }
}
@keyframes sparkle-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes scale-in {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ── Site Loader ─────────────────────────────────────────────────────────── */
.gp-site-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0a0a0a;
  transition:
    opacity 0.6s ease,
    visibility 0.6s ease;
}
.gp-site-loader.gp-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.gp-site-loader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.gp-site-loader__text {
  font-family: "Gotham", sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--color-green);
}
.gp-site-loader__spinner {
  width: 28px;
  height: 28px;
  border: 2px solid rgba(97, 189, 114, 0.2);
  border-top-color: var(--color-green);
  border-radius: 50%;
  animation: loader-spin 0.8s linear infinite;
}
@keyframes loader-spin {
  to {
    transform: rotate(360deg);
  }
}

/* ── Shared container ────────────────────────────────────────────────────── */
.gp-container {
  width: 100%;
  max-width: 80rem;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (min-width: 768px) {
  .gp-container {
    padding-inline: 2.5rem;
  }
}

/* ── Navbar ──────────────────────────────────────────────────────────────── */
.gp-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition:
    background 0.5s ease,
    backdrop-filter 0.5s ease;
}
.gp-navbar.is-scrolled {
  background: rgba(97, 189, 114, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.gp-navbar__inner {
  max-width: 80rem;
  margin-inline: auto;
  padding: 0 1.5rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
@media (min-width: 768px) {
  .gp-navbar__inner {
    height: 5rem;
    padding-inline: 2.5rem;
  }
}

.gp-navbar__logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
}
@media (min-width: 768px) {
  .gp-navbar__logo {
    position: static;
    transform: none;
  }
}
.gp-navbar__logo img {
  height: 2.6rem;
  width: auto;
}

.gp-navbar__nav {
  display: none;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .gp-navbar__nav {
    display: flex;
  }
}

.gp-navbar__link {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #000;
  transition: color 0.2s;
}
.gp-navbar__link:hover {
  color: #fff;
}

/* Hamburger */
.gp-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2rem;
  height: 2rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}
@media (min-width: 768px) {
  .gp-hamburger {
    display: none;
  }
}
.gp-hamburger__bar {
  display: block;
  height: 1.5px;
  width: 100%;
  background: #000;
  border-radius: 999px;
  transition:
    transform 0.3s,
    opacity 0.3s;
}
.gp-hamburger.is-open .gp-hamburger__bar:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.gp-hamburger.is-open .gp-hamburger__bar:nth-child(2) {
  opacity: 0;
}
.gp-hamburger.is-open .gp-hamburger__bar:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile drawer */
.gp-drawer {
  position: fixed;
  inset: 0;
  z-index: 49;
  background: #0a0a0a;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.gp-drawer:not([hidden]) {
  transform: translateX(0);
}
.gp-drawer__inner {
  padding: 6rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.gp-drawer__close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
}
.gp-drawer__nav {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.gp-drawer__link {
  font-size: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: #f5f5f0;
  transition: color 0.2s;
}
.gp-drawer__link:hover {
  color: #61bd72;
}

/* ── Main Landing Page ───────────────────────────────────────────────────── */
.gp-main {
  position: relative;
  width: 100%;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem;
  overflow: hidden;
  background: #0a0a0a;
  color: #f5f5f0;
}
@media (min-width: 640px) {
  .gp-main {
    padding: 1.5rem;
  }
}
@media (min-width: 768px) {
  .gp-main {
    padding: 2rem;
  }
}
@media (min-width: 1024px) {
  .gp-main {
    padding: 3rem;
  }
}

.gp-main__overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(2px);
}
.gp-main__ambient {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  mix-blend-mode: screen;
}
.gp-main__blob {
  position: absolute;
  border-radius: 50%;
  background: #61bd72;
}
.gp-main__blob--1 {
  top: 16%;
  left: -12%;
  width: min(96vw, 800px);
  height: min(96vw, 800px);
  opacity: 0.85;
  filter: blur(95px);
  animation: ambient-drift-1 25s ease-in-out infinite;
}
@media (min-width: 640px) {
  .gp-main__blob--1 {
    top: 10%;
    left: 20%;
    width: min(60vw, 800px);
    height: min(60vw, 800px);
    opacity: 0.7;
    filter: blur(120px);
  }
}
.gp-main__blob--2 {
  bottom: 10%;
  right: 10%;
  width: min(50vw, 600px);
  height: min(50vw, 600px);
  opacity: 0.75;
  filter: blur(100px);
  animation: ambient-drift-2 30s ease-in-out infinite;
}

/* Top header */
.gp-main__top-header {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  width: 100%;
  opacity: 0;
  transform: translateY(-1rem);
}
.gp-main__top-header.is-visible {
  opacity: 1;
  transform: none;
  transition:
    opacity 1s 0.3s,
    transform 1s 0.3s;
}
.gp-main__brand-name {
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #f5f5f0;
  text-align: center;
  user-select: none;
}
.gp-main__est {
  display: none;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 500;
  opacity: 0.5;
  color: #f5f5f0;
}

/* Main content */
.gp-main__content {
  position: relative;
  z-index: 10;
  flex: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 0;
}
@media (min-width: 768px) {
  .gp-main__content {
    padding: 1.5rem 0;
  }
}

.gp-main__content-inner {
  width: 100%;
  max-width: 64rem;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .gp-main__content-inner {
    gap: 1.25rem;
  }
}

.gp-main__headline {
  font-size: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 1rem;
}
.gp-main__headline-accent {
  color: #61bd72;
}

.gp-main__tagline {
  max-width: 32rem;
  padding-inline: 0.5rem;
  font-size: clamp(0.875rem, 2vw, 1rem);
  line-height: 1.6;
  opacity: 0.8;
  font-weight: 500;
  color: #fff;
}
@media (min-width: 768px) {
  .gp-main__tagline {
    padding-inline: 0.75rem;
  }
  .gp-main__headline {
    font-size: 1.3rem;
  }
}
@media (min-width: 1024px) {
  .gp-main__tagline {
    padding-inline: 0;
  }
  .gp-main__headline {
    font-size: 2rem;
  }
}

.gp-main__separator {
  position: relative;
  width: 100%;
  max-width: 64rem;
  height: 12rem;
  margin: 15px 0;
  mix-blend-mode: screen;
  opacity: 0.9;
}
@media (min-width: 640px) {
  .gp-main__separator {
    height: 176px;
  }
}
@media (min-width: 768px) {
  .gp-main__separator {
    height: 14rem;
  }
}
@media (min-width: 1024px) {
  .gp-main__separator {
    height: 20rem;
    margin: 10px 0;
  }
}
.gp-main__separator-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* CTA buttons */
.gp-main__cta-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 0.5rem;
}
@media (min-width: 640px) {
  .gp-main__cta-nav {
    gap: 2.5rem;
  }
}

.gp-btn {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-family: inherit;
  backdrop-filter: blur(8px);
  transition:
    color 0.3s,
    border-color 0.3s,
    background 0.3s;
}
.gp-btn:hover {
  color: #61bd72;
  border-color: rgba(97, 189, 114, 0.6);
  background: rgba(0, 0, 0, 0.45);
}
.gp-btn--pill {
  min-width: 7.5rem;
  padding: 0.625rem 1.25rem;
  border-radius: 999px;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
}
@media (min-width: 640px) {
  .gp-btn--pill {
    min-width: 8.75rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.75rem;
  }
}

/* ── Full-screen Panel ───────────────────────────────────────────────────── */
.gp-panel {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  flex-direction: column;
  background: #0a0a0a;
  color: #f5f5f0;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.gp-panel:not([hidden]) {
  transform: translateY(0);
}

.gp-panel__bar {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 1.5rem;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .gp-panel__bar {
    padding: 2.5rem 3rem;
  }
}
.gp-panel__title {
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #fff;
}
.gp-panel__close {
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s;
}
@media (min-width: 768px) {
  .gp-panel__close {
    right: 3rem;
  }
}
.gp-panel__close:hover {
  color: #61bd72;
}

.gp-panel__body {
  min-height: 0;
  flex: 1;
  overflow-y: auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 2.5rem 1.5rem;
}
@media (min-width: 768px) {
  .gp-panel__body {
    align-items: center;
    padding: 2.5rem 3rem;
  }
}

.gp-panel__section {
  max-width: 42rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
  margin-inline: auto;
}
.gp-panel__section[hidden] {
  display: none;
}

.gp-panel__heading {
  font-size: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: #fff;
}
.gp-panel__heading-accent {
  color: #61bd72;
}
@media (min-width: 768px) {
  .gp-panel__heading {
    font-size: 1.3rem;
  }
}
@media (min-width: 1024px) {
  .gp-panel__heading {
    font-size: 2rem;
  }
}

.gp-panel__copy {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
}
.gp-panel__copy p {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  font-weight: 500;
  margin: 0;
}

.gp-panel__locations {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  width: 100%;
}
.gp-panel__location-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.gp-panel__location-name {
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
}
.gp-panel__location-addr {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  transition: color 0.2s;
}
.gp-panel__location-addr:hover {
  color: #61bd72;
}
.gp-panel__location-hours {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ── Hero Section ────────────────────────────────────────────────────────── */
.gp-hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #61bd72;
}
.gp-hero__inner {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-inline: 1rem;
  width: 100%;
}
.gp-hero__logo-wrap {
  width: clamp(18rem, 50vw, 36rem);
}
.gp-hero__logo {
  width: 100%;
  height: auto;
}
.gp-hero__tagline {
  margin-top: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  text-align: center;
  font-weight: 900;
  font-size: clamp(0.75rem, 2vw, 1rem);
  color: rgba(0, 0, 0, 0.5);
}
@media (min-width: 768px) {
  .gp-hero__tagline {
    margin-top: 2.5rem;
  }
}

/* ── Our Story Section ──────────────────────────────────────────────────── */
.gp-story {
  position: relative;
  overflow: hidden;
  background: #61bd72;
}
.gp-story__line {
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.15);
  transform-origin: left;
}
.gp-story__inner {
  padding: 6rem 0;
}
@media (min-width: 768px) {
  .gp-story__inner {
    padding: 8rem 0;
  }
}
@media (min-width: 1024px) {
  .gp-story__inner {
    padding: 10rem 0;
  }
}

.gp-story__heading-wrap {
  margin-bottom: 4rem;
  overflow: hidden;
}
@media (min-width: 768px) {
  .gp-story__heading-wrap {
    margin-bottom: 6rem;
  }
}

.gp-story__eyebrow {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  margin-bottom: 1.5rem;
  font-weight: 600;
  color: #000;
}
.gp-story__heading,
.gp-story__heading-sub {
  font-size: clamp(2.5rem, 8vw, 7rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  color: #000;
  line-height: 1;
}
.gp-story__heading-sub {
  display: block;
}

.gp-story__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .gp-story__grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

.gp-story__text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.65);
}
.gp-story__text p strong {
  color: #000;
}
.gp-story__kicker {
  margin-top: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  font-size: 1.125rem;
  color: #000;
}

.gp-story__image-wrap {
  position: relative;
  aspect-ratio: 4/5;
  width: 100%;
}
.gp-story__layer {
  position: absolute;
  inset: 0;
  border: 2px solid;
}
.gp-story__layer--3 {
  border-color: #000;
  background: rgba(0, 0, 0, 0.05);
  transform: rotate(4deg) translate(12px, -8px);
}
.gp-story__layer--2 {
  border-color: rgba(0, 0, 0, 0.2);
  background: rgba(0, 0, 0, 0.03);
  transform: rotate(-2.5deg) translate(-8px, 6px);
}
.gp-story__layer--1 {
  border-color: rgba(0, 0, 0, 0.1);
  background: rgba(0, 0, 0, 0.15);
  transform: rotate(1.5deg) translate(4px, -3px);
}
.gp-story__image-inner {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.gp-story__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Vibe Section ────────────────────────────────────────────────────────── */
.gp-vibe {
  position: relative;
  overflow: hidden;
  background: #000;
}
.gp-vibe__inner {
  padding: 6rem 0;
}
@media (min-width: 768px) {
  .gp-vibe__inner {
    padding: 8rem 0;
  }
}
@media (min-width: 1024px) {
  .gp-vibe__inner {
    padding: 10rem 0;
  }
}

.gp-vibe__eyebrow {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  margin-bottom: 1.5rem;
  font-weight: 600;
  color: #61bd72;
}
.gp-vibe__heading-wrap {
  margin-bottom: 2rem;
  overflow: hidden;
}
.gp-vibe__heading {
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  color: #61bd72;
  line-height: 1;
}
.gp-vibe__subtext {
  max-width: 32rem;
  margin-bottom: 4rem;
  line-height: 1.7;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
}
@media (min-width: 768px) {
  .gp-vibe__subtext {
    margin-bottom: 6rem;
  }
}

.gp-vibe__cards {
  display: grid;
}
@media (min-width: 768px) {
  .gp-vibe__cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gp-vibe__card {
  position: relative;
  padding: 2.5rem 0;
}
@media (min-width: 768px) {
  .gp-vibe__card {
    padding: 0 2.5rem;
  }
}
.gp-vibe__card:first-child {
  padding-left: 0;
}
.gp-vibe__card:last-child {
  padding-right: 0;
}

/* Vertical divider desktop */
.gp-vibe__card--bordered::before {
  content: "";
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(97, 189, 114, 0.15);
}
@media (min-width: 768px) {
  .gp-vibe__card--bordered::before {
    display: block;
  }
}

/* Horizontal divider mobile */
.gp-vibe__card--bordered::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(97, 189, 114, 0.15);
}
@media (min-width: 768px) {
  .gp-vibe__card--bordered::after {
    display: none;
  }
}

.gp-vibe__card-num {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #61bd72;
  margin-bottom: 1.5rem;
}
.gp-vibe__card-title {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.1;
}
.gp-vibe__card-body {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
}

/* ── Menu Section ────────────────────────────────────────────────────────── */
.gp-menu {
  position: relative;
  background: #221f20;
  padding: 4rem 0;
}
.gp-menu__sparkle {
  position: absolute;
  top: 2rem;
  right: 2rem;
  color: #61bd72;
  animation: sparkle-spin 8s linear infinite;
}
@media (min-width: 768px) {
  .gp-menu__sparkle {
    right: 4rem;
  }
}

.gp-menu__header {
  padding-top: 2rem;
  padding-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 640px) {
  .gp-menu__header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.gp-menu__eyebrow {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.25rem;
}
.gp-menu__heading {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -0.04em;
}
.gp-menu__heading-white {
  color: #fff;
}
.gp-menu__heading-green {
  color: #61bd72;
  -webkit-text-stroke: 2px #000;
  text-shadow: 4px 4px 0 rgba(0, 0, 0, 0.4);
}
.gp-menu__heading-star {
  margin-left: 0.75rem;
  color: #fff;
  font-size: 0.45em;
  vertical-align: middle;
}
.gp-menu__count {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  white-space: nowrap;
}

/* Category tabs */
.gp-menu__tabs-wrap {
  overflow-x: auto;
  padding-block: 0.5rem;
}
.gp-menu__tabs {
  display: flex;
  gap: 0.5rem;
  padding-block: 0.75rem;
  min-width: max-content;
}
.gp-menu__tab {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.25s;
  white-space: nowrap;
}
.gp-menu__tab:hover {
  color: #61bd72;
  border-color: rgba(97, 189, 114, 0.4);
}
.gp-menu__tab--active {
  background: #61bd72;
  color: #000;
  border-color: #61bd72;
}
.gp-menu__tab-emoji {
  font-size: 1rem;
}

/* Menu grid */
.gp-menu__grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
  padding-block: 2.5rem;
}
@media (min-width: 640px) {
  .gp-menu__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .gp-menu__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1280px) {
  .gp-menu__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Menu Card (rendered by JS) */
.menu-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}
.menu-card__image-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}
.menu-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.menu-card:hover .menu-card__image {
  transform: scale(1.05);
}
.menu-card__body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.menu-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-bottom: 0.625rem;
}
.menu-card__tag {
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: rgba(97, 189, 114, 0.15);
  color: #61bd72;
}
.menu-card__tag--spicy {
  background: rgba(255, 80, 40, 0.15);
  color: #ff5028;
}
.menu-card__tag--vegan {
  background: rgba(97, 189, 114, 0.15);
  color: #61bd72;
}
.menu-card__tag--bestseller {
  background: rgba(255, 214, 0, 0.15);
  color: #ffd600;
}
.menu-card__tag--new {
  background: rgba(255, 107, 0, 0.15);
  color: #ff6b00;
}
.menu-card__name {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
  line-height: 1.25;
}
.menu-card__desc {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.55;
  flex: 1;
}
.menu-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.875rem;
  padding-top: 0.875rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.menu-card__price {
  font-size: 1.0625rem;
  font-weight: 900;
  color: #61bd72;
}
.menu-card__cals {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
}

/* ── Footer ──────────────────────────────────────────────────────────────── */
.gp-footer {
  position: relative;
  overflow: hidden;
  background: #61bd72;
}
.gp-footer__divider {
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
}
.gp-footer__brand-wrap {
  padding-top: 5rem;
  padding-bottom: 4rem;
}
@media (min-width: 768px) {
  .gp-footer__brand-wrap {
    padding-top: 7rem;
    padding-bottom: 5rem;
  }
}
@media (min-width: 1024px) {
  .gp-footer__brand-wrap {
    padding-top: 9rem;
  }
}

.gp-footer__brand {
  font-size: clamp(4rem, 15vw, 14rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  color: #000;
  opacity: 0.35;
  line-height: 1;
  overflow: hidden;
}

.gp-footer__grid {
  display: grid;
  gap: 2.5rem;
  padding-bottom: 4rem;
}
@media (min-width: 768px) {
  .gp-footer__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
  }
}

.gp-footer__col-heading {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-bottom: 1rem;
  font-weight: 600;
  color: #000;
}
.gp-footer__location-name {
  font-size: 1rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 0.25rem;
}
.gp-footer__location-addr {
  font-size: 0.9375rem;
  color: rgba(0, 0, 0, 0.65);
  line-height: 1.5;
}
.gp-footer__location-addr a {
  color: rgba(0, 0, 0, 0.65);
  transition: color 0.2s;
}
.gp-footer__location-addr a:hover {
  color: #000;
}
.gp-footer__location-hours {
  font-size: 0.8125rem;
  color: rgba(0, 0, 0, 0.45);
  margin-top: 0.375rem;
}

.gp-footer__nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.gp-footer__nav-link {
  font-size: 0.875rem;
  color: #000;
  transition: opacity 0.2s;
}
.gp-footer__nav-link:hover {
  opacity: 0.6;
}

.gp-footer__social {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.gp-footer__social-link {
  color: #000;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.gp-footer__social-link:hover {
  opacity: 1;
}

.gp-footer__bottom {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.gp-footer__copyright {
  font-size: 0.8125rem;
  color: rgba(0, 0, 0, 0.5);
}

/* ── Page content (for non-front-page templates) ─────────────────────────── */
.gp-page-content {
  min-height: 60vh;
  padding: 8rem 1.5rem 4rem;
  color: #f5f5f0;
}
.gp-page-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  text-transform: uppercase;
  color: #61bd72;
  margin-bottom: 2rem;
}
