/*
Theme Name: ЖТК Кейтеринг
Theme URI: https://ztk.ru
Author: АО «Железнодорожная торговая компания»
Description: Корпоративная тема для сайта кейтеринга и питания АО «ЖТК»
Version: 1.0.0
License: Private
Text Domain: ztk
Tags: catering, corporate, russian, custom
*/

/* =========================================================
   CSS VARIABLES / DESIGN TOKENS
   ========================================================= */
:root {
  --red:        #DC3439;
  --red-dark:   #B82B2F;
  --dark:       #394A58;
  --grey-light: #BFC5CE;
  --grey-bg:    #F2F3F4;
  --beige:      #CECCA0;
  --green:      #A3A86B;
  --grey-60:    #606060;
  --grey-80:    #828282;
  --white:      #FFFFFF;
  --black:      #000000;
  --max-w:      1280px;
}

/* =========================================================
   RESET & BASE
   ========================================================= */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'PT Sans', sans-serif;
  font-size: 17px;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--red); text-decoration: none; transition: color .2s; }
a:hover { color: var(--red-dark); }
ul { list-style: none; }

/* =========================================================
   TYPOGRAPHY
   ========================================================= */
h1 { font-size: clamp(40px, 5vw, 72px); font-weight: 700; line-height: 1.1; }
h2 { font-size: clamp(28px, 3.5vw, 46px); font-weight: 700; line-height: 1.2; }
h3 { font-size: clamp(18px, 2vw, 28px); font-weight: 700; line-height: 1.3; }
h4 { font-size: 18px; font-weight: 700; }
p  { line-height: 1.7; }

.accent-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(28px, 3vw, 48px);
  line-height: 1.3;
}

/* =========================================================
   LAYOUT
   ========================================================= */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 768px) { .container { padding: 0 20px; } }
section { padding: 80px 0; }
@media (max-width: 768px) { section { padding: 48px 0; } }

/* =========================================================
   PATTERN BACKGROUND
   ========================================================= */
.pattern-bg {
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23DC3439' fill-opacity='0.06'%3E%3Cpath d='M30 0l15 8.66v17.32L30 34.64 15 25.98V8.66L30 0zm0 6.93L19.5 12.99v12.13L30 31.18l10.5-6.06V12.99L30 6.93z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'PT Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  line-height: 1;
  white-space: nowrap;
}
.btn-primary { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); color: var(--white); }
.btn-secondary { background: transparent; color: var(--red); border-color: var(--red); }
.btn-secondary:hover { background: var(--red); color: var(--white); }
.btn-white { background: var(--white); color: var(--red); border-color: var(--white); }
.btn-white:hover { background: transparent; color: var(--white); border-color: var(--white); }

/* =========================================================
   CARDS
   ========================================================= */
.card {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: 8px;
  padding: 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  transition: all .25s ease;
}
.card:hover {
  border-left: 3px solid var(--red);
  box-shadow: 0 8px 24px rgba(0,0,0,.10);
  transform: translateY(-2px);
}

/* =========================================================
   SECTION LABEL
   ========================================================= */
.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 3px;
  background: var(--red);
  flex-shrink: 0;
}
.section-label span {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
}

/* =========================================================
   BADGE
   ========================================================= */
.badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 2px;
  letter-spacing: .05em;
}

/* =========================================================
   DIVIDER
   ========================================================= */
.section-divider {
  height: 4px;
  background: linear-gradient(90deg, var(--red) 0%, transparent 100%);
  margin: 0;
  border: none;
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 2px solid var(--red);
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 32px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-mark {
  width: 44px;
  height: 44px;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; gap: 1px; }
.logo-text .abbr { font-size: 18px; font-weight: 700; color: var(--red); line-height: 1; letter-spacing: .05em; }
.logo-text .full { font-size: 10px; color: var(--dark); line-height: 1.2; max-width: 180px; letter-spacing: .01em; }

/* Site Navigation (wp_nav_menu) */
.main-navigation {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  justify-content: center;
}
.main-navigation ul { display: flex; gap: 32px; }
.main-navigation ul li { position: relative; }
.main-navigation ul li a {
  text-decoration: none;
  color: var(--dark);
  font-size: 15px;
  font-weight: 700;
  transition: color .2s;
  white-space: nowrap;
}
.main-navigation ul li a:hover,
.main-navigation ul li.current-menu-item a { color: var(--red); }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.burger span { display: block; width: 24px; height: 2px; background: var(--dark); transition: all .3s; }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 74px;
  left: 0; right: 0;
  background: var(--white);
  border-bottom: 2px solid var(--red);
  padding: 24px;
  z-index: 99;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  text-decoration: none;
  color: var(--dark);
  font-size: 17px;
  font-weight: 700;
  padding: 8px 0;
  border-bottom: 1px solid var(--grey-bg);
}

