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

:root {
  --amber: #F5A623;
  --amber-dark: #D4891A;
  --black: #0D0D0D;
  --dark: #1A1612;
  --cream: #F8F4EC;
  --cream-deep: #EDE7D8;
  --cream-warm: #FDFAF4;
  --muted: #A09080;
  --red: #D63B2F;
  --green: #2E7D52;
  --font: 'Lato', sans-serif;
  --rad-sm: 6px;
  --rad-md: 12px;
  --rad-lg: 18px;
  --ease: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  background: transparent
}

body {
  font-family: var(--font);
  background: transparent;
  color: var(--black);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased
}

::-webkit-scrollbar {
  width: 6px
}

::-webkit-scrollbar-track {
  background: var(--dark)
}

::-webkit-scrollbar-thumb {
  background: var(--amber);
  border-radius: 3px
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease
}

.reveal.left {
  transform: translateX(-40px)
}

.reveal.right {
  transform: translateX(40px)
}

.reveal.scale {
  transform: scale(0.94)
}

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

.d1 {
  transition-delay: .1s
}

.d2 {
  transition-delay: .2s
}

.d3 {
  transition-delay: .3s
}

.d4 {
  transition-delay: .4s
}

/* EYEBROW */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 14px
}

.eyebrow::before,
.eyebrow::after {
  content: '';
  display: block;
  width: 32px;
  height: 1.5px;
  background: var(--amber);
  flex-shrink: 0
}

.underline {
  width: 48px;
  height: 4px;
  background: var(--amber);
  border-radius: 2px;
  margin: 10px 0 36px
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 6px;
  font-family: var(--font)
}

.white {
  color: #fff
}

.container {
  max-width: 1280px;
  margin: 0 auto
}

.spad {
  padding: 100px 60px
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
  background: rgba(13, 13, 13, .88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(245, 166, 35, .12)
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1280px
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none
}

.nav-logo-img {
  /* adjust logo height here */
  height: 90px;
  width: auto;
  display: block;
}

.nav-wm {
  color: #fff;
  font-weight: 900;
  font-size: 16px;
  letter-spacing: .05em;
  font-family: var(--font);
  line-height: 1;
}

.nav-wm span {
  color: var(--amber)
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none
}

.nav-links a {
  color: rgba(255, 255, 255, .75);
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  transition: color var(--ease)
}

.nav-links a:hover {
  color: var(--amber)
}

.ncta {
  background: var(--amber) !important;
  color: var(--black) !important;
  padding: 8px 18px;
  border-radius: 6px
}

.ncta:hover {
  background: var(--amber-dark) !important
}

/* HERO */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--dark)
}

.hslides {
  position: absolute;
  inset: 0;
  z-index: 0
}

.hslide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease;
  animation: kb 9s ease-in-out infinite alternate
}

.hslide.active {
  opacity: 1
}

@keyframes kb {
  0% {
    transform: scale(1)
  }

  100% {
    transform: scale(1.07) translate(-1%, -1%)
  }
}

/* 40% black overlay between media and all foreground content */
.hero-overlay-black {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.40);
  pointer-events: none
}

/* Gradient for text-side legibility */
.hover-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(110deg, rgba(13, 13, 13, .60) 0%, rgba(13, 13, 13, .20) 60%, rgba(13, 13, 13, .0) 100%);
  pointer-events: none
}

.hero-body {
  position: relative;
  z-index: 3;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 110px 64px 60px;
  max-width: 840px
}

.hero-eyeline {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px
}

.hero-eyeline span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--amber)
}

.hero-eyeline::before {
  content: '';
  display: block;
  width: 40px;
  height: 1.5px;
  background: var(--amber)
}

/* Hero headline — word clip animation */
.hero-h1 {
  font-size: clamp(52px, 8.5vw, 96px);
  font-weight: 900;
  color: #fff;
  line-height: .95;
  letter-spacing: -.02em;
  margin-bottom: 24px;
  font-family: var(--font)
}

.hero-h1 .a {
  color: var(--amber)
}

.hw {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom
}

.hwi {
  display: inline-block;
  transform: translateY(110%);
  will-change: transform
}

.hero-sub {
  font-size: clamp(15px, 1.8vw, 18px);
  color: rgba(255, 255, 255, .72);
  font-weight: 300;
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 520px
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px
}

.btn-a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--amber);
  color: var(--black);
  padding: 15px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background var(--ease), transform var(--ease);
  font-family: var(--font)
}

