@font-face {
  font-family: "KCC Ganpan";
  src: url("/assets/et-fonts/KCC-Ganpan.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #050505;
  --ink: #ffffff;
  --muted: #c8c1c4;
  --pink: #ff3b94;
  --line: rgba(255, 255, 255, 0.16);
  --panel: #111111;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Poppins, Inter, Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(14px);
}

.nav {
  width: calc(100% - 32px);
  max-width: var(--max);
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav img {
  width: 158px;
  height: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 38px);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-links a {
  text-decoration: none;
  color: #f7f7f7;
}

.nav-links a[aria-current="page"] {
  color: var(--pink);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  transition: transform 180ms ease, opacity 180ms ease;
}

body.nav-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.nav-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.reserve {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 8px;
  background: var(--pink);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.hero {
  min-height: 100svh;
  padding: 128px 24px 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.36), #050505 94%),
    url("/assets/2025/08/hero-nav-img.jpg") center / cover no-repeat;
}

.hero-content {
  width: 100%;
  max-width: 760px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  text-align: center;
}

.hero-logo {
  width: 480px;
  max-width: 84vw;
  filter: drop-shadow(0 0 30px rgba(255, 59, 148, 0.34));
}

.hero-sub {
  width: 290px;
  max-width: 60vw;
}

.eyebrow {
  display: inline-flex;
  border: 2px solid #fff;
  border-radius: 8px;
  padding: 7px 14px;
  color: var(--pink);
  font-family: "KCC Ganpan", Poppins, sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 0 14px rgba(255, 59, 148, 0.7);
}

.hero h1,
.page-hero h1 {
  margin: 0;
  font-size: clamp(3.2rem, 10vw, 7.5rem);
  line-height: 0.95;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero p,
.page-hero p {
  margin: 0;
  color: #f2e8ed;
  font-size: clamp(1rem, 2vw, 1.28rem);
  max-width: 720px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.button-row.align-left {
  justify-content: flex-start;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 22px;
  border: 1px solid var(--pink);
  background: var(--pink);
  color: #fff;
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.button.secondary {
  background: transparent;
  color: #fff;
}

.section {
  padding: clamp(64px, 9vw, 116px) 24px;
}

.tight-section {
  padding-top: 0;
}

.section-inner {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
}

.section-heading {
  margin-bottom: 28px;
}

.section-heading h2 {
  max-width: 760px;
}

.section-heading p {
  max-width: 820px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.92fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1fr);
}

.section h2 {
  margin: 0 0 18px;
  font-size: clamp(2.3rem, 5vw, 4.8rem);
  line-height: 1.04;
  font-weight: 600;
}

.section p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.13rem);
}

.photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.wide-photo {
  aspect-ratio: 16 / 9;
}

.black-band {
  background: #000;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.page-hero {
  min-height: 58svh;
  padding: 132px 24px 58px;
  display: grid;
  place-items: center;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.54), #050505 96%),
    var(--hero-image) center / cover no-repeat;
}

.menu-grid,
.feature-grid,
.crew-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.menu-item,
.feature-card,
.crew-card,
.contact-card {
  min-height: 170px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.feature-card {
  color: inherit;
  text-decoration: none;
  transition: border-color 180ms ease, transform 180ms ease;
}

.feature-card:hover {
  border-color: rgba(255, 59, 148, 0.7);
  transform: translateY(-2px);
}

.feature-card span {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--pink);
  font-family: "KCC Ganpan", Poppins, sans-serif;
}

.menu-item h3,
.feature-card h3,
.crew-card h3,
.contact-card h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 1.22rem;
}

.menu-item p,
.feature-card p,
.crew-card p,
.contact-card p {
  margin: 0;
}

.menu-list {
  display: grid;
  gap: 14px;
}

.menu-list article {
  display: block;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.menu-list h3 {
  margin: 0 0 6px;
}

.menu-list p {
  margin: 0;
}

.menu-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.menu-section {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.menu-section-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.menu-section-title h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
}

.menu-section-title span {
  color: var(--pink);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu-entry {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.menu-entry:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.menu-entry h4 {
  margin: 0 0 4px;
  color: #fff;
  font-size: 1rem;
  line-height: 1.25;
}

.menu-entry p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.menu-entry strong {
  color: #fff;
  font-size: 1rem;
  white-space: nowrap;
}

.drink-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding-top: 12px;
}

.drink-list span {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  min-height: 40px;
  align-items: center;
  padding: 9px 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #f4f4f4;
  font-size: 0.9rem;
}

.drink-list strong {
  white-space: nowrap;
}

.source-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 22px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.source-note p {
  margin: 0;
  font-size: 0.92rem;
}

.quick-links a {
  color: var(--pink);
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
}

.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.quick-links a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.05);
}

.action-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.action-band h2 {
  margin-bottom: 10px;
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.action-band p {
  margin-bottom: 0;
}

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

.map {
  width: 100%;
  height: min(54svh, 460px);
  border: 0;
  border-radius: 8px;
  filter: grayscale(0.18) contrast(1.05);
}

.site-footer {
  padding: 58px 24px 34px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.86)),
    url("/assets/2025/11/f174305176197bc8fe04f25fdfc81805978931b2.jpg") center / cover no-repeat;
  text-align: center;
}

.site-footer img {
  width: 190px;
  margin-bottom: 28px;
}

.footer-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
  max-width: 760px;
  margin: 0 auto 26px;
  color: var(--muted);
}

.footer-details a {
  color: var(--pink);
  text-decoration: none;
}

.copyright {
  color: #8f8a8c;
  font-size: 0.86rem;
}

@media (max-width: 820px) {
  .nav {
    min-height: 70px;
  }

  .nav img {
    width: 124px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 78px;
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.96);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  body.nav-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 0 14px;
    border-radius: 8px;
  }

  .nav-links a:hover {
    background: rgba(255, 255, 255, 0.08);
  }

  .split,
  .split.reverse,
  .menu-grid,
  .menu-board,
  .feature-grid,
  .crew-grid,
  .contact-grid,
  .footer-details {
    grid-template-columns: 1fr;
  }

  .split.reverse > img {
    order: 2;
  }

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

  .action-band {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .action-band {
    display: grid;
  }

  .source-note {
    display: grid;
    align-items: start;
  }
}

@media (max-width: 540px) {
  .hero {
    padding-top: 104px;
  }

  .hero-content {
    left: 24px;
    right: 24px;
    width: auto;
    max-width: none;
  }

  .hero-logo {
    width: 260px;
    max-width: 72vw;
  }

  .button-row {
    width: 100%;
  }

  .button {
    width: 100%;
    max-width: 320px;
  }

  .button-row.align-left {
    justify-content: center;
  }

  .menu-section {
    padding: 18px;
  }

  .menu-section-title {
    display: grid;
    gap: 4px;
  }

  .menu-entry {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .drink-list {
    grid-template-columns: 1fr;
  }
}
