:root {
  --black: #080808;
  --black-2: #111;
  --paper: #f3ecdd;
  --cream: #fff8ea;
  --pink: #ff0a70;
  --lime: #b7ef2d;
  --muted: #b8b4ae;
  --ink: #111;
  --line: rgba(255,255,255,.15);
  --shell: 1440px;
  --pad: clamp(22px, 5vw, 82px);
  --display: "Barlow Condensed", sans-serif;
  --body: "Manrope", sans-serif;
}

/* RESET / BASE */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--black);
  color: var(--cream);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select { font: inherit; }

::selection {
  background: var(--pink);
  color: #fff;
}

.shell {
  width: min(100%, var(--shell));
  margin-inline: auto;
  padding-inline: var(--pad);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
  color: #000;
  font-weight: 800;
}

.skip-link:focus { transform: none; }

/* HERO */
.hero {
  position: relative;
  height: min(900px, 92svh);
  min-height: 680px;
  overflow: hidden;
  background: var(--black-2);
}

.hero__bg,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(0,0,0,.76) 0%, rgba(0,0,0,.48) 38%, rgba(0,0,0,.06) 76%),
    linear-gradient(0deg, rgba(0,0,0,.72), transparent 54%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: clamp(24px, 3vw, 34px);
  padding-bottom: clamp(28px, 3.5vw, 42px);
}

.hero__logo {
  width: clamp(235px, 29vw, 420px);
  mix-blend-mode: screen;
}

.hero__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(28px, 5vw, 72px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.gallery__head h2,
.location h2,
.intro__statement {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(4.6rem, 10vw, 9.5rem);
  line-height: .78;
  letter-spacing: -.045em;
}

.hero h1 span { color: var(--pink); }

.hero__intro {
  max-width: 600px;
  margin: 20px 0 0;
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  font-weight: 650;
  line-height: 1.5;
}

.hero__badge {
  width: clamp(116px, 13vw, 185px);
  flex: 0 0 auto;
  transform: rotate(6deg);
  filter: drop-shadow(0 18px 20px rgba(0,0,0,.4));
}

/* TICKER */
.ticker {
  overflow: hidden;
  border-block: 1px solid rgba(255,255,255,.12);
  background: var(--pink);
  color: #fff;
}

.ticker__track {
  display: flex;
  width: max-content;
  padding-block: 10px;
  animation: ticker 24s linear infinite;
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ticker__track span {
  white-space: nowrap;
  padding-inline: 26px;
}

.ticker__track b {
  color: var(--lime);
  padding-inline: 10px;
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

/* INTRO */
.intro {
  display: grid;
  grid-template-columns: minmax(180px, .68fr) minmax(0, 1.32fr);
  gap: clamp(34px, 7vw, 110px);
  align-items: start;
  padding-top: clamp(64px, 8vw, 112px);
  padding-bottom: clamp(64px, 8vw, 112px);
}

.intro__meta {
  position: sticky;
  top: 36px;
  margin: 0;
  color: var(--muted);
  font-size: .76rem;
  line-height: 1.7;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.intro__meta strong { color: var(--lime); }

.intro__statement {
  margin: 0;
  max-width: 980px;
  font-size: clamp(2.8rem, 5.4vw, 5.9rem);
  line-height: .95;
  letter-spacing: -.025em;
}

.intro__statement em {
  color: var(--pink);
  font-style: normal;
}

/* MENU */
.menu {
  position: relative;
  overflow: hidden;
  padding-block: clamp(70px, 8vw, 110px);
  background: var(--paper);
  color: var(--ink);
}

.menu::before {
  content: "99฿";
  position: absolute;
  top: -.1em;
  right: -.03em;
  color: rgba(255,10,112,.055);
  font-family: var(--display);
  font-size: clamp(12rem, 29vw, 29rem);
  font-weight: 800;
  line-height: 1;
  pointer-events: none;
}

.menu__inner {
  position: relative;
  z-index: 1;
}

.section-heading,
.gallery__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 34px;
  margin-bottom: clamp(40px, 5vw, 60px);
}

.section-kicker { color: var(--pink); }

.section-heading h2,
.gallery__head h2,
.location h2 {
  margin: 0;
  font-size: clamp(4rem, 8.4vw, 7.7rem);
  line-height: .84;
  letter-spacing: -.04em;
}

.section-copy,
.gallery__head > p {
  max-width: 320px;
  margin: 0;
  color: #4e4941;
  line-height: 1.6;
}

.menu__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, .88fr);
  gap: clamp(38px, 6vw, 90px);
  align-items: start;
}

.menu__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 42px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(0,0,0,.14);
  font-family: var(--display);
  font-size: clamp(1.2rem, 1.7vw, 1.85rem);
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
}