.btn-a:hover {
  background: var(--amber-dark);
  transform: translateY(-2px)
}

.btn-o {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, .5);
  color: #fff;
  padding: 15px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: border-color var(--ease), color var(--ease), transform var(--ease);
  font-family: var(--font)
}

.btn-o:hover {
  border-color: var(--amber);
  color: var(--amber);
  transform: translateY(-2px)
}

/* Delivery CTAs */
.hero-delivery {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 48px
}

.delivery-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .4);
  margin-right: 2px
}

.btn-delivery {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .2);
  color: rgba(255, 255, 255, .82);
  padding: 9px 16px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .05em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--ease), border-color var(--ease), color var(--ease);
  font-family: var(--font)
}

.btn-delivery:hover {
  background: rgba(245, 166, 35, .15);
  border-color: var(--amber);
  color: #fff
}

.hero-stats {
  display: flex;
  gap: 0;
  margin-top: 8px
}

.hstat {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-right: 40px;
  border-right: 1px solid rgba(255, 255, 255, .12)
}

.hstat:last-child {
  border-right: none;
  padding-left: 40px;
  padding-right: 0
}

.hstat-em {
  font-size: 26px
}

.hstat-lbl {
  font-size: 13px;
  font-weight: 700;
  color: #fff
}

.hstat-sub {
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
  margin-top: 1px
}

/* TICKER — hex badge style */
.ticker-wrap {
  position: relative;
  z-index: 3;
  background: var(--amber);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap
}

.ticker-track {
  display: inline-flex;
  align-items: center;
  animation: tick 36s linear infinite
}

@keyframes tick {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

.ti {
  display: inline-flex;
  align-items: center;
  color: var(--black);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 0 20px
}

.tsep {
  color: rgba(0, 0, 0, .35);
  font-size: 13px;
  margin-right: 32px
}

/* MENU */
#menu {
  background: var(--cream)
}

.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px
}

.tab-btn {
  padding: 9px 20px;
  border-radius: 999px;
  border: 1.5px solid #d4c9b8;
  background: transparent;
  color: #6b5f50;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--ease);
  font-family: var(--font)
}

.tab-btn:hover,
.tab-btn.active {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--black)
}

.menu-panel {
  display: none
}

.menu-panel.active {
  display: block
}

.clabel {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--black);
  opacity: .4;
  margin-bottom: 12px;
  margin-top: 28px
}

.clabel:first-child {
  margin-top: 0
}

.mcards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 8px
}

.mc {
  background: #fff;
  border-radius: var(--rad-lg);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, .06);
  cursor: pointer;
  transition: transform .35s cubic-bezier(.34, 1.56, .64, 1), box-shadow .35s ease
}

.mc:hover {
  transform: translateY(-8px) scale(1.015);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .13)
}

.mc-iw {
  display: none
}

.mc-body {
  padding: 26px
}

.mc-name {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 4px
}

.mc-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 14px
}

.mc-foot {
  display: flex;
  align-items: center;
  justify-content: space-between
}

.mc-price {
  font-size: 16px;
  font-weight: 900;
  color: var(--amber-dark)
}

.badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px
}

.nv {
  background: rgba(214, 59, 47, .1);
  color: var(--red)
}

.vg {
  background: rgba(46, 125, 82, .1);
  color: var(--green)
}

.mc-arrow {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 900;
  flex-shrink: 0;
  transform: rotate(0deg);
  transition: transform .35s cubic-bezier(.34, 1.56, .64, 1);
  padding: 6px;
}

.mc:hover .mc-arrow {
  transform: rotate(-45deg) scale(1.15)
}

.mc-arrow-icon {
  font-size: 15px;
  color: whitesmoke;
}



.mlist {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 8px;
  margin-bottom: 6px
}

.mli {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 16px;
  background: #fff;
  border-radius: var(--rad-md);
  border: 1px solid rgba(0, 0, 0, .06);
  transition: background var(--ease), transform var(--ease)
}

.mli:hover {
  background: var(--cream);
  transform: translateX(4px)
}

.mli-n {
  font-weight: 600;
  font-size: 14px
}

.mli-sub {
  font-weight: 500;
  font-size: 13px;
  margin-left: 4px;
}

.mli-p {
  font-weight: 800;
  font-size: 14px;
  color: var(--amber-dark);
  flex-shrink: 0;
  margin-left: 10px
}

