/* ============================================================
   TANTO — focaccia · panini · caffè
   ============================================================ */

:root {
  --bg: #f5ede0;
  --bg-warm: #ede0cb;
  --bg-deep: #2a241b;
  --paper: #faf4e9;
  --ink: #1f1a13;
  --ink-dim: #5c4f3e;
  --ink-mute: #8a7b65;
  --accent: #c65d3c;
  --accent-2: #a84a2c;
  --olive: #5c6a3a;
  --line: rgba(31, 26, 19, 0.12);
  --line-soft: rgba(31, 26, 19, 0.06);
  --radius: 6px;
  --shadow: 0 30px 60px -20px rgba(40, 24, 10, 0.25);
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-logo: "Montserrat", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --container: 1200px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 999px;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  border: 1px solid transparent;
}
.btn--primary {
  background: var(--ink);
  color: var(--paper);
}
.btn--primary:hover {
  background: var(--accent);
  transform: translateY(-2px);
}
.btn--ghost {
  border-color: rgba(250, 244, 233, 0.5);
  color: var(--paper);
}
.btn--ghost:hover {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 40px;
  transition: background 0.3s ease, padding 0.3s ease, backdrop-filter 0.3s ease;
}
.nav.is-scrolled {
  background: rgba(245, 237, 224, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px 40px;
  border-bottom: 1px solid var(--line-soft);
}

.nav__logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav__wordmark {
  font-family: var(--font-logo);
  font-weight: 800;          /* Montserrat ExtraBold */
  font-size: 24px;
  letter-spacing: 0.03em;    /* ~3% per recomandare ChatGPT */
  text-transform: uppercase;
  color: var(--paper);
  transition: color 0.3s;
}
.nav.is-scrolled .nav__wordmark { color: var(--ink); }
.nav__tagline {
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(250, 244, 233, 0.8);
  margin-top: 6px;
  transition: color 0.3s;
}
.nav.is-scrolled .nav__tagline { color: var(--ink-mute); }

.nav__links {
  display: flex;
  gap: 38px;
}
.nav__links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250, 244, 233, 0.85);
  transition: color 0.3s;
  position: relative;
  padding: 4px 0;
}
.nav.is-scrolled .nav__links a { color: var(--ink-dim); }
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -4px;
  height: 1px;
  background: currentColor;
  transition: right 0.3s ease;
}
.nav__links a:hover::after { right: 0; }