.menu-item small {
  align-self: center;
  color: #777;
  font: 700 .68rem/1 var(--body);
  letter-spacing: .05em;
}

.menu__visual {
  position: relative;
  padding-top: 28px;
}

.menu__visual > .glightbox {
  display: block;
  width: min(88%, 520px);
  margin-left: auto;
  transform: rotate(2deg);
  box-shadow: 0 26px 50px rgba(0,0,0,.16);
  transition: transform .3s ease;
}

.menu__visual > .glightbox:hover {
  transform: rotate(.8deg) translateY(-5px);
}

.menu__note {
  position: absolute;
  z-index: 2;
  top: 0;
  left: -2%;
  padding: 12px 15px;
  transform: rotate(-6deg);
  background: var(--pink);
  color: #fff;
  box-shadow: 0 10px 22px rgba(0,0,0,.16);
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.2vw, 2.3rem);
  font-weight: 800;
  line-height: .95;
  text-transform: uppercase;
}

.menu__secondary {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 18px;
}

.menu__secondary a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border: 1px solid rgba(0,0,0,.18);
  border-radius: 999px;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: .25s ease;
}

.menu__secondary a:hover {
  background: var(--ink);
  color: #fff;
}

.menu__pricebar {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: clamp(48px, 6vw, 66px);
  padding-block: 16px;
  border-block: 2px solid #111;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.5vw, 2.6rem);
  font-weight: 700;
  text-transform: uppercase;
}

.menu__pricebar strong {
  color: var(--pink);
  font-size: 1.3em;
}

/* GALLERY */
.gallery {
  background: var(--black);
}

.gallery__head {
  padding-top: 71px;
  margin-bottom: clamp(30px, 4vw, 44px);
}

.gallery__head > p {
  color: var(--muted);
}

.photo-flow {
  width: min(1980px, calc(100% - 32px));
  margin-inline: auto;
  padding-bottom: 31px;
  columns: 5;
  column-gap: 4px;
}

@media (max-width: 900px) {
  .photo-flow {
    columns: 2;
  }
}

.photo img {
  display: block;
  width: 100%;
  height: auto;
  transition:
    transform .45s cubic-bezier(.2,.7,.2,1),
    opacity .3s ease;
}

.photo:hover img {
  transform: scale(1.018);
  opacity: .94;
}

/* LOCATION */
.location {
  padding-block: clamp(72px, 8vw, 110px);
  background: var(--paper);
  color: var(--ink);
}

.location__inner {
  display: grid;
  grid-template-columns: minmax(260px, .78fr) minmax(0, 1.22fr);
  gap: clamp(38px, 7vw, 96px);
  align-items: stretch;
}

.location__copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 460px;
}

.location h2 span { color: var(--pink); }

.location__address {
  margin: 28px 0 0;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-weight: 800;
  line-height: 1.25;
}

.location__address small {
  display: block;
  margin-top: 12px;
  color: #777;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  padding: 14px 20px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: transform .25s ease, background .25s ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--pink);
}

.map-wrap {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  background: #ddd;
}

.map-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(.8) contrast(.98);
}