/* JANATA SPECIALS */
#specials {
  background: var(--dark)
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px
}

.sc {
  border-radius: var(--rad-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform .35s cubic-bezier(.34, 1.56, .64, 1), box-shadow .35s ease
}

.sc:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, .35)
}

.sc-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform .6s ease
}

.sc:hover .sc-img {
  transform: scale(1.06)
}

.sc-over {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(13, 13, 13, .95));
  padding: 30px 22px 22px
}

.sc-tag {
  background: var(--amber);
  color: var(--black);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px;
  display: inline-block;
  margin-bottom: 7px
}

.sc-name {
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 3px;
  font-family: var(--font)
}

.sc-price {
  font-size: 15px;
  font-weight: 700;
  color: var(--amber)
}

/* FRESH MARKET */
#market {
  background: var(--cream-deep)
}

.mkt-filter {
  display: flex;
  gap: 10px;
  margin-bottom: 32px;
  flex-wrap: wrap
}

.flt {
  padding: 8px 20px;
  border-radius: 999px;
  border: 1.5px solid #d4c9b8;
  background: transparent;
  color: #6b5f50;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--ease);
  font-family: var(--font)
}

.flt:hover,
.flt.active {
  background: var(--black);
  border-color: var(--black);
  color: #fff
}

.mkt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px
}

.mktc {
  background: #fff;
  border-radius: var(--rad-lg);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, .06);
  transition: transform .35s cubic-bezier(.34, 1.56, .64, 1), box-shadow .35s ease
}

.mktc:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .11)
}

.mktc img {
  width: 100%;
  height: 175px;
  object-fit: cover;
  display: block;
  transition: transform .6s ease
}

.mktc:hover img {
  transform: scale(1.07)
}

.mktc-body {
  padding: 13px 15px 15px
}

.mtag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px
}

.tag-produce {
  background: rgba(46, 125, 82, .1);
  color: var(--green)
}

.tag-frozen {
  background: rgba(30, 90, 180, .1);
  color: #1e5ab4
}

.tag-readycook {
  background: rgba(245, 166, 35, .15);
  color: #a06800
}

.tag-pantry {
  background: rgba(100, 60, 20, .1);
  color: #6b3e10
}

/* GSAP MASONRY GALLERY */
#gallery {
  background: var(--black)
}

.masonry-grid {
  columns: 3;
  column-gap: 14px
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 14px;
  border-radius: var(--rad-md);
  overflow: hidden;
  position: relative;
  cursor: pointer
}

.masonry-item img {
  width: 100%;
  display: block;
  transition: transform .5s ease;
  will-change: transform
}

.masonry-item:hover img {
  transform: scale(0.95)
}

.masonry-item-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(13, 13, 13, .80));
  color: #fff;
  padding: 28px 16px 16px;
  font-weight: 700;
  font-size: 13px;
  opacity: 0;
  transition: opacity .3s ease;
  font-family: var(--font)
}

.masonry-item:hover .masonry-item-title {
  opacity: 1
}

@media(max-width:900px) {
  .masonry-grid {
    columns: 2
  }
}

@media(max-width:480px) {
  .masonry-grid {
    columns: 1
  }
}

/* CATERING */
#catering {
  background: var(--cream-warm);
  min-height: 100vh;
  display: flex;
  align-items: center
}

.cat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  padding: 120px 60px;
  /* max-width: 1280px; */
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.cat-grid>* {
  min-width: 0;
}

.cat-h2 {
  font-size: clamp(34px, 5.5vw, 60px);
  font-weight: 900;
  color: var(--black);
  line-height: 1.0;
  margin-bottom: 22px;
  font-family: var(--font)
}

.cat-h2 span {
  color: var(--amber)
}

.cat-p {
  color: #6b5f50;
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 40px;
  max-width: 440px
}

.cat-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--black);
  font-size: 26px;
  font-weight: 900;
  text-decoration: none;
  transition: color var(--ease)
}

.cat-phone:hover {
  color: var(--amber)
}

.cat-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  padding: 44px;
  border-radius: 22px;
  box-shadow: 0 8px 48px rgba(0, 0, 0, .07);
  max-width: 520px;
}

.cat-form h3 {
  font-size: 22px;
  font-weight: 900;
  color: var(--black);
  margin-bottom: 2px;
  font-family: var(--font)
}

.cat-form-sub {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 8px
}

.cat-form input,
.cat-form select,
.cat-form textarea {
  width: 100%;
  box-sizing: border-box;
}

