:root {
  --bg: #09090b;
  --bg-soft: #111215;
  --bg-soft-2: #17181c;
  --card: rgba(255, 255, 255, 0.045);
  --card-strong: rgba(255, 255, 255, 0.075);
  --text: #f7f0e6;
  --text-soft: #e9dcc9;
  --muted: #c8baa8;
  --muted-2: #a69786;
  --line: rgba(255, 255, 255, 0.09);
  --line-soft: rgba(255, 255, 255, 0.05);

  --red: #c44933;
  --red-deep: #9e3326;
  --gold: #d8b27a;
  --gold-soft: #f0dcc0;
  --green: #2f6948;
  --green-soft: #cfe3d5;

  --shadow: 0 16px 38px rgba(0, 0, 0, 0.28);
  --shadow-strong: 0 20px 54px rgba(0, 0, 0, 0.4);
  --glow-red: 0 10px 24px rgba(196, 73, 51, 0.2);

  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 18px;
  --radius-sm: 14px;

  --container: 1180px;
  --transition: 0.35s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  line-height: 1.65;
  background:
    radial-gradient(circle at top left, rgba(196, 73, 51, 0.11), transparent 22%),
    radial-gradient(circle at top right, rgba(47, 105, 72, 0.09), transparent 20%),
    linear-gradient(180deg, #070708 0%, #0b0c0f 34%, #111318 100%);
  overflow-x: hidden;
}

body::selection {
  background: rgba(216, 178, 122, 0.24);
  color: #fff;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(6, 6, 7, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.18), transparent 60%),
    rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 0.22rem;
  flex-shrink: 0;
  box-shadow: 0 8px 18px rgba(0,0,0,0.18);
}

.brand-text strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.22rem;
  line-height: 1;
  margin-bottom: 0.22rem;
  color: var(--text);
  letter-spacing: -0.02em;
}

.brand-text span {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.17em;
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  transition: color var(--transition), opacity var(--transition);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.82rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition),
    border-color var(--transition),
    color var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #c44933 0%, #e36a3d 100%);
  box-shadow: var(--glow-red);
}

.btn-primary:hover {
  box-shadow: 0 14px 34px rgba(196, 73, 51, 0.3);
}

.btn-secondary,
.btn-outline {
  color: #fff;
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover,
.btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
}

.lang-switch {
  min-width: 42px;
  min-height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.05);
  cursor: pointer;
  padding: 0.75rem;
  flex-direction: column;
  justify-content: center;
  gap: 0.28rem;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 999px;
  transition: 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

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

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* HERO */

.hero {
  position: relative;
  min-height: calc(100vh - 82px);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(6,6,7,0.78) 0%, rgba(6,6,7,0.5) 38%, rgba(6,6,7,0.22) 68%, rgba(6,6,7,0.12) 100%),
    url("images/van_1.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1.02);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.04) 0%, rgba(0,0,0,0.16) 64%, #0b0c0f 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.16fr 0.84fr;
  gap: 1.2rem;
  align-items: center;
  padding: 2.2rem 0 3rem;
}

.hero-copy {
  max-width: 570px;
  justify-self: start;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.58rem 0.88rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-soft);
  margin-bottom: 1rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #60da7b;
  box-shadow: 0 0 0 6px rgba(96, 218, 123, 0.12);
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  max-width: 8.2ch;
  margin: 0 0 0.95rem;
  text-wrap: balance;
}

.hero-copy p {
  max-width: 520px;
  margin: 0;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.45rem;
}

