*,
*::before,
*::after { box-sizing: border-box; }

:root {
  --bg: #0b1020;
  --bg-2: #0f172a;
  --surface: #111a32;
  --surface-2: #16213f;
  --border: rgba(148, 163, 184, 0.18);
  --text: #e2e8f0;
  --text-dim: #94a3b8;
  --text-mute: #64748b;
  --muted: var(--text-dim);
  --brand-primary: #6366f1;
  --brand-accent: #22d3ee;
  --nav-bg: color-mix(in srgb, var(--bg) 82%, transparent);
  --hero-scrim: linear-gradient(
    180deg,
    color-mix(in srgb, var(--bg) 35%, transparent),
    color-mix(in srgb, var(--bg) 92%, transparent)
  );
  --gradient: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-accent) 100%);
  --gradient-soft: linear-gradient(135deg, color-mix(in srgb, var(--brand-primary) 18%, transparent) 0%, color-mix(in srgb, var(--brand-accent) 12%, transparent) 100%);
  --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.45);
  --shadow-glow: 0 0 60px -10px color-mix(in srgb, var(--brand-primary) 55%, transparent);
  --radius: 16px;
  --radius-sm: 10px;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.container {
  width: min(1140px, calc(100% - 2rem));
  margin: 0 auto;
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: var(--nav-bg);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 1rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: var(--shadow-glow);
  background: var(--surface-2);
  flex-shrink: 0;
}
.brand-name {
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nav-actions { display: flex; gap: 10px; flex-shrink: 0; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
  border: 0;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 10px 25px -8px color-mix(in srgb, var(--brand-primary) 60%, transparent);
}
.btn-primary:hover { transform: translateY(-2px); }
.btn-secondary {
  background: rgba(148, 163, 184, 0.08);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-secondary:hover { background: rgba(148, 163, 184, 0.14); }
.btn-large { min-height: 52px; padding: 0 26px; font-size: 15px; }

/* Hero */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(360px, 52vh, 540px);
  padding: 56px 0;
  overflow: hidden;
}
.hero .container {
  width: 100%;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 15%, color-mix(in srgb, var(--brand-primary) 25%, transparent), transparent 45%),
    radial-gradient(circle at 85% 25%, color-mix(in srgb, var(--brand-accent) 18%, transparent), transparent 50%);
  pointer-events: none;
}
.hero-banner {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--hero-scrim);
}
.hero-content {
  position: relative;
  max-width: 640px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--brand-primary) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--brand-primary) 30%, transparent);
  font-size: 13px;
  font-weight: 600;
  color: color-mix(in srgb, var(--brand-primary) 70%, white);
  margin-bottom: 18px;
}
h1 {
  margin: 0 0 18px;
  font-size: clamp(2.1rem, 4.8vw, 3.25rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
}
h1 .grad {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lede {
  margin: 0 0 28px;
  font-size: 1.1rem;
  color: var(--text-dim);
  max-width: 620px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 8px; }

/* Sections */
section { padding: 72px 0; }
.section-head { margin-bottom: 28px; }
.section-head h2 {
  margin: 0 0 8px;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.section-head p { margin: 0; color: var(--text-dim); }
.section-head--inline {
  margin-bottom: 14px;
}
.section-head--inline h2 {
  margin: 0;
}
.panel-card:not(.panel-card--map) .hero-cta {
  margin-top: auto;
  padding-top: 20px;
}

.contact-map-section {
  padding: 72px 0;
}
.contact-map-grid {
  display: grid;
  gap: 24px;
  align-items: stretch;
}
@media (min-width: 768px) {
  .contact-map-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .contact-map-grid--single {
    grid-template-columns: minmax(0, 560px);
  }
}
.contact-map-col {
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.panel-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin: 0;
}
.panel-card--map {
  padding: 0;
  overflow: hidden;
}
.panel-card--map .map-wrap {
  flex: 1;
  display: flex;
  min-height: 320px;
  border: 0;
  border-radius: 0;
}
.panel-card--map .map-embed {
  flex: 1;
  width: 100%;
  min-height: 320px;
}

.grid-2 {
  display: grid;
  gap: 20px;
}
@media (min-width: 768px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-lg);
}
.card h3 {
  margin: 0 0 14px;
  font-size: 1.1rem;
  font-weight: 700;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--text-dim);
  font-size: 0.95rem;
}
.contact-icon {
  display: none;
  flex-shrink: 0;
  color: var(--brand-primary);
  margin-top: 2px;
}
.contact-text {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  flex: 1;
  min-width: 0;
}
.contact-item strong {
  color: var(--text);
  min-width: 88px;
  font-weight: 600;
}
.contact-item a { color: var(--brand-accent); }
.footer-restaurant-name { display: none; margin: 0; }
.campaign-hint { display: none; }
.menu-cta-wrap { display: none; }

.campaign-grid {
  display: grid;
  gap: 18px;
}
@media (min-width: 640px) {
  .campaign-grid { grid-template-columns: repeat(2, 1fr); }
}
.campaign-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
}
.campaign-card:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--brand-primary) 40%, transparent);
}
.campaign-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.campaign-body { padding: 18px; }
.campaign-body h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}
.campaign-body p {
  margin: 0 0 12px;
  color: var(--text-dim);
  font-size: 0.92rem;
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
}
.panel-card--map .map-wrap {
  border-radius: 0;
  border: 0;
}
.map-embed {
  width: 100%;
  min-height: 320px;
  border: 0;
  display: block;
}