input[type="date"] {
  appearance: none;
  -webkit-appearance: none;
  height: 48px;
}

.cat-submit.success {
  background: #2E7D52;
  color: white;
}

.form-message {
  margin-top: 12px;
  font-size: 14px;
  color: #2E7D52;
  font-weight: 500;
}

.form-message.error {
  color: #c62828;
}

@media(max-width:600px) {
  .cat-form {
    padding: 28px;
  }
}

.frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px
}

@media (max-width:768px) {

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

}

.fg {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.fg label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #9a8878
}

.fg input,
.fg select,
.fg textarea {
  background: #f9f6f1;
  border: 1.5px solid #e8e0d4;
  border-radius: 8px;
  color: var(--black);
  font-family: var(--font);
  font-size: 14px;
  padding: 13px 15px;
  transition: border-color var(--ease), background var(--ease)
}

.fg input::placeholder,
.fg textarea::placeholder {
  color: #c0b0a0
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  outline: none;
  border-color: var(--amber);
  background: #fff
}

.fg select option {
  background: #fff;
  color: var(--black)
}

.fg textarea {
  resize: vertical;
  min-height: 85px
}

.cat-submit {
  background: var(--black);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 15px 28px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .05em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: background var(--ease), transform var(--ease);
  font-family: var(--font)
}

.cat-submit:hover {
  background: #2e2520;
  transform: translateY(-2px)
}

/* BOOKING CALLOUT */
#booking-callout {
  background: var(--amber);
  padding: 64px 60px;
  text-align: center
}

.booking-inner {
  max-width: 680px;
  margin: 0 auto
}

.booking-inner h2 {
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 900;
  color: var(--black);
  margin-bottom: 14px;
  line-height: 1.2;
  font-family: var(--font)
}

.booking-inner p {
  font-size: 16px;
  color: rgba(13, 13, 13, .72);
  font-weight: 400;
  margin-bottom: 28px;
  line-height: 1.6
}

.btn-booking {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--black);
  color: #fff;
  padding: 16px 36px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .07em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background var(--ease), transform var(--ease);
  font-family: var(--font)
}

.btn-booking:hover {
  background: #2e2520;
  transform: translateY(-2px)
}

/* TESTIMONIALS */
#testimonials {
  padding: 30px 60px;
  background: var(--black);
  position: relative;
  overflow: visible
}

.tb {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(ellipse 80% 60% at 20% 50%, rgba(255, 150, 0, .07) 0%, transparent 70%), radial-gradient(ellipse 60% 80% at 80% 30%, rgba(255, 40, 100, .05) 0%, transparent 70%)
}

.lb {
  position: absolute;
  left: 0;
  right: 0;
  height: 5px;
  z-index: 1;
  background: repeating-linear-gradient(90deg, var(--amber) 0px, var(--amber) 20px, var(--red) 20px, var(--red) 40px, #2E7D52 40px, #2E7D52 60px, #fff 60px, #fff 80px);
  opacity: .2
}

.lb.t {
  top: 0
}

.lb.b {
  bottom: 0;
  height: 25px;
  opacity: .35;
  /* content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25); */
}

.lb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
}

.ctxt {
  position: absolute;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(245, 166, 35, .05);
  pointer-events: none;
  white-space: nowrap
}

.ctxt.c1 {
  top: 22%;
  left: -10px;
  transform: rotate(-90deg);
  transform-origin: left center
}

.ctxt.c2 {
  bottom: 22%;
  right: -50px;
  transform: rotate(90deg);
  transform-origin: right center
}

.ti-inner {
  position: relative;
  z-index: 2
}

.tgrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px
}

.tc {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(245, 166, 35, .14);
  border-radius: var(--rad-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--ease), transform .35s cubic-bezier(.34, 1.56, .64, 1)
}

.tc:hover {
  border-color: rgba(245, 166, 35, .38);
  transform: translateY(-5px)
}

.tc::before {
  content: '"';
  position: absolute;
  top: 10px;
  right: 18px;
  font-size: 80px;
  font-weight: 900;
  color: rgba(245, 166, 35, .07);
  line-height: 1;
  pointer-events: none;
  font-family: var(--font)
}

.tc-stars {
  color: var(--amber);
  font-size: 13px;
  letter-spacing: 3px;
  margin-bottom: 13px
}

.tc-text {
  color: rgba(255, 255, 255, .73);
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 20px
}