.hero-card {
  justify-self: end;
  width: min(100%, 290px);
  border-radius: 18px;
  background: linear-gradient(150deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
  box-shadow:
    0 14px 34px rgba(0,0,0,0.34),
    inset 0 1px 0 rgba(255,255,255,0.06);
  overflow: hidden;
  transform: translateX(0) translateY(34px);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.hero-card:hover {
  transform: translateX(0) translateY(28px);
}

.hero-card-image {
  width: 100%;
  height: 72px;
  overflow: hidden;
}

.hero-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card-body {
  padding: 0.68rem 0.78rem 0.78rem;
}

.hero-card h3 {
  font-size: 0.72rem;
  line-height: 1.18;
  margin-bottom: 0.2rem;
}

.hero-card p {
  color: var(--muted);
  font-size: 0.62rem;
  line-height: 1.45;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.28rem;
  margin-top: 0.45rem;
}

.feature-box {
  padding: 0.34rem 0.24rem;
  text-align: center;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
}

.feature-box strong {
  display: block;
  font-size: 0.54rem;
  margin-bottom: 0.02rem;
}

.feature-box span {
  color: var(--muted);
  font-size: 0.47rem;
}

/* SECTIONS */

section {
  padding: 4.6rem 0;
  position: relative;
}

.section-intro {
  max-width: 760px;
  margin-bottom: 1.6rem;
}

.section-label {
  display: inline-block;
  margin-bottom: 0.52rem;
  color: var(--gold-soft);
  text-transform: uppercase;
  letter-spacing: 0.17em;
  font-size: 0.7rem;
  font-weight: 800;
}

h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 2.7vw, 2.35rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.section-intro p {
  margin-top: 0.76rem;
  color: var(--muted);
  font-size: 0.92rem;
  max-width: 640px;
}

.story-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  gap: 1rem;
  align-items: stretch;
}

.menu-preview {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 0.9rem;
  align-items: start;
}

.card {
  background: linear-gradient(180deg, rgba(255,255,255,0.042), rgba(255,255,255,0.028));
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1rem;
  box-shadow: var(--shadow);
}

/* ABOUT */

.image-cover {
  position: relative;
  overflow: hidden;
  min-height: 100%;
}

.image-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.64rem 0.78rem;
  border-radius: 14px;
  background: rgba(10,10,10,0.7);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  font-weight: 700;
  color: var(--text);
  font-size: 0.76rem;
  box-shadow: 0 10px 22px rgba(0,0,0,0.16);
}

.story-copy {
  padding: 1.2rem;
  display: grid;
  gap: 0.72rem;
}

.story-copy p {
  color: var(--muted);
  font-size: 0.88rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  margin-top: 0.2rem;
}

.stat {
  padding: 0.75rem;
  border-radius: 16px;
  background: rgba(255,255,255,0.038);
  border: 1px solid rgba(255,255,255,0.07);
}

.stat strong {
  display: block;
  font-size: 0.92rem;
  margin-bottom: 0.08rem;
  color: var(--text);
}

.stat span {
  color: var(--muted);
  font-size: 0.75rem;
}

/* MENU */

.menu-preview {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 1rem;
  align-items: stretch;
}

.menu-board {
  padding: 0.75rem;
  width: 100%;
  max-width: none;
  justify-self: stretch;
  display: flex;
  align-items: stretch;
}

.menu-board img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
}
.menu-card,
.event-card {
  padding: 0.82rem;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.028));
  border: 1px solid rgba(255,255,255,0.07);
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.menu-card:hover,
.event-card:hover {
  transform: translateY(-2px);
  border-color: rgba(216, 178, 122, 0.14);
  box-shadow: 0 10px 22px rgba(0,0,0,0.16);
}

.menu-top {
  display: flex;
  justify-content: space-between;
  gap: 0.65rem;
  align-items: flex-start;
  margin-bottom: 0.35rem;
}

.menu-card h3,
.event-card h3 {
  font-size: 0.82rem;
  line-height: 1.24;
}

.price {
  color: var(--gold-soft);
  font-weight: 800;
  white-space: nowrap;
  font-size: 0.8rem;
}

