/* ===========================================================================
   No1 Princess — Homepage styles (matches Figma "Landing-Page")
   Section 1: Header / Nav + Hero + Marquee
   =========================================================================== */

/* ---- Web fonts (self-hosted) -------------------------------------------
   Drop your .woff2 files into assets/fonts/ with these exact names and
   they automatically take over from the Anton/Mulish fallbacks. */
@font-face {
  font-family: "TAY Birdie";
  src:
    url("../fonts/tay-birdie.woff2") format("woff2"),
    url("../fonts/tay-birdie.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Avenir";
  src: url("../fonts/avenir-roman.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Avenir";
  src: url("../fonts/avenir-medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Avenir";
  src: url("../fonts/avenir-heavy.woff2") format("woff2");
  font-weight: 700 800;
  font-style: normal;
  font-display: swap;
}

/* ---- Design tokens (from Figma) ---------------------------------------- */
:root {
  --c-dark: #1d1d1b;
  --c-ink: #262626;
  --c-cream: #f6f4f1;
  --c-cream2: #f8f6f2;
  --c-beige: #e5e0d6;
  --c-gold: #c6923b;
  --c-red: #b5301f;
  --c-white: #ffffff;
  --c-gray: #737373;
  --c-gray-l: #d4d4d4;

  /* Display = TAY Birdie (custom). Body = Avenir (licensed).
     Fallbacks below until the real .woff2 files are added. */
  --font-display: "TAY Birdie", "Anton", "Oswald", sans-serif;
  --font-body: "Avenir", "Mulish", "Nunito Sans", system-ui, sans-serif;

  --container: 1380px;
  --gutter: clamp(20px, 5vw, 76px);
}

/* ---- Reset-ish ---------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--c-dark);
  color: var(--c-cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  cursor: pointer;
}

.np-container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ---- Reveal animation initial states (GSAP reveals these) -------------- */
html.np-anim .np-reveal {
  opacity: 0;
  transform: translateY(32px);
  will-change: transform, opacity;
}
@media (prefers-reduced-motion: reduce) {
  .np-reveal {
    opacity: 1 !important;
    transform: none !important;
  }
  html {
    scroll-behavior: auto;
  }
}

/* ===========================================================================
   HEADER / NAV  (overlaid on the hero photo)
   =========================================================================== */
.np-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 20;
  padding-block: 30px;
}
.np-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.np-nav__brand-mark {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.1vw, 30px);
  letter-spacing: -0.04em;
  color: var(--c-cream);
  line-height: 1;
  white-space: nowrap;
}
.np-nav__toggle {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1.5px solid rgba(246, 244, 241, 0.7);
  background: transparent;
}
.np-nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-cream);
  margin: 2.5px 0;
}
#hamburgerId:hover {

   cursor: pointer;
}

/* ===========================================================================
   SIDE DRAWER MENU  (Figma node 160-1323) — slides in from the right
   =========================================================================== */
.np-drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  transition: opacity 0.35s ease;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}
.np-drawer-overlay.is-open {
  opacity: 1;
}

/* All vertical metrics are expressed as the SAME fraction of viewport height
   that they are in the Figma frame (485 x 982), capped at the Figma pixel
   value. Result: identical spacing to Figma on a full-height screen, and a
   faithful proportional scale-down on shorter laptops (no scroll, no
   uneven gaps). Reference: 32/982 = 3.26vh, 64/982 = 6.52vh, 16/982 = 1.63vh. */
.np-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
  width: min(485px, 88vw);
  height: 100svh;
  background: var(--c-dark);
  color: var(--c-white);
  padding: clamp(40px, 6.52vh, 64px) clamp(28px, 5vw, 48px);
  display: flex;
  flex-direction: column;
  /* Uniform gap between the nav block and the actions block (= Figma 32). */
  gap: clamp(16px, 3.26vh, 32px);
  overflow-y: auto;
  overscroll-behavior: contain;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.np-drawer.is-open {
  transform: translateX(0);
}