.nav__cta {
  padding: 10px 22px;
  font-size: 11px;
  background: var(--paper);
  color: var(--ink);
}
.nav.is-scrolled .nav__cta {
  background: var(--ink);
  color: var(--paper);
}
.nav__cta:hover { background: var(--accent); color: var(--paper); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  height: 32px;
  padding: 6px;
  border: none;
  background: transparent;
  cursor: pointer;
}
.nav__burger span {
  height: 2px;
  background: var(--paper);
  border-radius: 2px;
}
.nav.is-scrolled .nav__burger span { background: var(--ink); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: var(--paper);
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(ellipse at center, rgba(30, 20, 10, 0.2) 0%, rgba(30, 20, 10, 0.75) 100%),
    linear-gradient(180deg, rgba(30, 20, 10, 0.35) 0%, rgba(30, 20, 10, 0.55) 60%, rgba(30, 20, 10, 0.85) 100%);
}
.hero__content {
  position: relative;
  z-index: 3;
  max-width: 820px;
  padding: 0 24px;
  animation: fadeUp 1.1s ease 0.2s both;
}
.hero__eyebrow {
  font-size: 12px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(250, 244, 233, 0.85);
  margin: 0 0 28px;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(52px, 9vw, 130px);
  line-height: 0.95;
  margin: 0 0 28px;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 144;
}
.hero__title em {
  font-style: italic;
  font-weight: 300;
  color: #f0c8a3;
}
.hero__subtitle {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(18px, 1.8vw, 24px);
  color: rgba(250, 244, 233, 0.92);
  max-width: 540px;
  margin: 0 auto 44px;
}
.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 24px;
  height: 40px;
  border: 1px solid rgba(250, 244, 233, 0.5);
  border-radius: 12px;
}
.hero__scroll span {
  display: block;
  width: 2px;
  height: 8px;
  background: var(--paper);
  margin: 6px auto;
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot {
  0%, 100% { transform: translateY(0); opacity: 0.2; }
  50% { transform: translateY(14px); opacity: 1; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  padding: 22px 0;
  border-top: 1px solid rgba(250, 244, 233, 0.08);
  border-bottom: 1px solid rgba(250, 244, 233, 0.08);
}
.marquee__track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  width: max-content;
}
.marquee__track span {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 28px;
  letter-spacing: 0.02em;
}
.marquee__track span:nth-child(odd) { color: var(--paper); }
.marquee__track span:nth-child(even) { color: var(--accent); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   SECTION BASE
   ============================================================ */
.section {
  padding: 140px 0;
  position: relative;
}
.section__eyebrow {
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 20px;
  font-weight: 500;
}
.section__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1.05;
  margin: 0 0 28px;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 144;
}
.section__lede {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  color: var(--ink-dim);
  max-width: 560px;
  margin: 0;
  font-weight: 300;
}
.section__head {
  max-width: 720px;
  margin: 0 auto 72px;
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  background: var(--bg);
  overflow: hidden;
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}
.about__lede {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 300;
  line-height: 1.45;
  color: var(--ink);
  margin: 0 0 24px;
}
.about__lede em { font-style: italic; color: var(--accent); }
.about__text p {
  color: var(--ink-dim);
  font-size: 17px;
  margin: 0 0 18px;
}
.about__text strong { color: var(--ink); font-weight: 500; }
.about__accent {
  padding: 20px 24px;
  background: var(--bg-warm);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px !important;
  color: var(--ink) !important;
  margin-top: 28px !important;
}

.about__photo {
  position: relative;
}
.about__photo img,
.about__photo-video {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: block;
}
.about__photo-badge {
  position: absolute;
  bottom: -30px;
  right: -20px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--paper);
  display: grid;
  place-items: center;
  text-align: center;
  box-shadow: var(--shadow);
  transform: rotate(-8deg);
}
.about__photo-badge span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.1em;
  display: block;
}
.about__photo-badge strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 34px;
  line-height: 1;
  margin-top: 4px;
}

/* ============================================================
   MENU
   ============================================================ */
.menu {
  background: var(--paper);
}
.menu__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.menu__item {
  position: relative;
  padding: 48px 44px;
  background: var(--bg);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  transition: transform 0.35s ease, background 0.35s ease, border-color 0.35s ease;
  overflow: hidden;
}
.menu__item::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 0;
  height: 3px;
  background: var(--accent);
  transition: width 0.5s ease;
}
.menu__item:hover {
  transform: translateY(-6px);
  background: var(--bg-warm);
  border-color: var(--accent);
}
.menu__item:hover::before { width: 100%; }

.menu__num {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: 52px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 20px;
  opacity: 0.6;
}
.menu__item h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 34px;
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}
.menu__item p {
  color: var(--ink-dim);
  font-size: 16px;
  margin: 0 0 20px;
  line-height: 1.65;
}
.menu__tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font-weight: 500;
}