.menu-card p,
.event-card p {
  color: var(--muted);
  font-size: 0.74rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  margin-top: 0.6rem;
  padding: 0.24rem 0.5rem;
  border-radius: 999px;
  background: rgba(47, 105, 72, 0.18);
  color: var(--green-soft);
  font-size: 0.62rem;
  font-weight: 700;
  border: 1px solid rgba(47, 105, 72, 0.24);
}

.menu-cta {
  margin-top: 1.7rem;
  display: flex;
  justify-content: flex-start;
}

.menu-cta .btn {
  min-width: 180px;
}

/* EVENTS */

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

.event-number {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  margin-bottom: 0.68rem;
  background: rgba(216, 178, 122, 0.12);
  border: 1px solid rgba(216, 178, 122, 0.18);
  color: var(--gold-soft);
  font-weight: 800;
  font-size: 0.8rem;
}

/* GALLERY */

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: start;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  box-shadow: var(--shadow);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.03) 14%,
    rgba(0,0,0,0.18) 64%,
    rgba(0,0,0,0.34) 100%
  );
  pointer-events: none;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.gallery-item:hover img {
  transform: scale(1.03);
}

.gallery-item.oven-card,
.gallery-item.window-card {
  min-height: 320px;
  height: 320px;
}

.gallery-item.oven-card img,
.gallery-item.window-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.full-width-brand {
  grid-column: 1 / -1;
  min-height: 240px;
  padding: 2rem 1.5rem;
}

.gallery-caption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  background: rgba(8,8,9,0.72);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.22);
}

.gallery-caption strong {
  display: block;
  margin-bottom: 0.14rem;
  font-size: 0.95rem;
  line-height: 1.2;
  color: #fff;
}

.gallery-caption span {
  color: #dccfbc;
  font-size: 0.78rem;
  line-height: 1.45;
}

.logo-card {
  min-height: 230px;
  padding: 1.6rem 1.2rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    radial-gradient(circle at top, rgba(255,255,255,0.06), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.02));
}

.logo-card::after {
  display: none;
}

.logo-card.full-width-brand {
  min-height: 240px;
  padding: 2rem 1.5rem;
}

.logo-card.full-width-brand img {
  max-width: 110px;
  max-height: 110px;
  margin-bottom: 1.2rem;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,0.45));
  transition: transform 0.4s ease;
}

.logo-card.full-width-brand:hover img {
  transform: scale(1.05);
}

.logo-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.logo-content strong {
  display: block;
  font-size: 1.05rem;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: #fff;
}

.logo-content span {
  color: #dccfbc;
  font-size: 0.8rem;
  line-height: 1.45;
}

.logo-card.full-width-brand .logo-content strong {
  font-size: 1.35rem;
}

.logo-card.full-width-brand .logo-content span {
    font-size: 1rem;
  opacity: 0.9;
}
/* CONTACT */

.contact-card,
.form-card {
  padding: 1.05rem;
}

.contact-points {
  display: grid;
  gap: 0.72rem;
  margin: 0.9rem 0 1rem;
}

.contact-point {
  padding: 0.72rem;
  border-radius: 15px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.07);
}

.contact-point strong {
  display: block;
  margin-bottom: 0.14rem;
  font-size: 0.86rem;
}

.contact-point span {
  color: var(--muted);
  font-size: 0.8rem;
}

form {
  display: grid;
  gap: 0.78rem;
}

.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.78rem;
}

input,
textarea,
select {
  width: 100%;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  border-radius: 14px;
  padding: 0.82rem 0.9rem;
  outline: none;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(216, 178, 122, 0.34);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 0 0 4px rgba(216, 178, 122, 0.08);
}