/* =========================================================
   HERO (шаблон главной)
   ========================================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--white);
}
.hero-pattern {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 55%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='52' viewBox='0 0 60 52' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0l30 17.32v17.32L30 52 0 34.64V17.32L30 0zm0 6L4 21.32v15.36L30 46 56 36.68V21.32L30 6z' fill='%23DC3439' fill-opacity='0.07'/%3E%3C/svg%3E");
}
.hero-bottom-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 8px;
  background: var(--red);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  min-height: 100vh;
  padding-top: 72px;
  position: relative;
  z-index: 1;
}
.hero-content { padding: 80px 0; }
.hero-tag { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 28px; }
.hero-title { margin-bottom: 24px; color: var(--black); }
.hero-title .accent { color: var(--red); }
.hero-sub { font-size: 18px; color: var(--dark); margin-bottom: 40px; max-width: 480px; line-height: 1.65; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* =========================================================
   STATS
   ========================================================= */
.stats-section { background: var(--white); padding: 60px 0; border-top: 1px solid var(--grey-light); border-bottom: 1px solid var(--grey-light); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item { text-align: center; padding: 32px 24px; border-right: 1px solid var(--grey-light); }
.stat-item:last-child { border-right: none; }
.stat-number { font-size: clamp(36px, 4vw, 56px); font-weight: 700; color: var(--red); line-height: 1; margin-bottom: 8px; display: block; }
.stat-label { font-size: 14px; color: var(--dark); line-height: 1.4; }

/* =========================================================
   SERVICES GRID
   ========================================================= */
.services-section { background: var(--grey-bg); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.service-card {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: 8px;
  padding: 36px 32px;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
  transition: all .25s ease;
}
.service-card:hover { border-left: 4px solid var(--red); box-shadow: 0 8px 32px rgba(0,0,0,.10); transform: translateY(-3px); }
.service-icon { width: 52px; height: 52px; margin-bottom: 20px; color: var(--red); }
.service-card h3 { margin-bottom: 12px; }
.service-card p { color: var(--grey-60); font-size: 15px; margin-bottom: 20px; }
.service-link { color: var(--red); font-weight: 700; font-size: 14px; display: inline-flex; align-items: center; gap: 6px; transition: gap .2s; }
.service-link:hover { gap: 10px; color: var(--red); }

/* =========================================================
   REVIEWS
   ========================================================= */
.reviews-section { background: var(--grey-bg); }
.reviews-slider { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.review-card { background: var(--white); border: 1px solid var(--grey-light); border-radius: 8px; padding: 32px; }
.review-quote { font-size: 48px; line-height: 1; color: var(--red); opacity: .3; font-family: Georgia,serif; margin-bottom: 12px; }
.review-text { font-size: 15px; color: var(--grey-60); line-height: 1.7; margin-bottom: 24px; }
.review-author { display: flex; align-items: center; gap: 14px; }
.review-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--grey-bg); border: 2px solid var(--grey-light); display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 700; color: var(--dark); flex-shrink: 0; }
.review-name { font-weight: 700; font-size: 14px; color: var(--black); }
.review-position { font-size: 12px; color: var(--grey-80); }

/* =========================================================
   FORM
   ========================================================= */
.form-section { background: var(--white); position: relative; overflow: hidden; }
.form-pattern { position: absolute; right: 0; top: 0; bottom: 0; width: 40%; background-image: url("data:image/svg+xml,%3Csvg width='60' height='52' viewBox='0 0 60 52' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0l30 17.32v17.32L30 52 0 34.64V17.32L30 0zm0 6L4 21.32v15.36L30 46 56 36.68V21.32L30 6z' fill='%23DC3439' fill-opacity='0.05'/%3E%3C/svg%3E"); }
.form-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; z-index: 1; }
.form-info h2 { margin-bottom: 20px; }
.form-info p { color: var(--grey-60); font-size: 15px; line-height: 1.7; margin-bottom: 32px; }
.form-benefits { display: flex; flex-direction: column; gap: 14px; }
.form-benefit { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--dark); }
.form-benefit::before { content: ''; width: 8px; height: 8px; background: var(--red); flex-shrink: 0; }

/* Form fields */
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 13px; font-weight: 700; color: var(--dark); letter-spacing: .03em; }
.form-field input,
.form-field select,
.form-field textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--grey-light);
  border-radius: 4px;
  font-family: 'PT Sans', sans-serif;
  font-size: 15px;
  color: var(--black);
  background: var(--white);
  transition: border-color .2s;
  outline: none;
  width: 100%;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--red); }