.np-drawer__close {
  position: absolute;
  top: clamp(4px, 2vh, 22px);
  right: clamp(18px, 3vw, 30px);
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: transparent;
  border: none;
  color: var(--c-white);
  opacity: 0.8;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
    background-color: var(--c-dark) !important;
}
.np-drawer__close:hover {
  opacity: 1;
  transform: rotate(90deg);
  background-color: #474646 !important;
}
.np-drawer__close svg {
  width: 24px;
  height: 24px;
  margin-left: -9px;
}

.np-drawer__nav {
  display: flex;
  flex-direction: column;
  /* Uniform 32px Figma gap, scaled by viewport height. */
  gap: clamp(16px, 3.26vh, 32px);
}
.np-drawer__link {
  font-family: var(--font-display);
  /* Figma: TAY Birdie 32px. Scales down proportionally on short screens. */
  font-size: clamp(20px, 3.26vh, 32px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--c-white);
  width: max-content;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}
.np-drawer__link:hover {
  color: var(--c-gold);
  transform: translateX(6px);
}

.np-drawer__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* Same uniform Figma gap between buttons. */
  gap: clamp(16px, 3.26vh, 32px);
}
.np-drawer__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  /* Figma button: 16px padding, 2px stroke, Avenir 800 20px. */
  padding: clamp(11px, 1.63vh, 16px) clamp(18px, 2vw, 24px);
  border: 2px solid var(--c-white);
  background: transparent;
  color: var(--c-white);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(15px, 2.04vh, 20px);
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition:
    background 0.2s ease,
    color 0.2s ease;
    
}
.np-drawer__btn svg {
  width: clamp(18px, 2.2vh, 22px);
  height: clamp(18px, 2.2vh, 22px);
  
}
.np-drawer__btn:hover {
  background: var(--c-white);
  color: var(--c-dark);
}

/* Lock background scroll while the drawer is open */
body.np-drawer-open {
  overflow: hidden;
}

/* ===========================================================================
   HERO  (full-bleed photo with overlaid type)
   =========================================================================== */
.np-hero {
  position: relative;
  min-height: 100svh;
  background: var(--c-dark);
  overflow: hidden;
}
.np-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 28%;
}
.np-hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.3) 0%,
      rgba(0, 0, 0, 0) 22%,
      rgba(0, 0, 0, 0) 58%,
      rgba(0, 0, 0, 0.38) 100%
    ),
    linear-gradient(90deg, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0) 42%);
}
.np-hero__inner {
  position: relative;
  z-index: 2;
  min-height: 100svh;
}

/* Figma frame is 1512 x 982; positions below are kept proportional to it. */
.np-hero__headline {
  position: absolute;
  left: var(--gutter);
  bottom: 8%;
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--c-cream);
  font-size: clamp(60px, 13.2vw, 200px);
  line-height: 0.8;
  letter-spacing: -0.1em;
  text-transform: uppercase;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.25);
}
.np-hero__quote {
  position: absolute;
  left: 52.2%;
  top: 42%;
  width: min(470px, 40vw);
  margin: 0;
  color: #fff;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(15px, 1.32vw, 20px);
  line-height: 1.6;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.4);
}
.np-hero__cta {
  position: absolute;
  left: 52.2%;
  top: 67%;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: #fff;
}
.np-hero__cta-circle {
    position: relative;
    width: clamp(96px, 9.4vw, 142px);
    height: clamp(96px, 9.4vw, 142px);
    border-radius: 50%;
    overflow: hidden;
    display: grid;
    place-items: center;
    flex: none;
    cursor: pointer;
}

/* Background fill */
.np-hero__cta-circle::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #ffffff; /* Fill color */
    border-radius: 50%;
    transform: translateY(100%);
    transition: transform 0.8s ease;
    z-index: 0;
}

/* Images stay above fill */
#whiteCircle,
#blackCircle {
    position: absolute;
    z-index: 2;
    transition: opacity .35s ease;
}