.map-wrap > img {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 122px;
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(0,0,0,.22);
}

/* FOOTER / UTILITIES */
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 28px;
  padding-bottom: 28px;
  color: #aaa;
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.footer strong { color: #fff; }
.footer span:last-child { color: var(--pink); }

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 100;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--pink);
  color: #fff;
  box-shadow: 0 14px 35px rgba(0,0,0,.32);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: .25s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.back-to-top:hover {
  transform: translateY(-3px);
  background: #fff;
  color: #111;
}

/* GLIGHTBOX */
.glightbox-clean .gslide-description {
  background: #0b0b0b;
}

.glightbox-clean .gdesc-inner {
  padding: 14px 18px;
}

.glightbox-clean .gslide-title {
  color: #fff;
  font-family: var(--body);
  font-size: .9rem;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .photo-flow { columns: 3; }

  .menu__layout {
    grid-template-columns: 1fr 1fr;
    gap: 42px;
  }
}

@media (max-width: 900px) {
  .hero {
    height: 84svh;
    min-height: 640px;
  }

  .hero__shade {
    background:
      linear-gradient(0deg, rgba(0,0,0,.84), rgba(0,0,0,.12) 62%),
      linear-gradient(90deg, rgba(0,0,0,.42), transparent);
  }

  .hero__bottom { display: block; }

  .hero__badge {
    position: absolute;
    right: 22px;
    bottom: 146px;
    width: 118px;
  }

  .intro {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .intro__meta { position: static; }

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

  .menu__visual { margin-top: 8px; }

  .menu__visual > .glightbox {
    width: min(78%, 500px);
  }

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

  .location__copy { min-height: 320px; }

  .map-wrap { min-height: 390px; }
}

@media (max-width: 720px) {
  :root { --pad: 20px; }

  .hero { min-height: 600px; }

  .hero__inner {
    padding-top: 22px;
    padding-bottom: 24px;
  }

  .hero__bg { object-position: 56% center; }

  .hero__logo { width: 230px; }

  .hero h1 { font-size: 4rem; }

  .hero__intro {
    max-width: 84%;
    font-size: .93rem;
  }

  .hero__badge {
    right: 16px;
    bottom: 118px;
    width: 94px;
  }

  .intro {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .intro__statement { font-size: 2.8rem; }

  .section-heading,
  .gallery__head {
    display: block;
  }

  .section-copy,
  .gallery__head > p {
    margin-top: 14px;
  }

  .menu { padding-block: 62px; }

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

  .menu-item { font-size: 1.3rem; }

  .menu__visual > .glightbox { width: 90%; }

  .menu__note {
    left: 0;
    font-size: 1.4rem;
  }

  .menu__secondary {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .menu__pricebar {
    display: block;
    margin-top: 42px;
    font-size: 1.4rem;
  }

  .menu__pricebar span { display: block; }

  .menu__pricebar span + span { margin-top: 8px; }

  .gallery__head {
    padding-top: 64px;
    margin-bottom: 28px;
  }

  .photo-flow {
    width: calc(100% - 16px);
    columns: 2;
    column-gap: 6px;
    padding-bottom: 68px;
  }

  .photo { margin-bottom: 6px; }

  .location { padding-block: 64px; }

  .location__copy { min-height: 290px; }

  .map-wrap { min-height: 340px; }

  .map-wrap > img {
    right: 12px;
    bottom: 12px;
    width: 96px;
  }

  .footer {
    display: block;
    padding-top: 24px;
    padding-bottom: 24px;
    line-height: 1.9;
  }

  .footer span { display: block; }

  .back-to-top {
    right: 14px;
    bottom: 14px;
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 430px) {
  .photo-flow {
    width: calc(100% - 12px);
    column-gap: 5px;
  }

  .photo { margin-bottom: 5px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .ticker__track { animation: none; }

  .photo img,
  .button,
  .back-to-top,
  .menu__visual > .glightbox {
    transition: none;
  }
}


