:root {
  --dk: #130900;
  --brn: #3d1f0a;
  --mid: #6b3a1f;
  --gold: #c8921e;
  --glit: #e8b96a;
  --pale: #f5e6c4;
  --cream: #f8f3eb;
  --cdark: #eddece;
  --white: #fff;
  --txt: #1a0d05;
  --mut: #7a5c44;
  --f1: 'Playfair Display', Georgia, serif;
  --f2: 'DM Sans', sans-serif;
  --rad: 16px;
  --spd: cubic-bezier(.25,.46,.45,.94);
  --tr: .42s cubic-bezier(.25,.46,.45,.94);
}

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

html { scroll-behavior: smooth }

body {
  font-family: var(--f2);
  color: var(--txt);
  background: var(--cream);
  overflow-x: hidden;
  cursor: none;
}

img { max-width: 100%; display: block }
a { text-decoration: none; color: inherit }
ul { list-style: none }
em { font-style: italic; color: var(--glit) }
button { cursor: none; font-family: var(--f2) }

.cursor {
  position: fixed;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gold);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .2s, height .2s, background .2s;
}
.cursor-ring {
  position: fixed;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  opacity: .55;
  transition: transform .15s var(--spd), opacity .2s, width .25s, height .25s;
}
.cursor.hovered { width: 18px; height: 18px; background: var(--glit) }
.cursor-ring.hovered { width: 54px; height: 54px; opacity: .25 }

.preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--dk);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  transition: opacity .7s ease, visibility .7s ease;
}
.preloader.out { opacity: 0; visibility: hidden }
.preloader__cup { font-size: 52px; animation: cupBounce 1.2s ease infinite }

@keyframes cupBounce {
  0%, 100% { transform: translateY(0) }
  50% { transform: translateY(-14px) }
}

.preloader__bar {
  width: 180px; height: 3px;
  background: rgba(255,255,255,.12);
  border-radius: 4px;
  overflow: hidden;
}
.preloader__fill {
  height: 100%;
  background: var(--gold);
  border-radius: 4px;
  animation: loadBar 1.8s var(--spd) forwards;
}

@keyframes loadBar { from { width: 0 } to { width: 100% } }

.preloader__label {
  font-family: var(--f1);
  font-style: italic;
  font-size: 22px;
  color: var(--glit);
  letter-spacing: 4px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
  border: none;
  transition: var(--tr);
  letter-spacing: .3px;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.15);
  transform: translateX(-110%) skewX(-15deg);
  transition: transform .5s var(--spd);
}
.btn:hover::before { transform: translateX(110%) skewX(-15deg) }

.btn--gold { background: var(--gold); color: var(--white) }
.btn--gold:hover {
  background: var(--brn);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(200,146,30,.45);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.45);
}
.btn--outline:hover { background: rgba(255,255,255,.1); border-color: var(--white) }
.btn--sm { padding: 9px 20px; font-size: 13px }
.btn--full { width: 100%; justify-content: center }

.section-title {
  font-family: var(--f1);
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--dk);
}
.section-title--light { color: var(--white) }

.eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.eyebrow--light { color: var(--glit) }

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity .85s var(--spd), transform .85s var(--spd);
  transition-delay: var(--d, 0s);
}
.reveal--right { transform: translateX(60px) }
.reveal--up { transform: translateY(-40px) scale(.92) }
.reveal.vis { opacity: 1; transform: none }

.mob-overlay {
  position: fixed;
  inset: 0;
  z-index: 900;
  background: var(--dk);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  transform: translateX(-100%);
  transition: transform .55s cubic-bezier(.77,0,.175,1);
}
.mob-overlay.open { transform: none }

.mob-overlay__close {
  position: absolute;
  top: 28px; right: 28px;
  background: none; border: none;
  color: var(--white);
  font-size: 28px;
  opacity: .6;
  transition: opacity .2s;
}
.mob-overlay__close:hover { opacity: 1 }