/* Bridge */
.bridge-page {
  min-height: calc(100vh - 72px);
  display: grid;
  place-items: center;
  padding: 48px 0;
}
.bridge-card {
  max-width: 520px;
  text-align: center;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 28px 0 96px;
  color: var(--text-mute);
  font-size: 0.88rem;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 12px;
  border: 1px solid rgba(229, 57, 53, 0.22);
  background: rgba(229, 57, 53, 0.06);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.footer-brand:hover {
  background: rgba(229, 57, 53, 0.1);
  border-color: rgba(229, 57, 53, 0.35);
}
.footer-brand-logo {
  height: 40px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
.footer-brand-tagline {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-dim);
  white-space: nowrap;
}
.footer-spacer {
  flex: 1 1 auto;
}
.social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.social a {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(148, 163, 184, 0.06);
  color: var(--text-dim);
  font-size: 0.85rem;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}
.social a:hover {
  background: rgba(148, 163, 184, 0.12);
  color: var(--text);
}

.bridge-embed-body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.bridge-embed-bar {
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  position: sticky;
  top: 0;
  z-index: 40;
}
.bridge-embed-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
}
.bridge-embed-brand .brand-name {
  font-size: 1rem;
}
.bridge-embed-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.btn-small {
  padding: 8px 14px;
  font-size: 0.85rem;
}
.bridge-embed-main {
  flex: 1;
  display: flex;
  min-height: 0;
}
.bridge-embed-frame {
  flex: 1;
  width: 100%;
  min-height: calc(100vh - 120px);
  border: none;
  background: #fff;
}
.bridge-embed-fallback {
  padding: 48px 16px;
  text-align: center;
  color: var(--muted);
}

.floating-actions {
  position: fixed;
  right: 16px;
  bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 60;
}
.floating-actions .btn {
  box-shadow: var(--shadow-lg);
  border-radius: 999px;
}
.floating-actions .action-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--gradient);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  text-decoration: none;
}
.floating-actions .action-link svg {
  flex-shrink: 0;
}

.minimal-stack {
  display: grid;
  gap: 20px;
}
.minimal-hero {
  text-align: center;
  padding: 48px 0 24px;
}
.minimal-hero .brand-logo {
  width: 88px;
  height: 88px;
  margin: 0 auto 16px;
}