/* ---------- MENU GALLERY (categorii -> lightbox) ---------- */
.menu-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 1.6vw, 22px);
}
.mg-cat {
  position: relative;
  display: block;
  padding: 0;
  border: 0;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-deep);
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow);
  font-family: inherit;
}
.mg-cat img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.mg-cat:hover img,
.mg-cat:focus-visible img { transform: scale(1.06); }
.mg-cat__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(20, 12, 6, 0.78) 100%);
}
.mg-cat__meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  padding: 22px 18px 16px;
  text-align: left;
}
.mg-cat__name {
  font-family: var(--font-display);
  font-size: clamp(17px, 1.6vw, 22px);
  font-weight: 500;
  color: var(--paper);
  letter-spacing: 0.01em;
}
.mg-cat__count {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250, 244, 233, 0.7);
  white-space: nowrap;
}
.mg-cat::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 0;
  height: 3px;
  background: var(--accent);
  transition: width 0.5s ease;
}
.mg-cat:hover::after,
.mg-cat:focus-visible::after { width: 100%; }
@media (max-width: 860px) { .menu-gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) {
  .menu-gallery { grid-template-columns: 1fr; }
  .mg-cat { aspect-ratio: 4 / 3; }
}

/* ---------- LIGHTBOX ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 56px);
  background: rgba(12, 8, 4, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: lb-fade 0.25s ease;
}
.lightbox[hidden] { display: none; }
@keyframes lb-fade { from { opacity: 0; } to { opacity: 1; } }
.lightbox__stage {
  position: relative;
  margin: 0;
  max-width: min(92vw, 1100px);
  max-height: 86vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.lightbox__stage img {
  max-width: 100%;
  max-height: 76vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  background: #0f0a05;
}
.lightbox__caption {
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--paper);
}
.lightbox__counter {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: rgba(250, 244, 233, 0.65);
}
.lightbox__close,
.lightbox__nav {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(250, 244, 233, 0.3);
  background: rgba(31, 26, 19, 0.7);
  color: var(--paper);
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.lightbox__close:hover,
.lightbox__nav:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.06);
}
.lightbox__close {
  top: clamp(14px, 3vw, 28px);
  right: clamp(14px, 3vw, 28px);
  width: 46px;
  height: 46px;
}
.lightbox__close svg { width: 22px; height: 22px; }
.lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
}
.lightbox__nav:hover { transform: translateY(-50%) scale(1.06); }
.lightbox__nav svg { width: 24px; height: 24px; }
.lightbox__nav--prev { left: clamp(10px, 3vw, 36px); }
.lightbox__nav--next { right: clamp(10px, 3vw, 36px); }
.lightbox__nav[hidden] { display: none; }
@media (max-width: 600px) {
  .lightbox__nav { width: 44px; height: 44px; }
  .lightbox__nav--prev { left: 8px; }
  .lightbox__nav--next { right: 8px; }
}

/* ---------- MENU INVITE CARD (homepage CTA towards /meniu) ---------- */
.menu__invite {
  position: relative;
  display: block;
  margin: clamp(50px, 7vw, 90px) auto 0;
  max-width: 860px;
  padding: clamp(48px, 6.5vw, 88px) clamp(28px, 5vw, 60px);
  overflow: hidden;
  text-align: center;
  color: var(--paper);
  background: var(--bg-deep);
  border-radius: var(--radius);
  box-shadow: 0 26px 60px -28px rgba(31, 26, 19, 0.45);
  text-decoration: none;
  transition: transform 0.5s cubic-bezier(0.33, 1, 0.68, 1), box-shadow 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
.menu__invite:hover {
  transform: translateY(-5px);
  box-shadow: 0 40px 80px -32px rgba(31, 26, 19, 0.6);
}
.menu__invite-bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/SaveClip.App_662860452_18073472276330351_3997017961254572564_n.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.28;
  filter: saturate(0.9) contrast(1.05);
  transition: opacity 0.6s, transform 1s cubic-bezier(0.33, 1, 0.68, 1);
}
.menu__invite:hover .menu__invite-bg {
  opacity: 0.38;
  transform: scale(1.04);
}
.menu__invite-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(31, 26, 19, 0.82) 0%, rgba(31, 26, 19, 0.62) 50%, rgba(31, 26, 19, 0.88) 100%);
}
.menu__invite-corner {
  position: absolute;
  width: 26px;
  height: 26px;
  border-color: rgba(198, 93, 60, 0.55);
  border-style: solid;
  border-width: 0;
  z-index: 2;
  transition: border-color 0.3s;
}
.menu__invite-corner--tl { top: 16px; left: 16px; border-top-width: 1px; border-left-width: 1px; }
.menu__invite-corner--tr { top: 16px; right: 16px; border-top-width: 1px; border-right-width: 1px; }
.menu__invite-corner--bl { bottom: 16px; left: 16px; border-bottom-width: 1px; border-left-width: 1px; }
.menu__invite-corner--br { bottom: 16px; right: 16px; border-bottom-width: 1px; border-right-width: 1px; }
.menu__invite:hover .menu__invite-corner { border-color: var(--accent); }

