:root {
  --black: #080706;
  --ink: #16110d;
  --paper: #fffaf1;
  --muted: #c8b9a3;
  --gold: #d49a45;
  --amber: #f2c078;
  --coffee: #4a2b1e;
  --line: rgba(255, 250, 241, 0.16);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--paper);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  width: 100%;
  padding: 18px clamp(18px, 4vw, 54px);
  background: linear-gradient(180deg, rgba(8, 7, 6, 0.92), rgba(8, 7, 6, 0.42));
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--paper);
  object-fit: contain;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 26px;
  color: rgba(255, 250, 241, 0.78);
  font-size: 0.92rem;
  font-weight: 700;
}

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

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid rgba(255, 250, 241, 0.24);
  border-radius: 6px;
  font-weight: 800;
  white-space: nowrap;
}

.header-cta,
.btn-primary {
  background: var(--paper);
  color: var(--black);
}

.btn-secondary {
  background: rgba(255, 250, 241, 0.08);
  color: var(--paper);
}

.btn:hover,
.header-cta:hover {
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 250, 241, 0.08);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--paper);
}

.hero {
  position: relative;
  display: grid;
  min-height: 96vh;
  overflow: hidden;
  padding: 160px clamp(18px, 6vw, 84px) 54px;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  object-fit: cover;
  object-position: center 30%;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 7, 6, 0.94) 0%, rgba(8, 7, 6, 0.68) 42%, rgba(8, 7, 6, 0.24) 100%),
    linear-gradient(0deg, rgba(8, 7, 6, 0.96) 0%, rgba(8, 7, 6, 0.05) 52%);
}

.hero-content {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 720px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--amber);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 0.96;
  letter-spacing: 0;
}

h1,
h2 {
  font-family: "Bebas Neue", Impact, sans-serif;
}

h1 {
  max-width: 780px;
  font-size: clamp(5.3rem, 15vw, 12.5rem);
}

h2 {
  max-width: 780px;
  font-size: clamp(3rem, 7vw, 6.6rem);
}

h3 {
  font-size: 1.5rem;
}

.tagline {
  margin: 10px 0 12px;
  color: var(--amber);
  font-size: clamp(1.35rem, 2.8vw, 2.35rem);
  font-weight: 900;
  line-height: 1.15;
}

.hero-copy {
  max-width: 560px;
  margin: 0 0 28px;
  color: rgba(255, 250, 241, 0.82);
  font-size: 1.08rem;
}