@media (max-width: 640px) {
  .nav-inner { min-height: 64px; }
  .brand-name { max-width: none; }
  .hero { padding: 48px 0 64px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  section { padding: 56px 0; }
}

.menu-preview-section { padding: 72px 0; }
.menu-preview-group + .menu-preview-group { margin-top: 32px; }
.menu-preview-title {
  margin: 0 0 16px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
}
.menu-preview-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}
.menu-preview-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform 0.2s, border-color 0.2s;
}
.menu-preview-card:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--brand-primary) 35%, transparent);
}
.menu-preview-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  background: var(--surface-2);
}
.menu-preview-card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.menu-preview-card-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  min-width: 0;
}
.menu-preview-card h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.menu-preview-price {
  color: var(--brand-accent);
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}
.menu-preview-desc {
  margin: 0;
  min-height: 1.25em;
  color: var(--text-dim);
  font-size: 0.88rem;
  line-height: 1.25;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.menu-preview-desc:empty {
  visibility: hidden;
}
.menu-preview-card-clickable {
  cursor: pointer;
}
.menu-preview-hint {
  margin-top: auto;
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 600;
}

body.qs-modal-open {
  overflow: hidden;
}
.qs-product-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
}
.qs-product-modal[hidden] {
  display: none !important;
}
.qs-product-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}
.qs-product-modal-panel {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  max-height: min(88vh, 720px);
  background: var(--surface);
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
@media (min-width: 640px) {
  .qs-product-modal {
    align-items: center;
    padding: 24px;
  }
  .qs-product-modal-panel {
    border-radius: 20px;
    max-height: min(86vh, 720px);
  }
}
.qs-product-modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  color: var(--text);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}
.qs-product-modal-content {
  overflow: auto;
  padding: 20px 20px 28px;
}
.qs-detail-image {
  width: 100%;
  max-height: 220px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 16px;
  background: var(--surface-2);
}
.qs-detail-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 6px;
}
.qs-detail-head h2 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.25;
}
.qs-detail-price {
  font-weight: 800;
  color: var(--brand-primary);
  white-space: nowrap;
  font-size: 1.1rem;
  padding-top: 2px;
}
.qs-detail-desc {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.45;
}
.qs-detail-section {
  margin-top: 14px;
  padding: 0; /* landing `section` padding'ini modalda ez */
}
.qs-detail-section h3 {
  margin: 0 0 8px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
}
.qs-detail-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 12px;
  margin-bottom: 8px;
  background: var(--surface-2);
}
.qs-detail-card h4 {
  margin: 0 0 4px;
  font-size: 0.95rem;
  line-height: 1.3;
}
.qs-option-list,
.qs-combo-list,
.qs-option-list li,
.qs-combo-list li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.qs-option-row,
.qs-combo-choice-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 5px 0;
  border-top: 1px solid var(--border);
}
.qs-option-row:first-child,
.qs-combo-choice:first-child > .qs-combo-choice-main {
  border-top: none;
  padding-top: 0;
}
.qs-option-label {
  min-width: 0;
  line-height: 1.35;
}
.qs-option-extra {
  flex-shrink: 0;
  font-style: normal;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--brand-primary);
  white-space: nowrap;
}
.qs-combo-choice + .qs-combo-choice {
  margin-top: 2px;
}
.qs-combo-nested {
  margin: 2px 0 6px 8px;
  padding-left: 10px;
  border-left: 2px solid var(--border);
}
.qs-combo-nested-title {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  margin: 4px 0 2px;
}
.qs-detail-row {
  margin-bottom: 8px;
}
.qs-detail-row:last-child {
  margin-bottom: 0;
}
.qs-detail-row > span {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 2px;
}
.qs-detail-row p {
  margin: 0;
  line-height: 1.45;
}
.qs-detail-warning p {
  color: #b45309;
}
.qs-energy-value {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.qs-energy-ico {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: #f59e0b;
}
.qs-diet-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.qs-diet-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 7px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.15;
  border: 1px solid transparent;
}
.qs-diet-ico {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  display: block;
}
.qs-diet-chip-label {
  display: inline !important;
  margin: 0 !important;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  letter-spacing: inherit;
}
.qs-diet-chip--ok {
  color: #047857;
  background: linear-gradient(
    165deg,
    rgba(16, 185, 129, 0.16) 0%,
    rgba(16, 185, 129, 0.08) 100%
  );
  border-color: rgba(16, 185, 129, 0.32);
  box-shadow: 0 1px 2px rgba(16, 185, 129, 0.08);
}
.qs-diet-chip--warn {
  color: #c2410c;
  background: linear-gradient(
    165deg,
    rgba(251, 146, 60, 0.18) 0%,
    rgba(251, 146, 60, 0.08) 100%
  );
  border-color: rgba(251, 146, 60, 0.36);
  box-shadow: 0 1px 2px rgba(234, 88, 12, 0.08);
}
.qs-detail-loading,
.qs-detail-error {
  text-align: center;
  padding: 48px 16px;
  color: var(--muted);
}
.qs-detail-error {
  color: #b91c1c;
}