#whiteCircle {
    width: 100%;
    height: 100%;
    opacity: 1;
}

#blackCircle {
    width: 40px;
    height: auto;
    opacity: 0;
}

/* Hover effect */
.np-hero__cta:hover .np-hero__cta-circle::before {
    transform: translateY(0);
}

/* Swap images */
.np-hero__cta:hover #whiteCircle {
    opacity: 0;
}

.np-hero__cta:hover #blackCircle {
    opacity: 1;
}

.np-hero__cta-label {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.6vw, 24px);
  letter-spacing: -0.06em;
  text-transform: uppercase;
}
/* Downward arrow — capped to a ~200×200 footprint (viewBox is 80×120, so a
   133px width gives a 200px height). */
.np-hero__down {
  position: absolute;
  right: 6.5%;
  top: 64%;
  width: clamp(88px, 10vw, 133px);
  height: auto;
  color: #fff;
  opacity: 0.9;
}
#downArrow{
  margin-top: 2%;
}

/* ===========================================================================
   MARQUEE strip
   =========================================================================== */
.np-marquee {
  background: var(--c-cream);
  color: var(--c-dark);
  overflow: hidden;
  white-space: nowrap;
  padding-block: 18px;
  border-block: 1px solid rgba(29, 29, 27, 0.08);
}
.np-marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 0;
  animation: np-marquee-scroll 26s linear infinite;
}
.np-marquee__track span {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 92px);
  letter-spacing: -0.05em;
  line-height: 1.05;
  padding-inline: 26px;
  text-transform: uppercase;
}
.np-marquee__star {
  color: var(--c-red);
}
@keyframes np-marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .np-marquee__track {
    animation: none;
  }
}

/* ===========================================================================
   HERO <-> SCHMEAR scroll-swap stack (only one panel shows at a time).
   GSAP pins the stack and crossfades the two panels (see hero-schmear.js).
   Without JS / on mobile the two panels simply stack and scroll normally.
   =========================================================================== */
.np-herostack {
  position: relative;
}
.np-herostack.is-pinned {
  height: 100svh;
  overflow: hidden;
}
.np-herostack.is-pinned .np-hero,
.np-herostack.is-pinned .np-schmear {
  position: absolute;
  inset: 0;
  width: 100%;
  min-height: 100svh;
}

.np-schmear {
  position: relative;
  min-height: 90svh;
  background: var(--c-white);
  color: var(--c-dark);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.np-schmear__bg {
  position: absolute;
  inset: -22% -14%;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(4px, 0.8vw, 14px);
  transform: rotate(-8deg);
  pointer-events: none;
}
.np-schmear__line {
  white-space: nowrap;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 7vw, 104px);
  line-height: 1.04;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1.4px rgba(29, 29, 27, 0.78);
}
.np-schmear__line:nth-child(even) {
  margin-left: -6%;
}
.np-schmear__frame {
  position: relative;
  z-index: 2;
  margin: 0;
  width: min(400px, 58vw);
  height: 80vh;
  aspect-ratio: 3 / 4;
  background: var(--c-beige);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.22);
}
.np-schmear__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 600px) {
  .np-schmear__line {
    font-size: clamp(34px, 12vw, 60px);
  }
  .np-schmear__frame {
    width: min(320px, 76vw);
  }
}

/* Neutralise Kadence's default blue link colour on the homepage. Brand links
   keep their own colours (higher specificity); plain links inherit the
   section's text colour instead of turning blue on hover/focus. */
:where(body.np-home) a {
  color: inherit;
}
:where(body.np-home) a:hover,
:where(body.np-home) a:focus {
  color: inherit;
}

/* ===========================================================================
   RESPONSIVE
   =========================================================================== */