textarea {
  min-height: 135px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder,
select {
  color: #ab9f92;
}

/* FOOTER */

.footer {
  padding: 1.25rem 0 2.35rem;
  color: #ab9f90;
  font-size: 0.84rem;
}

.footer-inner {
  padding-top: 1.15rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer a:hover {
  color: var(--gold-soft);
}

.footer-right {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.footer-link {
  position: relative;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  opacity: 0.85;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-link:hover {
  opacity: 1;
  transform: translateY(-2px);
  color: #f5a623;
}

.footer-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 1px;
  background: #f5a623;
  transition: width 0.3s ease;
}

.footer-link:hover::after {
  width: 100%;
}

.footer-call {
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.footer-call:hover {
  border-color: #f5a623;
  color: #f5a623;
  transform: translateY(-2px);
}

/* MENU PAGE */

.menu-page-hero {
  position: relative;
  padding: 3.2rem 0 1.8rem;
  overflow: hidden;
}

.menu-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(
      180deg,
      rgba(6,6,7,0.86) 0%,
      rgba(6,6,7,0.7) 40%,
      rgba(6,6,7,0.58) 70%,
      rgba(6,6,7,0.8) 100%
    ),
    url("images/oven-pizza.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  transform: scale(1.02);
}

.menu-page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top center, rgba(216,178,122,0.05), transparent 30%),
    linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.4));
  z-index: 0;
}

/* HERO CONTENT */

.menu-page-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.9rem;
}

.menu-page-copy {
  max-width: 720px;
  margin: 0 auto;
}

.menu-page-copy .section-label {
  margin-bottom: 0.7rem;
}

.menu-page-copy h1,
.menu-page-copy h2 {
  max-width: 620px;
  margin: 0 auto;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.9rem);
  line-height: 1;
  letter-spacing: -0.025em;
  text-wrap: balance;
  text-shadow: 0 8px 22px rgba(0,0,0,0.34);
}

.menu-page-copy p {
  max-width: 560px;
  margin: 0.85rem auto 0;
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.65;
  text-shadow: 0 4px 16px rgba(0,0,0,0.26);
}

.menu-page-copy .hero-actions {
  display: flex;
  justify-content: center;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin-top: 1.1rem;
}

/* NOTE CARD */

.menu-page-note {
  position: relative;
  width: min(100%, 320px);
  margin: 0.55rem auto 0;
  padding: 0.85rem 1rem;

  display: flex;
  flex-direction: column;
  text-align: left;

  border-radius: 12px;

  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.05),
    rgba(255,255,255,0.02)
  );

  border: 1px solid rgba(255,255,255,0.08);

  box-shadow:
    0 8px 18px rgba(0,0,0,0.22),
    inset 0 1px 0 rgba(255,255,255,0.04);
}

.menu-page-note::before {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: var(--gold-soft);
  margin-bottom: 0.6rem;
  opacity: 0.7;
}

.menu-page-note .mini-label {
  margin-bottom: 0.3rem;
  font-size: 0.7rem;
}

.menu-page-note h3 {
  font-size: 0.88rem;
  line-height: 1.3;
  margin-bottom: 0.35rem;
}

.menu-page-note p {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.5;
  text-shadow: none;
}

/* PREMIUM LINES */

.menu-note-lines {
  margin-top: 0.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.menu-note-lines span {
  position: relative;
  padding-left: 0.85rem;
  color: var(--text-soft);
  font-size: 0.75rem;
  line-height: 1.45;
}

.menu-note-lines span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold-soft);
  opacity: 0.75;
}

/* MENU GRID */

.menu-page-section {
  padding-top: 1.6rem;
}

.menu-full-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.menu-column {
  padding: 0.9rem 1rem;
  border-radius: 20px;
}