@media (min-width: 900px) {
  .menu-preview-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
  .menu-preview-card img {
    height: 140px;
  }
}

/* ========== MODERN_HERO classic-modern premium ========== */
body.ps-modern-hero {
  font-family: 'Montserrat', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  padding-bottom: 100px;
}

body.ps-modern-hero .nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), transparent);
  border-bottom: 0;
  backdrop-filter: none;
  transition: background 0.4s, padding 0.4s, border-color 0.4s;
}
body.ps-modern-hero .nav.scrolled {
  background: color-mix(in srgb, var(--bg) 95%, transparent);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid color-mix(in srgb, var(--brand-primary) 22%, transparent);
}
body.ps-modern-hero .nav-inner {
  min-height: 88px;
  padding-left: 0;
  padding-right: 0;
  width: min(1140px, calc(100% - 2.5rem));
  margin: 0 auto;
  transition: min-height 0.3s;
}
body.ps-modern-hero .nav.scrolled .nav-inner {
  min-height: 64px;
}
body.ps-modern-hero .brand-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1rem, 4.2vw, 1.55rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-primary);
  white-space: normal;
  overflow: visible;
  text-overflow: unset;
  line-height: 1.2;
  max-width: none;
}
body.ps-modern-hero .brand {
  flex: 1;
  min-width: 0;
}
body.ps-modern-hero .nav-actions {
  flex-shrink: 0;
}
body.ps-modern-hero .brand-logo {
  border-radius: 50%;
  box-shadow: none;
  border: 1px solid color-mix(in srgb, var(--brand-primary) 45%, transparent);
}
body.ps-modern-hero .nav-actions .btn-secondary {
  border: 1px solid color-mix(in srgb, var(--brand-primary) 55%, transparent);
  color: var(--brand-primary);
  background: transparent;
  border-radius: 0;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

/* Hero */
body.ps-modern-hero .hero {
  height: 100vh;
  min-height: 560px;
  max-height: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
body.ps-modern-hero .hero::before { display: none; }
body.ps-modern-hero .hero-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  z-index: 0;
  animation: psHeroZoom 20s infinite alternate;
}
@keyframes psHeroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.15); }
}
body.ps-modern-hero .hero-overlay {
  z-index: 1;
  background: rgba(0, 0, 0, 0.58);
}
body.ps-modern-hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
body.ps-modern-hero .eyebrow {
  display: block;
  padding: 0;
  border: 0;
  background: none;
  border-radius: 0;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brand-primary);
  margin-bottom: 1.25rem;
}
body.ps-modern-hero .hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  letter-spacing: 0;
  margin: 0 0 1rem;
  color: var(--text);
}
body.ps-modern-hero .hero h1 .grad,
body.ps-modern-hero .hero h1 {
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  color: var(--text);
}
body.ps-modern-hero .lede {
  color: var(--text-dim);
  letter-spacing: 0.04em;
  max-width: 36rem;
  margin-bottom: 2rem;
}
body.ps-modern-hero .btn-outline-gold {
  background: transparent;
  color: var(--brand-primary);
  border: 1px solid var(--brand-primary);
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  font-size: 0.78rem;
  min-height: 52px;
  padding: 0 36px;
  box-shadow: none;
}
body.ps-modern-hero .btn-outline-gold:hover {
  background: var(--brand-primary);
  color: #111;
  transform: none;
}
body.ps-modern-hero .scroll-down {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--brand-primary);
  animation: psBounce 2s infinite;
  display: flex;
}
@keyframes psBounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