@media (max-width: 1024px) {
  .np-hero__quote {
    left: 50%;
    top: 30%;
    width: min(42vw, 320px);
  }
  .np-hero__cta {
    left: 50%;
    top: 54%;
  }
  .np-hero__cta-circle {
    width: 84px;
    height: 84px;
  }
  .np-hero__down {
    top: 46%;
  }
}
@media (max-width: 768px) {
  .np-hero__inner {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 22px;
    padding: 130px var(--gutter) 48px;
  }
  .np-hero__headline,
  .np-hero__quote,
  .np-hero__cta {
    position: static;
  }
  .np-hero__headline {
    order: 1;
    font-size: clamp(56px, 17vw, 104px);
  }
  .np-hero__quote {
    order: 2;
    width: auto;
    max-width: 52ch;
  }
  .np-hero__cta {
    order: 3;
  }
  .np-hero__down {
    display: none;
  }
  .np-hero__scrim {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.32) 0%,
      rgba(0, 0, 0, 0.05) 32%,
      rgba(0, 0, 0, 0.6) 100%
    );
  }
}
@media (max-width: 420px) {
  .np-hero__headline {
    font-size: 52px;
  }
  .np-nav__brand-mark {
    font-size: 18px;
  }
}

/* ===========================================================================
   ABOUT / INTRO  ("This is Princes Street Bagels")
   =========================================================================== */
.np-about {
  background: var(--c-dark);
  color: var(--c-cream);
  padding-block: clamp(56px, 7vw, 110px);
  position: relative;
  overflow: hidden;
}
.np-about__title {
  font-family: var(--font-display);
  font-weight: 400;
  text-align: center;
  margin: 0 auto;
  max-width: 1100px;
  font-size: clamp(30px, 4.23vw, 64px);
  line-height: 1.2;
  letter-spacing: -0.1em;
  text-transform: uppercase;
}

/* Collage: a centred 770-wide "stage" (arch + text) with two side images
   absolutely placed in the outer gutters — mirrors the Figma layout. */
.np-about__collage {
  position: relative;
  max-width: 1380px;
  margin: clamp(36px, 4vw, 64px) auto 0;
}
.np-about__stage {
  position: relative;
}
.np-about__arch {
  display: block;
  width: 55.8%; /* 770 / 1380 */
  margin-inline: auto;
  aspect-ratio: 2 / 3; /* 770 x 1155 */
  object-fit: cover;
  /* Full semicircle top (radius = half width). */
  border-radius: 50% 50% 0 0 / 33.333% 33.333% 0 0;
}
.np-about__side {
  position: absolute;
  width: 21.7%; /* 300 / 1380 */
  object-fit: cover;
}
.np-about__side--left {
  left: 0;
  top: 52%;
  aspect-ratio: 2 / 3;
  border-radius: 34px 0 0 0;
}
.np-about__side--right {
  right: 0;
  top: 87%;
  aspect-ratio: 3 / 4;
  border-radius: 0 34px 0 0;
}

.np-about__text {
  width: 55.8%; /* same column as the arch */
  margin: clamp(34px, 3.5vw, 52px) auto 0;
}
.np-about__lead {
  font-family: var(--font-display);
  font-weight: 400;
  margin: 0;
  font-size: clamp(28px, 3.17vw, 48px);
  line-height: 1.2;
  letter-spacing: -0.1em;
  text-transform: uppercase;
}
.np-about__body {
  margin: 22px 0 0;
  font-size: clamp(15px, 1.45vw, 22px);
  line-height: 1.6;
  color: rgba(246, 244, 241, 0.78);
}
.np-about__cta {
  margin-top: 36px;
}

/* Scattered decorative marks (sparkle clusters + crowns) */
.np-about__deco {
  position: absolute;
  color: var(--c-cream);
  opacity: 0.9;
  pointer-events: none;
  z-index: 1;
}
.np-about__deco--tl {
  top: 7%;
  left: 12%;
  width: 150px;
}
.np-about__deco--tr {
  top: 30%;
  right: 9%;
  width: 64px;
}
.np-about__deco--ml {
  top: 60%;
  left: 11%;
  width: 56px;
}
@media (max-width: 1024px) {
  .np-about__deco {
    display: none;
  }
}