.tc-author {
  display: flex;
  align-items: center;
  gap: 12px
}

.tc-av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 13px;
  color: var(--black);
  flex-shrink: 0
}

.tc-name {
  font-weight: 700;
  font-size: 14px;
  color: #fff
}

.tc-loc {
  font-size: 11px;
  color: var(--muted);
  margin-top: 1px
}

.tstats {
  display: flex;
  justify-content: center;
  gap: 64px;
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, .06)
}

.ts-num {
  font-size: 46px;
  font-weight: 900;
  color: var(--amber);
  line-height: 1
}

.ts-lbl {
  font-size: 11px;
  color: rgba(255, 255, 255, .45);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-top: 4px
}

/* Add Review CTA */
.review-cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 48px
}

.btn-review {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--amber);
  color: var(--black);
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background var(--ease), transform var(--ease);
  font-family: var(--font)
}

.btn-review:hover {
  background: var(--amber-dark);
  transform: translateY(-2px)
}

/* Garage door opening cue */
.garage-door-cue {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 25px;
  /* same as .lb.b */
  display: flex;
  align-items: center;
  /* vertical center */
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #fff;
  z-index: 5;
  padding: 0;
  text-shadow:
    0 2px 6px rgba(0, 0, 0, .6),
    0 0 12px rgba(0, 0, 0, .5);
}

*/ .garage-door-cue::before,
.garage-door-cue::after {
  content: '';
  position: relative;
  height: 2px;
  width: 40%;
  background: var(--amber);
  top: 50%;
  transform: translateY(-50%);
}

.garage-door-cue::before {
  left: 0;
}

.garage-door-cue::after {
  right: 0;
}

.arrow {
  display: inline-block;
  transform: translateY(0);
  transition: transform .6s ease;
}

.arrow.right {
  animation-delay: 0.2s;
}

/* FOOTER */
/* footer {
  position: fixed !important;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  height: auto;
  overflow: visible;
} */
footer {
  position: relative;
  min-height: auto;
}

@media (min-width: 961px) {
  footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    min-height: 100vh;
  }
}

.site-wrapper {
  padding-bottom: 0;
  position: relative;
  z-index: 1;
}

@media (min-width: 961px) {
  .site-wrapper {
    padding-bottom: 100vh;
    position: relative;
    z-index: 1;
  }
}

@media (max-width: 960px) {
  .fin {
    justify-content: flex-start;
  }
}

.fbg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #1a0a05;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat
}

.fov {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(10, 5, 2, .04) 0%, rgba(10, 5, 2, .12) 30%, rgba(10, 5, 2, .72) 62%, rgba(10, 5, 2, .97) 100%)
}

.fhero {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 56px 0 0
}

.fin {
  position: relative;
  z-index: 2;
  padding: 0 60px clamp(110px, 15vw, 210px);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end
}

.ftop {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr !important;
  gap: 64px !important;
  margin-bottom: 28px;
  padding-top: 80px
}

.ftop>div:first-child {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.fbrand {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 18px
}

.fhex {
  width: 52px;
  height: 52px;
  background: var(--amber);
  clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 13px;
  color: var(--black);
  line-height: 1.1;
  text-align: center;
  font-family: var(--font)
}

.fwm {
  font-size: 19px;
  font-weight: 900;
  color: #fff;
  letter-spacing: .05em;
  font-family: var(--font)
}

.fwm span {
  color: var(--amber)
}

.ftag {
  color: rgba(255, 255, 255, .52);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 22px;
  max-width: 320px
}

.faddr {
  color: rgba(255, 255, 255, .62);
  font-size: 13px;
  line-height: 1.9
}

.faddr strong {
  color: rgba(255, 255, 255, .88);
  display: block;
  margin-bottom: 3px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .12em
}

.fcol h4 {
  color: var(--amber);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-family: var(--font)
}

.flinks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px
}

.flinks a {
  color: rgba(255, 255, 255, .55);
  text-decoration: none;
  font-size: 14px;
  transition: color var(--ease)
}

.flinks a:hover {
  color: var(--amber)
}

.forder-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px
}

.forder-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .65);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  transition: color var(--ease)
}

.forder-links a:hover {
  color: var(--amber)
}

.forder-links a::before {
  content: '↗';
  font-size: 11px;
  color: var(--amber)
}

.fdiv {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, .07);
  margin-bottom: 32px
}

.fbot {
  display: flex;
  align-items: center;
  justify-content: space-between
}