.form-checkbox { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--grey-60); }
.form-checkbox input[type="checkbox"] { margin-top: 2px; accent-color: var(--red); }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: var(--dark); color: var(--white); padding: 64px 0 32px; position: relative; overflow: hidden; }
.site-footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--red); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo .abbr { color: var(--white); }
.footer-logo .full { color: var(--grey-light); }
.footer-desc { color: var(--grey-light); font-size: 14px; line-height: 1.7; margin-top: 12px; }
.footer-col h5 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--grey-light); margin-bottom: 16px; }
.footer-col a { display: block; color: var(--white); font-size: 14px; margin-bottom: 10px; transition: color .2s; }
.footer-col a:hover { color: var(--red); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: var(--grey-80); }

/* =========================================================
   MOBILE STICKY CTA
   ========================================================= */
.mobile-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 90; padding: 12px 20px; background: var(--white); border-top: 2px solid var(--red); box-shadow: 0 -4px 16px rgba(0,0,0,.12); }
.mobile-cta .btn { width: 100%; text-align: center; min-height: 48px; display: flex; align-items: center; justify-content: center; }

/* =========================================================
   ANIMATIONS
   ========================================================= */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* =========================================================
   SCROLL TO TOP
   ========================================================= */
.scroll-top {
  position: fixed; bottom: 120px; right: 0;
  width: 48px; height: 56px;
  background: rgba(220,52,57,.22);
  backdrop-filter: blur(12px);
  border: 1.5px solid rgba(220,52,57,.4);
  border-right: none;
  border-radius: 12px 0 0 12px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .4s, width .2s, background .2s;
  z-index: 88;
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { background: rgba(220,52,57,.45); width: 58px; }

/* =========================================================
   PAGE HERO (внутренние страницы)
   ========================================================= */
.page-hero { background: var(--grey-bg); padding: 80px 0 60px; border-bottom: 3px solid var(--red); }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--grey-80); margin-bottom: 20px; }
.breadcrumb a { color: var(--red); }
.breadcrumb span { color: var(--grey-80); }

/* =========================================================
   SERVICES PAGE
   ========================================================= */
.services-nav { position: sticky; top: 74px; z-index: 80; background: var(--white); border-bottom: 1px solid var(--grey-light); box-shadow: 0 2px 8px rgba(0,0,0,.05); }
.services-nav-inner { display: flex; overflow-x: auto; scrollbar-width: none; }
.services-nav-inner::-webkit-scrollbar { display: none; }
.snav-link { padding: 16px 24px; font-size: 14px; font-weight: 700; color: var(--grey-60); border-bottom: 3px solid transparent; white-space: nowrap; transition: all .2s; flex-shrink: 0; }
.snav-link:hover, .snav-link.active { color: var(--red); border-bottom-color: var(--red); }

.service-block { padding: 80px 0; border-bottom: 1px solid var(--grey-light); }
.service-block:nth-child(even) { background: var(--grey-bg); }
.service-block-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.service-block:nth-child(odd) .service-block-inner { direction: rtl; }
.service-block:nth-child(odd) .service-block-inner > * { direction: ltr; }
.service-photo-block { height: 380px; border-radius: 8px; overflow: hidden; display: flex; align-items: center; justify-content: center; background: var(--grey-bg); }
.service-photo-block img { width: 100%; height: 100%; object-fit: cover; }
.includes-list { list-style: none; margin-bottom: 28px; display: flex; flex-direction: column; gap: 10px; }
.includes-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--dark); }
.includes-list li::before { content: ''; width: 8px; height: 8px; background: var(--red); flex-shrink: 0; margin-top: 7px; }
.for-whom { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.for-whom-tag { background: var(--grey-bg); border: 1px solid var(--grey-light); border-radius: 4px; padding: 7px 14px; font-size: 13px; font-weight: 700; color: var(--dark); }
.price-note { background: var(--grey-bg); border-left: 3px solid var(--red); padding: 14px 18px; border-radius: 0 4px 4px 0; font-size: 14px; color: var(--grey-60); margin-bottom: 24px; }
.price-note strong { color: var(--dark); }

/* =========================================================
   MENU PAGE
   ========================================================= */
.menu-filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px; }
.menu-filter-btn { padding: 10px 20px; border: 1.5px solid var(--grey-light); border-radius: 4px; font-family: 'PT Sans',sans-serif; font-size: 14px; font-weight: 700; cursor: pointer; background: var(--white); color: var(--dark); transition: all .2s; }
.menu-filter-btn:hover, .menu-filter-btn.active { background: var(--red); color: var(--white); border-color: var(--red); }
.menu-full-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.menu-item { border: 1px solid var(--grey-light); border-radius: 8px; overflow: hidden; background: var(--white); transition: box-shadow .25s; }
.menu-item:hover { box-shadow: 0 8px 24px rgba(0,0,0,.1); }
.menu-item-photo { height: 180px; background: var(--grey-bg); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.menu-item-photo img { width: 100%; height: 100%; object-fit: cover; }
.menu-item-body { padding: 16px; }
.menu-item-name { font-family: 'Playfair Display',serif; font-style: italic; font-size: 16px; margin-bottom: 6px; line-height: 1.3; }
.menu-item-comp { font-size: 12px; color: var(--grey-80); margin-bottom: 12px; line-height: 1.5; }
.menu-item-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 10px; border-top: 1px solid var(--grey-bg); }
.menu-item-price { font-weight: 700; color: var(--red); font-size: 16px; }
.menu-item-weight { font-size: 12px; color: var(--grey-80); }
.menu-download { background: var(--dark); color: var(--white); padding: 48px; border-radius: 8px; text-align: center; margin: 48px 0; }
.menu-download h3 { margin-bottom: 12px; }
.menu-download p { color: var(--grey-light); font-size: 15px; margin-bottom: 28px; }