/* Reusable circular arrow link (Our Story, etc.) */
.np-circle-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
}
.np-circle {
  width: clamp(96px, 9.4vw, 142px);
  height: clamp(96px, 9.4vw, 142px);
  flex: none;
  border-radius: 50%;
  border: 1.5px solid rgba(246, 244, 241, 0.5);
  color: var(--c-cream);
  display: grid;
  place-items: center;
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;
}
.np-circle svg {
  width: clamp(26px, 2.6vw, 38px);
  height: clamp(26px, 2.6vw, 38px);
}
.np-circle-link:hover .np-circle {
  background: var(--c-cream);
  color: var(--c-dark);
  border-color: var(--c-cream);
}
.np-circle-link__label {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.6vw, 24px);
  letter-spacing: -0.06em;
  text-transform: uppercase;
  color: var(--c-cream);
}

@media (max-width: 1024px) {
  .np-about__stage {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: clamp(14px, 3vw, 26px);
  }
  .np-about__arch {
    width: min(420px, 82%);
    order: 1;
  }
  .np-about__side {
    position: static;
  }
  .np-about__side--left {
    order: 2;
    width: min(230px, 43%);
    aspect-ratio: 2 / 3;
    border-radius: 24px 24px 0 0;
  }
  .np-about__side--right {
    order: 3;
    width: min(230px, 43%);
    aspect-ratio: 3 / 4;
    border-radius: 24px 24px 0 0;
  }
  .np-about__text {
    width: min(680px, 100%);
  }
}
@media (max-width: 560px) {
  .np-about__arch {
    width: 100%;
    border-radius: 50% 50% 0 0 / 33.333% 33.333% 0 0;
  }
  .np-about__side--left,
  .np-about__side--right {
    width: 47%;
  }
  .np-circle {
    width: 74px;
    height: 74px;
  }
  .np-circle svg {
    width: 22px;
    height: 22px;
  }
  .np-circle-link__label {
    font-size: 19px;
  }
}

/* ===========================================================================
   POPULAR BAGELS  (product grid → maps to WooCommerce products later)
   =========================================================================== */
.np-menu {
  background: var(--c-cream);
  color: var(--c-dark);
  padding-block: clamp(56px, 8vw, 110px);
}
.np-menu__title {
  font-family: var(--font-display);
  font-weight: 400;
  text-align: center;
  font-size: clamp(34px, 4.6vw, 64px);
  letter-spacing: -0.04em;
  margin: 0 0 clamp(34px, 5vw, 60px);
}
.np-menu__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.np-card {
  background: var(--c-white);
  border: 1px solid var(--c-beige);
  border-radius: 12px;
  padding: 18px;
  display: flex;
  flex-direction: column;
}
.np-card__media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--c-white);
  border-radius: 8px;
}
.np-card__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.np-card__new {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--c-dark);
  background: var(--c-white);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: -0.04em;
}
.np-card__info {
  min-width: 0;
  margin-top: 16px;
}
.np-card__name {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.05em;
  margin: 0 0 6px;
}
.np-card__desc {
  font-size: 14px;
  line-height: 1.4;
  margin: 0;
  color: var(--c-dark);
}
/* Price + add button pinned to the card bottom so the round buttons line up
   across a row regardless of how long each name/description runs. The grid
   stretches all cards in a row to equal height, so margin-top:auto bottom-
   aligns every foot. */
.np-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
}
.np-card__price {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: -0.04em;
  color: #404040;
}
.np-add {
  width: 44px;
  height: 44px;
  flex: none;
  border-radius: 50%;
  background: var(--c-dark);
  color: var(--c-cream);
  border: none;
  display: grid;
  place-items: center;
  transition:
    transform 0.25s ease,
    background-color 0.25s ease;
}
.np-add:hover {
  transform: scale(1.08);
  background: #000;
}
.np-add svg {
  width: 20px;
  height: 20px;
}