.menu-line {
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.menu-line:first-child {
  padding-top: 0.2rem;
}

.menu-line:last-child {
  border-bottom: none;
  padding-bottom: 0.2rem;
}

.menu-line-top {
  display: flex;
  justify-content: space-between;
  gap: 0.6rem;
  margin-bottom: 0.2rem;
}

.menu-line-top h3 {
  font-size: 0.92rem;
  line-height: 1.25;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.menu-line p {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.5;
  max-width: 92%;
}

.price {
  font-size: 0.8rem;
  color: var(--gold-soft);
  font-weight: 700;
  white-space: nowrap;
}

.veg-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 0.35rem;
  border-radius: 999px;
  background: rgba(47, 105, 72, 0.18);
  border: 1px solid rgba(47, 105, 72, 0.28);
  color: var(--green-soft);
  font-size: 0.68rem;
  font-weight: 800;
}

.menu-line-simple p {
  max-width: 100%;
}

/* BOTTOM CTA */

.menu-bottom-cta {
  margin-top: 1.4rem;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.08);

  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.menu-bottom-copy h3 {
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}

.menu-bottom-copy p {
  font-size: 0.78rem;
  color: var(--muted);
}

.menu-bottom-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

/* MOBILE */

@media (max-width: 900px) {
  .menu-page-hero {
    padding: 3rem 0 1.6rem;
  }

  .menu-page-copy h1,
  .menu-page-copy h2 {
    max-width: 100%;
    font-size: clamp(1.7rem, 7vw, 2.5rem);
  }

  .menu-page-copy p {
    font-size: 0.9rem;
  }

  .menu-page-note {
    width: 100%;
    max-width: 100%;
  }

  .menu-full-grid {
    grid-template-columns: 1fr;
  }

  .menu-line p {
    max-width: 100%;
  }
}
/* FIND US PAGE */

.findus-page {
  position: relative;
  padding: 2.8rem 0 2rem;
  overflow: hidden;
  isolation: isolate;
}

.findus-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(7,7,8,0.84), rgba(7,7,8,0.9)),
    url("images/van_2.jpg") center center / cover no-repeat;
  z-index: -2;
}

.findus-page::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(196, 73, 51, 0.1), transparent 24%),
    radial-gradient(circle at bottom right, rgba(216, 178, 122, 0.06), transparent 28%);
  z-index: -1;
}

.findus-page .section-intro {
  max-width: 820px;
  margin: 0 auto 1.7rem;
  text-align: center;
}

.findus-page .section-label {
  margin-bottom: 0.6rem;
}

.findus-page .section-intro h1 {
  max-width: 100%;
  margin: 0 auto;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1;
  text-wrap: balance;
}

.findus-page .section-intro p {
  max-width: 720px;
  margin: 0.85rem auto 0;
  font-size: 0.95rem;
  color: var(--text-soft);
}

.findus-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  gap: 1rem;
  align-items: start;
}

.findus-schedule,
.findus-map,
.findus-card {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.025));
  border: 1px solid rgba(255,255,255,0.09);
  box-shadow: 0 14px 34px rgba(0,0,0,0.24);
  margin: 0;
}

.findus-schedule {
  padding: 0.9rem 1rem;
}

.findus-day {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.85rem;
  padding: 0.72rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.findus-day:first-child {
  padding-top: 0.1rem;
}

.findus-day:last-child {
  border-bottom: none;
  padding-bottom: 0.1rem;
}

.findus-day strong {
  display: block;
  font-size: 0.96rem;
  margin-bottom: 0.12rem;
  color: var(--text);
}

.findus-info span {
  display: block;
  color: var(--text-soft);
  font-size: 0.84rem;
}

.findus-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.18rem;
  text-align: right;
  flex-shrink: 0;
}

.findus-meta span {
  color: var(--muted);
  font-size: 0.76rem;
}

.findus-meta a {
  margin-top: 0.16rem;
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 700;
  transition: opacity var(--transition), transform var(--transition);
}

.findus-meta a:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.findus-sidebar {
  display: grid;
  grid-template-rows: auto auto;
  gap: 0.8rem;
  align-self: start;
}

.findus-map {
  padding: 0.7rem;
}

.findus-map iframe {
  width: 100%;
  height: 185px;
  min-height: 185px;
  border-radius: 16px;
  border: 0;
  display: block;
  filter: grayscale(0.08) contrast(1.02);
}

.findus-card {
  padding: 0.95rem 1rem;
}

