* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  /* Warm latte tones drawn from the miit.lv palette */
  --bg: #f3e9da;
  --bg-rgb: 243, 233, 218;
  --line: #e3d6c1;
  --chip: #eadfca;
  --muted-on-bg: #c4b6a0;
}
html {
  scroll-behavior: smooth;
}
html,
body {
  background: var(--bg);
}
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #111;
}

.hero-scroll {
  position: relative;
  height: 400vh;
}

.hero-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: var(--bg);
}

.hero-inner {
  height: 100%;
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 0.45fr 1.55fr;
  grid-template-rows: 1fr;
  align-items: center;
  gap: 40px;
}

.hero-text {
  grid-column: 1 / -1;
  grid-row: 1;
  align-self: center;
  z-index: 2;
  /* Must stay clear of the hero video's visible content at all desktop widths */
  width: min(680px, 52%);
  display: grid;
  pointer-events: none;
}
.phase {
  grid-area: 1 / 1;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}
.phase.active {
  opacity: 1;
  transform: translateY(0);
}
.phase.active .cta {
  pointer-events: auto;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 13px;
  font-weight: 600;
  color: #888;
  margin-bottom: 20px;
}
.phase h1,
.phase .headline {
  font-size: clamp(40px, 5vw, 76px);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
address {
  font-style: normal;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  overflow: hidden;
  white-space: nowrap;
}
.phase p {
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.6;
  color: #555;
  margin-bottom: 32px;
}
.cta {
  display: inline-block;
  background: #111;
  color: #fff;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 16px;
}

.hero-media {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-right: -390px;
  /* Video has a baked-in white backdrop; multiply melts it into the warm page bg.
     Applied here (not on the video) so the blend isn't isolated by this stacking context. */
  mix-blend-mode: multiply;
}
.hero-media video {
  width: 100%;
  height: 100%;
  max-height: 100vh;
  object-fit: contain;
  display: block;
  border-radius: 16px;
}

.progress {
  position: fixed;
  top: 50%;
  right: 28px;
  transform: translateY(-50%);
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.progress.visible {
  opacity: 1;
}
.progress-track {
  position: relative;
  width: 3px;
  height: 160px;
  background: var(--line);
  border-radius: 3px;
  overflow: hidden;
}
.progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: #111;
  border-radius: 3px;
}
.progress-dots {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.progress-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--muted-on-bg);
  transition: background 0.3s ease, transform 0.3s ease;
}
.progress-dots span.on {
  background: #111;
  transform: scale(1.3);
}

.scroll-hint {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 90;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #999;
  transition: opacity 0.4s ease;
}

.whatsapp-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 110;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35), 0 4px 12px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.whatsapp-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 14px 36px rgba(37, 211, 102, 0.45), 0 6px 16px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
  .whatsapp-fab {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }
}

.brew {
  background: #111;
  color: #f5f5f5;
}
.brew-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 130px 48px;
}
.brew-head {
  margin-bottom: 64px;
  max-width: 620px;
}
.brew-head .eyebrow {
  color: #777;
  margin-bottom: 16px;
}
.brew-head h2 {
  font-size: clamp(30px, 3.6vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.brew-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
@media (max-width: 1024px) {
  .brew-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}
.brew-step {
  border-top: 1px solid #2a2a2a;
  padding-top: 24px;
}
.brew-step .num {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #777;
  margin-bottom: 16px;
}
.brew-step h3 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.brew-step p {
  font-size: 16px;
  line-height: 1.6;
  color: #b3b3b3;
}

.gallery {
  max-width: 1400px;
  margin: 0 auto;
  padding: 130px 48px;
}
.gallery-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 48px;
}
.gallery-head h2 {
  font-size: clamp(28px, 3.4vw, 46px);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.gallery-head .eyebrow {
  margin-bottom: 14px;
}
.gallery-head a {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #111;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 1px solid #111;
  padding-bottom: 2px;
}
.ig-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.ig-cell {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
  background: #f3ede2;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}
/* Shift the embed up so only the post's photo shows, hiding IG's header/footer chrome */
.ig-cell iframe {
  position: absolute;
  top: -54px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% + 4px);
  height: 760px;
  border: 0;
}

@media (max-width: 768px) {
  .brew-inner,
  .gallery {
    padding: 80px 24px;
  }
  .brew-steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .gallery-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 1024px) {
  .ig-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
}
@media (max-width: 600px) {
  .ig-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}

.reviews {
  background: #111;
}
.reviews .review-quote {
  color: #f7f4ef;
}
.reviews .review-source {
  color: rgba(255, 255, 255, 0.55);
}
.reviews .eyebrow {
  color: rgba(255, 255, 255, 0.55);
}
.reviews-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 160px 48px;
  text-align: center;
}
.reviews .eyebrow {
  margin-bottom: 36px;
}
.review-quotes {
  display: grid;
  place-items: center;
}
.review-quote {
  grid-area: 1 / 1;
  font-size: clamp(28px, 4.2vw, 56px);
  line-height: 1.18;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #1a1a1a;
  text-wrap: balance;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  pointer-events: none;
}
.review-quote.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.review-source {
  margin-top: 36px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #8a8377;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .reviews-inner {
    padding: 96px 24px;
  }
  .reviews .eyebrow {
    margin-bottom: 24px;
  }
}