/* ---- WooCommerce add-to-cart integration (Popular Bagels) -------------- */
.np-card__imglink {
  display: block;
  width: 100%;
  height: 100%;
}
.np-card__price .amount,
.np-card__price bdi {
  font: inherit;
  color: inherit;
  text-decoration: none;
}
.np-card__foot .added_to_cart {
  display: none;
} /* hide WooCommerce's auto "View cart" link */
.np-add.loading {
  opacity: 0.55;
  pointer-events: none;
}
.np-add.added {
  background: var(--c-red);
} /* brief confirmation once added */

.np-menu__more {
  display: flex;
  justify-content: center;
  margin-top: clamp(36px, 5vw, 58px);
}
.np-fullmenu {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 1.5px solid var(--c-dark);
  display: grid;
  place-items: center;
  text-align: center;
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}
.np-fullmenu:hover {
  background: var(--c-dark);
  color: var(--c-cream);
}

@media (max-width: 980px) {
  .np-menu__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 460px) {
  .np-menu__grid {
    gap: 12px;
  }
  .np-card {
    padding: 12px;
  }
  .np-card__name {
    font-size: 18px;
  }
  .np-fullmenu {
    width: 126px;
    height: 126px;
    font-size: 18px;
  }
}

/* ===========================================================================
   GALLERY  (full-width 6-image strip)
   =========================================================================== */
.np-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--c-cream);
  gap: 10px;
  padding: 10px 0px 40px 0px; 
 
}
.np-gallery img {
  width: 100%;
  height: clamp(220px, 30vw, 470px);
  object-fit: cover;
  display: block;
   border-radius: 15px 15px 0 0;
}
@media (max-width: 900px) {
  .np-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 520px) {
  .np-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .np-gallery img {
    height: clamp(200px, 46vw, 320px);
  }
}

/* ---- Marquee dark + small variant (TEAR ● SCHMEAR ● CHEERS) ------------- */
.np-marquee--dark {
  background: var(--c-dark);
  color: var(--c-cream);
  border-block-color: rgba(246, 244, 241, 0.14);
}
.np-marquee--dark .np-marquee__star {
  color: var(--c-cream);
}
.np-marquee--sm {
  padding-block: 22px;
}
.np-marquee--sm .np-marquee__track span {
  font-size: clamp(26px, 3.6vw, 48px);
}

/* ===========================================================================
   AFTER HOURS — intro (full-bleed bar photo + overlaid type)
   =========================================================================== */
.np-ah-hero {
  position: relative;
  min-height: clamp(520px, 76vh, 840px);
  background: var(--c-dark);
  overflow: hidden;
  display: flex;
}
.np-ah-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.np-ah-hero__scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.42) 0%,
    rgba(0, 0, 0, 0.12) 38%,
    rgba(0, 0, 0, 0.62) 100%
  );
}
.np-ah-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  align-self: end;
  padding-bottom: clamp(40px, 6vw, 84px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 40px;
}
.np-ah-hero__eyebrow {
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}
.np-ah-hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--c-cream);
  font-size: clamp(56px, 9vw, 128px);
  line-height: 0.96;
  letter-spacing: -0.05em;
  margin: 0;
}
.np-ah-hero__body {
  color: #fff;
  font-weight: 500;
  font-size: clamp(15px, 1.15vw, 20px);
  line-height: 1.6;
  max-width: 46ch;
  justify-self: end;
}
@media (max-width: 768px) {
  .np-ah-hero__inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .np-ah-hero__body {
    justify-self: start;
  }
}

/* ===========================================================================
   AFTER HOURS — menu (light bg, zigzag 01 / 02 / 03)
   =========================================================================== */
