/* ====== Zlata ====== */

:root {
  --terracotta: #D45D3F;
  --terracotta-deep: #B14A30;
  --cream: #FAF3E7;
  --cream-warm: #F2E6D4;
  --ink: #3B2A22;
  --ink-soft: #6B4F3F;
  --line: rgba(212, 93, 63, 0.18);
  --line-cream: rgba(250, 243, 231, 0.2);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ====== NAV ====== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2rem;
  background: rgba(212, 93, 63, 0.9);
  backdrop-filter: blur(12px);
  color: var(--cream);
  border-bottom: 1px solid var(--line-cream);
}

.nav__home {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line-cream);
  transition: all 0.2s ease;
}

.nav__home:hover {
  background: var(--cream);
  color: var(--terracotta);
  border-color: var(--cream);
}

.nav__logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  letter-spacing: 0.25em;
  font-weight: 400;
}

.nav__menu {
  display: flex;
  gap: 2rem;
  list-style: none;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav__menu a {
  position: relative;
  padding: 0.25rem 0;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.nav__menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.3s ease;
}

.nav__menu a:hover { opacity: 1; }
.nav__menu a:hover::after { width: 100%; }

.lang-toggle {
  background: transparent;
  border: 1px solid var(--line-cream);
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  color: var(--cream);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  display: flex;
  gap: 0.35rem;
  font-family: inherit;
}

.lang-toggle__opt { opacity: 0.55; transition: opacity 0.2s; }
.lang-toggle__opt.is-active { opacity: 1; font-weight: 600; }
.lang-toggle__opt:hover { opacity: 0.85; }

/* ====== HERO ====== */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--terracotta);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 6rem 2rem 4rem;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 25%, rgba(250, 243, 231, 0.12), transparent 50%),
    radial-gradient(circle at 85% 75%, rgba(177, 74, 48, 0.4), transparent 50%);
  pointer-events: none;
}

.hero__deco {
  position: absolute;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(250, 243, 231, 0.18);
  border-radius: 50%;
  pointer-events: none;
}

.hero__deco--left {
  top: 15%;
  left: -50px;
}

.hero__deco--right {
  bottom: 10%;
  right: -50px;
  width: 280px;
  height: 280px;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero__logo {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(5rem, 13vw, 11rem);
  font-weight: 400;
  letter-spacing: 0.18em;
  line-height: 1;
  margin-bottom: 1.5rem;
  animation: fadeUp 1s ease both;
}

.hero__tagline {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  opacity: 0.9;
  margin-bottom: 3rem;
  animation: fadeUp 1s ease 0.3s both;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 2.2rem;
  border: 1px solid var(--cream);
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.3s ease;
  animation: fadeUp 1s ease 0.5s both;
}

.hero__cta:hover {
  background: var(--cream);
  color: var(--terracotta);
}

.hero__cta:hover svg { transform: translateY(2px); }
.hero__cta svg { transition: transform 0.3s ease; }

.hero__scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, var(--cream));
  opacity: 0.5;
  animation: scrollPulse 2.4s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: translateX(-50%) scaleY(0.4); opacity: 0.2; transform-origin: top; }
  50% { transform: translateX(-50%) scaleY(1); opacity: 0.6; }
}

/* ====== SECTIONS ====== */
.section {
  padding: 7rem 0;
  position: relative;
}

.section--cream {
  background: var(--cream);
  color: var(--ink);
}

.section--terracotta {
  background: var(--terracotta);
  color: var(--cream);
}

.section__head {
  text-align: center;
  margin-bottom: 4rem;
}

.section__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 1rem;
  font-weight: 500;
}

.section__title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.2rem, 4.8vw, 3.8rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.15;
}

/* ====== STORY ====== */
.story {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.story__lead {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 1.4rem;
  line-height: 1.5;
  margin-bottom: 1.75rem;
  color: var(--terracotta);
}

.story p {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  color: var(--ink-soft);
}

.story__sign {
  font-family: 'Caveat', cursive;
  font-size: 1.6rem;
  color: var(--terracotta);
  margin-top: 1rem;
  opacity: 0.95;
}

/* ====== MENU ====== */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 4rem 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.menu-category__title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line-cream);
  font-style: italic;
}

.menu-list { list-style: none; }

.menu-item { margin-bottom: 1.5rem; }

.menu-item__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.25rem;
}

.menu-item__name {
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.menu-item__price {
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  opacity: 0.75;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.menu-item__desc {
  font-size: 0.85rem;
  font-style: italic;
  opacity: 0.7;
  line-height: 1.5;
}

.menu-note {
  text-align: center;
  font-size: 0.75rem;
  opacity: 0.55;
  margin-top: 4rem;
  letter-spacing: 0.05em;
}

/* ====== GALLERY ====== */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 1rem;
  margin-bottom: 2rem;
}

.gallery__item {
  background: linear-gradient(135deg, rgba(212, 93, 63, 0.08), rgba(212, 93, 63, 0.18));
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  transition: transform 0.4s ease;
  cursor: pointer;
}

.gallery__item:hover { transform: scale(1.02); }
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }

.gallery__item.placeholder::before {
  content: attr(data-placeholder);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  opacity: 0.45;
  font-style: italic;
}

.gallery__note {
  text-align: center;
  font-size: 0.9rem;
  margin-top: 1rem;
  opacity: 0.7;
}

.gallery__note a {
  font-weight: 500;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}

/* ====== CONTACT ====== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2.5rem;
  margin-bottom: 4rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.contact-block { text-align: center; }

.contact-block__label {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.contact-block__value {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.5;
}

.contact-block__value a:hover {
  border-bottom: 1px solid currentColor;
}

.contact-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2.2rem;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 999px;
  transition: all 0.3s ease;
  border: 1px solid currentColor;
}

.btn--primary {
  background: var(--cream);
  color: var(--terracotta);
  border-color: var(--cream);
}

.btn--primary:hover {
  background: transparent;
  color: var(--cream);
}

.btn--ghost {
  background: transparent;
  color: var(--cream);
}

.btn--ghost:hover {
  background: var(--cream);
  color: var(--terracotta);
}

/* ====== FOOTER ====== */
.footer {
  background: var(--terracotta-deep);
  color: var(--cream);
  padding: 2.5rem 0;
  font-size: 0.85rem;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer__brand {
  font-family: 'DM Serif Display', serif;
  font-size: 1.3rem;
  letter-spacing: 0.25em;
}

.footer__copy {
  opacity: 0.7;
  font-size: 0.8rem;
  text-align: center;
}

.footer__sibling {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  opacity: 0.8;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: all 0.2s;
}

.footer__sibling:hover {
  opacity: 1;
  border-color: currentColor;
}

/* ====== Reveal ====== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ====== Mobile ====== */
@media (max-width: 900px) {
  .nav { padding: 1rem 1.25rem; }
  .nav__menu { display: none; }

  .container { padding: 0 1.5rem; }
  .section { padding: 5rem 0; }

  .menu-grid { gap: 3rem 2rem; }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }

  .gallery__item--wide { grid-column: span 1; }

  .footer__inner {
    flex-direction: column;
    text-align: center;
  }

  .hero__deco { display: none; }
}