.footer {
  background: #111;
  color: #f5f5f5;
}
.footer-inner {
  max-width: 1680px;
  margin: 0 auto;
  padding: 88px 48px;
  display: grid;
  grid-template-columns: 0.9fr 1.3fr;
  gap: 56px;
  align-items: stretch;
}
.footer-info .brand {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.footer-info .tagline {
  font-size: 16px;
  line-height: 1.6;
  color: #9a9a9a;
  max-width: 280px;
  margin-bottom: 36px;
}
.footer-block {
  margin-bottom: 24px;
}
.footer-block h2 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #777;
  margin-bottom: 8px;
  font-weight: 600;
}
.footer-block p,
.footer-block a {
  font-size: 16px;
  line-height: 1.6;
  color: #e6e6e6;
  text-decoration: none;
  display: block;
}
.footer-block a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-nav h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #777;
  margin-bottom: 16px;
  font-weight: 600;
}
.footer-nav a {
  display: block;
  font-size: 16px;
  line-height: 1;
  color: #e6e6e6;
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid #222;
  transition: color 0.2s, padding-left 0.2s;
}
.footer-nav a:hover {
  color: #fff;
  padding-left: 6px;
}

.footer-map {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  filter: grayscale(1) contrast(1.05) brightness(0.95);
}

.footer-bottom {
  border-top: 1px solid #222;
  padding: 24px 48px;
  max-width: 1680px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #777;
}
.footer-bottom .socials {
  display: flex;
  gap: 20px;
}
.footer-bottom a {
  color: #999;
  text-decoration: none;
}
.footer-bottom a:hover {
  color: #fff;
}

@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 56px 24px;
  }
  .footer-map {
    min-height: 280px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding: 24px;
  }
}

.menu-scroll {
  position: relative;
  height: 400vh;
}
.menu-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: var(--bg);
}
.menu-inner {
  height: 100%;
  max-width: 1680px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 56px;
}
.menu-note {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 26px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #a99a82;
  line-height: 1.5;
}
.menu-note a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}
.menu-note a:hover {
  color: #6b5d49;
}
@media (max-width: 768px) {
  .menu-note {
    /* keep clear of the WhatsApp button in the corner */
    padding: 0 80px;
    bottom: 20px;
    font-size: 11px;
  }
}

.menu-text {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  display: grid;
}
.dish {
  grid-area: 1 / 1;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}