.np-ah-menu {
  background: var(--c-white);
  color: var(--c-dark);
  padding-block: clamp(60px, 8vw, 120px);
}
.np-ah-menu__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(30px, 6vw, 90px);
}
.np-ah-menu__row + .np-ah-menu__row {
  margin-top: clamp(48px, 8vw, 104px);
}
.np-ah-menu__text {
  max-width: 440px;
}
.np-ah-menu__num {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(72px, 9vw, 128px);
  line-height: 0.9;
  letter-spacing: -0.05em;
  margin: 0;
}
.np-ah-menu__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(34px, 4.4vw, 57px);
  line-height: 1;
  letter-spacing: -0.05em;
  margin: 6px 0 0;
  text-transform: uppercase;
}
.np-ah-menu__body {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.6;
  margin: 20px 0 0;
}
.np-ah-menu__btn {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--c-dark);
  border: 1.5px solid var(--c-dark);
  border-radius: 6px;
  padding: 14px 26px;
  background: transparent;
  transition:
    background-color 0.25s ease,
    color 0.25s ease;
}
.np-ah-menu__btn:hover {
  background: var(--c-dark);
  color: var(--c-cream);
}
.np-ah-menu__media {
  display: flex;
  justify-content: center;
}
.np-ah-menu__img {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.18);
  transform: rotate(2.2deg);
}
.np-ah-menu__row--rev .np-ah-menu__text {
  order: 2;
}
.np-ah-menu__row--rev .np-ah-menu__media {
  order: 1;
}
.np-ah-menu__row--rev .np-ah-menu__img {
  transform: rotate(-2.2deg);
}
.np-ah-menu__more {
  margin-top: clamp(44px, 6vw, 82px);
}

/* circular arrow link — dark (ink) variant for light backgrounds */
.np-circle-link--ink .np-circle {
  border-color: rgba(29, 29, 27, 0.35);
  color: var(--c-dark);
}
.np-circle-link--ink:hover .np-circle {
  background: var(--c-dark);
  color: var(--c-cream);
  border-color: var(--c-dark);
}
.np-circle-link--ink .np-circle-link__label {
  color: var(--c-dark);
}

@media (max-width: 760px) {
  .np-ah-menu__row {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .np-ah-menu__row--rev .np-ah-menu__text,
  .np-ah-menu__row--rev .np-ah-menu__media {
    order: 0;
  }
  .np-ah-menu__media {
    justify-content: flex-start;
  }
  .np-ah-menu__img {
    max-width: 320px;
  }
}

/* ===========================================================================
   PROMO — two panels (No.1 Club / Feed the Office)
   =========================================================================== */
.np-promo {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.np-promo__panel {
  position: relative;
  min-height: clamp(440px, 46vw, 620px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: clamp(30px, 4vw, 60px);
  color: var(--c-cream);
}
.np-promo__panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.np-promo__panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.15) 0%,
    rgba(0, 0, 0, 0.35) 45%,
    rgba(0, 0, 0, 0.72) 100%
  );
}
.np-promo__content {
  position: relative;
  z-index: 2;
  max-width: 33ch;
}
.np-promo__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 13px;
  font-weight: 700;
  margin: 0 0 14px;
}
.np-promo__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(34px, 3.4vw, 64px);
  line-height: 1;
  letter-spacing: -0.04em;
  margin: 0 0 18px;
  text-transform: uppercase;
}
.np-promo__body {
  font-weight: 500;
  font-size: clamp(15px, 1.05vw, 18px);
  line-height: 1.55;
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.86);
}
.np-promo__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--c-cream);
  border: 1.5px solid rgba(246, 244, 241, 0.7);
  border-radius: 6px;
  padding: 14px 26px;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}
.np-promo__btn:hover {
  background: var(--c-cream);
  color: var(--c-dark);
  border-color: var(--c-cream);
}
@media (max-width: 760px) {
  .np-promo {
    grid-template-columns: 1fr;
  }
}

/* ===========================================================================
   FIND US — location + map
   =========================================================================== */