.menu__invite-content { position: relative; z-index: 3; }
.menu__invite-eyebrow {
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: lowercase;
  color: var(--accent);
  margin: 0 0 18px;
  font-family: var(--font-sans);
  font-weight: 400;
}
.menu__invite-eyebrow em {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  letter-spacing: 0.05em;
  text-transform: none;
  color: var(--paper);
}
.menu__invite-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 5.5vw, 62px);
  line-height: 1.02;
  margin: 0 0 22px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--paper);
}
.menu__invite-title em {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}
.menu__invite-line {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(14px, 1.5vw, 17px);
  color: rgba(250, 244, 233, 0.78);
  margin: 0 auto 34px;
  letter-spacing: 0.06em;
  max-width: 560px;
}
.menu__invite-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 15px 34px;
  border: 1px solid rgba(198, 93, 60, 0.6);
  border-radius: 2px;
  font-family: var(--font-sans);
  font-size: 12.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--paper);
  transition: all 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}
.menu__invite:hover .menu__invite-cta {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--paper);
  letter-spacing: 0.26em;
}
.menu__invite-cta svg {
  width: 18px;
  height: 18px;
  transition: transform 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}
.menu__invite:hover .menu__invite-cta svg { transform: translateX(6px); }
.menu__invite-hint {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 13px;
  color: rgba(250, 244, 233, 0.55);
  letter-spacing: 0.04em;
  margin: 24px 0 0;
}

@media (max-width: 560px) {
  .menu__invite { padding: 44px 22px; }
  .menu__invite-corner { width: 18px; height: 18px; top: 10px !important; left: 10px !important; }
  .menu__invite-corner--tr { left: auto !important; right: 10px !important; }
  .menu__invite-corner--bl { top: auto !important; bottom: 10px !important; }
  .menu__invite-corner--br { top: auto !important; left: auto !important; bottom: 10px !important; right: 10px !important; }
  .menu__invite-cta { padding: 13px 24px; font-size: 11.5px; letter-spacing: 0.15em; }
  .menu__invite-hint { font-size: 12px; }
}

/* ============================================================
   PHILOSOPHY
   ============================================================ */