.findus-card .mini-label {
  margin-bottom: 0.45rem;
  font-size: 0.72rem;
}

.findus-card h3 {
  font-size: 1rem;
  line-height: 1.12;
  margin-bottom: 0.55rem;
}

.findus-card p {
  color: var(--text-soft);
  font-size: 0.82rem;
  line-height: 1.55;
}

.findus-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.9rem;
}

.findus-actions .btn {
  min-height: 40px;
  padding: 0.7rem 1rem;
}

.findus-socials {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-top: 0.85rem;
}

.findus-socials a {
  font-size: 0.85rem;
}

@media (max-width: 900px) {
  .findus-layout {
    grid-template-columns: 1fr;
  }

  .findus-page .section-intro h1 {
    font-size: clamp(1.8rem, 7vw, 2.4rem);
  }

  .findus-day {
    grid-template-columns: 1fr;
  }

  .findus-meta {
    align-items: flex-start;
    text-align: left;
  }

  .findus-map iframe {
    height: 200px;
    min-height: 200px;
  }
}
/* RESPONSIVE */

@media (max-width: 1024px) {
  .hero-inner,
  .story-grid,
  .menu-preview,
  .contact-grid,
  .gallery-grid,
  .menu-page-hero-inner,
  .menu-full-grid,
  .findus-layout {
    grid-template-columns: 1fr;
  }

  .menu-cards,
  .events-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-card {
    justify-self: start;
    transform: translateY(10px);
  }

  .hero-card:hover {
    transform: translateY(8px);
  }

  .menu-board {
    max-width: 100%;
  }

  .menu-board img {
    height: 180px;
  }

  .gallery-item.large {
    min-height: 420px;
  }

  .logo-card {
    min-height: 210px;
  }

  .findus-sidebar {
    grid-template-rows: auto auto;
    height: auto;
  }

  .findus-map {
    height: auto;
  }
}

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

  .brand {
    max-width: calc(100% - 70px);
  }

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

  .brand-text strong {
    font-size: 1.02rem;
  }

  .brand-text span {
    font-size: 0.62rem;
  }

  .menu-toggle {
    display: flex;
    position: relative;
    z-index: 60;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 0.7rem);
    right: 0;
    width: min(300px, 100%);
    padding: 0.9rem;
    border-radius: 20px;
    background: rgba(10,10,10,0.94);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 18px 46px rgba(0,0,0,0.4);
    backdrop-filter: blur(18px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.62rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: 0.3s ease;
  }

  .nav-links.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links a {
    width: 100%;
    padding: 0.82rem 0.9rem;
    border-radius: 14px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
  }

  .nav-links .btn,
  .lang-switch {
    width: 100%;
  }

  .hero {
    min-height: auto;
  }

  .hero::before {
    background-image:
      linear-gradient(180deg, rgba(6,6,7,0.44) 0%, rgba(6,6,7,0.24) 28%, rgba(6,6,7,0.66) 100%),
      url("images/van_1.jpg");
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 2.4rem 0 3rem;
  }

  h1 {
    font-size: clamp(1.95rem, 9vw, 2.65rem);
    max-width: 8.4ch;
  }

  .hero-copy p,
  .section-intro p,
  .menu-page-copy p {
    max-width: 100%;
    font-size: 0.9rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn,
  .menu-bottom-actions .btn,
  .findus-actions .btn {
    width: 100%;
  }

  .hero-card {
    width: 100%;
    justify-self: stretch;
    transform: none;
    margin-top: 0.7rem;
  }

  .hero-card:hover {
    transform: none;
  }

  .feature-row,
  .stats,
  .menu-cards,
  .events-grid,
  .row {
    grid-template-columns: 1fr;
  }

  .gallery-grid,
  .gallery-main,
  .gallery-side {
    gap: 0.85rem;
  }

  .gallery-item.large {
    min-height: 280px;
  }

  .gallery-caption {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    padding: 0.72rem 0.82rem;
    border-radius: 16px;
  }

  .gallery-caption strong {
    font-size: 0.86rem;
  }

  .gallery-caption span {
    font-size: 0.72rem;
  }

  .logo-card {
    min-height: 190px;
    padding: 1.3rem 1rem 1.05rem;
  }

  .logo-card img {
    max-width: 88px;
    max-height: 88px;
    margin-bottom: 0.75rem;
  }

  .logo-content strong {
    font-size: 0.88rem;
  }

  .logo-content span {
    font-size: 0.74rem;
  }

  section,
  .menu-page-hero {
    padding: 3.8rem 0;
  }

  .menu-page-hero {
    padding-bottom: 1.6rem;
  }

  .menu-page-hero::before {
    background-image:
      linear-gradient(180deg, rgba(6,6,7,0.74) 0%, rgba(6,6,7,0.52) 36%, rgba(6,6,7,0.82) 100%),
      url("images/oven-pizza.png");
    background-position: center;
  }

  .floating-badge {
    left: 0.85rem;
    right: 0.85rem;
    bottom: 0.85rem;
    font-size: 0.75rem;
  }

  .contact-card,
  .form-card,
  .story-copy,
  .menu-column,
  .menu-page-note,
  .findus-card,
  .findus-schedule {
    padding: 1rem;
  }

  h2 {
    font-size: clamp(1.6rem, 6.8vw, 2.05rem);
  }

  .findus-page {
    padding: 4rem 0;
  }

  .findus-page .section-intro {
    margin-bottom: 1.5rem;
  }

  .findus-page .section-intro h1 {
    font-size: clamp(2.1rem, 9vw, 3rem);
    max-width: 10ch;
  }

  .findus-page .section-intro p {
    font-size: 0.92rem;
  }

  .findus-day {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .findus-meta {
    align-items: flex-start;
    text-align: left;
  }

  .findus-map,
  .findus-map iframe {
    min-height: 260px;
    height: auto;
  }

  .findus-actions {
    flex-direction: column;
  }

  .findus-actions .btn {
    width: 100%;
  }

  .footer {
    padding: 1rem 0 1.8rem;
    font-size: 0.78rem;
  }

  .footer-inner {
    gap: 0.8rem;
  }

  .footer-right {
    gap: 1rem;
  }

  .footer-call {
    width: 100%;
    justify-content: center;
  }
}

#gallery .section-intro {
  margin-bottom: 1.2rem;
}