.fcopy {
  color: rgba(255, 255, 255, .35);
  font-size: 12px
}

.ig-btn {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  padding: 9px 18px;
  border-radius: 9px;
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  transition: transform var(--ease), box-shadow var(--ease);
  box-shadow: 0 4px 14px rgba(220, 39, 67, .3);
  font-family: var(--font)
}

.ig-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(220, 39, 67, .45)
}

.ig-icon {
  width: 27px;
  height: 27px;
  background: rgba(255, 255, 255, .15);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center
}

/* NAV DELIVERY ICONS */
.nav-dlv-group {
  display: flex;
  align-items: center;
  gap: 7px
}

.nav-dlv-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: .80;
  transition: opacity var(--ease), transform var(--ease);
  border-radius: 7px;
  overflow: hidden;
  line-height: 0
}

.nav-dlv-icon:hover {
  opacity: 1;
  transform: translateY(-1.5px)
}

.delivery-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
  display: block
}

/* HERO DIRECTIONS CARD */
.hero-directions {
  position: absolute;
  right: 64px;
  bottom: 160px;
  z-index: 3;
  background: rgba(13, 13, 13, .72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(245, 166, 35, .22);
  border-radius: var(--rad-md);
  padding: 22px 26px;
  min-width: 210px
}

.hdir-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 10px
}

.hdir-name {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 3px;
  font-family: var(--font)
}

.hdir-addr {
  font-size: 12px;
  color: rgba(255, 255, 255, .55);
  line-height: 1.55;
  margin-bottom: 16px
}

.hdir-btns {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.hdir-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-decoration: none;
  text-transform: uppercase;
  transition: all var(--ease);
  font-family: var(--font)
}

.hdir-btn.google {
  background: rgba(66, 133, 244, .18);
  color: rgba(255, 255, 255, .88);
  border: 1px solid rgba(66, 133, 244, .28)
}

.hdir-btn.google:hover {
  background: rgba(66, 133, 244, .35);
  border-color: rgba(66, 133, 244, .55)
}

.hdir-btn.apple {
  background: rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .72);
  border: 1px solid rgba(255, 255, 255, .12)
}

.hdir-btn.apple:hover {
  background: rgba(255, 255, 255, .14);
  border-color: rgba(255, 255, 255, .3)
}

@media(max-width:960px) {
  .hero-directions {
    display: none
  }
}

/* BACK TO TOP */
#btt {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  background: var(--amber);
  color: var(--black);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 4px 20px rgba(245, 166, 35, .4);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--ease), transform var(--ease), background var(--ease)
}

#btt.show {
  opacity: 1;
  transform: translateY(0)
}

#btt:hover {
  background: var(--amber-dark)
}

/* SITE WRAPPER */
/* .site-wrapper {
  position: relative;
  z-index: 1;
  padding-bottom: 100vh
} */

.footer-wordmark {
  position: absolute;
  bottom: -0.13em;
  left: 0;
  right: 0;
  margin-top: 40px;
  font-size: clamp(40px, 10vw, 200px);
  /*clamp(60px, 14vw, 100px);*/
  font-family: var(--font);
  font-weight: 900;
  padding: 0 10px;
  text-align: center;
  letter-spacing: .07em;
  line-height: 1;
  opacity: 0.7;
  max-width: 100%;
  box-sizing: border-box;
  pointer-events: none;
  white-space: nowrap;
  z-index: 3;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .70);
}

#footerBg {
  transition: filter 1.5s ease;
}

.footer-logo-img {
  height: 70px;
  width: auto;
  display: block;
}

@media(max-width:960px) {
  .hero-body {
    padding: 110px 28px 60px
  }

  .spad {
    padding: 80px 28px
  }

  .cat-grid {
    grid-template-columns: 1fr;
    padding: 80px 28px;
    gap: 48px
  }

  /* #testimonials {
    padding: 80px 28px
  } */

  .fin {
    padding: 0 28px clamp(80px, 20vw, 150px)
  }

  .ftop {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
    padding-top: 40px
  }

  .nav-links {
    display: none
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px
  }

  .hstat {
    border-right: none;
    padding: 0
  }

  .tstats {
    gap: 28px;
    flex-wrap: wrap
  }

  .footer-wordmark {
    bottom: -0.12em;
    font-size: clamp(40px, 10vw, 100px);
  }

  #booking-callout {
    padding: 48px 28px
  }
}