/* Sections */
body.ps-modern-hero .section,
body.ps-modern-hero .menu-preview-section,
body.ps-modern-hero .contact-map-section {
  padding: 100px 10%;
}
body.ps-modern-hero .section-header,
body.ps-modern-hero .menu-preview-section .section-head,
body.ps-modern-hero .contact-map-section .section-head--inline {
  text-align: center;
  margin-bottom: 48px;
}
body.ps-modern-hero .section-header h2,
body.ps-modern-hero .menu-preview-section .section-head h2,
body.ps-modern-hero .contact-info .section-head h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  margin: 0 0 14px;
  letter-spacing: 0;
}
body.ps-modern-hero .divider {
  width: 80px;
  height: 2px;
  background: var(--brand-primary);
  margin: 0 auto;
}
body.ps-modern-hero .menu-preview-section {
  background: var(--bg-2);
  scroll-margin-top: 88px;
}
body.ps-modern-hero .menu-preview-section .container {
  width: 100%;
  max-width: none;
}

/* Campaigns horizontal */
body.ps-modern-hero .campaign-grid {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  padding-bottom: 12px;
  scrollbar-width: none;
  grid-template-columns: none;
}
body.ps-modern-hero .campaign-grid::-webkit-scrollbar { display: none; }
body.ps-modern-hero .campaign-card {
  flex: 0 0 auto;
  min-width: 320px;
  width: min(360px, 80vw);
  height: 440px;
  position: relative;
  border-radius: 15px;
  border: 0;
  background: var(--surface);
  cursor: pointer;
}
body.ps-modern-hero .campaign-card:hover {
  transform: none;
  border-color: transparent;
}
body.ps-modern-hero .campaign-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
body.ps-modern-hero .campaign-card:hover img {
  transform: scale(1.08);
}
body.ps-modern-hero .campaign-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 36px 28px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.92), transparent);
  z-index: 1;
}
body.ps-modern-hero .campaign-body h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.7rem;
  color: var(--brand-primary);
  margin: 0 0 8px;
}
body.ps-modern-hero .campaign-body p {
  display: none;
}
body.ps-modern-hero .campaign-hint {
  display: block;
  font-size: 0.85rem;
  color: var(--text-dim);
  font-weight: 300;
}
body.ps-modern-hero .campaign-cta {
  display: none;
}

/* Menu rows */
body.ps-modern-hero .menu-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}
body.ps-modern-hero .menu-preview-card {
  flex-direction: row;
  align-items: center;
  gap: 18px;
  padding: 18px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid color-mix(in srgb, var(--text) 8%, transparent);
  border-radius: 0;
  box-shadow: none;
  min-height: 0;
}
body.ps-modern-hero .menu-preview-card:hover {
  transform: none;
  background: color-mix(in srgb, var(--text) 4%, transparent);
  border-color: color-mix(in srgb, var(--text) 8%, transparent);
}
body.ps-modern-hero .menu-preview-card img,
body.ps-modern-hero .menu-preview-card .menu-img {
  width: 96px;
  height: 96px;
  min-width: 96px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--brand-primary);
  flex-shrink: 0;
}
body.ps-modern-hero .menu-preview-card-body {
  padding: 0;
  flex: 1;
  min-width: 0;
}
body.ps-modern-hero .menu-preview-card h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 400;
  white-space: normal;
}
body.ps-modern-hero .menu-preview-price {
  color: var(--brand-primary);
  font-size: 1.1rem;
}
body.ps-modern-hero .menu-preview-desc {
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-weight: 300;
  font-size: 0.85rem;
}
body.ps-modern-hero .menu-preview-hint {
  display: none;
}
body.ps-modern-hero .menu-preview-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 400;
  color: var(--brand-primary);
  text-align: center;
}
body.ps-modern-hero .menu-cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