.np-find {
  background: var(--c-cream);
  color: var(--c-dark);
  padding-block: clamp(60px, 8vw, 120px);
}
.np-find__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(40px, 6vw, 80px);
}
.np-find__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 14px;
  font-weight: 700;
  margin-left: 12px;
}
.np-find__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(38px, 5.4vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin: 0 0 42px;
  text-transform: uppercase;
}
.np-find__map {
  width: 100%;
  height: auto;
  border: 1px solid var(--c-dark);
  border-radius: 4px;
}
@media (max-width: 820px) {
  .np-find__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .np-find__title {
    margin-bottom: 30px;
  }
}

/* ===========================================================================
   IMAGE BAND  (full-width shop interior)
   =========================================================================== */
.np-band img {
  width: 100%;
  height: clamp(340px, 54vw, 760px);
  object-fit: cover;
  display: block;
}

/* ===========================================================================
   CONTACT  (Got a question? There's an answer.)
   =========================================================================== */
.np-contact {
  background: var(--c-dark);
  color: var(--c-cream);
  padding-block: clamp(64px, 9vw, 120px);
}
.np-contact__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(40px, 6vw, 68px);
}
.np-contact__title {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--c-cream);
  font-size: clamp(36px, 5.4vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin: 0;
  text-transform: uppercase;
}
.np-contact__sub {
  margin: 18px 0 0;
  color: rgba(246, 244, 241, 0.8);
  font-size: clamp(15px, 1.1vw, 20px);
  line-height: 1.5;
}
.np-contact__form {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 clamp(30px, 5vw, 70px);
}
.np-field {
  position: relative;
  border-bottom: 1px solid rgba(246, 244, 241, 0.22);
  padding: 24px 0 12px;
}
.np-field--full {
  grid-column: 1 / -1;
}
.np-field input,
.np-field select,
.np-field textarea {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  resize: none;
  color: var(--c-cream);
  font-family: var(--font-body);
  font-size: 16px;
  padding: 0;
}
.np-field select {
  appearance: none;
  cursor: pointer;
}
.np-field input::placeholder,
.np-field textarea::placeholder {
  color: rgba(246, 244, 241, 0.62);
}
.np-field__chev {
  position: absolute;
  right: 4px;
  top: 24px;
  color: rgba(246, 244, 241, 0.6);
  pointer-events: none;
}
.np-contact__submit {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  margin-top: 44px;
}
.np-contact__btn {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--c-cream);
  border: 1.5px solid rgba(246, 244, 241, 0.8);
  border-radius: 4px;
  padding: 16px 34px;
  background: transparent;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}
.np-contact__btn:hover {
  background: var(--c-cream);
  color: var(--c-dark);
  border-color: var(--c-cream);
}
@media (max-width: 640px) {
  .np-contact__form {
    grid-template-columns: 1fr;
  }
}

/* ===========================================================================
   FOOTER
   =========================================================================== */
.np-footer {
  background: var(--c-ink);
  color: var(--c-beige);
  padding-block: clamp(40px, 5vw, 60px);
}
.np-footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 30px;
}
.np-footer__brand {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 45px);
  letter-spacing: -0.04em;
  color: var(--c-cream);
  margin: 0;
}
.np-footer__social {
  display: flex;
  gap: 12px;
}
.np-footer__social a {
  width: 44px;
  height: 44px;
  border: 1.5px solid rgba(229, 224, 214, 0.4);
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--c-beige);
  transition:
    background-color 0.25s ease,
    color 0.25s ease;
}
.np-footer__social a:hover {
  background: var(--c-beige);
  color: var(--c-ink);
}
.np-footer__social svg {
  width: 20px;
  height: 20px;
}
.np-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 26px;
  border-top: 1px solid rgba(229, 224, 214, 0.16);
  font-size: 14px;
  color: var(--c-gray);
}
.np-footer__legal {
  display: flex;
  gap: 28px;
}
.np-footer__legal a:hover {
  color: var(--c-beige);
}
@media (max-width: 680px) {
  .np-footer__top,
  .np-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}