.mob-overlay__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.mob-link {
  font-family: var(--f1);
  font-style: italic;
  font-size: 38px;
  color: var(--white);
  transition: color .2s, letter-spacing .3s;
}
.mob-link:hover { color: var(--glit); letter-spacing: 2px }
.mob-overlay__phone { color: var(--mut); font-size: 15px; letter-spacing: 2px }

.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 24px 48px;
  transition: background .4s, padding .35s, box-shadow .4s;
}
.navbar.stuck {
  background: rgba(19,9,0,.93);
  padding: 14px 48px;
  box-shadow: 0 4px 32px rgba(0,0,0,.3);
  backdrop-filter: blur(16px);
}

.navbar__logo {
  font-family: var(--f1);
  font-style: italic;
  font-size: 26px;
  color: var(--white);
  font-weight: 700;
  margin-right: auto;
  letter-spacing: 1px;
}
.navbar__links { display: flex; gap: 32px }

.nav-link {
  color: rgba(255,255,255,.7);
  font-size: 15px;
  position: relative;
  padding-bottom: 3px;
  transition: color .2s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--glit);
  transition: width .35s var(--spd);
}
.nav-link:hover { color: var(--white) }
.nav-link:hover::after { width: 100% }

.navbar__cta {
  padding: 10px 22px;
  border-radius: 50px;
  background: var(--gold);
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  transition: var(--tr);
}
.navbar__cta:hover { background: var(--glit); color: var(--dk) }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none;
  padding: 4px;
}
.burger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--tr);
}
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px) }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0) }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px) }

.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  padding: 0 80px 100px;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0 }

.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.07);
  transition: opacity 1.3s var(--spd), transform 9s linear;
}
.hero__slide.active { opacity: 1; transform: scale(1) }

.hero__vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(125deg, rgba(19,9,0,.85) 30%, rgba(19,9,0,.38) 100%);
}
.hero__content { position: relative; z-index: 2; max-width: 700px }

.hero__eye {
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--glit);
  margin-bottom: 24px;
}
.hero__title {
  font-family: var(--f1);
  font-size: clamp(44px, 7vw, 82px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.06;
  margin-bottom: 24px;
}

.hw {
  display: block;
  opacity: 0;
  transform: translateY(44px);
  animation: wordUp .9s var(--spd) both;
}
.hw:nth-child(1) { animation-delay: .1s }
.hw:nth-child(2) { animation-delay: .25s }
.hw:nth-child(3) { animation-delay: .4s }

@keyframes wordUp { to { opacity: 1; transform: none } }

.hero__sub {
  color: rgba(255,255,255,.6);
  font-size: 18px;
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 44px;
  animation: wordUp .9s .55s var(--spd) both;
}
.hero__btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: wordUp .9s .7s var(--spd) both;
}

.hero__dots {
  position: absolute;
  right: 40px; top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hdot {
  width: 8px; height: 8px;
  border-radius: 50%; border: none;
  background: rgba(255,255,255,.28);
  transition: background .3s, transform .3s;
}
.hdot.active { background: var(--gold); transform: scale(1.6) }

.scroll-hint {
  position: absolute;
  bottom: 36px; left: 80px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.4);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.scroll-hint__line {
  width: 1.5px; height: 56px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2.2s ease infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top }
  50% { transform: scaleY(1); transform-origin: top }
  51% { transform-origin: bottom }
  100% { transform: scaleY(0); transform-origin: bottom }
}

.ticker {
  background: var(--gold);
  overflow: hidden;
  padding: 13px 0;
  white-space: nowrap;
}
.ticker__inner {
  display: inline-flex;
  gap: 28px;
  animation: tickerMove 22s linear infinite;
}
.ticker__inner span { font-size: 14px; font-weight: 500; color: var(--white); letter-spacing: 1px }
.sep { opacity: .6 }

@keyframes tickerMove { from { transform: translateX(0) } to { transform: translateX(-50%) } }

.why { padding: 110px 0; background: var(--cream) }
.why .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}
.why__desc {
  color: var(--mut);
  font-size: 16px;
  line-height: 1.8;
  margin: 20px 0 40px;
  max-width: 420px;
}
.why__list { display: flex; flex-direction: column; gap: 20px }