/* Contact */
body.ps-modern-hero .contact-map-section .container {
  width: 100%;
  max-width: none;
}
body.ps-modern-hero .contact-map-grid {
  gap: 48px;
  align-items: center;
}
body.ps-modern-hero .contact-info .section-head {
  text-align: left;
  margin-bottom: 28px;
}
body.ps-modern-hero .contact-info .section-head h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--brand-primary);
  text-align: left;
}
body.ps-modern-hero .contact-map-col.map-box .section-head {
  display: none;
}
body.ps-modern-hero .panel-card {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}
body.ps-modern-hero .contact-icon {
  display: flex;
  color: var(--brand-primary);
  margin-top: 4px;
}
body.ps-modern-hero .contact-text {
  flex-direction: column;
  gap: 4px;
}
body.ps-modern-hero .contact-item {
  margin-bottom: 8px;
  font-size: 1.05rem;
  font-weight: 300;
  gap: 18px;
}
body.ps-modern-hero .contact-item strong {
  display: none;
}
body.ps-modern-hero .contact-cta .btn {
  border-radius: 0;
  border: 1px solid var(--brand-primary);
  background: transparent;
  color: var(--brand-primary);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  box-shadow: none;
}
body.ps-modern-hero .contact-cta .btn:hover {
  background: var(--brand-primary);
  color: #111;
}
body.ps-modern-hero .panel-card--map {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--brand-primary) 30%, transparent);
  min-height: 400px;
}
body.ps-modern-hero .panel-card--map .map-wrap,
body.ps-modern-hero .panel-card--map .map-embed {
  min-height: 400px;
  filter: grayscale(1) invert(0.88) contrast(0.95);
}

/* Floating pill bar */
body.ps-modern-hero .floating-actions.action-bar {
  left: 50%;
  right: auto;
  bottom: 28px;
  transform: translateX(-50%);
  flex-direction: row;
  gap: 36px;
  padding: 14px 44px;
  border-radius: 50px;
  background: color-mix(in srgb, var(--bg) 90%, transparent);
  backdrop-filter: blur(16px);
  border: 1px solid var(--brand-primary);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
}
body.ps-modern-hero .floating-actions .action-link {
  flex-direction: column;
  gap: 4px;
  min-height: 0;
  padding: 0;
  background: transparent;
  color: var(--brand-primary);
  box-shadow: none;
  border-radius: 0;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.25s;
}
body.ps-modern-hero .floating-actions .action-link:hover {
  transform: translateY(-4px);
}
body.ps-modern-hero .floating-actions .action-link svg {
  width: 22px;
  height: 22px;
}

/* Footer */
body.ps-modern-hero .footer {
  padding: 48px 0 120px;
  text-align: center;
  border-top: 1px solid color-mix(in srgb, var(--text) 8%, transparent);
}
body.ps-modern-hero .footer-inner {
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}
body.ps-modern-hero .footer-restaurant-name {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  color: var(--brand-primary);
}
body.ps-modern-hero .footer-spacer { display: none; }
body.ps-modern-hero .social a {
  border-color: color-mix(in srgb, var(--brand-primary) 35%, transparent);
  color: var(--text-dim);
}

/* Product modal */
body.ps-modern-hero .qs-product-modal {
  align-items: center;
  padding: 20px;
}
body.ps-modern-hero .qs-product-modal-backdrop {
  background: color-mix(in srgb, var(--bg) 55%, transparent);
  backdrop-filter: blur(4px);
}
body.ps-modern-hero .qs-product-modal-panel {
  border-radius: 20px;
  border: 1px solid color-mix(in srgb, var(--brand-primary) 55%, var(--border));
  background: var(--surface);
  color: var(--text);
  max-width: 500px;
  width: 100%;
  box-shadow: var(--shadow-lg);
}
body.ps-modern-hero .qs-product-modal-close {
  background: color-mix(in srgb, var(--surface-2) 90%, transparent);
  color: var(--text);
}
body.ps-modern-hero .qs-detail-head h2 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--brand-primary);
  font-weight: 400;
  font-size: 2rem;
}
body.ps-modern-hero .qs-detail-price {
  color: var(--brand-primary);
}
body.ps-modern-hero .qs-detail-desc,
body.ps-modern-hero .qs-detail-section h3,
body.ps-modern-hero .qs-detail-row > span {
  color: var(--text-dim);
}
body.ps-modern-hero .qs-energy-ico {
  color: #fbbf24;
}
body.ps-modern-hero .qs-diet-chip--ok {
  color: #6ee7b7;
  background: linear-gradient(
    165deg,
    rgba(52, 211, 153, 0.18) 0%,
    rgba(16, 185, 129, 0.08) 100%
  );
  border-color: rgba(52, 211, 153, 0.34);
  box-shadow: none;
}
body.ps-modern-hero .qs-diet-chip--warn {
  color: #fdba74;
  background: linear-gradient(
    165deg,
    rgba(251, 146, 60, 0.2) 0%,
    rgba(251, 146, 60, 0.08) 100%
  );
  border-color: rgba(251, 146, 60, 0.4);
  box-shadow: none;
}
body.ps-modern-hero .qs-detail-card {
  background: var(--surface-2);
  border-color: var(--border);
}
body.ps-modern-hero .qs-detail-image {
  background: var(--surface-2);
}