.dish.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.dish .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 13px;
  font-weight: 600;
  color: #888;
  margin-bottom: 20px;
}
.dish h3 {
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.dish p {
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.6;
  color: #555;
  max-width: 460px;
  margin-bottom: 24px;
}
.dish .price {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  color: #111;
}

.menu-media {
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  height: 100%;
  display: grid;
  place-items: center;
}
.plate {
  position: relative;
  grid-area: 1 / 1;
  width: min(96%, 680px);
  aspect-ratio: 4 / 3;
  border-radius: 20px;
  overflow: hidden;
  opacity: 0;
  transform: scale(0.94) rotate(-2deg);
  transition: opacity 0.6s ease, transform 0.6s ease;
  box-shadow: 0 24px 64px rgba(74, 50, 24, 0.22);
}
.plate.active {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}
.plate img,
.plate video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}
.plate-0 {
  background: radial-gradient(circle at 30% 30%, #f3e9dd, #e2cdb4);
}
.plate-1 {
  background: radial-gradient(circle at 30% 30%, #e7efe1, #c9ddbd);
}
.plate-2 {
  background: radial-gradient(circle at 30% 30%, #f6ede0, #ecd9bd);
}
.plate-3 {
  background: radial-gradient(circle at 30% 30%, #efe4e0, #d8c0b6);
}

@media (max-width: 768px) {
  .menu-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
    padding: 0 24px;
  }
  .menu-text {
    min-height: 220px;
  }
  .plate {
    width: min(100%, 440px);
  }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 26px 40px;
  border-bottom: 1px solid transparent;
  transition: padding 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}
.site-header.scrolled {
  padding: 16px 40px;
  background: rgba(var(--bg-rgb), 0.72);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom-color: rgba(0, 0, 0, 0.07);
}
.site-header .logo {
  justify-self: center;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #111;
  text-decoration: none;
  padding-left: 0.22em;
}
.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav {
  justify-self: start;
  display: flex;
  gap: 32px;
}
.main-nav a {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #111;
  text-decoration: none;
  position: relative;
  opacity: 0.75;
  transition: opacity 0.2s ease;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.3s ease;
}
.main-nav a:hover {
  opacity: 1;
}
.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
  width: 100%;
}
.main-nav a[aria-current="page"] {
  opacity: 1;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 8px;
}
.lang-switch a,
.lang-switch .active {
  color: #111;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  opacity: 0.4;
  transition: opacity 0.2s ease;
}
.lang-switch a:hover {
  opacity: 0.7;
}
.lang-switch .active {
  opacity: 1;
}
.lang-sep {
  color: #111;
  opacity: 0.25;
  font-size: 12px;
}

/* Burger (mobile menu toggle), hidden on desktop */
.burger {
  display: none;
  position: relative;
  z-index: 120;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 9px;
  margin-left: -9px;
  border: none;
  background: transparent;
  cursor: pointer;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #111;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

@media (max-width: 768px) {
  /* ---- Header + burger ---- */
  .site-header {
    grid-template-columns: auto 1fr auto;
    padding: 14px 20px;
  }
  .site-header.scrolled {
    padding: 10px 20px;
  }
  .site-header .logo {
    justify-self: center;
  }
  .burger {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 105;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 84px 24px 32px;
    background: rgba(var(--bg-rgb), 0.97);
    backdrop-filter: saturate(180%) blur(16px);
    -webkit-backdrop-filter: saturate(180%) blur(16px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    transition: transform 0.35s ease;
  }
  .site-header.nav-open .main-nav {
    transform: translateY(0);
  }
  .main-nav a {
    font-size: 22px;
    letter-spacing: 0.03em;
    opacity: 1;
    padding: 12px 0;
  }
  .main-nav a::after {
    display: none;
  }
  .site-header.nav-open .burger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .site-header.nav-open .burger span:nth-child(2) {
    opacity: 0;
  }
  .site-header.nav-open .burger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* ---- Hero: stack text above video ---- */
  .hero-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    text-align: center;
    gap: 14px;
    padding: 84px 24px 24px;
  }
  .hero-text {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    justify-items: center;
  }
  .phase h1,
  .phase .headline {
    font-size: clamp(28px, 7vw, 38px);
    margin-bottom: 14px;
  }
  .phase p {
    font-size: 15px;
    margin-bottom: 0;
  }
  .hero-media {
    grid-column: 1;
    grid-row: 2;
    margin-right: 0;
    justify-content: center;
  }
  .hero-media video {
    width: auto;
    max-width: 130%;
    max-height: 56vh;
  }
  .progress {
    display: none;
  }

  /* ---- Scroll menu: plate on top, text below ---- */
  .menu-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    align-content: center;
    text-align: center;
    gap: 28px;
    padding: 84px 24px 24px;
  }
  .menu-media {
    grid-column: 1;
    grid-row: 1;
    height: auto;
  }
  .menu-text {
    grid-column: 1;
    grid-row: 2;
    justify-items: center;
  }
  .plate {
    width: min(100%, 440px);
  }
  .dish h3 {
    font-size: clamp(26px, 7vw, 38px);
  }
  .dish p {
    margin-left: auto;
    margin-right: auto;
  }
}