.why__item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 22px;
  border-radius: var(--rad);
  background: var(--white);
  border: 1px solid var(--cdark);
  transition: transform .32s, box-shadow .32s;
}
.why__item:hover { transform: translateX(8px); box-shadow: 0 8px 36px rgba(107,58,31,.1) }

.why__icon {
  font-size: 28px;
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why__item strong { display: block; font-size: 16px; margin-bottom: 4px; color: var(--dk) }
.why__item p { font-size: 14px; color: var(--mut); line-height: 1.6 }

.why__right { position: relative; height: 540px }

.why__img-big {
  position: absolute;
  right: 0;
  width: 80%; height: 100%;
  border-radius: var(--rad);
  overflow: hidden;
}
.why__img-big img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 7s ease;
}
.why__img-big:hover img { transform: scale(1.06) }

.why__img-sm {
  position: absolute;
  left: 0; bottom: 44px;
  width: 52%; height: 200px;
  border-radius: var(--rad);
  overflow: hidden;
  border: 5px solid var(--cream);
  box-shadow: 0 16px 56px rgba(0,0,0,.18);
}
.why__img-sm img { width: 100%; height: 100%; object-fit: cover }

.why__badge {
  position: absolute;
  top: 40px; left: 0;
  background: var(--gold);
  color: var(--white);
  border-radius: var(--rad);
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  box-shadow: 0 12px 40px rgba(200,146,30,.4);
  animation: badgePop .8s 1.1s var(--spd) both;
}
@keyframes badgePop {
  from { opacity: 0; transform: scale(.55) rotate(-12deg) }
  to { opacity: 1; transform: none }
}
.why__badge b { font-family: var(--f1); font-size: 38px; font-weight: 700; line-height: 1 }
.why__badge span { font-size: 12px; opacity: .9; letter-spacing: 1px }

.float-cup {
  position: absolute;
  right: -10px; top: 50%;
  font-size: 42px;
  opacity: .12;
  animation: floatCup 5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes floatCup {
  0%, 100% { transform: translateY(0) rotate(-5deg) }
  50% { transform: translateY(-22px) rotate(5deg) }
}

.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--dk);
  padding: 48px 32px;
}
.stat {
  text-align: center;
  padding: 20px;
  border-right: 1px solid rgba(255,255,255,.08);
  transition: transform .3s;
}
.stat:last-child { border-right: none }
.stat:hover { transform: translateY(-4px) }

.sn {
  display: block;
  font-family: var(--f1);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat span { color: rgba(255,255,255,.5); font-size: 14px; letter-spacing: 1px }

.gallery { padding: 100px 0; background: var(--dk) }
.gallery__head { text-align: center; margin-bottom: 56px; padding: 0 32px }

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 280px;
  gap: 10px;
  padding: 0 32px;
}

.g-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: none;
  background: var(--brn);
}
.g-item--tall { grid-row: span 2 }
.g-item--wide { grid-column: span 2 }

.g-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .75s var(--spd);
}
.g-item:hover img { transform: scale(1.09) }

.g-over {
  position: absolute;
  inset: 0;
  background: rgba(19,9,0,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  opacity: 0;
  transform: scale(.8);
  transition: opacity .35s, transform .35s var(--spd);
}
.g-item:hover .g-over { opacity: 1; transform: scale(1) }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 8000;
  background: rgba(0,0,0,.9);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}
.lightbox.open { opacity: 1; visibility: visible }

.lb-close {
  position: absolute;
  top: 24px; right: 32px;
  background: none; border: none;
  color: var(--white);
  font-size: 34px;
  opacity: .6;
  transition: opacity .2s, transform .2s;
}
.lb-close:hover { opacity: 1; transform: rotate(90deg) }

.lb-arr {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: var(--white);
  font-size: 44px;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .2s;
}
.lb-arr:hover { background: var(--gold) }

.lb-wrap { max-width: 80vw; max-height: 85vh }
.lb-wrap img { max-width: 100%; max-height: 85vh; border-radius: var(--rad); object-fit: contain }
.lb-counter { position: absolute; bottom: 28px; color: rgba(255,255,255,.45); font-size: 13px; letter-spacing: 2px }