.philosophy {
  background: var(--bg-deep);
  color: var(--paper);
  text-align: center;
}
.philosophy::before,
.philosophy::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.35;
  pointer-events: none;
}
.philosophy::before {
  background: var(--accent);
  top: 10%;
  left: 8%;
}
.philosophy::after {
  background: var(--olive);
  bottom: 12%;
  right: 10%;
}
.philosophy__wrap {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.philosophy__eyebrow {
  color: #f0c8a3;
}
.philosophy__quote {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.15;
  margin: 0 0 32px;
  letter-spacing: -0.01em;
  font-variation-settings: "opsz" 144;
}
.philosophy__quote em {
  font-style: italic;
  color: #f0c8a3;
}
.philosophy__text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  color: rgba(250, 244, 233, 0.75);
  margin: 0;
  line-height: 1.6;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  background: var(--bg);
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 72px;
  align-items: stretch;
}
.contact__lede {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  color: var(--ink-dim);
  margin: 0 0 36px;
}
.contact__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 22px;
}
.contact__list li {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.contact__icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--bg-warm);
  color: var(--accent);
}
.contact__icon svg { width: 22px; height: 22px; }
.contact__list strong {
  display: block;
  font-weight: 500;
  margin-bottom: 3px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
}
.contact__list span {
  color: var(--ink-dim);
  font-size: 16px;
}
.contact__map {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 440px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.contact__map iframe {
  width: 100%;
  height: 100%;
  min-height: 440px;
  border: 0;
  filter: sepia(0.15) saturate(1.1);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-deep);
  color: rgba(250, 244, 233, 0.7);
  padding: 56px 0 36px;
}
.footer__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}
.footer__brand {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.footer__brand strong {
  font-family: var(--font-logo);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--paper);
}
.footer__brand span {
  font-size: 12px;
  color: rgba(250, 244, 233, 0.55);
  letter-spacing: 0.1em;
  margin-top: 4px;
}
.footer__links {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}
.footer__links a {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250, 244, 233, 0.7);
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--accent); }
.footer__ig { display: inline-flex; align-items: center; gap: 6px; }
.footer__ig svg { display: block; }
.footer__copy {
  width: 100%;
  margin: 24px 0 0;
  padding-top: 24px;
  border-top: 1px solid rgba(250, 244, 233, 0.1);
  text-align: center;
  font-size: 12px;
  color: rgba(250, 244, 233, 0.55);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 16px;
}
.footer__credit a {
  color: var(--accent);
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.footer__credit a:hover {
  color: #f0c8a3;
  border-bottom-color: #f0c8a3;
}
.footer__heart {
  color: #e3526b;
  display: inline-block;
  animation: heartBeat 1.6s ease-in-out infinite;
}
@keyframes heartBeat {
  0%, 100% { transform: scale(1); }
  20% { transform: scale(1.25); }
  40% { transform: scale(1); }
  60% { transform: scale(1.15); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .about__grid,
  .contact__grid { grid-template-columns: 1fr; gap: 60px; }
  .menu__grid { gap: 20px; }
  .section { padding: 100px 0; }
}

@media (max-width: 720px) {
  .nav { padding: 18px 22px; }
  .nav.is-scrolled { padding: 12px 22px; }
  .nav__links,
  .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav__links.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--bg);
    padding: 28px;
    gap: 20px;
    border-bottom: 1px solid var(--line-soft);
  }
  .nav__links.is-open a { color: var(--ink-dim); }

  .container { padding: 0 22px; }
  .section { padding: 80px 0; }

  .hero { min-height: 600px; }
  .hero__actions { flex-direction: column; align-items: stretch; max-width: 260px; margin: 0 auto; }
  .hero__actions .btn { justify-content: center; }

  .marquee__track span { font-size: 22px; }

  .about__photo-badge {
    width: 108px;
    height: 108px;
    right: auto;
    left: 50%;
    transform: translateX(-50%) rotate(-8deg);
    bottom: -40px;
  }
  .about__photo-badge strong { font-size: 26px; }

  .menu__grid { grid-template-columns: 1fr; }
  .menu__item { padding: 36px 28px; }

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

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    transition-duration: 0.001s !important;
  }
  html { scroll-behavior: auto; }
}

/* ============================================================
   PRESENTATION (2 videos cinematic — stil opening, badge + unmute)
   ============================================================ */
.presentation {
  position: relative;
  background: var(--bg-deep);
  color: var(--paper);
  padding: clamp(80px, 11vw, 140px) 0;
  overflow: hidden;
  border-top: 1px solid rgba(198, 93, 60, 0.18);
  border-bottom: 1px solid rgba(198, 93, 60, 0.18);
}
.presentation::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(198, 93, 60, 0.14) 0%, transparent 48%),
    radial-gradient(circle at 82% 78%, rgba(240, 200, 163, 0.1) 0%, transparent 48%);
  pointer-events: none;
}
.presentation > .container { position: relative; z-index: 1; }
.presentation__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(44px, 6vw, 72px);
}
.presentation__eyebrow {
  font-size: 12px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 16px;
  font-weight: 500;
}
.presentation__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 5.5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--paper);
}
.presentation__title em { font-style: italic; font-weight: 400; color: var(--accent); }