/* =========================================================
   ABOUT PAGE
   ========================================================= */
.timeline { position: relative; padding-left: 48px; }
.timeline::before { content: ''; position: absolute; left: 16px; top: 0; bottom: 0; width: 2px; background: var(--grey-light); }
.timeline-item { position: relative; margin-bottom: 48px; }
.timeline-item::before { content: ''; position: absolute; left: -40px; top: 6px; width: 16px; height: 16px; border-radius: 50%; background: var(--red); border: 3px solid var(--white); box-shadow: 0 0 0 2px var(--red); }
.timeline-year { font-size: 13px; font-weight: 700; color: var(--red); letter-spacing: .1em; margin-bottom: 8px; }
.timeline-item h3 { margin-bottom: 8px; }
.timeline-item p { font-size: 15px; color: var(--grey-60); }

/* =========================================================
   CONTACTS PAGE
   ========================================================= */
.contacts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contacts-map { height: 460px; border-radius: 8px; overflow: hidden; background: var(--grey-bg); }
.contact-info-block { display: flex; flex-direction: column; gap: 32px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon { width: 44px; height: 44px; background: rgba(220,52,57,.1); border-radius: 4px; display: flex; align-items: center; justify-content: center; color: var(--red); flex-shrink: 0; }
.contact-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--grey-80); margin-bottom: 4px; }
.contact-value { font-size: 17px; font-weight: 700; color: var(--dark); }
.contact-value a { color: var(--dark); }
.contact-value a:hover { color: var(--red); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-illustration { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-slider { grid-template-columns: 1fr 1fr; }
  .form-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .service-block-inner { grid-template-columns: 1fr; gap: 40px; }
  .contacts-grid { grid-template-columns: 1fr; }
  .menu-full-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .main-navigation, .header-cta { display: none; }
  .burger { display: flex; }
  .mobile-cta { display: block; }
  .services-grid { grid-template-columns: 1fr; }
  .reviews-slider { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .menu-full-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .menu-full-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   WP CORE FIXES
   ========================================================= */
.wp-block-image { margin: 0; }
.alignwide { max-width: 100%; }
.alignfull { width: 100vw; margin-left: calc(50% - 50vw); }

/* MENU PAGE EXTRA */
.menu-full-grid { display:grid;grid-template-columns:repeat(4,1fr);gap:24px; }
.menu-item { border:1px solid var(--grey-light);border-radius:8px;overflow:hidden;background:var(--white);transition:box-shadow .25s; }
.menu-item:hover { box-shadow:0 8px 24px rgba(0,0,0,.1); }
.menu-item-photo { height:180px;background:var(--grey-bg);display:flex;align-items:center;justify-content:center;overflow:hidden; }
.menu-item-photo img { width:100%;height:100%;object-fit:cover; }
.menu-item-body { padding:16px; }
.menu-item-name { font-family:'Playfair Display',serif;font-style:italic;font-size:16px;margin-bottom:6px;line-height:1.3; }
.menu-item-comp { font-size:12px;color:var(--grey-80);margin-bottom:12px;line-height:1.5; }
.menu-item-footer { display:flex;justify-content:space-between;align-items:center;padding-top:10px;border-top:1px solid var(--grey-bg); }
.menu-item-price { font-weight:700;color:var(--red);font-size:16px; }
.menu-item-weight { font-size:12px;color:var(--grey-80); }
.menu-download { background:var(--dark);color:var(--white);padding:48px;border-radius:8px;text-align:center;margin:48px 0; }
.menu-download h3 { margin-bottom:12px; }
.menu-download p { color:var(--grey-light);font-size:15px;margin-bottom:28px; }
@media(max-width:1024px){ .menu-full-grid{grid-template-columns:repeat(3,1fr);} }
@media(max-width:768px){ .menu-full-grid{grid-template-columns:repeat(2,1fr);} }
@media(max-width:480px){ .menu-full-grid{grid-template-columns:1fr;} }