/* Campaign modal */
.qs-campaign-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.qs-campaign-modal[hidden] {
  display: none !important;
}
.qs-campaign-modal-backdrop {
  position: absolute;
  inset: 0;
  background: color-mix(in srgb, var(--bg) 55%, transparent);
  backdrop-filter: blur(4px);
}
.qs-campaign-modal-panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 500px;
  background: var(--surface);
  color: var(--text);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--brand-primary) 55%, var(--border));
  box-shadow: var(--shadow-lg);
}
.qs-campaign-modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  z-index: 2;
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
}
.qs-campaign-modal-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  background: var(--surface-2);
}
.qs-campaign-modal-img[hidden] {
  display: none !important;
}
.qs-campaign-modal-body {
  padding: 36px 32px 40px;
  text-align: center;
}
.qs-campaign-modal-body h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  color: var(--brand-primary);
  margin: 0 0 14px;
  font-weight: 400;
}
.qs-campaign-modal-body p {
  margin: 0 0 22px;
  color: var(--text-dim);
  line-height: 1.75;
  font-weight: 300;
}
.qs-campaign-modal-body .btn[hidden] {
  display: none !important;
}

@media (max-width: 768px) {
  body.ps-modern-hero .section,
  body.ps-modern-hero .menu-preview-section,
  body.ps-modern-hero .contact-map-section {
    padding: 64px 5%;
  }
  body.ps-modern-hero .nav-inner {
    width: calc(100% - 2rem);
  }
  body.ps-modern-hero .campaign-card {
    min-width: 260px;
    height: 380px;
  }
  body.ps-modern-hero .floating-actions.action-bar {
    gap: 22px;
    padding: 12px 28px;
    bottom: 18px;
  }
  body.ps-modern-hero .hero h1 {
    font-size: 3rem;
  }
}

/* Full menu page (/menu) */
body.ps-menu-page {
  padding-top: 88px;
}
body.ps-menu-page .menu-page-hero {
  text-align: center;
  padding: 48px 8% 24px;
}
body.ps-menu-page .menu-page-hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.2rem, 6vw, 3.5rem);
  margin: 0 0 16px;
  color: var(--text);
}
body.ps-menu-page .menu-page-hero .eyebrow {
  display: block;
  padding: 0;
  border: 0;
  background: none;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brand-primary);
  margin-bottom: 12px;
}
body.ps-menu-page .menu-page-hero .divider {
  width: 80px;
  height: 2px;
  background: var(--brand-primary);
  margin: 0 auto 28px;
}
body.ps-menu-page .menu-page-hero .btn-outline-gold {
  background: transparent;
  color: var(--brand-primary);
  border: 1px solid var(--brand-primary);
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  min-height: 44px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
body.ps-menu-page .menu-page-hero .btn-outline-gold:hover {
  background: var(--brand-primary);
  color: #111;
}
body.ps-menu-page .menu-preview-section {
  padding-top: 24px;
}
body.ps-modern-hero .brand {
  text-decoration: none;
  color: inherit;
}