.presentation__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3.5vw, 48px);
  max-width: 880px;
  margin: 0 auto;
}
.presentation__card {
  position: relative;
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  background: #0f0a05;
  aspect-ratio: 4 / 5;
  isolation: isolate;
  box-shadow: 0 30px 70px -28px rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(250, 244, 233, 0.08);
}
.presentation__video { width: 100%; height: 100%; object-fit: cover; display: block; }

.presentation__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 14px;
  background: rgba(31, 26, 19, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(198, 93, 60, 0.5);
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--paper);
  font-weight: 500;
}
.presentation__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(198, 93, 60, 0.7);
  animation: presentation-pulse 1.8s ease-out infinite;
}
@keyframes presentation-pulse {
  0% { box-shadow: 0 0 0 0 rgba(198, 93, 60, 0.7); }
  80%, 100% { box-shadow: 0 0 0 10px rgba(198, 93, 60, 0); }
}

.presentation__sound {
  position: absolute;
  bottom: 14px;
  right: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(250, 244, 233, 0.35);
  border-radius: 50%;
  background: rgba(31, 26, 19, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--paper);
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease, color 0.25s ease;
}
.presentation__sound:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--paper);
  transform: scale(1.06);
}
.presentation__sound svg { width: 20px; height: 20px; display: block; }
.presentation__sound .icon-on { display: none; }
.presentation__sound[data-muted="false"] .icon-off { display: none; }
.presentation__sound[data-muted="false"] .icon-on { display: block; }
.presentation__sound[data-muted="false"] {
  background: var(--accent);
  border-color: var(--accent);
}

@media (max-width: 760px) {
  .presentation__grid {
    grid-template-columns: 1fr;
    max-width: 380px;
  }
  .presentation__card { aspect-ratio: 9 / 16; }
}

/* ============================================================
   GALERIE (poze produse)
   ============================================================ */
.gallery { background: var(--bg-warm); }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 1.6vw, 22px);
}
.gallery__item {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-deep);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.gallery__item:hover img { transform: scale(1.05); }
.gallery__item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px 18px 16px;
  font-family: var(--font-display);
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--paper);
  background: linear-gradient(180deg, transparent 0%, rgba(20, 12, 6, 0.72) 100%);
}
@media (max-width: 860px) {
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .gallery__grid { grid-template-columns: 1fr; }
  .gallery__item { aspect-ratio: 4 / 3; }
}

/* ============================================================
   COMANDĂ (Foodify / PapaDream / Pick up)
   ============================================================ */
.order { background: var(--bg-warm); }
.order__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.2vw, 28px);
}
.order__card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(28px, 3vw, 40px);
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.order__card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 0;
  height: 3px;
  background: var(--accent);
  transition: width 0.5s ease;
}
.order__card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: var(--shadow);
}
.order__card:hover::before { width: 100%; }
.order__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--bg-warm);
  color: var(--accent);
  margin-bottom: 22px;
}
.order__card--pickup .order__icon { background: var(--accent); color: var(--paper); }
.order__icon svg { width: 26px; height: 26px; }
.order__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(22px, 2.2vw, 28px);
  color: var(--ink);
  margin: 0 0 10px;
}
.order__desc {
  font-size: 14px;
  color: var(--ink-dim);
  line-height: 1.6;
  margin: 0 0 24px;
  flex-grow: 1;
}
.order__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  transition: gap 0.25s ease, color 0.25s ease;
}
.order__card:hover .order__cta { color: var(--accent); gap: 14px; }
.order__cta svg { width: 17px; height: 17px; }
.order__card--pickup .order__cta {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.02em;
  text-transform: none;
  font-weight: 500;
}
@media (max-width: 860px) {
  .order__grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
}