.menu-sec { padding: 100px 0; background: var(--cdark) }
.menu-sec__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 24px;
}

.tabs {
  display: flex;
  gap: 8px;
  background: var(--white);
  padding: 6px;
  border-radius: 50px;
}
.tab {
  padding: 10px 24px;
  border-radius: 50px; border: none;
  background: none;
  font-size: 14px; font-weight: 500;
  color: var(--mut);
  transition: var(--tr);
}
.tab.is-active { background: var(--gold); color: var(--white) }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.m-card {
  background: var(--white);
  border-radius: var(--rad);
  overflow: hidden;
  transition: transform .38s, box-shadow .38s;
  animation: cardPop .45s var(--spd) both;
}
@keyframes cardPop {
  from { opacity: 0; transform: scale(.93) translateY(20px) }
  to { opacity: 1; transform: none }
}
.m-card:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: 0 28px 72px rgba(107,58,31,.16);
}

.m-card__img { position: relative; height: 220px; overflow: hidden }
.m-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .65s var(--spd);
}
.m-card:hover .m-card__img img { transform: scale(1.08) }

.m-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--gold);
  color: var(--white);
  font-size: 11px; font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 1px;
}
.m-tag--new { background: #27ae60 }
.m-tag--pick { background: var(--brn) }

.m-body { padding: 24px }
.m-body h3 { font-family: var(--f1); font-size: 20px; font-weight: 700; color: var(--dk); margin-bottom: 6px }
.m-body p { color: var(--mut); font-size: 14px; margin-bottom: 20px }
.m-foot { display: flex; justify-content: space-between; align-items: center }
.mprice { font-family: var(--f1); font-size: 22px; font-weight: 700; color: var(--mid) }

.toast {
  position: fixed;
  bottom: 32px; left: 50%;
  z-index: 7000;
  transform: translateX(-50%) translateY(80px);
  background: var(--dk);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 14px; font-weight: 500;
  opacity: 0;
  transition: transform .4s var(--spd), opacity .4s;
  pointer-events: none;
  white-space: nowrap;
}
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1 }

.blends { position: relative; padding: 100px 0; overflow: hidden }
.blends__bg {
  position: absolute;
  inset: 0;
  background: url(images/coffee2.jpg) center/cover;
}
.blends__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,4,0,.86);
}
.blends .container { position: relative; z-index: 1 }
.blends .section-title { margin-bottom: 48px }

.blends__row {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 6px;
}
.blends__row::-webkit-scrollbar { display: none }

.b-card {
  flex: 0 0 270px;
  scroll-snap-align: start;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--rad);
  padding: 36px 28px;
  backdrop-filter: blur(16px);
  background: rgba(255,255,255,.05);
  transition: background .35s, transform .35s, border-color .35s;
}
.b-card:hover {
  background: rgba(255,255,255,.1);
  transform: translateY(-7px);
  border-color: rgba(200,146,30,.5);
}

.b-num {
  font-family: var(--f1);
  font-size: 52px; font-weight: 700;
  color: var(--gold);
  opacity: .45;
  line-height: 1;
  display: block;
  margin-bottom: 10px;
}
.b-card h3 { font-family: var(--f1); font-size: 26px; color: var(--white); font-weight: 700; margin-bottom: 8px }
.b-card p { color: rgba(255,255,255,.5); font-size: 14px; margin-bottom: 22px }

.b-bar {
  height: 4px;
  background: rgba(255,255,255,.1);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 8px;
}
.b-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--glit));
  border-radius: 2px;
  width: 0;
  transition: width 1.5s var(--spd);
}
.b-card small { font-size: 12px; color: rgba(255,255,255,.3); letter-spacing: 1px }

.blends__arrows { display: flex; gap: 12px; margin-top: 32px; justify-content: flex-end }
.arr-btn {
  width: 50px; height: 50px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.22);
  background: none;
  color: var(--white);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--tr);
}
.arr-btn:hover { background: var(--gold); border-color: var(--gold); transform: scale(1.1) }