.hero-actions,
.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-card {
  position: absolute;
  right: clamp(18px, 6vw, 84px);
  bottom: 42px;
  z-index: 2;
  width: min(320px, calc(100% - 36px));
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(8, 7, 6, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-card span,
.location-card span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-card strong,
.location-card strong {
  display: block;
  margin: 6px 0;
  font-size: 1.55rem;
}

.hero-card small,
.location-card p {
  color: rgba(255, 250, 241, 0.72);
}

.section-pad {
  padding: clamp(72px, 9vw, 132px) clamp(18px, 6vw, 84px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(300px, 1.05fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: end;
  background: var(--paper);
  color: var(--black);
}

.intro .section-kicker,
.menu-section .section-kicker,
.location .section-kicker {
  color: var(--coffee);
}

.intro p:last-child {
  margin: 0;
  color: #4d4238;
  font-size: clamp(1.02rem, 1.7vw, 1.35rem);
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-strip div {
  min-height: 128px;
  padding: 26px;
  border-right: 1px solid var(--line);
  background: #11100e;
}

.feature-strip div:last-child {
  border-right: 0;
}

.feature-strip strong {
  display: block;
  color: var(--amber);
  font-size: 1.2rem;
}

.feature-strip span {
  color: rgba(255, 250, 241, 0.66);
}

.menu-section {
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.96), rgba(255, 250, 241, 0.9)),
    var(--paper);
  color: var(--black);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(280px, 0.8fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 34px;
}

.section-head p:last-child {
  color: rgba(255, 250, 241, 0.72);
}

.menu-tabs {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  padding: 6px;
  border: 1px solid rgba(8, 7, 6, 0.12);
  border-radius: 8px;
  background: rgba(8, 7, 6, 0.05);
}

.menu-tab {
  min-height: 40px;
  padding: 0 18px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--black);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.menu-tab.active {
  background: var(--black);
  color: var(--paper);
}

.menu-grid {
  display: grid;
}

.menu-card {
  display: none;
  max-width: 940px;
  border: 1px solid rgba(8, 7, 6, 0.14);
  border-radius: 8px;
  overflow: hidden;
  background: #fffdf8;
  box-shadow: 0 22px 50px rgba(74, 43, 30, 0.12);
}

.menu-card.active {
  display: block;
}

.menu-title {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 22px;
  background: var(--black);
  color: var(--paper);
}

.menu-title span {
  color: var(--amber);
  font-weight: 900;
}

.menu-row {
  display: grid;
  grid-template-columns: 1fr 86px 86px;
  gap: 12px;
  padding: 14px 22px;
  border-bottom: 1px solid rgba(8, 7, 6, 0.1);
  align-items: center;
}

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

.menu-row span:not(:first-child) {
  font-weight: 900;
  text-align: center;
}

.menu-row.head {
  background: rgba(212, 154, 69, 0.14);
  color: var(--coffee);
  font-weight: 900;
}

.matcha-table .menu-row {
  grid-template-columns: 1fr 120px;
}

.signature,
.setup,
.location {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(300px, 1.1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.signature {
  background: #12100e;
}

.signature img,
.setup img {
  width: 100%;
  max-height: 680px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.drink-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.drink-list span {
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 250, 241, 0.06);
  color: var(--amber);
  font-weight: 800;
}

.setup {
  background: var(--paper);
  color: var(--black);
}

.setup p:last-child {
  color: #4d4238;
  font-size: 1.08rem;
}

.vibe {
  background: #0d0b09;
}

.gallery {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 14px;
}

.gallery img {
  width: 100%;
  height: 360px;
  border-radius: 8px;
  object-fit: cover;
}

.gallery img:nth-child(2) {
  height: 520px;
}

.gallery img:nth-child(3),
.gallery img:nth-child(4) {
  margin-top: -160px;
}

.location {
  background: var(--paper);
  color: var(--black);
}

.location p {
  color: #4d4238;
  font-size: 1.08rem;
}

.location-card {
  padding: clamp(24px, 4vw, 40px);
  border-radius: 8px;
  background: var(--black);
  color: var(--paper);
  box-shadow: var(--shadow);
}

.final-cta {
  position: relative;
  display: grid;
  min-height: 560px;
  overflow: hidden;
  padding: clamp(72px, 10vw, 132px) clamp(18px, 6vw, 84px);
  align-items: end;
}

.final-cta img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.final-cta::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(8, 7, 6, 0.92), rgba(8, 7, 6, 0.32));
}

.final-cta > div {
  position: relative;
  z-index: 1;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 6vw, 84px);
  border-top: 1px solid var(--line);
  color: rgba(255, 250, 241, 0.68);
}

.site-footer div {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--paper);
}

.site-footer img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--paper);
  object-fit: contain;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .main-nav,
  .header-cta {
    display: none;
  }

  .site-header.nav-open .main-nav {
    display: grid;
    grid-column: 1 / -1;
    justify-content: stretch;
    gap: 0;
    padding-top: 12px;
  }

  .site-header.nav-open .main-nav a {
    padding: 14px 0;
    border-top: 1px solid var(--line);
  }

  .hero {
    min-height: 100svh;
    padding-top: 124px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(8, 7, 6, 0.86) 0%, rgba(8, 7, 6, 0.44) 38%, rgba(8, 7, 6, 0.96) 100%),
      linear-gradient(90deg, rgba(8, 7, 6, 0.72), rgba(8, 7, 6, 0.2));
  }

  .hero-content {
    align-self: end;
    padding-bottom: 150px;
  }

  .hero-card {
    right: 18px;
    bottom: 24px;
  }

  .intro,
  .section-head,
  .signature,
  .setup,
  .location {
    grid-template-columns: 1fr;
  }

  .feature-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-strip div:nth-child(2) {
    border-right: 0;
  }

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

  .gallery img,
  .gallery img:nth-child(2) {
    height: 390px;
  }

  .gallery img:nth-child(3),
  .gallery img:nth-child(4) {
    margin-top: 0;
  }
}

@media (max-width: 560px) {
  .brand span {
    font-size: 0.92rem;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  h1 {
    font-size: clamp(4.4rem, 24vw, 7rem);
  }

  .hero-copy {
    font-size: 0.98rem;
  }

  .btn {
    width: 100%;
  }

  .hero-actions,
  .location-actions {
    width: 100%;
  }

  .feature-strip {
    grid-template-columns: 1fr;
  }

  .feature-strip div {
    border-right: 0;
  }

  .menu-row {
    grid-template-columns: 1fr 58px 58px;
    padding: 13px 14px;
    font-size: 0.92rem;
  }

  .matcha-table .menu-row {
    grid-template-columns: 1fr 80px;
  }

  .menu-title {
    padding: 18px 14px;
  }

  .gallery img,
  .gallery img:nth-child(2) {
    height: 300px;
  }

  .site-footer {
    display: grid;
  }
}