@media (max-width: 768px) {
  .brand img {
    width: 52px;
    height: 52px;
  }

  .logo-card img {
    width: 68px;
  }

  .logo-content strong {
    font-size: 1.12rem;
  }

  .logo-content span {
    font-size: 0.88rem;
  }
}

.footer-socials {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  opacity: 0.85;
  transition: all 0.3s ease;
}

.social-link svg {
  opacity: 0.6;
  transition: all 0.3s ease;
}

.social-link:hover {
  opacity: 1;
  transform: translateX(4px);
}

.social-link:hover svg {
  opacity: 1;
  transform: translateX(2px);
}

.menu-desserts {
  margin-top: 4rem;
}

/* TITLE */
.menu-subtitle {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 2rem;
}

/* GRID */
.menu-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

/* ITEM */
.menu-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;

  padding: 0.9rem;
  border-radius: 16px;

  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);

  transition: all 0.25s ease;
}

/* HOVER */
.menu-item:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.05);
}

/* 🔥 MINI IMAGE */
.menu-item img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
}

/* INFO */
.menu-item-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

/* TEXT */
.menu-item-info h4 {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 500;
}

/* PRICE */
.price {
  color: #d8b07a;
  font-weight: 600;
  font-size: 0.95rem;
}

/* 📱 MOBILE */
@media (max-width: 900px) {
  .menu-items {
    grid-template-columns: 1fr;
  }
}