.contact { padding: 100px 0; background: var(--cream) }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact__left .section-title { margin-bottom: 36px }

.contact__info { display: flex; flex-direction: column; gap: 15px; margin-bottom: 40px }
.contact__info li {
  display: flex;
  gap: 14px;
  align-items: center;
  font-size: 16px;
  color: var(--mut);
  transition: transform .25s;
}
.contact__info li:hover { transform: translateX(6px) }
.contact__info span { font-size: 22px; flex-shrink: 0 }

.contact__socials { display: flex; gap: 12px }
.soc-link {
  padding: 10px 22px;
  border-radius: 50px;
  border: 1.5px solid var(--cdark);
  font-size: 14px;
  color: var(--mut);
  transition: var(--tr);
}
.soc-link:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px) }

.contact__form { display: flex; flex-direction: column; gap: 28px }
.f-group { position: relative }

.f-group input,
.f-group textarea {
  width: 100%;
  padding: 22px 0 10px;
  border: none;
  background: transparent;
  border-bottom: 2px solid var(--cdark);
  font-family: var(--f2);
  font-size: 16px;
  color: var(--txt);
  outline: none;
  resize: none;
  transition: border-color .25s;
}
.f-group input:focus,
.f-group textarea:focus { border-color: var(--gold) }

.f-line {
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width .4s var(--spd);
}
.f-group input:focus ~ .f-line,
.f-group textarea:focus ~ .f-line { width: 100% }

.f-group label {
  position: absolute;
  left: 0; top: 16px;
  font-size: 15px;
  color: var(--mut);
  pointer-events: none;
  transition: .2s ease;
}
.f-group input:focus + label,
.f-group input:not(:placeholder-shown) + label,
.f-group textarea:focus + label,
.f-group textarea:not(:placeholder-shown) + label {
  top: 0;
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.f-success {
  display: none;
  color: var(--gold);
  font-size: 15px;
  text-align: center;
  padding: 16px;
  border-radius: var(--rad);
  background: rgba(200,146,30,.08);
}
.f-success.vis { display: block; animation: wordUp .5s ease both }

.footer { background: var(--dk); padding: 56px 0 }
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.footer__logo { font-family: var(--f1); font-style: italic; font-size: 28px; color: var(--white); margin-bottom: 6px }
.footer__tag { color: rgba(255,255,255,.35); font-size: 13px }
.footer__nav { display: flex; gap: 28px; flex-wrap: wrap }
.footer__nav a { color: rgba(255,255,255,.45); font-size: 14px; transition: color .2s }
.footer__nav a:hover { color: var(--glit) }
.footer__copy { color: rgba(255,255,255,.2); font-size: 13px }

@media (max-width: 1024px) {
  .navbar { padding: 20px 28px }
  .navbar.stuck { padding: 12px 28px }
  .navbar__links, .navbar__cta { display: none }
  .burger { display: flex }
  body { cursor: auto }
  .cursor, .cursor-ring { display: none }
  .hero { padding: 0 32px 80px }
  .scroll-hint { left: 32px }
  .why .container { grid-template-columns: 1fr; gap: 56px }
  .why__right { height: 380px }
  .gallery__grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto }
  .g-item--tall { grid-row: span 1 }
  .stats-bar { grid-template-columns: repeat(2, 1fr) }
  .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08) }
  .menu-grid { grid-template-columns: 1fr 1fr }
  .contact__grid { grid-template-columns: 1fr; gap: 48px }
}

@media (max-width: 640px) {
  .hero { padding: 0 20px 72px }
  .gallery__grid { grid-template-columns: 1fr; padding: 0 20px }
  .g-item--wide { grid-column: span 1 }
  .menu-grid { grid-template-columns: 1fr }
  .stats-bar { grid-template-columns: 1fr 1fr }
  .footer__inner { flex-direction: column; text-align: center }
  .footer__nav { justify-content: center }
  .hero__btns { flex-direction: column; align-items: flex-start }
}
